@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  /* Brand palette */
  --primary:      #0d2b3e;
  --secondary:    #163d56;
  --mid:          #1e5272;
  --accent:       #2d6d8e;
  --accent-lt:    #4a8fac;
  --gold:         #7a9a2e;
  --gold-lt:      #a8c84a;
  --gold-warm:    #c5b454;

  /* Backgrounds */
  --bg-light:     #f2f7f9;
  --bg-mid:       #e4eef3;
  --bg-dark:      #060f18;
  --bg-darker:    #030a10;

  /* Text */
  --text-dark:    #0b1a26;
  --text-mid:     #2e5268;
  --text-light:   #5a7f94;
  --white:        #ffffff;

  /* UI */
  --border:       #c5d8e2;
  --border-light: #dceaf0;
  --shadow-sm:    0 2px 8px rgba(13,43,62,.07);
  --shadow:       0 6px 28px rgba(13,43,62,.11);
  --shadow-lg:    0 16px 52px rgba(13,43,62,.16);
  --shadow-xl:    0 24px 72px rgba(13,43,62,.20);

  /* Radius */
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  /* Transitions */
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --ease-out:     cubic-bezier(0,.55,.45,1);
  --t-fast:       .18s;
  --t-base:       .28s;
  --t-slow:       .48s;

  /* Typography scale */
  --fs-xs:        0.72rem;
  --fs-sm:        0.84rem;
  --fs-base:      1rem;
  --fs-md:        1.08rem;
  --fs-lg:        1.2rem;
  --fs-xl:        1.45rem;
  --fs-2xl:       1.9rem;
  --fs-3xl:       2.5rem;
  --fs-4xl:       3.2rem;

  /* Spacing */
  --sp-4:         4px;
  --sp-8:         8px;
  --sp-12:        12px;
  --sp-16:        16px;
  --sp-20:        20px;
  --sp-24:        24px;
  --sp-32:        32px;
  --sp-40:        40px;
  --sp-48:        48px;
  --sp-64:        64px;
  --sp-80:        80px;
  --sp-96:        96px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.72;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
strong { font-weight: 600; }

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: var(--primary);
  padding: 14px 0;
  border-bottom: 2px solid var(--gold-lt);
  position: relative;
  z-index: 1100;
}
.topbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,82,114,.15) 0%, transparent 60%);
  pointer-events: none;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Brand */
.brand-left {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity .18s ease;
}
.brand-left:hover { opacity: .88; }
.brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; gap: 3px; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.brand-tagline {
  font-size: .72rem;
  color: rgba(168,200,74,.85);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Partner logos */
.partner-logos { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.partner-logo-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  text-decoration: none;
}
.partner-logo-item .logo-pill {
  background: rgba(255,255,255,.94);
  border-radius: 6px;
  padding: 6px 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.partner-logo-item:hover .logo-pill {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.partner-logo-item img {
  height: 36px; width: auto; max-width: 108px;
  object-fit: contain; display: block;
}
.partner-logo-item span {
  font-size: .6rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  background: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 18px rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
}
.nav-links {
  display: flex; list-style: none; gap: 0;
  width: 100%; max-width: 960px;
  justify-content: space-evenly;
}
.nav-links li { flex: 1; text-align: center; }
.nav-links a {
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px; height: 54px;
  font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase; letter-spacing: 1.2px;
  transition: color .18s ease, background .18s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap; position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--gold-lt);
  transform: translateX(-50%);
  transition: width .28s cubic-bezier(0,.55,.45,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-lt);
  background: rgba(255,255,255,.05);
  border-bottom-color: transparent;
}

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 12px;
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: transform .28s ease, opacity .18s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  /*background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 55%, var(--mid) 100%);*/
  padding: 48px 0 36px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(168,200,74,.13) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute; left: -50px; bottom: -70px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(74,143,172,.16) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168,200,74,.18);
  border: 1px solid rgba(168,200,74,.35);
  color: var(--gold-lt);
  padding: 5px 16px; border-radius: 40px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700; color:var(--text-mid);
  line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -.5px;
}
.page-hero p {
  font-size: 1.08rem; color:var(--text-mid);
  max-width: 600px; line-height: 1.75;
}

/* =========================================================
   HOME HERO
   ========================================================= */
.hero {
  /*background: linear-gradient(145deg, var(--primary) 0%, #0a2235 40%, var(--secondary) 100%);*/
  padding: 70px 0 56px;
  position: relative; overflow: hidden;
  min-height: 65vh; display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.hero-bg-orb:nth-child(1) {
  width: 700px; height: 700px;
  top: -200px; right: -180px;
  background: radial-gradient(circle, rgba(45,109,142,.22) 0%, transparent 68%);
}
.hero-bg-orb:nth-child(2) {
  width: 420px; height: 420px;
  bottom: -100px; left: 5%;
  background: radial-gradient(circle, rgba(122,154,46,.15) 0%, transparent 68%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(122,154,46,.2);
  border: 1px solid rgba(168,200,74,.4);
  color: var(--gold-lt);
  padding: 7px 22px; border-radius: 40px;
  font-weight: 700; font-size: .72rem;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.9rem, 6.5vw, 5.2rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 16px; letter-spacing: -.5px;
  color: var(--white);
}
.hero h1 span { color: var(--gold-lt); }
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 400; color:var(--text-mid);
  margin-bottom: 16px; line-height: 1.5;
}
.hero-desc {
  font-size: 1.08rem; color:var(--text-mid);
  margin-bottom: 16px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  line-height: 1.8;
}
.hero-meta {
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: .84rem; color:var(--text-mid);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta i { color: var(--gold-lt); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  background: var(--mid); color: var(--white);
  padding: 14px 34px; border-radius: 6px;
  font-weight: 700; font-size: .84rem; letter-spacing: .4px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .28s ease, border-color .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease;
  border: 2px solid var(--mid); cursor: pointer;
}
.btn-primary:hover {
  background: transparent; color: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30,82,114,.30);
}
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 34px; border-radius: 6px;
  font-weight: 700; font-size: .84rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .28s ease;
  border: 2px solid rgba(255,255,255,.35); cursor: pointer;
}
.btn-outline:hover {
  background: var(--white); color: var(--primary);
  border-color: var(--white); transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold); color: var(--white);
  padding: 13px 30px; border-radius: 6px;
  font-weight: 700; font-size: .84rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .28s ease;
  border: 2px solid var(--gold); cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-lt); border-color: var(--gold-lt);
  color: var(--primary); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,154,46,.32);
}

/* =========================================================
   CONTAINER & SECTION
   ========================================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 56px 0; }
.section-alt { background: var(--bg-light); }

.section-header { text-align: center; margin-bottom: 36px; }
.section-eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700; color: var(--primary);
  margin-bottom: 16px; line-height: 1.18;
  letter-spacing: -.3px;
}
.section-header p {
  font-size: 1.08rem; color: var(--text-mid);
  max-width: 640px; margin: 0 auto; line-height: 1.75;
}
.section-header::after {
  content: '';
  display: block; width: 48px; height: 3px;
  
  border-radius: 2px; margin: 20px auto 0;
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 36px 0; position: relative; overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 50px 50px;
}
.stat-item {
  text-align: center; padding: 20px 24px; position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-icon { font-size: 2rem; color: var(--gold-lt); margin-bottom: 14px; opacity: .9; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1; margin-bottom: 8px; letter-spacing: -1px;
}
.stat-label {
  font-size: .72rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
}

/* =========================================================
   ABOUT / INFO CARDS
   ========================================================= */
.about-lead {
  font-size: 1.2rem; line-height: 1.85;
  color: var(--text-dark); margin-bottom: 24px;
  padding-left: 20px; border-left: 4px solid var(--gold-lt);
  font-style: italic;
}
.info-card {
  background: var(--bg-light); border-radius: 16px;
  padding: 32px; border-top: 4px solid var(--mid);
  box-shadow: 0 2px 8px rgba(13,43,62,.07);
  transition: box-shadow .28s ease, transform .28s ease;
}
.info-card:hover { box-shadow: 0 6px 28px rgba(13,43,62,.11); transform: translateY(-3px); }
.info-card + .info-card { margin-top: 24px; }
.info-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--mid));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.35rem; color: var(--white);
  box-shadow: 0 4px 16px rgba(13,43,62,.22);
}
.info-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--primary); margin-bottom: 16px;
}
.info-card ul { list-style: none; padding: 0; }
.info-card ul li {
  padding: 8px 0; border-bottom: 1px solid var(--border-light);
  font-size: .84rem; display: flex; gap: 10px;
  line-height: 1.55; color: var(--text-mid);
}
.info-card ul li:last-child { border-bottom: none; }
.info-card ul li::before {
  content: '▸'; color: var(--gold);
  font-size: .72rem; margin-top: 4px; flex-shrink: 0;
}

/* =========================================================
   OBJECTIVE CARDS
   ========================================================= */
.obj-card {
  background: var(--white); border-radius: 16px;
  padding: 40px 32px; height: 100%;
  box-shadow: 0 6px 28px rgba(13,43,62,.11);
  transition: transform .28s ease, box-shadow .28s ease;
  position: relative; overflow: hidden;
}
.obj-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--mid), var(--accent-lt));
}
.obj-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(30,82,114,.05) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.obj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 52px rgba(13,43,62,.16);
}
.obj-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--bg-mid);
  position: absolute; top: 10px; right: 20px;
  line-height: 1; user-select: none;
}
.obj-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--mid));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white); margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(13,43,62,.24);
}
.obj-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--primary); margin-bottom: 12px; line-height: 1.3;
}
.obj-card p { font-size: .84rem; color: var(--text-mid); line-height: 1.75; }

/* =========================================================
   TRAINING CARDS
   ========================================================= */
.training-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: 0 6px 28px rgba(13,43,62,.11);
  transition: transform .28s ease, box-shadow .28s ease;
  height: 100%;
}
.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 52px rgba(13,43,62,.16);
}
.training-img { position: relative; overflow: hidden; height: 240px; }
.training-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .48s ease;
}
.training-card:hover .training-img img { transform: scale(1.05); }
.training-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(13,43,62,.88);
  backdrop-filter: blur(8px);
  color: var(--white); padding: 5px 14px;
  border-radius: 40px; font-size: .72rem; font-weight: 700;
  letter-spacing: .5px; border: 1px solid rgba(255,255,255,.15);
}
.training-body { padding: 28px 28px 32px; }
.training-date {
  font-size: .72rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 1.2px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.training-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--primary); margin-bottom: 12px; line-height: 1.3;
}
.training-body p { font-size: .84rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.7; }
.outcomes-box {
  background: var(--bg-light); border-radius: 10px;
  padding: 18px 20px; margin-top: 16px;
  border-left: 3px solid var(--gold);
}
.outcomes-box h5 {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--primary); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.outcomes-box h5 i { color: var(--gold); }
.outcomes-box ul { list-style: none; padding: 0; }
.outcomes-box ul li {
  font-size: .84rem; color: var(--text-mid);
  padding: 5px 0 5px 20px; position: relative; line-height: 1.55;
}
.outcomes-box ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: .72rem;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-item {
  position: relative; border-radius: 10px;
  overflow: hidden; box-shadow: 0 6px 28px rgba(13,43,62,.11);
  cursor: zoom-in; background: var(--primary);
}
.gallery-item img {
  width: 100%; height: 300px;
  object-fit: contain; object-position: center;
  display: block; transition: transform .48s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(6,15,24,.90));
  color: var(--white); padding: 44px 18px 18px;
  font-size: .84rem; line-height: 1.45;
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(0,.55,.45,1);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(6,15,24,.96);
  z-index: 9999; align-items: center; justify-content: center;
  padding: 24px; backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 82vh;
  border-radius: 6px; object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
  cursor: pointer; transition: background .18s ease; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55); color: rgba(255,255,255,.78);
  text-align: center; padding: 14px; font-size: .84rem;
}

/* =========================================================
   PARTNERS BAR
   ========================================================= */
.partners-bar {
  background: var(--bg-light); padding: 64px 0;
  border-top: 1px solid var(--border);
}
.partners-bar .section-header { margin-bottom: 48px; }
.partners-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; align-items: stretch;
}
.partner-card {
  background: var(--white); border-radius: 16px;
  padding: 20px 20px 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; min-width: 140px; min-height: 112px;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  border: 1px solid var(--border-light);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(13,43,62,.07);
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 28px rgba(13,43,62,.11);
  border-color: var(--mid);
}
.partner-card img {
  height: 52px; width: auto; max-width: 132px;
  object-fit: contain; transition: transform .28s ease;
}
.partner-card:hover img { transform: scale(1.07); }
.partner-card span {
  font-size: .76rem; font-weight: 600;
  color: var(--text-mid); line-height: 1.35;
}

/* =========================================================
   PARTNERS PAGE — full cards
   ========================================================= */
.partner-full-card {
  background: var(--white); border-radius: 16px;
  padding: 32px 24px 28px; text-align: center;
  box-shadow: 0 6px 28px rgba(13,43,62,.11);
  border-top: 4px solid var(--mid);
  transition: transform .28s ease, box-shadow .28s ease;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.partner-full-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 72px rgba(13,43,62,.20);
}
.partner-full-card .logo-wrap {
  width: 100%; height: 90px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light); border-radius: 10px;
  padding: 12px 20px;
}
.partner-full-card img {
  max-height: 66px; width: auto; max-width: 180px;
  object-fit: contain; display: block;
}
.partner-full-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--primary); line-height: 1.3;
}
.partner-full-card p {
  font-size: .84rem; color: var(--text-mid);
  flex-grow: 1; line-height: 1.72;
}
.partner-full-card a {
  font-size: .72rem; color: var(--mid); font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; padding: 8px 18px;
  border: 1.5px solid var(--mid); border-radius: 6px;
  transition: all .18s ease; letter-spacing: .5px;
}
.partner-full-card a:hover { background: var(--mid); color: var(--white); }

/* =========================================================
   CONTACT CARDS
   ========================================================= */
.contact-card {
  background: var(--white); border-radius: 16px;
  padding: 40px 28px; text-align: center;
  box-shadow: 0 6px 28px rgba(13,43,62,.11);
  transition: transform .28s ease, box-shadow .28s ease; height: 100%;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 52px rgba(13,43,62,.16);
}
.contact-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--mid));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem; color: var(--white);
  box-shadow: 0 8px 24px rgba(13,43,62,.28);
}
.contact-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}
.contact-card .role {
  font-size: .72rem; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .84rem; color: var(--text-mid);
  margin-bottom: 8px; text-align: left;
}
.contact-detail i { color: var(--mid); margin-top: 3px; flex-shrink: 0; }
.contact-detail a { color: var(--text-mid); transition: color .18s ease; }
.contact-detail a:hover { color: var(--mid); }

/* =========================================================
   HIGHLIGHT BOX
   ========================================================= */
.highlight-box {
  /*background: linear-gradient(135deg, var(--primary) 0%, var(--mid) 100%);*/
  border-radius: 24px; padding: 40px 32px;
  color: var(--mid); text-align: center;
  position: relative; overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(168,200,74,.15) 0%, transparent 65%);
  border-radius: 50%;
}
.highlight-box::after {
  content: '';
  position: absolute; left: -40px; bottom: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(74,143,172,.14) 0%, transparent 65%);
  border-radius: 50%;
}
.highlight-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.highlight-box p {
  font-size: 1.08rem; opacity: .82;
  margin-bottom: 32px;
  max-width: 540px; margin-left: auto; margin-right: auto;
  line-height: 1.75; position: relative; z-index: 1;
}
.highlight-box .d-flex { position: relative; z-index: 1; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.68);
  padding: 44px 0 0; position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--gold-lt), var(--mid));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 48px; margin-bottom: 32px;
}
.footer-brand h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.footer-brand p { font-size: .84rem; line-height: 1.75; margin-bottom: 8px; }
.footer-col h6 {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold-lt); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,.58); font-size: .84rem;
  transition: color .18s ease, padding-left .18s ease;
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold-lt); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.footer-location p {
  font-size: .84rem; margin-bottom: 8px;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
}
.footer-location i { color: var(--gold-lt); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 6px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .84rem;
  transition: all .28s ease;
}
.footer-social a:hover {
  background: var(--mid); color: var(--white);
  border-color: var(--mid); transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0; text-align: center;
  font-size: .72rem; color: rgba(255,255,255,.32); letter-spacing: .5px;
}
.footer-bottom span { color: var(--gold-lt); font-weight: 600; }

/* =========================================================
   UTILITY
   ========================================================= */
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col { padding: 0 12px; }
.col-4 { width: 33.333%; }
.col-6 { width: 50%; }
.col-12 { width: 100%; }
.g-24 > * { padding: 12px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }
.fw-bold { font-weight: 700; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in   { animation: fadeInUp .75s ease both; }
.fade-in-2 { animation: fadeInUp .75s .15s ease both; }
.fade-in-3 { animation: fadeInUp .75s .30s ease both; }
.fade-in-4 { animation: fadeInUp .75s .45s ease both; }

/* =========================================================
   RESPONSIVE — 1024px
   ========================================================= */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section { padding: 44px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =========================================================
   RESPONSIVE — 991px
   ========================================================= */
@media (max-width: 991px) {
  .col-4 { width: 50%; }
  .topbar-inner { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
}

/* =========================================================
   RESPONSIVE — 768px
   ========================================================= */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--secondary);
    padding: 8px 0; box-shadow: 0 12px 32px rgba(0,0,0,.28);
    z-index: 999; border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { flex: none; text-align: left; }
  .nav-links a {
    justify-content: flex-start; padding: 14px 24px;
    height: auto; border-bottom: none;
    border-left: 3px solid transparent; font-size: .84rem;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover, .nav-links a.active {
    border-left-color: var(--gold-lt);
    background: rgba(255,255,255,.06);
  }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { padding: 52px 0 36px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -.3px; }
  .hero-meta { gap: 16px; }

  /* Page hero */
  .page-hero { padding: 36px 0 24px; }
  .page-hero h1 { font-size: 2rem; }

  /* Topbar */
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0 20px; }
  .partner-logos { gap: 8px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Misc */
  .highlight-box { padding: 28px 20px; }
  .stat-item + .stat-item::before { display: none; }
  .section { padding: 36px 0; }
  .col-4, .col-6 { width: 100%; }
}

/* =========================================================
   RESPONSIVE — 480px
   ========================================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 28px 0; }

  .hero { padding: 40px 0 28px; }
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .page-hero { padding: 28px 0 16px; }
  .page-hero h1 { font-size: 1.75rem; }

  .section-header h2 { font-size: 1.8rem; }
  .section-header { margin-bottom: 24px; }

  .highlight-box { padding: 32px 20px; border-radius: 10px; }

  .gallery-strip-3 { grid-template-columns: 1fr !important; }

  .btn-primary, .btn-outline, .btn-gold {
    padding: 12px 24px; font-size: .72rem;
  }

  .topbar { padding: 12px 0; }
  .brand-name { font-size: 1.3rem; }
  .brand-tagline { font-size: .56rem; }
  .partner-logos { flex-wrap: wrap; justify-content: flex-start; }

  .obj-card { padding: 32px 20px; }
  .obj-icon { width: 46px; height: 46px; font-size: 1.3rem; }

  .info-card { padding: 24px; }

  .footer { padding: 48px 0 0; }
  .footer-brand h5 { font-size: 1.2rem; }
  .footer-social a { width: 34px; height: 34px; }

  .stat-num { font-size: 2.2rem; }
}

/* =========================================================
   PAGE-SPECIFIC: CONTAINER & SECTION OVERRIDES
   Home · About · Objectives · Partners
   ========================================================= */

/* Fix missing gradient on section-header rule */
.section-header::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

/* ── HOME ─────────────────────────────────────────────── */

/* Five content sections → slightly tighter vertical rhythm */
.page-home .section          { padding: 48px 0; }
.page-home .stats-strip      { padding: 28px 0; }

/* Mission section: content columns stay balanced */
.page-home .section .row.g-24[style*="align-items:center"] {
  gap: 0;
  align-items: center;
}

/* Section headers on home are descriptive, need a touch less gap */
.page-home .section-header   { margin-bottom: 28px; }

/* Timeline section: tighten its container width */
.page-home .section [style*="max-width:780px"] {
  max-width: 760px;
}

/* Gallery preview grid: collapses to 2 then 1 col on small screens */
.page-home .section [style*="grid-template-columns:repeat(3,1fr)"] {
  display: grid;
  gap: 20px;
}

/* CTA section: less padding — it's a single highlight box */
.page-home .section:last-of-type { padding: 40px 0; }

/* ── ABOUT ─────────────────────────────────────────────── */

/* Inner page — slightly tighter than 96px default */
.page-about .section         { padding: 72px 0; }
.page-about .section-alt     { padding: 72px 0; }

/* Prose intro block: comfortable reading width */
.page-about .section:first-of-type .container > div[style*="max-width"] {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/* About-lead paragraph: give it breathing room */
.page-about .about-lead {
  margin-bottom: 28px;
}

/* Approach section header: standard centering */
.page-about .section-alt .section-header {
  margin-bottom: 52px;
}

/* MDClone platform section: tighten section-header on the left-aligned version */
.page-about .section-header[style*="text-align:left"] {
  margin-bottom: 20px;
}

/* CTA section: compact — it ends the page */
.page-about .section-alt:last-of-type { padding: 64px 0; }

/* ── OBJECTIVES ────────────────────────────────────────── */

.page-objectives .section    { padding: 76px 0; }
.page-objectives .section-alt{ padding: 76px 0; }

/* Main objectives section: cards are tall — give the header less bottom margin */
.page-objectives .section:first-of-type .section-header {
  margin-bottom: 44px;
}

/* Three objective cards: equal height columns */
.page-objectives .row.g-24 > .col.col-4 {
  display: flex;
}

/* Key metrics section: tighten header */
.page-objectives .section-alt .section-header {
  margin-bottom: 44px;
}

/* Metric number cards: constrain max-width so they look balanced at 4-across */
.page-objectives .section-alt .row.g-24 > .col.col-4 {
  flex: 1;
  min-width: 160px;
}

/* DS-I context CTA: compact padding — page closer */
.page-objectives .section:last-of-type { padding: 64px 0; }

/* ── PARTNERS ──────────────────────────────────────────── */

.page-partners .section      { padding: 80px 0; }
.page-partners .section-alt  { padding: 64px 0; }

/* Main partners section header */
.page-partners .section:first-of-type .section-header {
  margin-bottom: 52px;
}

/* Partner group blocks: consistent spacing between groups */
.page-partners [style*="margin-bottom:56px"]:last-child {
  margin-bottom: 0 !important;
}

/* Group title underline: consistent sizing */
.page-partners h3[style*="border-bottom"] {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  padding-bottom: 14px;
  margin-bottom: 10px;
}

/* Group description text */
.page-partners p[style*="margin-bottom:28px"] {
  margin-bottom: 24px !important;
  font-size: .92rem;
}

/* Partner card columns: 3-across stays comfortable up to md */
.page-partners .row.g-24 > .col.col-4 {
  flex: 1;
  min-width: 220px;
}

/* CTA: compact — sits right above footer */
.page-partners .section-alt:last-of-type { padding: 60px 0; }

/* ── RESPONSIVE OVERRIDES (all four pages) ─────────────── */

@media (max-width: 768px) {
  .page-home .section,
  .page-about .section,
  .page-about .section-alt,
  .page-objectives .section,
  .page-objectives .section-alt,
  .page-partners .section,
  .page-partners .section-alt { padding: 56px 0; }

  .page-home .stats-strip    { padding: 40px 0; }

  /* Gallery preview: 2 cols on tablet */
  .page-home .section [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Partners: 2-col cards */
  .page-partners .row.g-24 > .col.col-4 { min-width: 200px; }
}

@media (max-width: 480px) {
  .page-home .section,
  .page-about .section,
  .page-about .section-alt,
  .page-objectives .section,
  .page-objectives .section-alt,
  .page-partners .section,
  .page-partners .section-alt { padding: 44px 0; }

  .page-home .stats-strip    { padding: 32px 0; }

  /* Gallery preview: 1 col on mobile */
  .page-home .section [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Partners group title wraps cleanly */
  .page-partners h3[style*="border-bottom"] { font-size: 1.25rem; }
}
