/* ════════════════════════════════════════════════════════════════
   LEGION XII — Full Brand Stylesheet
   Fonts: Trajan Sans Pro (custom) · EB Garamond (body)
   Palette: Navy deep · Crimson red · Gold · Parchment white
   Motifs: Cross potent pattern · Heraldic weight · Roman gravitas
═════════════════════════════════════════════════════════════════= */

/* ── CUSTOM FONTS ────────────────────────────────────────────── */
@font-face {
  font-family: 'TrajanSans';
  src: url('TrajanSansPro-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TrajanSans';
  src: url('TrajanSansPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Google font for body copy */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  /* Brand palette */
  --navy:           #1a1e2e;
  --navy-deep:      #0e1118;
  --navy-mid:       #232840;
  --crimson:        #8B1A1A;
  --crimson-bright: #C0392B;
  --crimson-hover:  #9B2335;
  --gold:           #C9A84C;
  --gold-light:     #E4C97A;
  --gold-muted:     #8A6F30;
  --parchment:      #F5F0DC;
  --white:          #FFFFFF;

  /* Semantic tokens */
  --color-bg:        var(--navy-deep);
  --color-surface:   var(--navy);
  --color-surface-2: var(--navy-mid);
  --color-text:      var(--parchment);
  --color-text-muted: color-mix(in oklch, var(--parchment) 88%, transparent);
  --color-text-faint: color-mix(in oklch, var(--parchment) 65%, transparent);
  --color-border:    color-mix(in oklch, var(--parchment) 10%, transparent);
  --color-gold:      var(--gold);
  --color-crimson:   var(--crimson-bright);

  /* Fonts */
  --font-display: 'TrajanSans', 'Trajan Pro', 'Georgia', serif;
  --font-body:    'EB Garamond', 'Georgia', serif;

  /* Type scale */
  --text-xs:   clamp(0.72rem,  0.65rem + 0.2vw,  0.85rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.3vw,  1rem);
  --text-base: clamp(1.05rem,  0.95rem + 0.35vw, 1.2rem);
  --text-lg:   clamp(1.2rem,   1rem    + 0.8vw,  1.6rem);
  --text-xl:   clamp(1.6rem,   1.2rem  + 1.4vw,  2.4rem);
  --text-2xl:  clamp(2.2rem,   1.4rem  + 2.8vw,  4rem);
  --text-3xl:  clamp(3rem,     1.5rem  + 5vw,    6.5rem);
  --text-hero: clamp(4rem,     2rem    + 8vw,    9rem);

  /* Spacing */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;   --s16: 4rem;   --s20: 5rem;   --s24: 6rem; --s32: 8rem;

  /* Easing */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 180ms var(--ease-out);
  --t-med:  320ms var(--ease-out);

  /* Radii / shadows */
  --radius-sm: 3px; --radius-md: 6px; --radius-lg: 10px;
  --shadow-md: 0 4px 20px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 12px 48px oklch(0 0 0 / 0.55);
  --shadow-gold: 0 0 32px color-mix(in oklch, var(--gold) 28%, transparent);

  /* Layout */
  --max-w: 1180px;
  --max-narrow: 700px;
}

/* ── CROSS POTENT SVG PATTERN (data URI) ─────────────────────
   Cross potent: + cross with perpendicular cap bar on each arm.
   28-point polygon, all right-angle corners.                    */
:root {
  /* RED: trains section — crimson fill + dark stroke */
  --cross-pattern-red: url('./cross-potent.svg');
  /* DARK: navy sections — outline only, white semi-transparent */
  --cross-pattern-dark: url('./cross-potent.svg');
  --cross-pattern-gold: var(--cross-pattern-dark);
}

/* ── BASE RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

p, li { text-wrap: pretty; max-width: 68ch; }

::selection { background: color-mix(in oklch, var(--crimson) 35%, transparent); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up, .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container       { max-width: var(--max-w);      margin-inline: auto; padding-inline: clamp(var(--s6), 5vw, var(--s16)); }
.container--narrow { max-width: var(--max-narrow); margin-inline: auto; padding-inline: clamp(var(--s6), 5vw, var(--s16)); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.42s; }
.fade-up[data-delay="5"] { transition-delay: 0.54s; }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────────── */
.label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s3);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-top: var(--s4);
  font-style: italic;
}

.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--s5);
}

/* Cross potent inline glyph */
.cross-inline {
  font-size: 1em;
  line-height: 1;
  vertical-align: middle;
  color: var(--crimson-bright);
}
.cross-inline.gold { color: var(--gold); }
.cross-inline.dim  { color: var(--color-text-faint); }
.cross-inline.sm   { font-size: 0.8em; }

.cross-bullet {
  color: var(--gold);
  font-size: 1em;
  margin-right: var(--s2);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--s3) var(--s10);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 9999px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.btn--large { padding: var(--s3) var(--s8); font-size: var(--text-xs); }

.btn--primary {
  background: var(--crimson-bright);
  color: var(--white);
  border-color: var(--crimson-bright);
}
.btn--primary:hover {
  background: var(--crimson-hover);
  border-color: var(--crimson-hover);
  box-shadow: 0 4px 24px color-mix(in oklch, var(--crimson) 45%, transparent);
  transform: translateY(-1px);
}
.btn--primary:active { transform: none; box-shadow: none; }

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--s3) 0;
  transition: background var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklch, var(--navy-deep) 92%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--color-border);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(var(--s6), 5vw, var(--s16));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}

/* Logo image — real emblem */
.logo-emblem {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--parchment);
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.5rem, 0.65vw, 0.62rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--crimson-bright);
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.nav__links a,
.nav__links .nav__dropdown-toggle {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
  background: none;
  border: none;
  padding: 0;
}
.nav__links a:hover,
.nav__links .nav__dropdown-toggle:hover { color: var(--parchment); }

.nav__cta {
  background: transparent !important;
  color: var(--parchment) !important;
  padding: var(--s2) var(--s4) !important;
  border-radius: 0 !important;
  letter-spacing: 0.12em !important;
  transition: color var(--t-fast) !important;
}
.nav__cta:hover {
  background: transparent !important;
  color: var(--gold) !important;
  transform: none !important;
}

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--s2); }
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: var(--parchment); transition: transform var(--t-fast), opacity var(--t-fast); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s32) var(--s6) var(--s20);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__photo-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('./hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: blur(0.5px) brightness(0.88) saturate(1.3);
  transform: scale(1.08);
}

.hero__cross-pattern {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 38px 38px;
  opacity: 0.13;
}

.hero__gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%,   color-mix(in oklch, var(--crimson) 18%, transparent) 0%, transparent 65%),
    radial-gradient(ellipse 100% 100% at 50% 50%, color-mix(in srgb, var(--navy-deep) 50%, transparent) 20%, transparent 75%),
    linear-gradient(to bottom, rgba(14,17,24,0.38) 0%, rgba(26,30,46,0.18) 50%, rgba(14,17,24,0.48) 100%);
}

.hero__content {
  position: relative; z-index: 1;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero logo — real image, large and centered */
.hero-logo {
  width: clamp(140px, 18vw, 220px);
  height: clamp(140px, 18vw, 220px);
  object-fit: contain;
  margin-bottom: var(--s4);
  filter: drop-shadow(0 4px 32px oklch(0 0 0 / 0.6));
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: var(--s6);
}
.line-stop {
  display: block;
  font-size: var(--text-hero);
  color: var(--parchment);
  text-shadow:
    2px 2px 0px rgba(0,0,0,0.55),
    -1px -1px 0px rgba(0,0,0,0.35),
    0 0 20px rgba(0,0,0,0.4);
}
.line-drifting {
  display: block;
  font-size: var(--text-hero);
  color: var(--crimson-bright);
  text-shadow:
    2px 2px 0px rgba(0,0,0,0.55),
    -1px -1px 0px rgba(0,0,0,0.35),
    0 0 20px rgba(0,0,0,0.4);
}

.hero__rule {
  width: 40px;
  height: 3px;
  background: var(--gold-muted);
  margin-bottom: var(--s5);
  border-radius: 2px;
}

.hero__org {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--s5);
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--s8);
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.7);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s8);
}

/* ── Red Section Word-Rise Animation ── */
/* Wrap each line in .rise-wrap; the inner .rise-line slides up on scroll */
.rise-wrap {
  display: block;
  overflow: hidden;
  line-height: inherit;
  padding-top: 0.12em;
  padding-bottom: 0.18em;
  margin-top: -0.12em;
  margin-bottom: -0.18em;
}
.rise-line {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.rise-line.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Motto block inside trains section */
.trains__motto-block {
  margin-top: var(--s6);
  padding: var(--s4) var(--s5);
  border-left: 3px solid var(--gold);
  background: rgba(0,0,0,0.22);
  border-radius: 0 4px 4px 0;
}
.trains__motto-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
  opacity: 0.85;
}
.trains__motto-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--parchment);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.trains__motto-sub {
  font-size: 0.82rem;
  color: rgba(245,240,220,0.72);
  margin: 0;
  line-height: 1.6;
  max-width: 42ch;
}

.hero__motto {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

/* ── TRAINS MEN TO BE (red) ──────────────────────────────────── */
.trains {
  position: relative;
  background: var(--crimson);
  padding-block: clamp(var(--s16), 8vw, var(--s32));
  overflow: hidden;
}

.trains__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-red);
  background-size: 40px 40px;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 0.12;
}

.trains__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: center;
}

.trains__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: var(--s3);
  opacity: 0.85;
}

.trains__rule {
  width: 32px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--s5);
}

.trains__headline {
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--s8);
  line-height: 1.0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.6);
}

.trains__list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-bottom: var(--s8);
}

.trains__list li {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--parchment);
  text-shadow: none;
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  line-height: 1.5;
  max-width: none;
}

.trains__list em {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--gold-light);
}



.trains__closing {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.3;
  letter-spacing: 0.04em;
  max-width: none;
}

.trains__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trains__quote {
  position: relative; z-index: 1;
  background: color-mix(in oklch, var(--navy-deep) 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 25%, transparent);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--s8) var(--s8);
  backdrop-filter: blur(8px);
}

.trains__quote p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--parchment);
  line-height: 1.65;
  margin-bottom: var(--s5);
  max-width: none;
}

.trains__quote footer {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* ── FEAR GOD ONLY — bottom of site, matches screenshot ─────── */
.fear-god {
  position: relative;
  padding-block: clamp(var(--s20), 10vw, var(--s32));
  overflow: hidden;
  text-align: center;
  background: var(--navy-deep);
}

/* Crimson top stripe — exactly like the screenshot */
.fear-god__top-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--crimson-bright);
  z-index: 2;
}

/* Full cross-potent tile background */
.fear-god__cross-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 38px 38px;
  opacity: 0.13;
}

.fear-god__content {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}

.fear-god__cross {
  margin-bottom: var(--s2);
  filter: drop-shadow(0 2px 12px color-mix(in oklch, var(--crimson) 50%, transparent));
}

.fear-god__text {
  font-size: var(--text-3xl);
  color: var(--parchment);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.fear-god__latin {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: var(--s2);
}

.fear-god__url {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: var(--s2);
}

/* ── CHOICE SECTION ──────────────────────────────────────────── */
.choice {
  padding-block: clamp(var(--s16), 8vw, var(--s32));
  background: var(--navy);
  position: relative;
}
.choice::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
  opacity: 0.4;
}

.choice__header {
  text-align: center;
  margin-bottom: var(--s16);
}
.choice__header h2 {
  font-size: var(--text-2xl);
  color: var(--parchment);
}
.choice__sub {
  font-size: var(--text-base);
  color: rgba(245,240,220,0.92);
  max-width: 60ch;
  margin: var(--s4) auto 0;
  line-height: 1.7;
  font-style: italic;
}

.choice__columns {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: var(--s6);
  align-items: start;
}

.choice__col {
  padding: var(--s8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.choice__col--dark  { background: color-mix(in oklch, var(--navy-deep) 60%, transparent); }
.choice__col--light {
  background: color-mix(in oklch, var(--crimson) 10%, transparent);
  border-color: color-mix(in oklch, var(--crimson-bright) 28%, transparent);
}

.col-head {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.col-head h3 {
  font-size: var(--text-base);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--parchment);
}

.choice__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.choice__col li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--s5);
  position: relative;
  line-height: 1.6;
}
.choice__col--dark li::before { content: '—'; position: absolute; left: 0; color: var(--color-text-faint); }
.choice__col--light li::before { content: '✛'; position: absolute; left: 0; color: var(--gold); font-size: 0.8em; }

.choice__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--s16);
  gap: var(--s3);
}
.divider-line { width: 1px; flex: 1; background: var(--color-border); }
.divider-or {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  color: var(--crimson-bright);
  letter-spacing: 0.1em;
  padding: var(--s2) var(--s3);
  border: 1px solid color-mix(in oklch, var(--crimson-bright) 30%, transparent);
  border-radius: 9999px;
}

.choice__cta { text-align: center; margin-top: var(--s12); }

/* ── TESTIMONIAL ─────────────────────────────────────────────── */
.testimonial {
  padding-block: clamp(var(--s16), 7vw, var(--s24));
  background: var(--navy-deep);
}

.pull-quote {
  position: relative;
  padding: var(--s8) var(--s8) var(--s8) var(--s10);
  border-left: 3px solid var(--crimson-bright);
}

.quote-cross { margin-bottom: var(--s4); }

.pull-quote p {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--parchment);
  line-height: 1.55;
  max-width: 55ch;
  margin-bottom: var(--s6);
}

.pull-quote footer { display: flex; flex-direction: column; gap: var(--s1); }
.pull-quote footer strong {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.pull-quote footer span { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Pull-quote with photo layout */
.pull-quote--with-photo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--s8);
  padding: var(--s8);
}
.pull-quote--with-photo .pull-quote__content p {
  font-size: var(--text-base);
  line-height: 1.65;
  max-width: 48ch;
  min-width: 280px;
  margin-bottom: var(--s4);
}
.pull-quote__photo-wrap {
  flex-shrink: 0;
  width: clamp(180px, 25vw, 280px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--gold) 25%, transparent);
}
.pull-quote__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pull-quote__content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 520px) {
  .pull-quote--with-photo {
    flex-direction: column;
    gap: var(--s5);
  }
  .pull-quote__photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}

/* ── ROADMAP ─────────────────────────────────────────────────── */
.roadmap {
  padding-block: clamp(var(--s16), 8vw, var(--s32));
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.roadmap__motto {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-align: center;
  margin-bottom: var(--s8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
}

.roadmap__header { text-align: center; margin-bottom: var(--s20); }
.roadmap__header h2 { font-size: var(--text-2xl); }

.roadmap__track {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s8);
}

.roadmap__spine {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-muted) 10%, var(--gold-muted) 90%, transparent);
  opacity: 0.3;
  transform: translateX(-50%);
}

.roadmap__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s6);
  align-items: start;
}
.roadmap__item .roadmap__card { grid-column: 1; }
.roadmap__item .roadmap__node { grid-column: 2; justify-self: center; }
.roadmap__item--right .roadmap__card { grid-column: 3; }
.roadmap__item--right .roadmap__node { grid-column: 2; }

/* empty placeholder for alternating side */
.roadmap__item .roadmap__card::before      { display: none; }
.roadmap__item--right .roadmap__placeholder { grid-column: 1; }

.roadmap__node {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-muted);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1; position: relative;
}
.roadmap__node span {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.roadmap__card {
  background: var(--navy-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--s6) var(--s8);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.roadmap__card:hover {
  border-color: color-mix(in oklch, var(--gold) 35%, transparent);
  box-shadow: 0 4px 24px color-mix(in oklch, var(--gold) 8%, transparent);
}

.order-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s2);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.roadmap__card h3 { font-size: var(--text-xl); margin-bottom: var(--s2); color: var(--parchment); }
.order-sub { font-family: var(--font-body); font-size: var(--text-sm); color: var(--crimson-bright); font-style: italic; margin-bottom: var(--s4); }
.roadmap__card p:last-child { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

/* ── PATH SECTION ────────────────────────────────────────────── */
.path-section {
  position: relative;
  padding-block: clamp(var(--s16), 8vw, var(--s32));
  background: var(--navy-deep);
  text-align: center;
  overflow: hidden;
}

.path-section__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 38px 38px;
  opacity: 0.13;
}

.path-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%,
    color-mix(in oklch, var(--crimson) 12%, transparent), transparent 65%);
}

.path-section .container--narrow { position: relative; z-index: 1; }

.path-section__road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.path-cross { margin: 0 auto var(--s6); }
.path-headline { font-size: var(--text-2xl); color: var(--parchment); margin-bottom: var(--s8); }
.path-section p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 58ch; margin: 0 auto var(--s5);
  line-height: 1.78;
}
.path-closing {
  font-family: var(--font-display) !important;
  font-size: var(--text-lg) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: var(--parchment) !important;
  margin-top: var(--s6) !important;
  line-height: 1.4 !important;
}

/* ── IMPACT ──────────────────────────────────────────────────── */
.impact {
  padding-block: clamp(var(--s16), 7vw, var(--s24));
  background: var(--navy);
}
.impact__header { text-align: center; margin-bottom: var(--s12); }
.impact__header h2 { font-size: var(--text-2xl); }

.impact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s6);
  max-width: 760px;
  margin-inline: auto;
}

.impact__card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--s3);
  padding: var(--s8) var(--s6);
  background: var(--navy-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.impact__card:hover {
  border-color: color-mix(in oklch, var(--gold) 40%, transparent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.impact__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(201,168,76,0.35);
  display: block;
}
.impact__initials {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--gold);
  background: color-mix(in oklch, var(--gold) 8%, transparent);
}
.impact__card strong { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.08em; color: var(--parchment); }
.impact__card span  { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Story impact cards */
.impact__card--story {
  padding: var(--s6);
  gap: var(--s3);
}
.impact__photo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in oklch, var(--gold) 35%, transparent);
  flex-shrink: 0;
}
.impact__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.impact__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}
.impact__link {
  font-size: var(--text-sm);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast);
}
.impact__link:hover { color: var(--parchment); }

/* ── JOIN ────────────────────────────────────────────────────── */
.join {
  position: relative;
  padding-block: clamp(var(--s16), 8vw, var(--s32));
  background: var(--navy-deep);
  overflow: hidden;
}
.join__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 38px 38px;
  opacity: 0.13;
}
.join::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; z-index: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--crimson-bright), transparent);
  opacity: 0.35;
}
.join .container { position: relative; z-index: 2; }
.join__header { text-align: center; margin-bottom: var(--s16); }
.join__header h2 { font-size: var(--text-2xl); }

.steps { display: flex; flex-direction: column; gap: 0; max-width: 660px; margin-inline: auto; margin-bottom: var(--s16); }

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--s6);
  padding: var(--s6) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
  transition: border-color var(--t-fast);
}
.step:hover { border-bottom-color: color-mix(in oklch, var(--gold) 30%, transparent); }

.step__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: color-mix(in oklch, var(--parchment) 10%, transparent);
  line-height: 1;
  padding-top: var(--s1);
}
.step__body h3 { font-size: var(--text-lg); color: var(--parchment); margin-bottom: var(--s3); }
.step__body p  { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.7; }

.join__actions {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--s4);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--navy-deep);
  border-top: 1px solid var(--color-border);
  padding-block: var(--s16) var(--s8);
  overflow: hidden;
}
.footer__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 38px 38px;
  opacity: 0.13;
}
.footer .container { position: relative; z-index: 1; }

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s16);
  margin-bottom: var(--s12);
}
.footer__brand { display: flex; align-items: flex-start; gap: var(--s4); }
.footer__emblem {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
}
.footer__brand-text {
  display: flex; flex-direction: column; gap: var(--s1);
  padding-top: var(--s2);
}
.footer__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--parchment);
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--crimson-bright);
}
.footer__latin {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-faint);
  margin-top: var(--s1);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
}
.footer__nav div { display: flex; flex-direction: column; gap: var(--s3); }
.footer__nav strong {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s1);
}
.footer__nav a { font-size: var(--text-sm); color: var(--color-text-muted); transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--parchment); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s8);
  border-top: 1px solid var(--color-border);
  gap: var(--s4);
  flex-wrap: wrap;
}
.footer__bottom p {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-faint);
  max-width: none;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .trains__inner { grid-template-columns: 1fr; }
  .trains__right { display: none; } /* hide decorative on mobile */
  .choice__columns { grid-template-columns: 1fr; }
  .choice__divider { flex-direction: row; padding-top: 0; height: 40px; }
  .divider-line { flex: 1; width: auto; height: 1px; }
  .roadmap__item, .roadmap__item--right {
    grid-template-columns: 1fr;
  }
  .roadmap__item .roadmap__card  { grid-column: 1; }
  .roadmap__item .roadmap__node  { grid-column: 1; justify-self: start; }
  .roadmap__item--right .roadmap__card { grid-column: 1; }
  .roadmap__item--right .roadmap__node { justify-self: start; }
  .roadmap__spine { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: var(--s10); }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--navy-deep);
    z-index: 99; align-items: center; justify-content: center;
    gap: var(--s8); padding: var(--s8);
  }
  .nav__links.open a { font-size: var(--text-xl); color: var(--parchment); }
  .nav__links.open .nav__cta { font-size: var(--text-base) !important; padding: var(--s3) var(--s12) !important; }
  .nav__hamburger { display: flex; z-index: 100; }
  .nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__hamburger.open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .footer__nav { grid-template-columns: 1fr; }
  .trains__right { display: none; }
}

/* ── CHOICE SECTION — SIDE LINES ───────────────────────────────── */
/* 5 red lines LEFT (going up = anchored to top), different heights */
/* 6 gold lines RIGHT (going down = anchored to bottom, into next section) */

.choice {
  position: relative;
  overflow: visible;
}

/* Shared base for all pseudo-line elements */
.choice::before,
.choice::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

/* We use injected span elements for multiple lines per side */
.choice .choice-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.choice .choice-lines span {
  position: absolute;
  display: block;
  border-radius: 1px;
}

/* ── LEFT — 5 RED lines, anchored TOP (going up into section from top) ── */
.choice .choice-lines span:nth-child(1) {
  width: 1.5px;
  height: 42%;
  top: 0;
  left: 12px;
  background: var(--crimson-bright);
  opacity: 0.75;
}
.choice .choice-lines span:nth-child(2) {
  width: 1.5px;
  height: 28%;
  top: 0;
  left: 24px;
  background: var(--crimson-bright);
  opacity: 0.55;
}
.choice .choice-lines span:nth-child(3) {
  width: 1.5px;
  height: 55%;
  top: 0;
  left: 36px;
  background: var(--crimson-bright);
  opacity: 0.45;
}
.choice .choice-lines span:nth-child(4) {
  width: 1.5px;
  height: 18%;
  top: 0;
  left: 48px;
  background: var(--crimson-bright);
  opacity: 0.65;
}
.choice .choice-lines span:nth-child(5) {
  width: 1.5px;
  height: 35%;
  top: 0;
  left: 60px;
  background: var(--crimson-bright);
  opacity: 0.35;
}

/* ── RIGHT — 6 GOLD lines, anchored BOTTOM (going down into next section) ── */
.choice .choice-lines span:nth-child(6) {
  width: 1.5px;
  height: 48%;
  bottom: 0;
  right: 12px;
  background: var(--gold);
  opacity: 0.75;
}
.choice .choice-lines span:nth-child(7) {
  width: 1.5px;
  height: 30%;
  bottom: 0;
  right: 24px;
  background: var(--gold);
  opacity: 0.55;
}
.choice .choice-lines span:nth-child(8) {
  width: 1.5px;
  height: 58%;
  bottom: 0;
  right: 36px;
  background: var(--gold);
  opacity: 0.45;
}
.choice .choice-lines span:nth-child(9) {
  width: 1.5px;
  height: 22%;
  bottom: 0;
  right: 48px;
  background: var(--gold);
  opacity: 0.65;
}
.choice .choice-lines span:nth-child(10) {
  width: 1.5px;
  height: 40%;
  bottom: 0;
  right: 60px;
  background: var(--gold);
  opacity: 0.38;
}
.choice .choice-lines span:nth-child(11) {
  width: 1.5px;
  height: 15%;
  bottom: 0;
  right: 72px;
  background: var(--gold);
  opacity: 0.55;
}

/* ══════════════════════════════════════════════════
   PLAN TEASER (homepage — replaces full roadmap)
   ══════════════════════════════════════════════════ */
.plan-teaser {
  position: relative;
  background: var(--navy-deep);
  padding: clamp(var(--s16), 8vw, var(--s28)) var(--s6);
  overflow: hidden;
}
.plan-teaser__cross-bg {
  position: absolute; inset: 0;
  background-image: var(--cross-pattern-dark);
  background-size: 40px 40px;
  opacity: 0.08;
  pointer-events: none;
}
.plan-teaser__inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.plan-teaser__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--s5);
}
.plan-teaser__sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--parchment);
  opacity: 0.8;
  max-width: 56ch;
  margin: 0 auto var(--s10);
}
.plan-teaser__orders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s10);
}
.plan-teaser__order {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  background: color-mix(in oklch, var(--navy) 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 18%, transparent);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  padding: var(--s6) var(--s4);
}
.plan-teaser__order span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--gold);
}
.plan-teaser__order strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}
.plan-teaser__order em {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-style: italic;
  color: var(--parchment);
  opacity: 0.65;
  line-height: 1.4;
}
.plan-teaser__cta {
  display: inline-block;
}
@media (max-width: 700px) {
  .plan-teaser__orders { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .plan-teaser__orders { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   FAQ TEASER (homepage)
   ══════════════════════════════════════════════════ */
.faq-teaser {
  position: relative;
  background: var(--navy);
  padding: clamp(var(--s24), 12vw, 9rem) 0;
  overflow: hidden;
  border-top: 1px solid color-mix(in oklch, var(--gold) 15%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--gold) 15%, transparent);
}
.faq-teaser__cross-bg {
  display: none;
}
.faq-teaser__inner {
  text-align: center;
}
.faq-teaser__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--s8);
}
.faq-teaser__sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--parchment);
  opacity: 0.8;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto var(--s12);
}
.faq-teaser__preview {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
  max-width: 600px;
  margin: 0 auto var(--s16);
  text-align: left;
}
.faq-teaser__q {
  display: flex;
  align-items: center;
  gap: var(--s4);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--parchment);
  opacity: 0.9;
  background: transparent;
  border-left: 3px solid var(--crimson);
  padding: var(--s5) var(--s6);
  border-radius: 0;
  letter-spacing: 0.02em;
}
.faq-teaser__q--more {
  border-left-color: var(--gold);
  color: var(--gold);
  opacity: 0.7;
  font-style: italic;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════
   GET INVOLVED nav dropdown — same style as About Us
   ══════════════════════════════════════════════════ */
.nav__cta.nav__dropdown-toggle {
  background: none !important;
  color: var(--parchment) !important;
  border: none !important;
  padding: 0 !important;
  font-size: inherit !important;
}

/* ── IMPACT BAR ── */
.impact-bar {
  margin-top: 40px;
  border-top: 1px solid rgba(201,168,76,.25);
  padding-top: 32px;
}
.impact-bar__quotes {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.impact-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  padding: 0 36px;
}
.impact-bar__item:first-child {
  padding-left: 0;
}
.impact-bar__item:last-child {
  padding-right: 0;
}
.impact-bar__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(201,168,76,.4);
  flex-shrink: 0;
}
.impact-bar__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.impact-bar__quote {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--parchment);
  opacity: .85;
  font-style: italic;
  margin: 0;
  max-width: 100%;
}
.impact-bar__name {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
}
.impact-bar__divider {
  width: 1px;
  background: rgba(201,168,76,.2);
  align-self: stretch;
  flex-shrink: 0;
}
.impact-bar__cta {
  margin-top: 28px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.15);
  padding-top: 24px;
}
.impact-bar__link {
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--gold);
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s;
}
.impact-bar__link:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .impact-bar__quotes {
    flex-direction: column;
    gap: 24px;
  }
  .impact-bar__divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
  .impact-bar__item {
    padding: 0;
  }
}

/* ── Crisis / Why Section ── */
.crisis {
  background: var(--navy-deep);
  padding-block: clamp(var(--s10), 6vw, var(--s20));
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.crisis__inner {
  max-width: 72ch;
  text-align: center;
}
.crisis__label {
  color: var(--gold);
  margin-bottom: var(--s6);
}
.crisis__lines {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-bottom: var(--s8);
}
.crisis__line {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--parchment);
  line-height: 1.6;
  opacity: 0.88;
  margin: 0;
  max-width: none;
}
.crisis__line strong {
  color: var(--crimson-bright);
  font-style: italic;
}
.crisis__line--bold {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--parchment);
  opacity: 1;
}
.crisis__answer {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  max-width: none;
}
