/* ============================================================
   AAIVF — Animated Concept
   Design tokens
   ============================================================ */
:root {
  --bg:            #0a0f1c;
  --bg-alt:        #0f172c;
  --bg-card:       #131d33;
  --ink:           #f4f1ea;
  --ink-muted:     rgba(244, 241, 234, 0.62);
  --ink-faint:     rgba(244, 241, 234, 0.38);
  --blue:          #4d7ea8;
  --blue-bright:   #6fa3d1;
  --red:           #d15b4f;
  --gold:          #d4af6a;
  --cream:         #eae6da;
  --line:          rgba(244, 241, 234, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; }

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

@media (max-width: 860px) {
  body { cursor: auto; }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(212, 175, 106, 0.5);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.cursor-ring.is-active {
  width: 56px; height: 56px;
  background: rgba(212, 175, 106, 0.08);
  border-color: var(--gold);
}
@media (max-width: 860px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 9998;
  transition: width .05s linear;
}

/* A true page-level layer, independent of the hero video's own box —
   fixed to the full viewport regardless of scroll position or screen
   size, instead of being confined to (and clipped by) .hero-media. */
#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  opacity: .35;
  pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.5rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo-mark {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .04em;
}
.logo-mark img {
  /* logo-icon.png is a cropped, non-square mark (114x84) — sizing to
     its real aspect ratio with a soft rounded-rect (not a circle) so
     nothing gets clipped at the edges the way a forced circle did. */
  height: 34px;
  width: auto;
  border-radius: 8px;
  background: var(--cream);
  padding: 4px 6px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  font-size: .8rem !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10, 15, 28, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .4s var(--ease), opacity .3s var(--ease);
  }
  .nav-links.is-open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: block; background: none; border: none; color: var(--ink);
    font-size: 1.5rem; cursor: pointer;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-media {
  /* Pinned to the viewport (desktop/landscape only — see the mobile
     override below) so it reads as a fixed backdrop: it stays put while
     .page-content scrolls up over it, instead of scrolling away with
     the hero section like a normal background image would. Sits above
     the particle canvas so the dots read as page wallpaper behind the
     video, not a texture drawn over the footage itself. */
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
/* Blurred, scaled-up duplicate of the same scene — fills any letterbox
   gap left by the un-cropped video so nothing behind it is ever a flat
   color, and no part of the source frame is ever lost. */
.hero-video-backdrop {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  filter: blur(50px) brightness(.35) saturate(1.2);
  transform: scale(1.15);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.4) saturate(1.15);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,28,0.55) 0%, rgba(10,15,28,0.25) 40%, rgba(10,15,28,0.85) 100%),
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(77,126,168,0.25), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(209,91,79,0.15), transparent 60%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 5rem;
}

/* Everything after the hero. Sits above the fixed video AND the
   page-level particle canvas in stacking order, and carries its own
   opaque background, so as the page scrolls, this whole block slides
   up and covers both like a curtain rather than either scrolling away
   with the hero. */
.page-content {
  position: relative;
  z-index: 4;
  background: var(--bg);
}

/* On narrow screens, stop overlaying text on the video entirely —
   letterboxing shrinks the visible frame, and large headline text on
   top of it just buries the subject and the wall logo. Stack instead:
   full, un-cropped video on top, text below on a plain background.
   Triggered by aspect ratio, not just width, so a phone in "Desktop
   site" mode (reports a wide viewport but is still physically
   portrait) still gets this layout instead of the cropped one. */
@media (max-width: 700px), (max-aspect-ratio: 4/5) {
  .hero {
    display: block;
    min-height: 0;
  }
  .hero-media {
    position: relative;
    inset: auto;
    /* Matches the source video's real 16:9 shot — sizing the box to the
       footage itself (instead of an arbitrary vh) means `contain` has
       no gap left to fill, so no blurred letterbox bars top or bottom. */
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .hero-video {
    object-fit: contain;
    filter: brightness(.75) saturate(1.15);
  }
  .hero::before { display: none; }
  .hero-content {
    padding: 2.5rem 0 3.5rem;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1.04;
  margin: 0 0 1.8rem;
  max-width: 15ch;
}
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero h1 .word span { display: inline-block; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 46ch;
  margin: 0 0 2.6rem;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid {
  background: var(--red);
  color: #fff;
}
.btn-solid::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
  z-index: -1;
}
.btn-solid:hover::before { transform: translateX(0); }
.btn-solid:hover { color: var(--bg); }
.btn-outline {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0;}
  40% { transform: scaleY(1); transform-origin: top; opacity: 1;}
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1;}
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0;}
}
@media (max-width: 700px), (max-aspect-ratio: 4/5) {
  .scroll-cue { display: none; }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  background: var(--bg);
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-faint);
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.ticker-track span::after { content: '✦'; color: var(--gold); font-size: .8rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: 8rem 0;
}
.section-alt { background: var(--bg-alt); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
}
.section-lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* ============================================================
   MISSION — reveal text
   ============================================================ */
.mission {
  padding: 10rem 0;
  text-align: center;
}
.mission-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.4;
  max-width: 20ch;
  margin: 0 auto;
}
.mission-text .mword { opacity: .16; transition: opacity .05s; }
.mission-text .mword.hi { opacity: 1; }
.mission-text em { color: var(--gold); font-style: italic; }

/* ============================================================
   PILLARS — interactive cards
   ============================================================ */
.pillars-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar-card {
  background: var(--bg);
  padding: 2.5rem 1.8rem;
  cursor: pointer;
  transition: background .4s var(--ease);
  position: relative;
}
.pillar-card:hover { background: var(--bg-card); }
.pillar-num {
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
}
.pillar-icon svg {
  width: 40px; height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  margin-bottom: 1.6rem;
}
.pillar-icon svg path, .pillar-icon svg circle, .pillar-icon svg rect {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.pillar-card.in-view .pillar-icon svg path,
.pillar-card.in-view .pillar-icon svg circle,
.pillar-card.in-view .pillar-icon svg rect { stroke-dashoffset: 0; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 .8rem;
}
.pillar-card p {
  font-size: .88rem;
  color: var(--ink-muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease);
  margin-top: 0;
}
.pillar-card.is-open p {
  max-height: 200px;
  opacity: 1;
  margin-top: .4rem;
}
.pillar-toggle {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem;
}
.pillar-toggle svg { width: 12px; height: 12px; transition: transform .3s var(--ease); stroke: currentColor; fill: none; stroke-width: 2; }
.pillar-card.is-open .pillar-toggle svg { transform: rotate(45deg); }

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VISION SPLIT
   ============================================================ */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vision-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.vision-panel__bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}
.vision-panel:hover .vision-panel__bg { transform: scale(1.08); }
.vision-panel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,15,28,0.94) 8%, rgba(10,15,28,0.45) 55%, rgba(10,15,28,0.1) 100%);
}
.vision-panel__content {
  position: relative;
  z-index: 1;
  padding: 3.2rem;
}
.vision-panel__content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: .5rem 0 1rem;
}
.vision-panel__content p {
  color: var(--ink-muted);
  font-size: .92rem;
  max-width: 38ch;
  margin: 0;
}
@media (max-width: 860px) {
  .vision-grid { grid-template-columns: 1fr; }
  .vision-panel { min-height: 420px; }
}

/* ============================================================
   PROGRAMS — parallax image cards
   ============================================================ */
.programs-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.program-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 460px;
}
.program-card__bg {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background-size: cover;
  background-position: center;
  transition: transform .1s linear;
}
.program-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,15,28,0.95) 10%, rgba(10,15,28,0.35) 55%, rgba(10,15,28,0.1) 100%);
}
.program-card__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.program-card:hover .program-card__content { transform: translateY(0); opacity: 1; }
.program-card__tag {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 .6rem;
}
.program-card p {
  color: var(--ink-muted);
  font-size: .9rem;
  max-width: 40ch;
}
@media (max-width: 860px) {
  .programs-grid { grid-template-columns: 1fr; }
  .program-card__content { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   BOARD — flip cards
   ============================================================ */
.board-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.board-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,28,0.93), rgba(10,15,28,0.88));
}
.board-section .container { position: relative; z-index: 1; }
.board-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.flip-card {
  perspective: 1400px;
  height: 320px;
}
.flip-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform .7s var(--ease);
  transform-style: preserve-3d;
}
.flip-card.is-flipped .flip-card-inner,
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 6px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}
.flip-front {
  background: var(--bg-card);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.flip-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--red));
  margin-bottom: 1.2rem;
}
.flip-front h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 .4rem;
}
.flip-front .role { font-size: .8rem; color: var(--ink-faint); letter-spacing: .04em; }
.flip-hint { margin-top: 1.4rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.flip-back {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-alt));
  border: 1px solid var(--gold);
  transform: rotateY(180deg);
  justify-content: center;
}
.flip-back .role { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.flip-back p { font-size: .82rem; color: var(--ink-muted); margin: 0; }

@media (max-width: 900px) {
  .board-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .board-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat-item:first-child { border-left: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: .5rem;
}
@media (max-width: 700px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
}

/* ============================================================
   DONATE CTA
   ============================================================ */
.donate-cta {
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,91,79,0.25), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: blobpulse 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes blobpulse {
  0%, 100% { scale: 1; opacity: .7; }
  50% { scale: 1.25; opacity: 1; }
}
.donate-cta .eyebrow, .donate-cta h2, .donate-cta p, .donate-cta .btn { position: relative; z-index: 1; }
.donate-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 auto 1.2rem;
  max-width: 16ch;
}
.donate-cta p { color: var(--ink-muted); max-width: 50ch; margin: 0 auto 2.4rem; }

.magnetic-btn { position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: .6rem;
}
.footer-brand p { color: var(--ink-muted); font-size: .9rem; max-width: 32ch; }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: .88rem;
  color: var(--ink-muted);
  margin-bottom: .6rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold); }

.program-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-cta { margin-top: 3rem; text-align: center; }

/* ============================================================
   INNER PAGES — shared across About / Board / Programs / Contact /
   Privacy / Terms / Donate / Site Verification
   ============================================================ */
.page-hero {
  padding: 11rem 0 5rem;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 1.2rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 1.2rem;
  max-width: 18ch;
}
.page-hero p {
  color: var(--ink-muted);
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.prose { color: var(--ink-muted); font-size: 1rem; line-height: 1.9; max-width: 68ch; }
.prose p { margin: 0 0 1.4rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); }
.prose a { color: var(--gold); text-decoration: underline; }

.inner-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .inner-grid { grid-template-columns: 1fr; }
}
.stat-box {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.stat-box:first-child { padding-top: 0; }
.stat-box__label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .4rem;
}
.stat-box__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

.goals-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.goal-item { background: var(--bg); padding: 2.2rem 1.6rem; }
.goal-item__num { color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1rem; }
.goal-item h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 .7rem; }
.goal-item p { font-size: .88rem; color: var(--ink-muted); margin: 0; }
@media (max-width: 900px) { .goals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .goals-grid { grid-template-columns: 1fr; } }

.inner-cta {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.inner-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.inner-cta__inner h2 { font-family: var(--font-display); font-size: 1.8rem; margin: 0 0 .5rem; }
.inner-cta__inner p { color: var(--ink-muted); margin: 0; }
.inner-cta__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Board — full bios, alternating layout */
.board-full-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}
.board-full-card:first-child { padding-top: 0; }
.board-full-card--reverse { grid-template-columns: 1fr 200px; }
.board-full-card--reverse .board-full-card__photo { order: 2; }
.board-full-card__photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--red));
}
.board-full-card__name { font-family: var(--font-display); font-size: 1.6rem; margin: 0 0 .3rem; }
.board-full-card .role {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.board-full-card p:not(.role) { color: var(--ink-muted); line-height: 1.85; margin: 0 0 1rem; }
@media (max-width: 700px) {
  .board-full-card, .board-full-card--reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .board-full-card--reverse .board-full-card__photo { order: 0; }
  .board-full-card__photo { margin: 0 auto; }
}

/* Programs — full detail blocks */
.program-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 0;
}
.program-detail--reverse .program-detail__image { order: 2; }
.program-detail__image img { border-radius: 4px; width: 100%; }
.program-detail__content h2 { font-family: var(--font-display); font-size: 1.8rem; margin: 0 0 1.2rem; }
.program-detail__content h4 { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin: 1.6rem 0 .6rem; }
.program-detail__content p { color: var(--ink-muted); line-height: 1.8; margin: 0; }
.program-detail__list { list-style: none; margin: 0; padding: 0; color: var(--ink-muted); font-size: .92rem; }
.program-detail__list li { padding-left: 1.4rem; position: relative; margin-bottom: .6rem; line-height: 1.6; }
.program-detail__list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
@media (max-width: 860px) {
  .program-detail, .program-detail--reverse { grid-template-columns: 1fr; }
  .program-detail--reverse .program-detail__image { order: 0; }
}

/* FAQ accordion — same click-to-expand interaction as .pillar-card */
.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item h4::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item.is-open h4::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--ink-muted);
  font-size: .92rem;
  line-height: 1.75;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease);
}
.faq-item.is-open p { max-height: 240px; opacity: 1; margin-top: .8rem; }

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info__items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.contact-info__item h4 { font-size: .95rem; margin: 0 0 .3rem; }
.contact-info__item a, .contact-info__item p { color: var(--ink-muted); font-size: .92rem; margin: 0; }
.contact-info__item a:hover { color: var(--gold); }
.contact-info__programs {
  margin-top: 2rem;
  padding: 1.6rem;
  background: var(--bg-card);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}
.contact-info__programs h4 { margin: 0 0 .5rem; font-size: .95rem; }
.contact-info__programs p { color: var(--ink-muted); font-size: .88rem; margin: 0 0 1rem; }

.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .8rem 1rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .92rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   REVEAL UTILITY (GSAP targets)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); }
