/* ═══════════════════════════════════════════════════════════════
   COLLEGE VS CANCER — styles.css
   Design system derived from the CvC badge:
   deep forest field · cream ribbon · sage laurel · serif ring caps
═══════════════════════════════════════════════════════════════ */

/* ── SELF-HOSTED FONTS (no third-party requests) ── */
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-italic-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('assets/fonts/publicsans-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('assets/fonts/publicsans-italic-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── TOKENS ── */
:root {
  /* Palette — sampled from the badge */
  --forest-deep:   #222B1C;
  --forest:        #2C3726;
  --forest-soft:   #3A4830;
  --forest-line:   #46543B;
  --laurel:        #6C7A58;
  --laurel-text:   #59664A;   /* darkened for small text contrast on cream */
  --laurel-bright: #9AA87E;   /* accents on forest */
  --cream:         #F0EDDE;
  --cream-bright:  #F8F6EC;
  --cream-dim:     #E3DFCB;
  --cream-line:    #D8D3BC;
  --ink:           #242C1D;
  --ink-soft:      #4E5943;
  --ink-faint:     #7C8570;
  --error:         #9C3A2A;
  --error-bg:      #F6E7E2;

  /* Type */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Public Sans', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --max:   1160px;
  --pad-x: clamp(20px, 5vw, 56px);
  --sec-y: clamp(72px, 11vw, 128px);
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --shadow: 0 1px 2px rgba(34, 43, 28, 0.05), 0 10px 32px rgba(34, 43, 28, 0.08);
  --nav-h: 68px;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: var(--sans);
  font-weight: 410;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
main { display: block; }
section { scroll-margin-top: calc(var(--nav-h) + 12px); }
::selection { background: var(--laurel); color: var(--cream-bright); }

/* Focus — visible ring on every interactive element */
:focus-visible {
  outline: 2px solid var(--laurel-text);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-forest :focus-visible,
.forest-band :focus-visible { outline-color: var(--cream); }

/* Skip link */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--forest); color: var(--cream);
  padding: 10px 18px; border-radius: var(--r-sm);
  font-weight: 600; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 14px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 540;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.55rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 20px; }
h3 { font-size: 1.28rem; font-weight: 560; letter-spacing: -0.005em; }

/* Eyebrow — tracked serif caps, echoing the ring text on the badge */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 560;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--laurel-text);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--laurel);
}
.on-forest .eyebrow { color: var(--laurel-bright); }
.on-forest .eyebrow::before { background: var(--laurel-bright); }

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.19rem);
  color: var(--ink-soft);
  max-width: 58ch;
  text-wrap: pretty;
}

/* ── LAYOUT HELPERS ── */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.btn:active { transform: translateY(1px); }
.btn-forest, a.btn.btn-forest, .nav-links a.btn.btn-forest {
  background: var(--forest);
  color: var(--cream-bright);
}
.btn-forest:hover, .nav-links a.btn.btn-forest:hover { background: var(--forest-soft); color: var(--cream-bright); }
.btn-outline { border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream-bright); }
.btn-cream {
  background: var(--cream);
  color: var(--forest);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.btn-cream:hover { background: var(--cream-bright); }
.btn-cream-outline { border-color: rgba(240, 237, 222, 0.55); color: var(--cream); }
.btn-cream-outline:hover { border-color: var(--cream); background: rgba(240, 237, 222, 0.08); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: default; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(240, 237, 222, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-line);
}
.nav-inner {
  max-width: var(--max); height: 100%;
  margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-weight: 560; font-size: 1.06rem;
  letter-spacing: 0.01em; text-decoration: none; color: var(--ink);
  flex-shrink: 0;
}
.brand img { width: 40px; height: 40px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) {
  font-size: 0.92rem; font-weight: 500; text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.15s;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -5px;
  height: 1px; background: var(--laurel-text);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="true"]:not(.btn)::after { transform: scaleX(1); }
.nav-links a[aria-current="true"] { color: var(--laurel-text); }
.nav-links .btn { padding: 10px 22px; font-size: 0.9rem; }
#progress {
  position: absolute; left: 0; bottom: -1px;
  height: 2px; width: 0;
  background: var(--laurel);
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 0.22s, opacity 0.22s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--cream-bright);
  border-bottom: 1px solid var(--cream-line);
  padding: 10px var(--pad-x) 22px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 2px; text-decoration: none;
  color: var(--ink-soft); font-weight: 500;
  border-bottom: 1px solid var(--cream-dim);
}
.mobile-menu a:last-child { border-bottom: 0; color: var(--forest); font-weight: 700; }

/* ── HERO ── */
.hero {
  background:
    radial-gradient(1100px 640px at 76% 18%, rgba(74, 90, 60, 0.55) 0%, rgba(74, 90, 60, 0) 62%),
    linear-gradient(180deg, var(--forest) 0%, #28331F 100%);
  color: var(--cream);
  padding: calc(var(--nav-h) + clamp(44px, 6.5vw, 76px)) 0 clamp(56px, 7.5vw, 92px);
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero h1 {
  color: var(--cream-bright);
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 5.4vw, 4.15rem);
}
.hero h1 em { font-style: italic; font-weight: 480; color: var(--laurel-bright); }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.17rem);
  color: rgba(240, 237, 222, 0.82);
  max-width: 54ch;
  margin-bottom: 34px;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-note {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  font-size: 0.84rem; letter-spacing: 0.05em;
  color: rgba(240, 237, 222, 0.6);
}
.hero-note .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--laurel-bright); }

/* Ambient art — two faint rings + a breathing glow, barely there */
.hero-art { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ha-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 237, 222, 0.10);
}
.ha-1 {
  width: clamp(480px, 52vw, 800px);
  aspect-ratio: 1;
  right: -9%; top: -22%;
}
.ha-2 {
  width: clamp(560px, 62vw, 960px);
  aspect-ratio: 1;
  right: -15%; top: -32%;
  border-style: dashed;
  border-color: rgba(240, 237, 222, 0.07);
}
.ha-glow {
  position: absolute;
  width: clamp(420px, 48vw, 720px);
  aspect-ratio: 1;
  right: -4%; top: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 168, 126, 0.13) 0%, rgba(154, 168, 126, 0) 64%);
}
@media (prefers-reduced-motion: no-preference) {
  .ha-2 { animation: spin 240s linear infinite; }
  .ha-glow { animation: breathe 12s ease-in-out infinite alternate; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe {
  from { opacity: 0.75; transform: scale(1); }
  to   { opacity: 1;    transform: scale(1.06); }
}
/* Hero giving card */
.hero-card-wrap { position: relative; }
.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(58, 72, 48, 0.92) 0%, rgba(46, 58, 39, 0.92) 100%);
  border: 1px solid rgba(240, 237, 222, 0.16);
  border-radius: var(--r-lg);
  padding: clamp(26px, 2.6vw, 38px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero-card::before {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(240, 237, 222, 0.08);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-card-wrap { animation: heroFloat 9s ease-in-out infinite alternate; }
}
@keyframes heroFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-9px); }
}
.hc-head {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--serif);
  font-size: 0.8rem; font-weight: 560;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--laurel-bright);
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(240, 237, 222, 0.12);
}
.hc-row {
  display: grid; grid-template-columns: 76px 1fr; gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(240, 237, 222, 0.09);
}
.hc-amt {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 540;
  color: var(--cream-bright);
}
.hc-desc { font-size: 0.9rem; line-height: 1.55; color: rgba(240, 237, 222, 0.72); }
.hc-cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px;
  padding: 13px 18px;
  background: var(--cream);
  color: var(--forest);
  border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.16s, transform 0.16s;
}
.hc-cta:hover { background: var(--cream-bright); transform: translateY(-1px); }

/* The word "alone" gets a hairline underline that draws in */
.hero h1 em { position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 2%; right: 4%; bottom: 0.04em;
  height: 1px;
  background: var(--laurel-bright);
  transform: scaleX(0);
  transform-origin: left;
}
@media (prefers-reduced-motion: no-preference) {
  .loaded .hero h1 em::after {
    transition: transform 0.9s cubic-bezier(0.6, 0, 0.2, 1) 1s;
    transform: scaleX(1);
  }
}

/* Load-in choreography */
.au { opacity: 0; transform: translateY(18px); }
.hero-badge.au { transform: translateY(0) scale(0.96); }
@media (prefers-reduced-motion: no-preference) {
  .loaded .au {
    opacity: 1; transform: none;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .loaded .d1 { transition-delay: 0.08s; }
  .loaded .d2 { transition-delay: 0.18s; }
  .loaded .d3 { transition-delay: 0.28s; }
  .loaded .d4 { transition-delay: 0.38s; }
  .loaded .d5 { transition-delay: 0.22s; }
}
@media (prefers-reduced-motion: reduce) {
  .au { opacity: 1; transform: none; }
}
/* ── DIVIDER (hero → mission) ── */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  padding: clamp(38px, 5.5vw, 56px) 0 0;
  color: var(--laurel);
}
.divider span { width: min(110px, 24vw); height: 1px; background: var(--cream-line); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in {
    opacity: 1; transform: none;
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .stagger > * { opacity: 0; transform: translateY(20px); }
  .stagger.in > * {
    opacity: 1; transform: none;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
  .stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
  .stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
  .stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
  .stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1; transform: none; }
}

/* ── MISSION ── */
.values { display: grid; gap: 26px; margin-top: 36px; }
.value-row { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start; }
.value-leaf { color: var(--laurel); margin-top: 5px; }
.value-row h3 { margin-bottom: 5px; }
.value-row p { color: var(--ink-soft); font-size: 0.99rem; }

.promise-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}
.promise-card::before {
  /* oversized watermark ribbon */
  content: '';
  position: absolute; right: -46px; bottom: -60px;
  width: 230px; height: 300px;
  background: url('assets/ribbon-mark.svg') no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.promise-quote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  font-weight: 480;
  line-height: 1.4;
  color: var(--cream-bright);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.promise-source {
  font-size: 0.84rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--laurel-bright);
  margin-bottom: 34px;
}
.promise-list { display: grid; gap: 13px; border-top: 1px solid var(--forest-line); padding-top: 26px; }
.promise-list li {
  list-style: none;
  display: grid; grid-template-columns: 20px 1fr; gap: 12px;
  font-size: 0.96rem; color: rgba(240, 237, 222, 0.85);
}
.promise-list svg { color: var(--laurel-bright); margin-top: 4px; }

/* ── PROGRAMS ── */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 52px);
}
.section-head h2 { margin-bottom: 0; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 22px;
}
.prog-card {
  background: var(--cream-bright);
  border: 1px solid var(--cream-line);
  border-top: 3px solid var(--laurel);
  border-radius: var(--r-md);
  padding: 30px 28px 28px;
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.22s;
}
@media (prefers-reduced-motion: no-preference) {
  .prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
}
.prog-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream);
  border: 1px solid var(--cream-line);
  color: var(--forest);
  margin-bottom: 20px;
}
.prog-card h3 { margin-bottom: 9px; }
.prog-card p { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 18px; }
.prog-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--laurel-text);
  background: var(--cream);
  border: 1px solid var(--cream-line);
  padding: 5px 12px; border-radius: 100px;
}

/* ── YEAR ONE (forest band) ── */
.forest-band {
  background: var(--forest);
  color: var(--cream);
}
.forest-band h2 { color: var(--cream-bright); }
.forest-band .lead { color: rgba(240, 237, 222, 0.78); }
.yearone-head { max-width: 640px; margin-bottom: clamp(44px, 6vw, 64px); }
.timeline { display: grid; gap: 0; position: relative; }
.milestone {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--forest-line);
}
.milestone:last-child { border-bottom: 1px solid var(--forest-line); }
.milestone-num {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 480;
  color: var(--laurel-bright);
  line-height: 1;
  padding-top: 4px;
}
.milestone-when {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--laurel-bright);
  margin-bottom: 7px;
}
.milestone h3 { color: var(--cream-bright); margin-bottom: 7px; }
.milestone p { color: rgba(240, 237, 222, 0.75); font-size: 0.98rem; max-width: 62ch; }
.yearone-footnote {
  margin-top: 34px;
  font-size: 0.92rem;
  color: rgba(240, 237, 222, 0.62);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 440;
}

/* ── EVENTS ── */
.empty-state {
  border: 1.5px dashed var(--cream-line);
  background: var(--cream-bright);
  border-radius: var(--r-md);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}
.empty-state strong {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 560;
  display: block; margin-bottom: 8px;
}
.empty-state p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 22px; }

/* ── GET INVOLVED ── */
.involved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 22px;
}
.inv-card {
  background: var(--cream-bright);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-md);
  padding: 34px 30px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.22s;
}
@media (prefers-reduced-motion: no-preference) {
  .inv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
}
.inv-card .prog-icon { margin-bottom: 18px; }
.inv-card h3 { margin-bottom: 9px; }
.inv-card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 24px; flex: 1; }

/* ── DONATE ── */
.donate { background: var(--cream-bright); border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line); }
.tiers { display: grid; gap: 0; margin: 30px 0 32px; }
.tier {
  display: grid; grid-template-columns: 86px 1fr; gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-top: 1px solid var(--cream-line);
}
.tier:last-child { border-bottom: 1px solid var(--cream-line); }
.tier-amt {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 540;
  color: var(--forest);
}
.tier p { font-size: 0.97rem; color: var(--ink-soft); }
.truth-row { display: grid; gap: 10px; }
.truth-row li {
  list-style: none;
  display: grid; grid-template-columns: 18px 1fr; gap: 11px;
  font-size: 0.94rem; color: var(--ink-soft);
}
.truth-row svg { color: var(--laurel-text); margin-top: 5px; }

.give-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 42px);
}
.give-card-head { display: flex; align-items: center; gap: 13px; margin-bottom: 8px; }
.give-card-head svg { color: var(--laurel-bright); flex-shrink: 0; }
.give-card h3 { color: var(--cream-bright); font-size: 1.45rem; }
.give-card > p { color: rgba(240, 237, 222, 0.78); font-size: 0.97rem; margin-bottom: 26px; }
.amount-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 14px;
}
.amt {
  padding: 13px 8px;
  border: 1.5px solid var(--forest-line);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--cream);
  font-weight: 600; font-size: 1rem;
  transition: border-color 0.15s, background-color 0.15s;
}
.amt:hover { border-color: var(--laurel-bright); }
.amt[aria-pressed="true"] {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.custom-amt { margin-bottom: 14px; }
.custom-amt.hidden { display: none; }
.give-card .btn { margin-top: 10px; }
.give-status {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--forest-line);
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(240, 237, 222, 0.66);
}
.give-status a { color: var(--laurel-bright); }

/* ── TRANSPARENCY ── */
.donut-wrap { display: grid; gap: 30px; justify-items: start; }
.donut-legend { display: grid; gap: 11px; width: 100%; max-width: 420px; }
.legend-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; font-size: 0.96rem;
}
.legend-left { display: flex; align-items: center; gap: 11px; color: var(--ink-soft); }
.legend-dot { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }
.ld-1 { background: var(--laurel); }
.ld-2 { background: var(--forest); }
.ld-3 { background: var(--laurel-bright); }
.ld-4 { background: #B9B48F; }
.hint-inline { font-size: 0.82rem; font-weight: 400; color: var(--ink-faint); }
.legend-pct { font-weight: 700; font-variant-numeric: tabular-nums; }
.fin-note {
  background: var(--cream-bright);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: 0.92rem; color: var(--ink-soft);
  max-width: 460px;
}
.why-cards { display: grid; gap: 16px; margin-top: 34px; }
.why-card {
  background: var(--cream-bright);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--laurel);
  border-radius: var(--r-sm);
  padding: 22px 24px;
}
.why-card .label {
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--laurel-text);
  display: block; margin-bottom: 7px;
}
.why-card p { font-size: 0.97rem; color: var(--ink-soft); }

/* ── FAQ ── */
.faq-list { max-width: 820px; }
.faq-item {
  border-top: 1px solid var(--cream-line);
}
.faq-item:last-child { border-bottom: 1px solid var(--cream-line); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 2px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.12rem; font-weight: 540;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-x {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  color: var(--laurel-text);
  transition: transform 0.25s;
}
.faq-item[open] summary .faq-x { transform: rotate(45deg); }
.faq-body { padding: 0 40px 24px 2px; color: var(--ink-soft); font-size: 0.99rem; max-width: 68ch; }
.faq-body a { color: var(--laurel-text); font-weight: 600; }

/* ── NEWSLETTER ── */
.newsletter { text-align: center; }
.newsletter h2 { margin-bottom: 12px; }
.newsletter > .wrap > p { color: rgba(240, 237, 222, 0.78); max-width: 46ch; margin: 0 auto 30px; }
.nl-form {
  display: flex; gap: 10px;
  max-width: 480px; margin: 0 auto;
}
.nl-form input[type="email"] {
  flex: 1; min-width: 0;
  padding: 14px 18px;
  background: rgba(240, 237, 222, 0.07);
  border: 1.5px solid var(--forest-line);
  border-radius: var(--r-sm);
  color: var(--cream-bright);
}
.nl-form input::placeholder { color: rgba(240, 237, 222, 0.45); }
.nl-form input:focus { outline: 2px solid var(--cream); outline-offset: 2px; border-color: transparent; }
.nl-privacy { margin-top: 16px; font-size: 0.83rem; color: rgba(240, 237, 222, 0.5); }
.nl-privacy a { color: rgba(240, 237, 222, 0.7); }

/* ── FORMS ── */
.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 7px;
  color: var(--ink);
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--cream-bright);
  border: 1.5px solid var(--cream-line);
  border-radius: var(--r-sm);
  transition: border-color 0.15s;
}
.fg input:hover, .fg select:hover, .fg textarea:hover { border-color: var(--laurel); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: 2px solid var(--laurel-text);
  outline-offset: 1px;
  border-color: transparent;
}
.fg textarea { min-height: 130px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg .hint { font-size: 0.82rem; color: var(--ink-faint); margin-top: 6px; }
.field-err {
  display: none;
  font-size: 0.84rem; color: var(--error);
  margin-top: 6px;
}
.field-err.visible { display: block; }
input.error, select.error, textarea.error { border-color: var(--error); background: var(--error-bg); }
.hp { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 1px; width: 1px; overflow: hidden; }

/* ── CONTACT ── */
.contact-form {
  background: var(--cream-bright);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px);
}
.contact-form h3 { margin-bottom: 22px; }
.contact-items { display: grid; gap: 20px; margin-top: 34px; }
.contact-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.contact-item .prog-icon { width: 46px; height: 46px; margin: 0; }
.contact-item strong { display: block; font-size: 0.99rem; margin-bottom: 2px; }
.contact-item span { color: var(--ink-soft); font-size: 0.95rem; }
.contact-item a { color: var(--ink-soft); }
.form-foot { font-size: 0.84rem; color: var(--ink-faint); margin-top: 14px; }

/* ── FOOTER ── */
.footer {
  background: var(--forest-deep);
  color: rgba(240, 237, 222, 0.72);
  padding: clamp(56px, 8vw, 84px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: 54px;
}
.footer .brand { color: var(--cream); margin-bottom: 16px; }
.footer-blurb { font-size: 0.94rem; max-width: 34ch; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.soc {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--forest-line);
  border-radius: 50%;
  color: rgba(240, 237, 222, 0.75);
  transition: border-color 0.15s, color 0.15s, background-color 0.15s;
}
.soc:hover { border-color: var(--laurel-bright); color: var(--cream-bright); background: rgba(240, 237, 222, 0.05); }
.footer h4 {
  font-family: var(--serif);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--laurel-bright);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a {
  text-decoration: none; font-size: 0.94rem;
  color: rgba(240, 237, 222, 0.72);
  transition: color 0.15s;
}
.footer ul a:hover { color: var(--cream-bright); }
.footer-bottom {
  border-top: 1px solid var(--forest-line);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(240, 237, 222, 0.5);
}
.footer-bottom a { color: rgba(240, 237, 222, 0.6); }

/* ── MODAL ── */
.modal-bg {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(34, 43, 28, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--cream-bright);
  border-radius: var(--r-lg);
  padding: 40px 36px 32px;
  max-width: 440px; width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
@media (prefers-reduced-motion: no-preference) {
  .modal-bg.open .modal { animation: pop 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2); }
}
@keyframes pop { from { opacity: 0; transform: scale(0.94) translateY(8px); } }
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--ink-faint);
  font-size: 1.5rem; line-height: 1;
  border-radius: 50%;
}
.modal-close:hover { color: var(--ink); background: var(--cream); }
.modal-icon { color: var(--laurel-text); display: grid; place-items: center; margin-bottom: 14px; }
.modal h2 { font-size: 1.5rem; margin-bottom: 10px; }
.modal p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 24px; }

/* ── TOAST ── */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 300;
  transform: translate(-50%, 12px);
  background: var(--forest);
  color: var(--cream-bright);
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-size: 0.93rem; font-weight: 500;
  box-shadow: 0 12px 32px rgba(34, 43, 28, 0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  max-width: min(92vw, 480px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── NOSCRIPT ── */
.noscript-note {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 12px 18px;
  font-size: 0.92rem;
}
.noscript-note a { color: var(--laurel-bright); }

/* ── 404 PAGE ── */
.err-page {
  min-height: 100svh;
  display: grid; place-items: center;
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 40px 20px;
}
.err-page img { width: 120px; margin: 0 auto 30px; }
.err-page .eyebrow { justify-content: center; }
.err-page h1 { color: var(--cream-bright); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.err-page p { color: rgba(240, 237, 222, 0.75); max-width: 44ch; margin: 0 auto 32px; }

/* ── LEGAL PAGES ── */
.legal-page { padding-top: calc(var(--nav-h) + 56px); }
.legal-page .wrap { max-width: 780px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal-updated { color: var(--ink-faint); font-size: 0.9rem; margin-bottom: 44px; }
.legal-page h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 0.99rem; }
.legal-page ul { padding-left: 22px; display: grid; gap: 8px; margin: 12px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 0; padding-bottom: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-card-wrap { max-width: 460px; }
  .ha-1, .ha-2, .ha-glow { right: -46%; top: -22%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fg-row { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .milestone { grid-template-columns: 40px 1fr; gap: 14px; }
  .section-head { align-items: flex-start; flex-direction: column; }
}

/* ── GLOBAL REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── PRINT ── */
@media print {
  .nav, .mobile-menu, .toast, .modal-bg, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
}
