/* =========================================================
   AstraVerde Innovation — styles
   Palette: Navy + Green + Gold on Parchment
   Type: Fraunces (display) · Hanken Grotesk (body)
   ========================================================= */

:root {
  /* Brand colours (from logo) */
  --navy:        #16264e;
  --navy-800:    #122042;
  --navy-900:    #0d1830;
  --navy-700:    #1d3567;

  --green:       #2c7a3f;
  --green-deep:  #1b5230;
  --green-900:   #123c22;
  --green-bright:#6cae3e;

  --gold:        #c2a04e;
  --gold-bright: #dabb6c;
  --gold-soft:   rgba(216,187,108,0.16);

  --paper:       #f5f2e9;
  --paper-2:     #ece6d6;
  --paper-3:     #e2dac6;

  --ink:         #182038;   /* body text on light */
  --ink-soft:    #46506a;

  /* Tokens */
  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 6rem);
  --r: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   Brand mark
   ========================================================= */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; --lg-a: var(--navy); --lg-orbit: var(--navy-700); }
.brand__mark { height: 38px; width: auto; flex: none; overflow: visible; }
.brand--footer .brand__mark { height: 46px; }

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand__astra { color: var(--navy); transition: color 0.4s var(--ease); }
.brand__verde { color: var(--green); transition: color 0.4s var(--ease); }

/* On dark surfaces (hero nav before scroll, footer): light A + globe, bright wordmark */
.nav:not(.nav--scrolled) .brand,
.footer .brand { --lg-a: var(--paper); --lg-orbit: rgba(245, 242, 233, 0.55); }
.nav:not(.nav--scrolled) .brand__astra,
.footer .brand__astra { color: var(--paper); }
.nav:not(.nav--scrolled) .brand__verde,
.footer .brand__verde { color: var(--green-bright); }
.brand__mark, .brand__astra, .brand__verde { transition: color 0.4s var(--ease); }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem var(--pad);
  transition: background 0.45s var(--ease), padding 0.45s var(--ease),
              box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(245, 242, 233, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
  border-bottom-color: rgba(22, 38, 78, 0.1);
  box-shadow: 0 10px 40px -28px rgba(13, 24, 48, 0.5);
}

.nav__links {
  display: flex; align-items: center; gap: clamp(0.9rem, 1.6vw, 1.9rem);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.01em;
}
.nav__links a { position: relative; color: var(--paper); opacity: 0.92; transition: color 0.3s, opacity 0.3s; padding: 0.3rem 0; white-space: nowrap; }
.nav--scrolled .nav__links a { color: var(--ink); opacity: 0.78; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.005em; line-height: 1; cursor: pointer; border: none;
  padding: 0.85rem 1.5rem; border-radius: 100px; transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn--nav { background: var(--gold); color: var(--navy-900); padding: 0.7rem 1.3rem; }
.nav--scrolled .btn--nav { background: var(--navy); color: var(--paper); }
.btn--nav:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(194, 160, 78, 0.7); }

.btn--primary { background: var(--navy); color: var(--paper); padding: 1rem 1.9rem; }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(22, 38, 78, 0.7); }

.btn--ghost { background: transparent; color: var(--paper); box-shadow: inset 0 0 0 1.5px rgba(245, 242, 233, 0.35); padding: 1rem 1.7rem; }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold-bright); color: var(--gold-bright); }

.btn--lg { padding: 1.1rem 2.4rem; font-size: 0.98rem; }

.nav__toggle { display: none; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(1.5rem, 6vw, 2.1rem); font-weight: 500;
  color: var(--paper); padding: 0.4rem; opacity: 0.9; transition: color 0.25s, transform 0.25s;
}
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-menu__cta { margin-top: 1rem; color: var(--gold-bright) !important; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem var(--pad) 4rem;
  background:
    radial-gradient(120% 90% at 80% -10%, #1d3567 0%, transparent 55%),
    radial-gradient(90% 80% at 0% 110%, #11402a 0%, transparent 50%),
    linear-gradient(160deg, #0d1830 0%, #122042 55%, #0e1e24 100%);
  color: var(--paper); overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__glow {
  position: absolute; top: -10%; right: -5%; width: 50vw; height: 50vw; z-index: 1;
  background: radial-gradient(circle, rgba(216,187,108,0.16) 0%, transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 60rem; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-bright);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow--dark { color: var(--green); }
.eyebrow--dark::before { background: var(--green); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 1.6rem 0 1.8rem;
  font-optical-sizing: auto;
}
.hero__title span { display: block; }
.hero__title em { color: var(--gold-bright); font-style: italic; font-weight: 400; }

.hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  max-width: 40rem; color: rgba(245, 242, 233, 0.82); font-weight: 300;
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: var(--pad); z-index: 2;
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245, 242, 233, 0.6);
}
.hero__scroll-line { width: 46px; height: 1px; background: rgba(245,242,233,0.4); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--gold-bright);
  transform: translateX(-100%); animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: translateX(-100%);} 50%{transform: translateX(0);} 100%{transform: translateX(100%);} }

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  background: var(--green-deep); color: var(--paper);
  padding: 1.05rem 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(216,187,108,0.25); border-bottom: 1px solid rgba(216,187,108,0.25);
}
.marquee__track { display: inline-flex; align-items: center; gap: 2rem; animation: marquee 38s linear infinite; }
.marquee__track span {
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem; font-weight: 400;
  opacity: 0.95;
}
.marquee__track i { color: var(--gold-bright); font-style: normal; font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Section scaffolding
   ========================================================= */
.section { padding: clamp(4.5rem, 10vw, 9rem) var(--pad); position: relative; }
.section--dark {
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(29,53,103,0.6) 0%, transparent 60%),
    var(--navy-900);
  color: var(--paper);
}
.section--forest {
  background:
    radial-gradient(70% 60% at 10% 0%, rgba(108,174,62,0.14) 0%, transparent 55%),
    linear-gradient(165deg, var(--green-deep) 0%, var(--green-900) 100%);
  color: var(--paper);
}

.section__head { max-width: 50rem; margin: 0 auto clamp(2.8rem, 6vw, 4.5rem); text-align: center; }
.section__head--left { margin-left: 0; margin-right: auto; text-align: left; }
.section__head--split {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  max-width: var(--maxw); text-align: left; flex-wrap: wrap; margin-inline: auto;
}

.section__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--navy); margin-top: 1.1rem;
}
.section__title em { color: var(--green); font-style: italic; }
.section__title--light { color: var(--paper); }
.section__title--light em { color: var(--gold-bright); }

.section__intro {
  margin-top: 1.4rem; font-size: 1.1rem; font-weight: 300;
  color: rgba(245,242,233,0.78); max-width: 44rem;
}
.section__head:not(.section__head--left) .section__intro { margin-inline: auto; }
.section__intro--dark { color: var(--ink-soft); }

.link-arrow { color: var(--gold-bright); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em; transition: gap 0.3s, color 0.3s; }
.link-arrow:hover { color: var(--paper); }

/* =========================================================
   About
   ========================================================= */
.about { background: var(--paper); }
.about__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem);
}
.about__sticky { position: sticky; top: 7rem; align-self: start; }
.about__sticky .section__title { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }

.lede {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.4; font-weight: 400; color: var(--navy); margin-bottom: 1.6rem;
}
.about__body p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 1.3rem; max-width: 38rem; }
.about__body em { color: var(--green); font-style: italic; }

.about__values { display: grid; gap: 1.5rem; margin-top: 3rem; border-top: 1px solid var(--paper-3); padding-top: 2.5rem; }
.value { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; }
.value__num { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); font-weight: 600; padding-top: 0.2rem; }
.value h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.25rem; }
.value p { margin: 0; font-size: 0.98rem; }

/* =========================================================
   Core Areas — cards
   ========================================================= */
.cards {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
}
.card {
  position: relative; padding: 2.4rem 2.2rem; border-radius: var(--r);
  background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(245,242,233,0.1);
  overflow: hidden; transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: linear-gradient(var(--green-bright), var(--gold)); transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(216,187,108,0.4); background: rgba(255,255,255,0.04); }
.card:hover::before { transform: scaleY(1); }
.card__index { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold-bright); letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.card__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.12; margin-bottom: 0.9rem; }
.card__text { color: rgba(245,242,233,0.72); font-weight: 300; margin-bottom: 1.4rem; font-size: 1.02rem; }
.card__list { list-style: none; display: grid; gap: 0.5rem; }
.card__list li { position: relative; padding-left: 1.4rem; font-size: 0.9rem; color: rgba(245,242,233,0.85); }
.card__list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.18rem; }

/* =========================================================
   Strategic Themes
   ========================================================= */
.themes { background: var(--paper-2); }
.themes__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--paper-3); border: 1px solid var(--paper-3); border-radius: var(--r); overflow: hidden;
}
.theme {
  background: var(--paper); padding: 2.2rem 2rem; transition: background 0.4s var(--ease);
}
.theme span { display: inline-block; color: var(--gold); font-size: 1.3rem; margin-bottom: 0.9rem; transition: transform 0.4s var(--ease); }
.theme h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.32rem; color: var(--navy); margin-bottom: 0.5rem; }
.theme p { color: var(--ink-soft); font-size: 0.97rem; }
.theme:hover { background: #fffdf7; }
.theme:hover span { transform: translateX(6px); }

/* =========================================================
   Approach
   ========================================================= */
.approach__steps {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: flex-start; justify-content: center; gap: 0.5rem; flex-wrap: wrap;
}
.step { flex: 1 1 240px; max-width: 22rem; text-align: center; padding: 0 1rem; }
.step__num {
  width: 58px; height: 58px; margin: 0 auto 1.4rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--green-900);
  background: var(--gold-bright); box-shadow: 0 0 0 8px rgba(216,187,108,0.12);
}
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.45rem; margin-bottom: 0.7rem; color: var(--paper); }
.step p { color: rgba(245,242,233,0.74); font-weight: 300; }
.step__line { flex: 0 1 90px; height: 1px; margin-top: 28px; background: linear-gradient(90deg, transparent, rgba(216,187,108,0.6), transparent); }
@media (max-width: 800px) { .step__line { display: none; } }

/* =========================================================
   Stats
   ========================================================= */
.stats { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.stats__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.stat { padding: 1rem; border-left: 1px solid rgba(245,242,233,0.12); }
.stat:first-child { border-left: none; }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--gold-bright); letter-spacing: -0.02em;
}
.stat__label { display: block; margin-top: 0.7rem; font-size: 0.86rem; letter-spacing: 0.04em; color: rgba(245,242,233,0.7); text-transform: uppercase; }
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat { border-left: none; }
}

/* =========================================================
   Sectors
   ========================================================= */
.sectors { background: var(--paper); }
.sectors__list { max-width: var(--maxw); margin-inline: auto; display: grid; gap: 0; }
.sector {
  display: grid; grid-template-columns: 0.9fr 1.6fr auto; gap: 2rem; align-items: center;
  padding: 2.3rem 0.5rem; border-top: 1px solid var(--paper-3); transition: padding 0.4s var(--ease);
}
.sector:last-child { border-bottom: 1px solid var(--paper-3); }
.sector:hover { padding-left: 1.3rem; }
.sector__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy); line-height: 1.1; }
.sector p { color: var(--ink-soft); font-size: 1.02rem; }
.sector__tag {
  justify-self: end; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); font-weight: 600; border: 1px solid rgba(44,122,63,0.35); padding: 0.4rem 0.9rem; border-radius: 100px; white-space: nowrap;
}
@media (max-width: 800px) {
  .sector { grid-template-columns: 1fr; gap: 0.8rem; }
  .sector__tag { justify-self: start; }
}

/* =========================================================
   Insights
   ========================================================= */
.insights__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.insight {
  display: flex; flex-direction: column; gap: 0.9rem; padding: 2rem 1.9rem 2.2rem;
  border-radius: var(--r); background: rgba(245,242,233,0.035); border: 1px solid rgba(245,242,233,0.1);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
  cursor: pointer; min-height: 16rem;
}
.insight:hover { transform: translateY(-6px); background: rgba(245,242,233,0.06); border-color: rgba(216,187,108,0.4); }
.insight__cat { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-bright); font-weight: 600; }
.insight h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; line-height: 1.18; color: var(--paper); }
.insight p { color: rgba(245,242,233,0.7); font-weight: 300; font-size: 0.98rem; flex: 1; }
.insight__meta { font-size: 0.8rem; color: var(--gold-bright); letter-spacing: 0.03em; }

/* =========================================================
   Partnerships
   ========================================================= */
.partnerships__inner {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.partnerships__copy .section__intro { color: rgba(245,242,233,0.8); }
.partnerships__copy .btn { margin-top: 2rem; background: var(--gold-bright); color: var(--green-900); }
.partnerships__copy .btn:hover { background: var(--paper); }
.partnerships__pillars { list-style: none; display: grid; gap: 0; }
.partnerships__pillars li {
  display: grid; gap: 0.3rem; padding: 1.5rem 0; border-top: 1px solid rgba(245,242,233,0.16);
}
.partnerships__pillars li:last-child { border-bottom: 1px solid rgba(245,242,233,0.16); }
.partnerships__pillars strong { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--paper); }
.partnerships__pillars span { color: rgba(245,242,233,0.7); font-weight: 300; font-size: 0.98rem; }

/* =========================================================
   Professional Development
   ========================================================= */
.development { background: var(--paper-2); }
.development__grid {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem;
}
.program {
  padding: 2rem 1.7rem; border-radius: var(--r); background: var(--paper);
  border: 1px solid var(--paper-3); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.program:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -30px rgba(22,38,78,0.45); }
.program h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.28rem; color: var(--navy); margin-bottom: 0.6rem; }
.program p { color: var(--ink-soft); font-size: 0.96rem; }

/* =========================================================
   CTA / Contact
   ========================================================= */
.cta { background: var(--paper); }
.cta__inner {
  max-width: 56rem; margin-inline: auto; text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(29,53,103,0.5) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
  color: var(--paper); border-radius: 24px; padding: clamp(2.8rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  position: relative; overflow: hidden;
  box-shadow: 0 50px 90px -50px rgba(13,24,48,0.7);
}
.cta__inner::after {
  content: "✦"; position: absolute; top: 1.5rem; right: 2rem; color: var(--gold); opacity: 0.35; font-size: 1.4rem;
}
.cta__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; margin: 1.2rem 0; }
.cta__title em { color: var(--gold-bright); font-style: italic; }
.cta__lead { color: rgba(245,242,233,0.78); font-weight: 300; max-width: 34rem; margin: 0 auto 2.4rem; font-size: 1.08rem; }

.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; max-width: 36rem; margin-inline: auto; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.98rem; color: var(--paper);
  background: rgba(245,242,233,0.06); border: 1px solid rgba(245,242,233,0.18);
  border-radius: 10px; padding: 1.15rem 1rem 0.55rem; resize: vertical; transition: border-color 0.3s, background 0.3s;
}
.field textarea { padding-top: 1.3rem; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-bright); background: rgba(245,242,233,0.1); }
.field label {
  position: absolute; left: 1rem; top: 0.95rem; font-size: 0.95rem; color: rgba(245,242,233,0.5);
  pointer-events: none; transition: all 0.22s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0.42rem; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-bright);
}
.cta__form .btn { grid-column: 1 / -1; justify-self: center; margin-top: 0.4rem; background: var(--gold-bright); color: var(--navy-900); }
.cta__form .btn:hover { background: var(--paper); }
.cta__note { grid-column: 1 / -1; text-align: center; font-size: 0.9rem; color: var(--green-bright); min-height: 1.2rem; margin: 0; }
@media (max-width: 560px) { .cta__form { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--navy-900); color: var(--paper); padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad) 2rem; overflow: hidden; }
.footer__top { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; }
.footer__tag { margin-top: 1.1rem; color: rgba(245,242,233,0.6); font-weight: 300; max-width: 22rem; }
.footer__strap { margin-top: 0.8rem; font-family: var(--font-display); font-style: italic; color: var(--gold-bright); font-size: 1.05rem; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__nav h4 { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1.1rem; font-weight: 600; }
.footer__nav a { display: block; color: rgba(245,242,233,0.72); padding: 0.4rem 0; font-size: 0.95rem; transition: color 0.25s, transform 0.25s; }
.footer__nav a:hover { color: var(--paper); transform: translateX(4px); }

.footer__wordmark {
  max-width: var(--maxw); margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(3.5rem, 16vw, 12rem); line-height: 0.9; letter-spacing: -0.03em;
  background: linear-gradient(180deg, rgba(245,242,233,0.14) 0%, rgba(245,242,233,0.02) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  user-select: none; white-space: nowrap;
}
.footer__bottom {
  max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.6rem;
  border-top: 1px solid rgba(245,242,233,0.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(245,242,233,0.55);
}
.footer__links a { margin-left: 1.3rem; transition: color 0.25s; }
.footer__links a:first-child { margin-left: 0; }
.footer__links a:hover { color: var(--gold-bright); }

/* =========================================================
   Reveal animations
   ========================================================= */
/* Reveals only hide when JS is present — content stays visible if JS fails */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.hero .reveal[data-delay="1"].in { transition-delay: 0.05s; }
.hero .reveal[data-delay="2"].in { transition-delay: 0.13s; }
.hero .reveal[data-delay="3"].in { transition-delay: 0.21s; }
.hero .reveal[data-delay="4"].in { transition-delay: 0.34s; }
.hero .reveal[data-delay="5"].in { transition-delay: 0.46s; }
.hero .reveal[data-delay="6"].in { transition-delay: 0.6s; }

/* Stagger grids */
.cards .card:nth-child(2), .insights .insight:nth-child(2), .development .program:nth-child(2),
.themes .theme:nth-child(2) { transition-delay: 0.08s; }
.cards .card:nth-child(3), .insights .insight:nth-child(3), .development .program:nth-child(3),
.themes .theme:nth-child(3) { transition-delay: 0.16s; }
.cards .card:nth-child(4), .development .program:nth-child(4), .themes .theme:nth-child(4) { transition-delay: 0.24s; }
.themes .theme:nth-child(5) { transition-delay: 0.32s; }
.themes .theme:nth-child(6) { transition-delay: 0.4s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px; z-index: 1001;
  }
  .nav__toggle span { width: 26px; height: 2px; background: var(--paper); transition: all 0.35s var(--ease); }
  .nav--scrolled .nav__toggle span { background: var(--navy); }
  body.menu-open .nav__toggle span { background: var(--paper); }
  body.menu-open .nav__toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.menu-open .nav__toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .about__grid { grid-template-columns: 1fr; }
  .about__sticky { position: static; }
  .cards { grid-template-columns: 1fr; }
  .themes__grid { grid-template-columns: repeat(2, 1fr); }
  .insights__grid { grid-template-columns: 1fr; }
  .partnerships__inner { grid-template-columns: 1fr; }
  .development__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .themes__grid { grid-template-columns: 1fr; }
  .development__grid { grid-template-columns: 1fr; }
  .section__head--split { flex-direction: column; align-items: flex-start; }
}
