/* =========================================================
   FORGE — Prepare to Lead
   Trust-first nonprofit redesign · v3
   Aesthetic: Editorial serif hero · deep navy · cream · single red accent
   ========================================================= */

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; }
img, picture, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }

/* ----- Tokens ----- */
:root {
  --navy-1000: #060a1c;
  --navy-900: #0e1733;
  --navy-800: #1a244a;
  --navy-700: #2a3565;
  --navy-100: #e6e8f1;

  --cream-50:  #faf7f1;
  --cream-100: #f3ede1;
  --cream-200: #ebe3d1;

  --ink-900: #11131e;
  --ink-700: #2d3144;
  --ink-500: #5b6076;
  --ink-300: #9aa0b3;

  --red-600: #c8102e;     /* FORGE red */
  --red-700: #a8071f;
  --red-100: #f9dfe3;

  --gold-500: #b58a3a;    /* Subtle academy gold */

  /* Type scale (editorial) */
  --display: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  /* Aliases */
  --font-display: var(--display);
  --font-body: var(--sans);
  --font-mono: var(--mono);

  --fs-xs:   0.75rem;    /* 12 */
  --fs-sm:   0.875rem;   /* 14 */
  --fs-base: 1rem;       /* 16 */
  --fs-md:   1.125rem;   /* 18 */
  --fs-lg:   1.375rem;   /* 22 */
  --fs-xl:   1.75rem;    /* 28 */
  --fs-2xl:  2.25rem;    /* 36 */
  --fs-3xl:  3rem;       /* 48 */
  --fs-4xl:  4rem;       /* 64 */
  --fs-5xl:  5.25rem;    /* 84 */
  --fs-hero: clamp(3rem, 7vw, 6.5rem);

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 10rem;

  --maxw: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

/* ----- Base ----- */
body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--red-600); color: #fff; }

.serif { font-family: var(--display); }
.sans  { font-family: var(--sans); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ----- Eyebrow ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-600);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: currentColor;
}
.eyebrow--light { color: var(--cream-200); }
.eyebrow--ink { color: var(--ink-900); }

/* ----- Type utilities ----- */
.display-1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}
.display-2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.display-3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy-900);
}
.lede {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 56ch;
}
.kicker {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(14, 23, 51, 0.10);
}
.site-header__topstrip {
  background: var(--navy-1000);
  color: var(--cream-50);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-header__topstrip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  height: 36px;
}
.site-header__topstrip-row .left {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  color: rgba(247, 244, 233, 0.78);
}
.site-header__topstrip-row .left .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red-600);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.site-header__topstrip-row .right {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  color: rgba(247, 244, 233, 0.62);
}
.site-header__topstrip-row a {
  color: var(--cream-50);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.site-header__topstrip-row a:hover { color: var(--red-600); }
@media (max-width: 1100px) {
  .site-header__topstrip-row .hide-md { display: none; }
}
@media (max-width: 720px) {
  .site-header__topstrip { display: none; }
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  height: 140px;
}
@media (max-width: 720px) {
  .site-header__row { height: 100px; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
}
.brand__logo {
  height: 160px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .brand__logo { height: 92px; }
}
.brand__wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-left: 1px solid rgba(14, 23, 51, 0.18);
  padding-left: var(--s-4);
}
.brand__wordmark .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  color: var(--navy-900);
  line-height: 1.1;
}
.brand__wordmark .tag {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-600);
  font-weight: 500;
}
@media (max-width: 880px) { .brand__wordmark { display: none; } }
.site-header__nav-wrap {
  display: flex;
  align-items: center;
  gap: var(--s-7);
}
.nav {
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: 0.005em;
  padding: var(--s-2) 0;
  position: relative;
  transition: color 180ms ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 180ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}
.btn .arr {
  display: inline-block;
  transition: transform 240ms ease;
}
.btn:hover .arr { transform: translateX(4px); }

.btn--primary {
  background: var(--red-600);
  color: #fff;
}
.btn--primary:hover {
  background: var(--red-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.32);
}
.btn--dark {
  background: var(--navy-900);
  color: var(--cream-50);
}
.btn--dark:hover {
  background: var(--navy-1000);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(14, 23, 51, 0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--ghost:hover {
  background: var(--navy-900);
  color: var(--cream-50);
}
.btn--ghost-light {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(247, 244, 233, 0.5);
}
.btn--ghost-light:hover {
  background: var(--cream-50);
  color: var(--navy-900);
  border-color: var(--cream-50);
}
.btn--lg { height: 64px; padding: 0 36px; font-size: 0.875rem; }

/* Equal-width pair */
.btn-pair {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.btn-pair > .btn {
  flex: 0 0 240px;
}
@media (max-width: 520px) {
  .btn-pair > .btn { flex: 1 1 100%; }
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  background: var(--cream-50);
  overflow: hidden;
  padding-top: var(--s-8);
  padding-bottom: var(--s-7);
  isolation: isolate;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-7); }
}
.hero__copy { max-width: 720px; }
.hero__headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--navy-900);
  margin-top: var(--s-5);
}
.hero__headline em {
  font-style: italic;
  color: var(--red-600);
  font-weight: 700;
}
.hero__sub {
  margin-top: var(--s-6);
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-700);
}
.hero__ctas {
  margin-top: var(--s-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
}
.hero__ctas .btn { flex: 0 0 auto; min-width: 220px; }
@media (max-width: 520px) {
  .hero__ctas .btn { flex: 1 1 100%; min-width: 0; }
}

.hero__meta {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  border-top: 1px solid rgba(14, 23, 51, 0.14);
  padding-top: var(--s-5);
}
.hero__meta-item {
  padding-right: var(--s-4);
  border-right: 1px solid rgba(14, 23, 51, 0.08);
}
.hero__meta-item:last-child { border-right: none; }
@media (max-width: 720px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .hero__meta-item:nth-child(2) { border-right: none; }
}
.hero__meta-item .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  display: block;
}
.hero__meta-item .lab {
  margin-top: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  line-height: 1.35;
}

/* Hero mosaic — 8-scene editorial collage */
.hero__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
}
.hero__tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-1000);
  box-shadow: 0 14px 32px -16px rgba(6, 10, 28, 0.4);
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1), box-shadow 0.55s ease;
  isolation: isolate;
}
.hero__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1), filter 0.55s ease;
  filter: saturate(0.92) contrast(1.02);
}
.hero__tile figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0.5rem 0.65rem 0.55rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-50);
  background: linear-gradient(to top, rgba(6,10,28,0.92) 0%, rgba(6,10,28,0.55) 60%, rgba(6,10,28,0) 100%);
  font-weight: 600;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), opacity 0.45s ease;
}
.hero__tile::after {
  /* subtle navy duotone wash that lifts on hover */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(14,23,51,0.18) 0%, rgba(14,23,51,0.05) 60%, rgba(14,23,51,0) 100%);
  z-index: 1;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .hero__tile:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -18px rgba(6, 10, 28, 0.55); z-index: 3; }
  .hero__tile:hover img { transform: scale(1.05); filter: saturate(1.05) contrast(1.04); }
  .hero__tile:hover figcaption { transform: translateY(0); opacity: 1; }
  .hero__tile:hover::after { opacity: 0.3; }
}

/* Asymmetric grid placement — 4 cols x 3 rows, cadet 2x2 anchor center */
.hero__tile--1 { grid-column: 1 / span 1; grid-row: 1 / span 1; }   /* study */
.hero__tile--2 { grid-column: 2 / span 2; grid-row: 1 / span 1; }   /* football — wide top */
.hero__tile--3 { grid-column: 4 / span 1; grid-row: 1 / span 1; }   /* volleyball */
.hero__tile--4 { grid-column: 1 / span 1; grid-row: 2 / span 1; }   /* leadership tall left */
.hero__tile--5 { grid-column: 2 / span 2; grid-row: 2 / span 2; }   /* CADET — large anchor center 2x2 */
.hero__tile--6 { grid-column: 4 / span 1; grid-row: 2 / span 1; }   /* runner */
.hero__tile--7 { grid-column: 1 / span 1; grid-row: 3 / span 1; }   /* basic */
.hero__tile--8 { grid-column: 4 / span 1; grid-row: 3 / span 1; }   /* letter */

.hero__tile--anchor {
  box-shadow: 0 28px 60px -22px rgba(6, 10, 28, 0.55);
}
.hero__tile--anchor figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  padding: 0.75rem 0.9rem 0.85rem;
}

/* Tablet — simpler 3x3 with two doubles */
@media (max-width: 1100px) and (min-width: 721px) {
  .hero__mosaic { aspect-ratio: 1 / 1; gap: 6px; }
}

/* Mobile — reflow to 2 column, anchor tile spans both columns */
@media (max-width: 720px) {
  .hero__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, minmax(0, 1fr));
    aspect-ratio: 1 / 1.35;
    gap: 6px;
    max-width: 560px;
    margin: 0 auto;
  }
  .hero__tile--1 { grid-column: 1 / span 1; grid-row: 1 / span 1; }
  .hero__tile--2 { grid-column: 2 / span 1; grid-row: 1 / span 1; }
  .hero__tile--5 { grid-column: 1 / span 2; grid-row: 2 / span 2; }   /* anchor full width */
  .hero__tile--3 { grid-column: 1 / span 1; grid-row: 4 / span 1; }
  .hero__tile--4 { grid-column: 2 / span 1; grid-row: 4 / span 1; }
  .hero__tile--6 { grid-column: 1 / span 1; grid-row: 5 / span 1; }
  .hero__tile--7 { display: none; }   /* hide one on mobile to keep balance */
  .hero__tile--8 { grid-column: 2 / span 1; grid-row: 5 / span 1; }
  .hero__tile figcaption {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.55rem;
    padding: 0.35rem 0.5rem 0.45rem;
  }
}

/* Marquee strip — kept subtle, BELOW hero */
.marquee {
  background: var(--red-600);
  color: var(--cream-50);
  overflow: hidden;
  padding: var(--s-3) 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.marquee__track {
  display: flex;
  gap: var(--s-7);
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-7);
}
.marquee__track span::after {
  content: "★";
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  position: relative;
  top: -2px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ===================================================
   SECTION SHELL
   =================================================== */
.section {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}
.section--tight { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.section--dark {
  background: var(--navy-900);
  color: var(--cream-50);
}
.section--dark .display-2,
.section--dark .display-3 { color: var(--cream-50); }
.section--dark .lede { color: rgba(247, 244, 233, 0.78); }
.section--cream { background: var(--cream-100); }

.section-head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: var(--s-7);
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}
.section-head__intro .eyebrow { margin-bottom: var(--s-4); }
.section-head__body .lede { margin-top: var(--s-4); max-width: 60ch; }

/* Centered variant — used by 'What gets coached' and similar central headings */
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  justify-items: center;
  gap: var(--s-4);
}
.section-head--center .section-head__intro,
.section-head--center .section-head__body { max-width: 760px; margin: 0 auto; }
.section-head--center .section-head__body .lede { max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ===================================================
   OUTCOMES (3 promises)
   =================================================== */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(14, 23, 51, 0.18);
}
.outcomes--dark { border-top-color: rgba(247, 244, 233, 0.2); }
.outcomes--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .outcomes,
  .outcomes--two { grid-template-columns: 1fr; }
}
.outcome {
  padding: var(--s-8) var(--s-7) var(--s-9) 0;
  border-right: 1px solid rgba(14, 23, 51, 0.18);
  border-bottom: 1px solid rgba(14, 23, 51, 0.18);
}
@media (min-width: 900px) {
  .outcome + .outcome { padding-left: var(--s-7); }
}
.outcomes--dark .outcome {
  border-right-color: rgba(247, 244, 233, 0.2);
  border-bottom-color: rgba(247, 244, 233, 0.2);
}
.outcome:nth-child(3n) { border-right: none; }
@media (max-width: 900px) {
  .outcome { border-right: none; padding-right: 0; }
}
.outcome__num {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  color: var(--red-600);
  margin-bottom: var(--s-6);
  text-transform: uppercase;
}
.outcome h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-5);
  color: var(--navy-900);
}
.outcomes--dark .outcome h3 { color: var(--cream-50); }
.outcome p {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: var(--s-6);
}
.outcomes--dark .outcome p { color: rgba(247, 244, 233, 0.78); }
.outcome__proof {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--ink-900);
  border-top: 1px solid rgba(14,23,51,0.12);
  padding-top: var(--s-5);
  line-height: 1.6;
}
.outcomes--dark .outcome__proof {
  color: var(--cream-100);
  border-top-color: rgba(247,244,233,0.18);
}


/* ===================================================
   DIFFERENTIATOR (FORGE is / is not)
   =================================================== */
.diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(14,23,51,0.18);
}
@media (max-width: 880px) {
  .diff { grid-template-columns: 1fr; }
}
.diff__col {
  padding: var(--s-7) var(--s-6) var(--s-7) 0;
}
.diff__col + .diff__col {
  border-left: 1px solid rgba(14,23,51,0.18);
  padding-left: var(--s-6);
}
@media (max-width: 880px) {
  .diff__col + .diff__col { border-left: none; padding-left: 0; border-top: 1px solid rgba(14,23,51,0.18); }
}
.diff__col h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.012em;
  margin-bottom: var(--s-5);
  color: var(--navy-900);
}
.diff__col--is h3::before {
  content: "+";
  display: inline-block;
  color: var(--red-600);
  margin-right: var(--s-3);
  font-family: var(--sans);
}
.diff__col--not h3::before {
  content: "—";
  display: inline-block;
  color: var(--ink-500);
  margin-right: var(--s-3);
  font-family: var(--sans);
}
.diff__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-top: 1px solid rgba(14,23,51,0.1);
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--ink-900);
}
.diff__col--not .diff__list li { color: var(--ink-500); }
.diff__list li::before {
  content: "→";
  color: var(--red-600);
  font-family: var(--sans);
  font-weight: 700;
}
.diff__col--not .diff__list li::before { content: "×"; color: var(--ink-300); }
.diff__list li strong { color: var(--ink-900); font-weight: 600; }

/* ===================================================
   FOUNDERS
   =================================================== */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 880px) {
  .founders { grid-template-columns: 1fr; }
}
.founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.founder__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-100);
  position: relative;
}
.founder__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.05) contrast(1.02);
  transition: transform 500ms ease;
}
.founder:hover .founder__img img { transform: scale(1.02); }
.founder__role {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
}
.founder h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin-top: var(--s-2);
}
.founder__bio {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink-700);
  margin-top: var(--s-4);
}
.founder__link {
  margin-top: var(--s-4);
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  border-bottom: 1.5px solid var(--navy-900);
  padding-bottom: 4px;
  transition: color 200ms, border-color 200ms;
}
.founder__link:hover { color: var(--red-600); border-color: var(--red-600); }

/* ===================================================
   PROGRAM PILLARS (4)
   =================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(247,244,233,0.2);
}
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: var(--s-7) var(--s-5);
  border-right: 1px solid rgba(247,244,233,0.2);
  border-bottom: 1px solid rgba(247,244,233,0.2);
}
.pillar:nth-child(4n),
.pillars > .pillar:last-child { border-right: none; }
@media (max-width: 980px) {
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:nth-child(2n+1) { padding-right: var(--s-5); }
  .pillar:nth-child(2n) { padding-left: var(--s-5); border-left: 1px solid rgba(247,244,233,0.2); }
}
@media (max-width: 560px) {
  .pillar { border-right: none; padding: var(--s-6) 0; }
  .pillar:nth-child(2n) { padding-left: 0; border-left: none; }
}
.pillar__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 3rem;
  color: var(--red-600);
  line-height: 1;
  margin-bottom: var(--s-5);
}
.pillar h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.15;
  color: var(--cream-50);
  margin-bottom: var(--s-3);
  letter-spacing: -0.005em;
}
.pillar p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(247,244,233,0.72);
}

/* ===================================================
   QUOTE FEATURE
   =================================================== */
.quote-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .quote-feature { grid-template-columns: 1fr; } }
.quote-feature__quote blockquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  font-weight: 500;
}
.quote-feature__quote blockquote::before {
  content: "“";
  display: block;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--red-600);
  margin-bottom: var(--s-3);
}
.quote-feature__attrib {
  margin-top: var(--s-6);
  font-family: var(--mono);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  color: var(--ink-500);
}
.quote-feature__attrib strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--navy-900);
  font-size: var(--fs-base);
  letter-spacing: 0.01em;
  margin-bottom: 2px;
  text-transform: none;
}
.quote-feature__image {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-100);
}
.quote-feature__image img { width: 100%; height: 100%; object-fit: cover; }

/* Mobile: wrap quote-feature button row so buttons stack instead of overflowing */
@media (max-width: 720px) {
  .quote-feature__attrib { flex-wrap: wrap; }
  .quote-feature__attrib .btn { width: 100%; justify-content: center; }
  .cta-band__actions { flex-wrap: wrap; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
}

/* ===================================================
   CTA BAND
   =================================================== */
.cta-band {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: var(--s-9) 0;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--cream-50);
}
.cta-band h2 em {
  font-style: italic;
  color: var(--red-600);
  font-weight: 700;
}
.cta-band p {
  margin-top: var(--s-4);
  font-size: var(--fs-md);
  line-height: 1.55;
  color: rgba(247,244,233,0.78);
  max-width: 52ch;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: flex-start;
}
@media (max-width: 880px) { .cta-band__actions { align-items: stretch; } }

/* ===================================================
   ENDORSEMENT TILES
   =================================================== */
.endorse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
@media (max-width: 880px) { .endorse-grid { grid-template-columns: 1fr; } }
.endorse-card {
  background: var(--cream-50);
  border-radius: 4px;
  padding: var(--s-7) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  border-left: 3px solid var(--red-600);
  position: relative;
}
.section--cream .endorse-card { background: #fff; }
.endorse-card::before {
  content: "“";
  position: absolute;
  top: var(--s-3);
  right: var(--s-6);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--red-600);
  opacity: 0.18;
  font-style: italic;
  font-weight: 700;
}
.endorse-card__quote {
  font-family: var(--font-display);
  font-size: 1.4375rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
  font-weight: 500;
  color: var(--navy-900);
  font-style: italic;
}
.endorse-card__attrib {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  border-top: 1px solid rgba(14,23,51,0.12);
  padding-top: var(--s-5);
  margin-top: auto;
}
.endorse-card__badge {
  width: 48px; height: 48px;
  min-width: 48px; min-height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background: var(--navy-900);
  color: var(--cream-50);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
}
.endorse-card__who strong {
  display: block;
  font-family: var(--sans);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--navy-900);
}
.endorse-card__who span {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  color: var(--ink-500);
  margin-top: 2px;
  display: block;
}

/* ===================================================
   VIDEO FEATURE (KSWO)
   =================================================== */
.video-feature {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 980px) { .video-feature { grid-template-columns: 1fr; } }
.video-feature__copy h2 { margin-bottom: var(--s-4); }
.video-feature__meta {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}
.video-feature__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-900);
  border-bottom: 2px solid var(--red-600);
  padding-bottom: 6px;
  transition: color 200ms;
}
.video-feature__cta:hover { color: var(--red-600); }
.video-feature__frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-800);
  cursor: pointer;
  transition: transform 250ms ease;
}
.video-feature__frame:hover { transform: translateY(-2px); }
.video-feature__frame::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,23,51,0.5), rgba(14,23,51,0.2));
  z-index: 1;
}
.video-feature__frame img { width: 100%; height: 100%; object-fit: cover; }
.video-feature__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--red-600);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 14px 40px rgba(200,16,46,0.45);
  transition: transform 250ms ease;
}
.video-feature__frame:hover .video-feature__play { transform: scale(1.06); }
.video-feature__play svg { width: 32px; height: 32px; fill: currentColor; }

/* Editorial KSWO card variant — no stock image */
.video-feature__frame--editorial {
  background: linear-gradient(140deg, #0e1733 0%, #060a1c 70%, #0e1733 100%);
  display: block;
}
.video-feature__frame--editorial::before {
  background:
    radial-gradient(circle at 80% 20%, rgba(200,16,46,0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(200,16,46,0.10), transparent 50%);
}
.video-feature__frame--editorial .editorial-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cream-50);
}
.editorial-inner .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-50);
  align-self: flex-start;
  padding: 8px 14px;
  background: var(--red-600);
  border-radius: 999px;
}
.editorial-inner .badge .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}
.editorial-inner .quote-mark {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.7;
  color: var(--red-600);
  opacity: 0.22;
}
.editorial-inner .lower {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-5);
}
.editorial-inner .meta-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,233,0.7);
}
.editorial-inner .meta-stack .runtime {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 700;
  color: var(--cream-50);
  line-height: 1;
}
.editorial-inner .source-line {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,233,0.55);
  font-weight: 500;
}
/* Hide native play button inside editorial — we have our own play icon in lower-right */
.video-feature__frame--editorial .video-feature__play {
  inset: auto;
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  width: 72px; height: 72px;
  box-shadow: 0 14px 40px rgba(200,16,46,0.5);
}
.video-feature__frame--editorial .video-feature__play svg { width: 26px; height: 26px; }

/* ===================================================
   PRESS STRIP (near bottom)
   =================================================== */
.press {
  background: var(--cream-100);
  border-top: 1px solid rgba(14,23,51,0.08);
  border-bottom: 1px solid rgba(14,23,51,0.08);
  padding: var(--s-7) 0;
}
.press__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.press__label {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  color: var(--ink-500);
  text-transform: uppercase;
}
.press__logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--navy-900);
  letter-spacing: -0.005em;
}
.press__logo span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--navy-1000);
  color: rgba(247,244,233,0.7);
  padding: var(--s-9) 0 var(--s-6);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-7);
}
@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
.site-footer__brand img {
  height: 60px;
  background: var(--cream-50);
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: var(--s-5);
}
.site-footer__brand p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  max-width: 36ch;
}
.site-footer h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin-bottom: var(--s-4);
}
.site-footer ul li { padding: 4px 0; }
.site-footer a {
  font-size: var(--fs-sm);
  color: rgba(247,244,233,0.7);
  transition: color 180ms;
}
.site-footer a:hover { color: var(--red-600); }

.site-footer__bottom {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(247,244,233,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  justify-content: space-between;
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  color: rgba(247,244,233,0.5);
}
.site-footer__creds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
}
.site-footer__creds span::before {
  content: "•";
  margin-right: var(--s-2);
  color: var(--red-600);
}

/* ===================================================
   FLOATING DONATE
   =================================================== */
.float-donate {
  position: fixed;
  right: var(--s-5);
  bottom: var(--s-5);
  background: var(--red-600);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 38px rgba(200,16,46,0.4);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  transition: transform 200ms, box-shadow 200ms;
}
.float-donate:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(200,16,46,0.5); }
.float-donate__x {
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-left: 4px;
}

/* ===================================================
   MOBILE NAV TOGGLE
   =================================================== */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(14,23,51,0.18);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}
@media (max-width: 880px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 86px;
    left: 0; right: 0;
    background: var(--cream-50);
    padding: var(--s-5) var(--gutter);
    border-bottom: 1px solid rgba(14,23,51,0.1);
    gap: var(--s-3);
  }
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================
   UTIL
   =================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.divider-rule {
  height: 1px;
  background: rgba(14,23,51,0.18);
  border: none;
  margin: var(--s-7) 0;
}
.section--dark .divider-rule { background: rgba(247,244,233,0.18); }

/* ===================================================
   v3 PAGE HEROES — for non-home pages
   =================================================== */
.page-hero {
  background: var(--cream-100);
  padding: calc(var(--s-8) + 40px) 0 var(--s-7);
  border-bottom: 1px solid rgba(14,23,51,0.08);
}
.page-hero--dark {
  background: var(--navy-1000);
  color: var(--cream-50);
  border-bottom: none;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: end;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 5.6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: var(--s-4) 0 0;
}
.page-hero--dark .page-hero__title { color: var(--cream-50); }
.page-hero__title em { font-style: italic; color: var(--red-600); font-weight: 700; }
.page-hero__lede {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(14,23,51,0.78);
  max-width: 52ch;
  margin-top: var(--s-5);
}
.page-hero--dark .page-hero__lede { color: rgba(247, 244, 233, 0.82); }
@media (max-width: 880px) {
  .page-hero { padding: calc(var(--s-7) + 24px) 0 var(--s-7); }
  .page-hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ===================================================
   PROSE — for long-form body copy (about, bios, policies)
   =================================================== */
.prose {
  max-width: 68ch;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink-900);
}
.prose > * + * { margin-top: var(--s-5); }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -0.018em;
  line-height: 1.12;
  color: var(--navy-900);
  margin-top: var(--s-8);
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--navy-900);
  margin-top: var(--s-7);
}
.prose p { color: var(--ink-900); }
.prose strong { font-weight: 600; color: var(--navy-900); }
.prose em { font-style: italic; }
.prose a {
  color: var(--navy-900);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(14,23,51,0.4);
}
.prose a:hover { text-decoration-color: var(--red-600); color: var(--red-600); }
.prose ul, .prose ol {
  padding-left: 1.25rem;
}
.prose ul li, .prose ol li {
  margin-top: var(--s-3);
  line-height: 1.65;
}
.prose ul li::marker { color: var(--red-600); }
.prose blockquote {
  border-left: 3px solid var(--red-600);
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
  margin: var(--s-7) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--navy-900);
}

/* ===================================================
   TWO-COL CONTENT LAYOUT (prose + aside)
   =================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s-9);
  align-items: start;
}
@media (max-width: 980px) {
  .two-col { grid-template-columns: 1fr; gap: var(--s-7); }
}
.aside-card {
  background: var(--cream-100);
  border-radius: 4px;
  padding: var(--s-6);
  border-top: 3px solid var(--red-600);
}
.section--dark .aside-card {
  background: rgba(255,255,255,0.04);
  border-top-color: var(--red-600);
  color: var(--cream-50);
}
.aside-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--navy-900);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.01em;
}
.section--dark .aside-card h4 { color: var(--cream-50); }
.aside-card ul { padding-left: 0; list-style: none; }
.aside-card li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(14,23,51,0.1);
  color: var(--ink-900);
}
.section--dark .aside-card li {
  color: rgba(247,244,233,0.85);
  border-bottom-color: rgba(247,244,233,0.12);
}
.aside-card li:last-child { border-bottom: none; }
.aside-card li strong {
  display: block;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.section--dark .aside-card li strong { color: var(--cream-50); }

/* ===================================================
   TIMELINE — used on About, Program, Apply
   =================================================== */
.timeline {
  display: grid;
  gap: var(--s-6);
  margin-top: var(--s-7);
}
.timeline__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-top: 1px solid rgba(14,23,51,0.14);
}
.section--dark .timeline__row { border-top-color: rgba(247,244,233,0.18); }
.timeline__row:last-child { border-bottom: 1px solid rgba(14,23,51,0.14); }
.section--dark .timeline__row:last-child { border-bottom-color: rgba(247,244,233,0.18); }
.timeline__when {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
  font-weight: 500;
  padding-top: 4px;
}
.timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--navy-900);
  margin: 0 0 var(--s-3);
}
.section--dark .timeline__title { color: var(--cream-50); }
.timeline__body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-900);
  max-width: 64ch;
}
.section--dark .timeline__body { color: rgba(247,244,233,0.82); }
@media (max-width: 720px) {
  .timeline__row { grid-template-columns: 1fr; gap: var(--s-3); padding: var(--s-5) 0; }
}

/* ===================================================
   TIER GRID — Donate page
   =================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (max-width: 980px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  text-align: left;
  background: var(--cream-50);
  border: 1px solid rgba(14,23,51,0.14);
  border-radius: 4px;
  padding: var(--s-6);
  cursor: pointer;
  font: inherit;
  color: var(--ink-900);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}
.tier:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.tier--selected, .tier:focus-visible {
  border-color: var(--red-600);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,16,46,0.16);
}
.tier__amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.tier__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-600);
  font-weight: 500;
  margin-top: var(--s-4);
  display: block;
}
.tier__body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-900);
  margin-top: var(--s-3);
}

/* ===================================================
   FORM — Apply page
   =================================================== */
.form {
  display: grid;
  gap: var(--s-5);
  max-width: 720px;
}
.form fieldset { border: none; padding: 0; margin: 0; display: grid; gap: var(--s-5); }
.form fieldset[disabled] { opacity: 0.55; pointer-events: none; }
.form__group { display: grid; gap: var(--s-3); }
.form__group--2 { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 640px) { .form__group--2 { grid-template-columns: 1fr; } }
.form label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-900);
  font-weight: 500;
}
.form input, .form select, .form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(14,23,51,0.24);
  border-radius: 3px;
  color: var(--ink-900);
  width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.14);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__hint {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(14,23,51,0.62);
  line-height: 1.5;
}
.form__actions {
  display: flex;
  gap: var(--s-4);
  align-items: center;
  margin-top: var(--s-4);
  flex-wrap: wrap;
}
.form-status {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  padding: var(--s-5);
  border-radius: 3px;
  background: var(--cream-100);
  border-left: 3px solid rgba(14,23,51,0.3);
  color: var(--ink-900);
  display: none;
}
.form-status--ok {
  display: block;
  border-left-color: var(--red-600);
  background: #fff;
}

/* ===================================================
   FAQ — accordion-light styling (no JS required)
   =================================================== */
.faq { display: grid; gap: 0; margin-top: var(--s-6); }
.faq__row {
  border-top: 1px solid rgba(14,23,51,0.14);
  padding: var(--s-5) 0;
}
.faq__row:last-child { border-bottom: 1px solid rgba(14,23,51,0.14); }
.faq__q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy-900);
  margin: 0 0 var(--s-3);
}
.faq__a {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-900);
  max-width: 70ch;
}

/* ===================================================
   BIO PAGE
   =================================================== */
.bio-hero {
  background: var(--navy-1000);
  color: var(--cream-50);
  padding: calc(var(--s-8) + 40px) 0 var(--s-7);
}
.bio-hero__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--s-9);
  align-items: end;
}
@media (max-width: 880px) {
  .bio-hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}
.bio-hero__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.02) saturate(0.96);
}
.bio-hero__role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-600);
  font-weight: 500;
}
.bio-hero__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 5.4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--cream-50);
  margin: var(--s-4) 0 var(--s-5);
}
.bio-hero__sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(247,244,233,0.82);
  max-width: 50ch;
}

/* ===================================================
   FLOATING DONATE — dismiss state
   =================================================== */
.float-donate--hidden { display: none !important; }

/* ===================================================
   HEADER SCROLLED STATE
   =================================================== */
.site-header--scrolled {
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(14,23,51,0.06);
}

/* ===================================================
   ENDORSEMENTS — extended (list view)
   =================================================== */
.endorse-list {
  display: grid;
  gap: var(--s-6);
}
.endorse-list .endorse-card { margin: 0; }

/* ===================================================
   CONTACT CARDS
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--cream-100);
  padding: var(--s-6);
  border-top: 3px solid var(--red-600);
  border-radius: 4px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.012em;
  color: var(--navy-900);
  margin: 0 0 var(--s-3);
}
.contact-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-900);
}
.contact-card a { color: var(--red-600); text-decoration: none; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }

/* ===================================================
   BLUEPRINT — dark, narrative timeline (homepage)
   =================================================== */
.section--cream-alt { background: var(--cream-100); }

.blueprint .blueprint__head {
  max-width: 920px;
  margin-bottom: var(--s-9);
}
.blueprint .blueprint__head h2 { color: var(--cream-50); margin-top: var(--s-3); }
.blueprint .blueprint__head .lede {
  color: rgba(247, 244, 233, 0.78);
  margin-top: var(--s-5);
  max-width: 760px;
}
.blueprint__stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(247, 244, 233, 0.18);
}
@media (max-width: 960px) { .blueprint__stages { grid-template-columns: 1fr; } }
.bp-stage {
  padding: var(--s-8) var(--s-7) var(--s-9) 0;
  border-right: 1px solid rgba(247, 244, 233, 0.18);
  border-bottom: 1px solid rgba(247, 244, 233, 0.18);
  position: relative;
}
.bp-stage + .bp-stage { padding-left: var(--s-7); }
.bp-stage:last-child { border-right: none; }
@media (max-width: 960px) {
  .bp-stage,
  .bp-stage + .bp-stage { border-right: none; padding: var(--s-8) 0; padding-left: 0; }
}
.bp-stage__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: var(--s-6);
}
.bp-stage__title {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.625rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--cream-50);
  margin: 0 0 var(--s-5);
}
.bp-stage__body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(247, 244, 233, 0.78);
  margin-bottom: var(--s-7);
}
.bp-stage__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(247, 244, 233, 0.14);
}
.bp-stage__list li {
  padding: var(--s-4) 0;
  border-bottom: 1px solid rgba(247, 244, 233, 0.10);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(247, 244, 233, 0.66);
  position: relative;
  padding-left: var(--s-4);
}
.bp-stage__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 8px;
  height: 1px;
  background: var(--red-600);
}
.blueprint__footer {
  margin-top: var(--s-9);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(247, 244, 233, 0.6);
  max-width: 920px;
  border-top: 1px solid rgba(247, 244, 233, 0.18);
  padding-top: var(--s-7);
}

/* ===================================================
   PILLARS LIGHT VARIANT (for cream background)
   =================================================== */
.pillars--light {
  border-top: 1px solid rgba(14, 23, 51, 0.16);
}
.pillars--light .pillar {
  border-right-color: rgba(14, 23, 51, 0.16);
  border-bottom-color: rgba(14, 23, 51, 0.16);
}
.pillars--light .pillar h3 { color: var(--navy-900); }
.pillars--light .pillar p { color: var(--ink-900); }
@media (max-width: 980px) {
  .pillars--light .pillar:nth-child(2n) { border-left-color: rgba(14, 23, 51, 0.16); }
}

/* ===================================================
   JOURNEY (3-stage proof tiles)
   =================================================== */
.journey { padding-top: var(--s-9); padding-bottom: var(--s-10); }
.journey__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-8);
}
.journey__tile {
  display: flex;
  flex-direction: column;
  background: var(--cream-50);
  border: 1px solid rgba(14, 23, 51, 0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.journey__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(14, 23, 51, 0.25);
}
.journey__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-1000);
}
.journey__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.journey__tile:hover .journey__img img {
  transform: scale(1.04);
  filter: saturate(1);
}
.journey__tile figcaption {
  padding: var(--s-6) var(--s-6) var(--s-7);
}
.journey__stage {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-600);
  display: block;
  margin-bottom: var(--s-3);
}
.journey__tile h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--s-4);
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.journey__tile p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-900);
  margin: 0;
}
@media (max-width: 900px) {
  .journey__grid {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
}

/* ===================================================
   CRITIQUE-PASS REFINEMENTS (top designer review)
   =================================================== */

/* Brand eyebrow — tighter, more confident than the journalistic default */
.eyebrow--brand {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-600);
  font-weight: 500;
  position: relative;
  padding-left: 1.75rem;
}
.eyebrow--brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--red-600);
}

/* Display-1 — the BIG promise heading, bigger and more emotional than display-2 */
.display-1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 1.6rem + 3.6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 0;
}
.display-1 em, .display-1 i {
  font-style: italic;
  font-weight: 700;
  color: var(--red-600);
}
.display-1 .text-accent {
  color: var(--red-600);
  font-style: italic;
  font-weight: 700;
}

/* Values strip — replaces the loud marquee with a calm value bar */
.values-strip {
  background: var(--navy-1000);
  border-top: 1px solid rgba(247, 244, 233, 0.08);
  border-bottom: 1px solid rgba(247, 244, 233, 0.08);
  padding: var(--s-6) 0;
}
.marquee + .section--promise { padding-top: var(--s-10); }
.values-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--s-4), 2vw, var(--s-6));
  flex-wrap: wrap;
}
.values-strip__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-600);
  font-weight: 500;
  padding-right: var(--s-3);
  border-right: 1px solid rgba(247, 244, 233, 0.18);
}
.values-strip__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1rem, 0.8rem + 0.5vw, 1.25rem);
  color: var(--cream-50);
  letter-spacing: -0.01em;
}
.values-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  flex: 0 0 auto;
}
@media (max-width: 720px) {
  .values-strip__label { display: none; }
}

/* Section that follows values strip — extra breathing room above */
.section--promise {
  padding-top: var(--s-11);
}

/* Journey tiles — taller portrait aspect for more editorial weight */
.journey__img {
  aspect-ratio: 5 / 6;
}
.journey__tile figcaption {
  padding: var(--s-7) var(--s-6) var(--s-8);
}
.journey__tile h3 {
  font-style: italic;
  font-weight: 700;
}
.journey__stage {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.journey__stage::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--red-600);
}

/* Footer — warmth + closing line */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: "Prepare to lead.";
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream-50);
  padding: var(--s-9) 0 var(--s-8);
  border-bottom: 1px solid rgba(247, 244, 233, 0.12);
  margin: 0 auto var(--s-8);
  max-width: var(--container-w, 1280px);
  padding-left: var(--s-6);
  padding-right: var(--s-6);
}

@media (max-width: 720px) {
  .site-footer::before {
    font-size: 1.875rem;
    padding-top: var(--s-7);
    padding-bottom: var(--s-6);
  }
}
