/* ============================================================
   EPOCH METABOLIC - Shared CSS
   Aesthetic: refined clinical minimalism with editorial gravitas
   ============================================================ */

/* CSS RESET (focused) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { line-height: 1.6; font-family: var(--sans); color: var(--nv); background: var(--cr); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* TYPOGRAPHY IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* BRAND VARIABLES - locked from project memo */
:root {
  --g:  #1A3A2A;   /* deep green */
  --gd: #C9A84C;   /* gold */
  --cr: #F5F1EA;   /* cream */
  --nv: #0F2419;   /* navy (near-black) */
  --st: #D6CFC4;   /* stone */
  --mg: #5A5550;   /* mid grey */
  --dg: #2C2926;   /* dark grey */
  --red:#B85040;   /* warning red - sparingly used */

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container-narrow: 720px;
  --container-text:   880px;
  --container:        1240px;
  --container-wide:   1400px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 56px;
  --space-xl: 96px;
  --space-2xl: 144px;

  --radius-sm: 2px;
  --radius:    4px;

  --shadow-subtle: 0 1px 2px rgba(15,36,25,0.04), 0 8px 24px rgba(15,36,25,0.06);
  --shadow-card:   0 2px 4px rgba(15,36,25,0.05), 0 16px 48px rgba(15,36,25,0.08);

  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* TYPOGRAPHY SCALE */
.display-xl {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--nv);
}
.display-lg {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--nv);
}
.display-md {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--nv);
}
.display-sm {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--nv);
}
.headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.008em;
  color: var(--nv);
}
.subhead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
  color: var(--g);
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gd);
}
.body-lg {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: var(--nv);
}
.body { font-family: var(--sans); font-weight: 400; font-size: 17px; line-height: 1.7; color: var(--nv); }
.body-sm { font-family: var(--sans); font-weight: 400; font-size: 15px; line-height: 1.6; color: var(--mg); }
.caption { font-family: var(--sans); font-weight: 400; font-size: 13px; line-height: 1.5; color: var(--mg); }

/* TRADEMARK SYMBOL */
.tm {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gd);
  margin-left: 1px;
}

/* CONTAINER */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.container-text { max-width: var(--container-text); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 32px; }

/* NAVIGATION */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(26,58,42,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--g);
  text-transform: uppercase;
}
.brand .tm { color: var(--gd); }
.brand-sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mg);
  text-transform: none;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 19px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nv);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--g); }
.nav-links a.active { color: var(--g); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gd);
}
.nav-cta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cr);
  background: var(--g);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.3s var(--ease);
}
.nav-cta:hover { background: var(--nv); color: var(--cr); }

/* DROPDOWN */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -16px;
  background: var(--cr);
  border: 1px solid rgba(26,58,42,0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-width: 320px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--ease);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--nv);
  border: none;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: rgba(26,58,42,0.04); color: var(--g); }
.dropdown a span { display: block; font-size: 11px; color: var(--mg); margin-top: 2px; text-transform: none; letter-spacing: 0; }
.dropdown-section {
  padding: 14px 24px 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gd);
  font-weight: 600;
  border-top: 1px solid rgba(26,58,42,0.08);
  margin-top: 4px;
}
.dropdown-section:first-child { border-top: none; margin-top: 0; padding-top: 8px; }

/* FOUNDER PHOTO */
.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 0 auto var(--space-md);
  max-width: 920px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.testimonial {
  padding: 28px 28px 24px;
  background: var(--cr);
  border-left: 2px solid var(--gd);
  border-radius: 2px;
}
.testimonial p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--nv);
  font-style: italic;
  margin: 0 0 16px;
}
.testimonial .attr {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mg);
  font-style: normal;
}
@media (max-width: 920px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* STREAM CARDS (For Yourself landing, EPOCH Nutrition parent) */
.stream-groups { display: flex; flex-direction: column; gap: var(--space-xl); }
.stream-group { display: block; }
.stream-group-header { margin-bottom: var(--space-md); padding-bottom: 18px; border-bottom: 1px solid rgba(26,58,42,0.12); }
.stream-group-header .eyebrow { color: var(--gd); font-size: 12px; letter-spacing: 0.18em; margin-bottom: 12px; }
.stream-group-header .subhead { color: var(--mg); font-size: 17px; max-width: 780px; }
.stream-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.stream-cards:has(> :nth-child(1):last-child) { grid-template-columns: minmax(0, 720px); }
.stream-cards:has(> :nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }
.stream-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #FFFFFF;
  border: 1px solid rgba(26,58,42,0.1);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--nv);
  transition: all 0.25s var(--ease);
  height: 100%;
}
.stream-card:hover { border-color: var(--g); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.stream-card .eyebrow { color: var(--g); margin-bottom: 10px; }
.stream-card .display-sm { font-family: var(--serif); font-size: 22px; line-height: 1.25; color: var(--nv); margin-bottom: 12px; font-weight: 500; }
.stream-card .body-sm { color: var(--mg); flex: 1; margin-bottom: 18px; }
.stream-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--g); border-top: 1px solid rgba(26,58,42,0.08); padding-top: 14px; }
.stream-card-meta span:first-child { color: var(--mg); letter-spacing: 0.04em; }
.stream-card-meta .pathway-link { color: var(--g); font-weight: 500; }
@media (max-width: 920px) {
  .stream-cards { grid-template-columns: 1fr; }
  .hero-arrest {
    background-image:
      linear-gradient(175deg, rgba(15,36,25,0.90) 0%, rgba(15,36,25,0.80) 45%, rgba(15,36,25,0.70) 100%),
      url('../assets/images/lucknam-park-mobile.jpg');
    background-position: center 32%;
  }
  .hero-statement { font-size: clamp(33px, 8.5vw, 46px); }
}

/* STREAM META (price + format strip on stream pages) */
.stream-meta .eyebrow { font-size: 10px; letter-spacing: 0.18em; color: var(--mg); }
.stream-meta .display-sm { font-family: var(--serif); font-size: 26px; color: var(--g); font-weight: 500; }

/* HERO */
.hero { padding: var(--space-2xl) 0 var(--space-xl); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; }
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: var(--space-xl); }
}
.hero-eyebrow { margin-bottom: 24px; }
.hero-title { margin-bottom: 32px; }
.hero-title em { font-style: italic; color: var(--g); }
.hero-subhead { margin-bottom: 48px; max-width: 620px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-mission {
  padding: 32px;
  border-left: 2px solid var(--gd);
  background: rgba(201,168,76,0.04);
}
.hero-mission .eyebrow { margin-bottom: 12px; }
.hero-mission .quote { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.35; color: var(--g); margin-bottom: 8px; }
.hero-mission .caption { font-size: 12px; color: var(--mg); letter-spacing: 0.08em; text-transform: uppercase; }

/* ARRESTING DARK HERO */
.hero-arrest {
  background-color: var(--nv);
  background-image:
    linear-gradient(101deg, rgba(15,36,25,0.96) 0%, rgba(15,36,25,0.88) 36%, rgba(15,36,25,0.66) 68%, rgba(15,36,25,0.52) 100%),
    url('../assets/images/lucknam-park.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: var(--cr);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.hero-arrest::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(15,36,25,0.55) 100%);
  pointer-events: none;
}
.hero-arrest-inner { max-width: 940px; position: relative; z-index: 1; }
.hero-arrest .hero-eyebrow { color: var(--gd); margin-bottom: 36px; }
.hero-question {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cr);
  margin-bottom: 38px;
}
.hero-question em { font-style: italic; color: var(--gd); display: block; }
.hero-subhead-arrest {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.65;
  color: rgba(245,241,234,0.82);
  max-width: 700px;
  margin-bottom: 24px;
}
.hero-bridge {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--cr);
  max-width: 660px;
  margin-bottom: 44px;
}

/* LIGHT BUTTON VARIANTS (for dark backgrounds) */
.btn-primary-light { background: var(--gd); color: var(--nv); }
.btn-primary-light:hover { background: var(--cr); }
.btn-arrow-light {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--cr);
}
.btn-arrow-light::after { content: '\2192'; transition: transform 0.3s var(--ease); }
.btn-arrow-light:hover { color: var(--gd); }
.btn-arrow-light:hover::after { transform: translateX(4px); }

/* RHETORICAL QUESTIONS COMPONENT */
.questions-band { margin-top: var(--space-md); }

/* ROTATING QUESTIONS */
.rotator { position: relative; }
.rotator-item {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.rotator-item.active { opacity: 1; pointer-events: auto; }
.rotator-sizer { visibility: hidden; }

.hero-rotator-wrap { margin: 30px 0 34px; }
.hero-rotator {
  min-height: 1.3em;
}
.hero-rotator .rotator-item,
.hero-rotator .rotator-sizer {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.25;
  color: var(--gd);
}

.question-rotator-section { text-align: center; }
.question-rotator {
  min-height: 2.6em;
  max-width: 760px;
  margin: 0 auto;
}
.question-rotator .rotator-item,
.question-rotator .rotator-sizer {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cr);
}
.question-rotator .rotator-item em { font-style: italic; color: var(--gd); }

.hero-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cr);
  margin-bottom: 4px;
}
.hero-statement em { font-style: italic; color: var(--gd); }

.question-row {
  padding: 34px 0;
  border-top: 1px solid rgba(26,58,42,0.14);
}
.question-row:last-child { border-bottom: 1px solid rgba(26,58,42,0.14); }
.question-observation {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mg);
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}
.question-observation::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 1px;
  background: var(--gd);
}
.question-ask {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(23px, 3.3vw, 37px);
  line-height: 1.24;
  color: var(--nv);
  letter-spacing: -0.01em;
}
.question-ask em { font-style: italic; color: var(--g); }
.section-dark .question-row { border-color: rgba(245,241,234,0.16); }
.section-dark .question-ask { color: var(--cr); }
.section-dark .question-ask em { color: var(--gd); }
.section-dark .question-observation { color: var(--st); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-primary { background: var(--g); color: var(--cr); }
.btn-primary:hover { background: var(--nv); }
.btn-ghost { color: var(--g); border: 1px solid rgba(26,58,42,0.3); }
.btn-ghost:hover { border-color: var(--g); background: rgba(26,58,42,0.04); }
.btn-arrow { font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.btn-arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* SECTIONS */
.section { padding: var(--space-2xl) 0; }
.section-sm { padding: var(--space-xl) 0; }
.section-tinted { background: linear-gradient(180deg, var(--cr) 0%, #EFE9DC 100%); }
.section-dark { background: var(--nv); color: var(--cr); }
.section-dark .display-md, .section-dark .headline { color: var(--cr); }
.section-dark .subhead { color: var(--gd); }
.section-dark .body, .section-dark .body-lg { color: rgba(245, 241, 234, 0.85); }

.section-header { margin-bottom: var(--space-lg); }
.section-header.centered { text-align: center; }
.section-header.centered .subhead { margin-left: auto; margin-right: auto; max-width: 680px; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header .display-md, .section-header .display-sm { margin-bottom: 20px; }
.section-header .subhead { max-width: 720px; }

/* PATHWAY CARDS */
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pathway-grid { grid-template-columns: repeat(4, 1fr); }
}
.pathway-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(26,58,42,0.08);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pathway-card:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
  border-color: rgba(201,168,76,0.4);
}
.pathway-card .eyebrow { margin-bottom: 16px; }
.pathway-card .headline { margin-bottom: 16px; min-height: 0; }
.pathway-card .body-sm { margin-bottom: 32px; flex-grow: 1; }
.pathway-card .pathway-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--g);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}
.pathway-card .pathway-link::after { content: '→'; transition: transform 0.3s var(--ease); }
.pathway-card:hover .pathway-link::after { transform: translateX(6px); }

/* PILLAR / FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 780px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 64px 56px; }
}
@media (min-width: 1100px) {
  .feature-grid.three { grid-template-columns: repeat(3, 1fr); }
}
.feature {
  position: relative;
  padding-left: 64px;
}
.feature .feature-num {
  position: absolute;
  left: 0;
  top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  color: var(--gd);
  line-height: 1;
}
.feature .headline { margin-bottom: 16px; }
.feature .body-sm { color: var(--mg); }

/* QUOTE BLOCKS */
.quote-block {
  padding: var(--space-lg) 0;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.quote-block .quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.3;
  color: var(--g);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.quote-block .quote-attr {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mg);
}

/* COMPACT QUOTE INLINE */
.quote-inline {
  border-left: 3px solid var(--gd);
  padding: 20px 0 20px 28px;
  margin: var(--space-md) 0;
  max-width: 760px;
}
.quote-inline .quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--g);
  margin-bottom: 10px;
}
.quote-inline .quote-attr {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mg);
}

/* SPLIT SECTIONS */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 920px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .split.narrow-text { grid-template-columns: 5fr 7fr; }
}
.split-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--g) 0%, var(--nv) 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.split-text .eyebrow { margin-bottom: 20px; }
.split-text .display-sm { margin-bottom: 24px; }
.split-text .body-lg { margin-bottom: 32px; }

/* MISSION BANNER (Foundation) */
.mission-banner {
  background: var(--g);
  color: var(--cr);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.mission-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.mission-banner .container { position: relative; }
.mission-banner .eyebrow { color: var(--gd); margin-bottom: 20px; }
.mission-banner .display-sm { color: var(--cr); margin-bottom: 28px; max-width: 800px; }
.mission-banner .body-lg { color: rgba(245, 241, 234, 0.85); max-width: 760px; margin-bottom: 36px; }
.mission-banner .btn-ghost { color: var(--gd); border-color: rgba(201,168,76,0.5); }
.mission-banner .btn-ghost:hover { background: rgba(201,168,76,0.1); border-color: var(--gd); }

/* FOOTER */
.footer {
  background: var(--nv);
  color: var(--cr);
  padding: var(--space-xl) 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: var(--space-lg);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-md); }
}
.footer .brand-block .brand { color: var(--cr); display: block; margin-bottom: 12px; }
.footer .brand-block .brand-sub { color: var(--gd); font-style: italic; }
.footer .brand-block .body-sm { color: rgba(245, 241, 234, 0.7); max-width: 360px; margin-top: 20px; }
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a {
  font-size: 14px;
  color: rgba(245, 241, 234, 0.75);
  transition: color 0.3s var(--ease);
}
.footer ul li a:hover { color: var(--gd); }
.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12px;
  color: rgba(245, 241, 234, 0.5);
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-tm {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.4);
  margin-top: 24px;
  max-width: 100%;
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: all 0.7s var(--ease-out); }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }

/* AUDIENCE TILE GRID (landing pathways) */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(26,58,42,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 720px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .audience-grid { grid-template-columns: repeat(4, 1fr); } }
.audience-tile {
  background: var(--cr);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease);
}
.audience-tile:hover { background: #FAF7F0; }
.audience-tile .eyebrow { margin-bottom: 18px; }
.audience-tile .headline { margin-bottom: 16px; }
.audience-tile .body-sm { margin-bottom: 28px; flex-grow: 1; }
.audience-tile .pathway-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--g);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.audience-tile .pathway-link::after { content: '→'; transition: transform 0.3s var(--ease); }
.audience-tile:hover .pathway-link::after { transform: translateX(4px); }

/* STATS BLOCK */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(26,58,42,0.12);
  border-bottom: 1px solid rgba(26,58,42,0.12);
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: left; }
.stat-figure {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--g);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--mg);
  max-width: 280px;
  line-height: 1.5;
}

/* DETAIL LIST */
.detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.detail-list li {
  padding-left: 32px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
}
.detail-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  color: var(--gd);
  line-height: 1;
}
.detail-list li strong { font-weight: 600; color: var(--nv); display: inline; }

/* CTA BAND */
.cta-band {
  padding: var(--space-xl) 0;
  background: var(--nv);
  color: var(--cr);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gd), transparent);
}
.cta-band .container { text-align: center; }
.cta-band .eyebrow { color: var(--gd); margin-bottom: 20px; }
.cta-band .display-sm { color: var(--cr); margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-band .subhead { color: rgba(245, 241, 234, 0.8); margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--gd); color: var(--nv); }
.cta-band .btn-primary:hover { background: #B89642; }

/* PAGE INTRO (for pages other than landing) */
.page-intro {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(180deg, rgba(245, 241, 234, 1) 0%, rgba(245, 241, 234, 0.5) 100%);
  border-bottom: 1px solid rgba(26,58,42,0.06);
}
.page-intro .eyebrow { margin-bottom: 24px; }
.page-intro .display-lg { margin-bottom: 32px; max-width: 920px; }
.page-intro .subhead { max-width: 720px; }

/* PROSE BLOCK (for content pages with reading flow) */
.prose-block { max-width: var(--container-text); margin: 0 auto; padding: var(--space-lg) 32px; }
.prose-block p { font-family: var(--sans); font-size: 17px; line-height: 1.75; color: var(--nv); margin-bottom: 24px; }
.prose-block p strong { font-weight: 600; }
.prose-block .body-lg { margin-bottom: 32px; }
.prose-block h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin: var(--space-lg) 0 24px;
  color: var(--nv);
  letter-spacing: -0.01em;
}
.prose-block h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  margin: var(--space-md) 0 16px;
  color: var(--g);
}
.prose-block .lede {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 24px;
  line-height: 1.45;
  color: var(--g);
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}

/* RESPONSIVE NAV (mobile) */
.menu-toggle { display: none; }
@media (max-width: 960px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cr); border-bottom: 1px solid rgba(26,58,42,0.08); flex-direction: column; gap: 0; padding: 12px 0; box-shadow: var(--shadow-card); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 32px; width: 100%; }
  .nav-links a.active::after { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; padding: 8px; }
  .nav-cta { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 24px; min-width: 0; background: transparent; }
}
