/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  /* base */
  --bg:        #FAF6EE;
  --bg-deep:   #F1E9D6;
  --ink:       #1A1612;
  --ink-2:     #3D362C;
  --ink-3:     #6E6557;
  --ink-4:     #9C9384;
  --rule:      #E4DBC8;
  --rule-2:    #D7CBB1;

  /* kente roots */
  --gold:      #C68B2D;
  --gold-deep: #9E6B17;
  --green:     #1F4D3A;
  --green-deep:#0F3527;
  --red:       #9D2E1F;
  --red-deep:  #7A2014;
  --indigo:     #2D3A6B; /* Adire indigo — Kes's Nigerian heritage */
  --indigo-deep:#1F2A52;
  --black:     #1A1612;

  /* accent (changes via Tweaks color emphasis) */
  --accent:    var(--green);
  --accent-deep: var(--green-deep);
  --accent-soft: color-mix(in oklab, var(--accent) 14%, var(--bg));

  /* type */
  --serif:  "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans:   "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* layout */
  --page-px: clamp(20px, 4vw, 56px);
  --maxw:    1280px;

  /* density */
  --section-py: clamp(80px, 9vw, 140px);
}

/* density compact */
.density-compact { --section-py: clamp(56px, 6vw, 96px); }
.density-airy    { --section-py: clamp(96px, 11vw, 180px); }

/* ─── Reset / base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

/* ─── Typography ──────────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.98;
  font-feature-settings: "ss01";
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 9px; vertical-align: 1px;
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--ink-2);
  text-wrap: pretty;
}
.body-lg { font-size: 18px; line-height: 1.6; color: var(--ink-2); text-wrap: pretty; }

/* ─── Layout ──────────────────────────────────────────────── */
.shell { max-width: var(--maxw); margin: 0 auto; padding-left: var(--page-px); padding-right: var(--page-px); }
.section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.divider { height: 1px; background: var(--rule); margin: 0; border: 0; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans); font-weight: 500; font-size: 14.5px;
  letter-spacing: 0.005em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.link-underline {
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px; transition: gap .25s ease;
}
.link-underline:hover { gap: 14px; }

/* ─── Header / Nav ───────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid color-mix(in oklab, var(--rule) 60%, transparent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--page-px);
  max-width: var(--maxw); margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--serif); color: var(--ink); letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 19px; font-style: italic;
  letter-spacing: -0.02em;
}
.logo-mark .accent { color: var(--accent); }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-text .top { font-size: 13px; font-style: italic; color: var(--ink-3); font-family: var(--serif); }
.logo-text .name { font-size: 19px; letter-spacing: -0.005em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px; color: var(--ink-2); padding: 8px 14px;
  border-radius: 999px; transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); background: var(--bg-deep); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle svg { width: 22px; height: 22px; }
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-cta .btn:not(.menu-toggle) { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    padding: 12px var(--page-px) 20px;
  }
  .nav.open a { padding: 14px; font-size: 18px; border-radius: 10px; }
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: #C8C0AE;
  padding: clamp(60px, 7vw, 96px) var(--page-px) 32px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top {
  display: grid; gap: 56px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: #8A816F;
  margin: 0 0 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #E8E0CB; font-size: 15px; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-tag {
  font-family: var(--serif); font-size: 28px; line-height: 1.15; color: #F4ECD6;
  margin: 0 0 22px; max-width: 380px; text-wrap: balance;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  border-top: 1px solid #2B2620; padding-top: 24px; margin-top: 64px;
  font-family: var(--mono); font-size: 11.5px; color: #8A816F;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ─── Kente motif ────────────────────────────────────────── */
.kente-band {
  display: flex; flex-direction: column; gap: 0;
  overflow: hidden;
}
.kente-band .strip { height: 12px; position: relative; }
.kente-stripe-h {
  width: 100%; height: 4px; display: flex;
}
.kente-pattern-row {
  display: flex; width: 100%;
}
.kente-cell {
  flex: 1; min-width: 0;
}

/* page-intro / breadcrumb header for subpages */
.page-head {
  padding: clamp(70px, 9vw, 130px) 0 clamp(50px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.page-head .crumb { margin-bottom: 28px; }
.page-head h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.96;
  letter-spacing: -0.015em; margin: 0 0 24px;
  text-wrap: balance;
}
.page-head h1 em { font-style: italic; color: var(--accent); }
.page-head .lede { max-width: 720px; }

/* ─── Reveal animation ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
/* When the page mounts on a hidden tab, CSS transitions get paused at the
   start value (opacity 0). Skip the transition in that case so the page
   renders at its final state. */
.reveal.no-anim { transition: none !important; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
.reveal.delay-5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(80px, 9vw, 140px); position: relative; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(54px, 8.4vw, 132px); line-height: 0.94;
  letter-spacing: -0.018em; margin: 0;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero h1 .underline {
  display: inline-block; position: relative;
}
.hero h1 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.10em; background: var(--gold); opacity: .55;
  border-radius: 4px;
}
.hero-sub { margin-top: 36px; max-width: 600px; }
.hero-cta-row { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* hero split layout */
.hero-split {
  display: grid; gap: clamp(36px, 5vw, 72px);
  grid-template-columns: 1.15fr 1fr;
  align-items: end;
}
@media (max-width: 880px) { .hero-split { grid-template-columns: 1fr; } }
.hero-media {
  aspect-ratio: 4/5; border-radius: 8px; overflow: hidden;
  background: var(--bg-deep);
}
.hero-media image-slot { width: 100%; height: 100%; --is-bg: var(--bg-deep); }
.hero-meta {
  display: flex; flex-direction: column; gap: 18px;
  padding: 18px 0;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.06em; color: var(--ink-3);
  text-transform: uppercase;
}
.hero-meta .row { display: flex; justify-content: space-between; border-top: 1px solid var(--rule); padding-top: 12px; }
.hero-meta .row span:last-child { color: var(--ink); }

/* hero full-bleed */
.hero-fullbleed {
  position: relative; min-height: 88vh; display: flex; align-items: flex-end;
  padding: 0; margin-top: -1px;
  background: var(--ink); color: var(--bg);
}
.hero-fullbleed .bg-slot {
  position: absolute; inset: 0;
}
.hero-fullbleed .bg-slot image-slot { width: 100%; height: 100%; }
.hero-fullbleed .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,18,0) 30%, rgba(26,22,18,0.75) 100%),
              linear-gradient(90deg, rgba(26,22,18,0.55), rgba(26,22,18,0) 60%);
}
.hero-fullbleed .shell { position: relative; padding-top: 60px; padding-bottom: clamp(60px, 7vw, 100px); width: 100%; }
.hero-fullbleed .eyebrow { color: rgba(250,246,238,.7); }
.hero-fullbleed .eyebrow .dot { background: var(--gold); }
.hero-fullbleed .lede { color: rgba(250,246,238,.85); }
.hero-fullbleed .btn-ghost { color: var(--bg); border-color: rgba(250,246,238,.4); }
.hero-fullbleed .btn-ghost:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.hero-fullbleed h1 .underline::after { background: var(--gold); opacity: .85; }

/* hero typeforward */
.hero-type h1 {
  font-size: clamp(68px, 11vw, 180px);
}
.hero-type .hero-mega-row {
  display: grid; grid-template-columns: 2.2fr 1fr; gap: 56px; align-items: end;
  margin-top: 48px;
}
@media (max-width: 880px) { .hero-type .hero-mega-row { grid-template-columns: 1fr; } }
.hero-type .hero-side {
  font-family: var(--serif); font-size: 22px; line-height: 1.4; font-style: italic;
  color: var(--ink-2); max-width: 360px;
  padding-left: 28px; border-left: 2px solid var(--accent);
}

/* ─── Mission (centered, editorial focal point) ──────────── */
.mission-section { padding-block: clamp(96px, 13vw, 168px); }
.mission {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: clamp(28px, 3.5vw, 48px);
  max-width: 1040px;
}
.mission-eyebrow {
  justify-content: center;
  letter-spacing: 0.14em;
}
.mission .body-lg {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.14;
  color: var(--ink);
  text-wrap: balance;
  max-width: 22ch;
  margin: 0;
}
.mission .body-lg em {
  font-style: italic;
  color: var(--accent);
  font-weight: inherit;
}
.mission-rule {
  width: 56px; height: 1px;
  background: var(--accent);
  margin-top: clamp(8px, 1.5vw, 20px);
  opacity: 0.55;
}
@media (max-width: 720px) {
  .mission .body-lg { max-width: 18ch; }
}

/* ─── Pillars ────────────────────────────────────────────── */
.pillars {
  display: grid; gap: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 1024px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 40px 36px 36px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  position: relative;
  transition: background .35s ease;
  cursor: pointer;
}
.pillar:last-child { border-right: 0; }
/* 2-up: drop the right border on the second column, divide the two rows */
@media (max-width: 1024px) {
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 640px) {
  .pillar { border-right: 0; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: 0; }
}
.pillar:hover { background: color-mix(in oklab, var(--accent) 4%, var(--bg)); }
.pillar .num { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; color: var(--ink-3); }
.pillar h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 36px; line-height: 1.04;
  margin: 60px 0 18px; letter-spacing: -0.01em;
  text-wrap: balance;
}
.pillar p { color: var(--ink-2); margin: 0; }
.pillar .expand {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.2,.8,.2,1);
}
.pillar .expand > div { overflow: hidden; }
.pillar.open .expand { grid-template-rows: 1fr; }
.pillar .expand .deets {
  padding-top: 18px; color: var(--ink-2); font-size: 15px;
  border-top: 1px dashed var(--rule-2); margin-top: 18px;
}
.pillar .deets li { padding: 6px 0; border-bottom: 1px dotted var(--rule); list-style: none; }
.pillar .deets ul { padding: 0; margin: 12px 0 0; }
.pillar .toggle {
  margin-top: auto; padding-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.pillar .toggle .plus {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid currentColor;
  display: inline-grid; place-items: center; font-size: 14px;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}
.pillar.open .toggle .plus { transform: rotate(45deg); background: var(--accent); color: #fff; }
.pillar .icon-mark {
  width: 40px; height: 40px; border-radius: 6px;
  display: inline-grid; place-items: center;
  margin-top: 18px;
  background: var(--accent-soft);
  color: var(--accent);
}

/* ─── Impact ─────────────────────────────────────────────── */
.impact {
  background: var(--ink); color: var(--bg);
  position: relative; overflow: hidden;
}
.impact .shell { position: relative; }
.impact h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px); line-height: 1; margin: 0 0 48px;
  letter-spacing: -0.015em;
  max-width: 700px; text-wrap: balance;
}
.impact h2 em { font-style: italic; color: var(--gold); }
.impact .eyebrow { color: rgba(250,246,238,.6); margin-bottom: 22px; }
.impact .eyebrow .dot { background: var(--gold); }
.impact-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #2B2620;
  padding-top: 48px;
}
@media (max-width: 880px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--serif); font-size: clamp(54px, 6vw, 84px);
  line-height: 1; letter-spacing: -0.02em; color: var(--bg);
  font-feature-settings: "tnum";
}
.stat .num em { font-style: italic; color: var(--gold); }
.stat .label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(250,246,238,.6); margin-top: 16px; }
.stat .desc { color: rgba(250,246,238,.78); font-size: 14.5px; margin-top: 10px; line-height: 1.5; }

/* ─── Founder ─────────────────────────────────────────────── */
.founder {
  display: grid; gap: clamp(40px, 5vw, 80px);
  grid-template-columns: 1fr 1.2fr; align-items: center;
}
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; } }
.founder-media { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: var(--bg-deep); }
.founder-media image-slot { width: 100%; height: 100%; }
.founder h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.8vw, 60px); line-height: 1.02;
  letter-spacing: -0.015em; margin: 24px 0 28px;
  text-wrap: balance;
}
.founder h2 em { font-style: italic; color: var(--accent); }
.founder .pullquote {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--ink-2);
  padding: 22px 0 4px;
  border-top: 1px solid var(--rule); margin-top: 32px;
}
.founder .signoff { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 18px; }

/* ─── CTA banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--accent); color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner .shell {
  display: grid; gap: 32px;
  grid-template-columns: 1.4fr 1fr; align-items: end;
  padding-top: clamp(70px, 8vw, 120px); padding-bottom: clamp(70px, 8vw, 120px);
}
@media (max-width: 880px) { .cta-banner .shell { grid-template-columns: 1fr; align-items: start; } }
.cta-banner h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.6vw, 80px); line-height: 0.98; letter-spacing: -0.015em;
  margin: 0; color: #FAF6EE;
  text-wrap: balance;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner .actions { display: flex; flex-direction: column; gap: 16px; }
.cta-banner .btn-primary { background: #FAF6EE; color: var(--accent-deep); }
.cta-banner .btn-primary:hover { background: var(--ink); color: #FAF6EE; }
.cta-banner .btn-ghost { color: #FAF6EE; border-color: rgba(250,246,238,.4); }
.cta-banner .btn-ghost:hover { background: #FAF6EE; color: var(--accent-deep); border-color: #FAF6EE; }
.cta-banner .small { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(250,246,238,.7); }

/* ─── Donation picker ────────────────────────────────────── */
.donate-picker {
  border: 1px solid var(--rule); border-radius: 12px;
  padding: 28px; background: var(--bg);
}
.donate-picker h3 { font-family: var(--serif); font-size: 28px; margin: 0 0 6px; font-weight: 400; }
.donate-picker .sub { color: var(--ink-3); font-size: 14px; margin-bottom: 22px; }
.donate-modes {
  display: flex; padding: 3px; background: var(--bg-deep);
  border-radius: 10px; margin-bottom: 16px; gap: 3px;
}
.donate-modes button {
  flex: 1; padding: 10px; border: 0; background: transparent;
  border-radius: 8px; font-size: 13px; color: var(--ink-3);
  transition: background .25s ease, color .25s ease;
}
.donate-modes button.on { background: var(--bg); color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.donate-amounts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 12px;
}
.donate-amounts button {
  padding: 16px 8px; border: 1px solid var(--rule); background: var(--bg);
  border-radius: 10px; font-family: var(--serif); font-size: 22px;
  color: var(--ink); transition: all .2s ease;
}
.donate-amounts button:hover { border-color: var(--ink-3); }
.donate-amounts button.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.donate-custom {
  position: relative;
}
.donate-custom input {
  width: 100%; padding: 16px 16px 16px 38px; border: 1px solid var(--rule);
  border-radius: 10px; font-family: var(--serif); font-size: 22px; color: var(--ink);
  background: var(--bg); outline: none;
}
.donate-custom input:focus { border-color: var(--ink); }
.donate-custom .currency {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-family: var(--serif); font-size: 22px; color: var(--ink-3);
}
.donate-impact {
  margin-top: 16px; padding: 14px 16px; background: var(--accent-soft);
  border-radius: 10px; font-size: 13.5px; line-height: 1.45; color: var(--ink-2);
}
.donate-impact strong { color: var(--accent-deep); font-weight: 600; }
.donate-submit { margin-top: 16px; width: 100%; justify-content: center; }

/* ─── Newsletter ─────────────────────────────────────────── */
.newsletter {
  display: flex; gap: 10px; max-width: 460px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: 6px 6px 6px 18px; align-items: center;
}
.newsletter input {
  flex: 1; border: 0; background: transparent; color: var(--bg);
  padding: 10px 0; font: inherit; outline: none; font-size: 14px;
}
.newsletter input::placeholder { color: rgba(250,246,238,.5); }
.newsletter button {
  background: var(--gold); color: var(--ink);
  border: 0; padding: 10px 18px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  transition: background .2s ease;
}
.newsletter button:hover { background: #E6A23A; }
.newsletter.ok button { background: var(--green); color: #fff; }

/* ─── Form ──────────────────────────────────────────────── */
.form-grid { display: grid; gap: 18px; }
.form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
}
.field input, .field textarea, .field select {
  background: var(--bg); border: 1px solid var(--rule);
  border-radius: 8px; padding: 14px 16px;
  font: inherit; color: var(--ink); outline: none;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--ink-3); }
.field.error input, .field.error textarea, .field.error select { border-color: var(--red); }
.field .err-msg {
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--red);
  display: none;
}
.field.error .err-msg { display: block; }
.checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 640px) { .checkboxes { grid-template-columns: 1fr; } }
.checkbox {
  display: flex; gap: 12px; padding: 14px 16px; border: 1px solid var(--rule);
  border-radius: 8px; cursor: pointer; transition: all .2s ease;
  align-items: center; user-select: none;
}
.checkbox:hover { border-color: var(--ink-3); }
.checkbox.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.checkbox .box {
  width: 16px; height: 16px; border: 1px solid var(--rule-2); border-radius: 4px;
  display: inline-grid; place-items: center; flex-shrink: 0;
  background: var(--bg);
}
.checkbox.on .box { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.checkbox .box svg { width: 12px; height: 12px; opacity: 0; transition: opacity .2s ease; }
.checkbox.on .box svg { opacity: 1; }

/* ─── Generic content sections ───────────────────────────── */
.two-col {
  display: grid; gap: clamp(40px, 5vw, 80px);
  grid-template-columns: 1fr 1.4fr;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }
.two-col .col-h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.04; margin: 0;
  letter-spacing: -0.012em; text-wrap: balance;
}
.two-col .col-h2 em { font-style: italic; color: var(--accent); }

/* timeline (story) */
.timeline { display: flex; flex-direction: column; gap: 28px; }
.timeline-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 36px; padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item .year {
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-3);
  letter-spacing: .14em; padding-top: 4px;
}
.timeline-item h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; line-height: 1.1; margin: 0 0 10px; text-wrap: balance;
}
.timeline-item p { margin: 0; color: var(--ink-2); }

/* values */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule); margin-top: 32px;
}
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 28px 28px 28px 0; border-bottom: 1px solid var(--rule);
}
.value:not(:last-child) { padding-right: 36px; }
.value h5 {
  font-family: var(--serif); font-weight: 400; font-size: 24px;
  margin: 0 0 8px; text-wrap: balance;
}
.value p { margin: 0; color: var(--ink-2); font-size: 15px; }
.value .num { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .14em; }

/* programs page list */
.program-row {
  display: grid; gap: clamp(40px, 5vw, 80px);
  grid-template-columns: 1fr 1.6fr;
  padding: clamp(60px, 7vw, 100px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.program-row:last-child { border-bottom: 0; }
@media (max-width: 880px) { .program-row { grid-template-columns: 1fr; } }
.program-row .num-big {
  font-family: var(--serif); font-size: clamp(72px, 9vw, 128px);
  line-height: 0.9; color: var(--accent); letter-spacing: -0.02em;
}
.program-row h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.02; margin: 0 0 20px;
  letter-spacing: -0.012em; text-wrap: balance;
}
.program-row .lede { margin-bottom: 24px; }
.program-row .feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px;
  border-top: 1px solid var(--rule); padding-top: 28px;
}
@media (max-width: 640px) { .program-row .feat-grid { grid-template-columns: 1fr; } }
.program-row .feat h5 {
  font-family: var(--serif); font-size: 19px; font-weight: 400; margin: 8px 0 6px;
}
.program-row .feat p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.program-row .feat .mark {
  width: 32px; height: 32px; border-radius: 6px; background: var(--accent-soft);
  color: var(--accent); display: inline-grid; place-items: center;
}

/* paths (Get Involved) */
.paths {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) { .paths { grid-template-columns: 1fr; } }
.path {
  background: var(--bg);
  border: 1px solid var(--rule); border-radius: 14px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.path:hover { border-color: var(--ink-2); transform: translateY(-2px); }
.path .head {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.path h3 {
  font-family: var(--serif); font-weight: 400; font-size: 32px;
  line-height: 1.02; margin: 0; letter-spacing: -0.01em;
}
.path p { color: var(--ink-2); margin: 0; flex: 1; }
.path .top-strip {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}

/* partners marquee */
.partners {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 36px 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; align-items: center;
}
@media (max-width: 880px) { .partners { grid-template-columns: repeat(3, 1fr); } }
.partner {
  font-family: var(--serif); font-size: 22px; color: var(--ink-3);
  font-style: italic; letter-spacing: -0.01em; line-height: 1.1;
  text-align: center;
}
.partner.sm { font-size: 18px; }

/* faq */
.faq { border-top: 1px solid var(--rule); margin-top: 24px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  padding: 28px 0; background: transparent; border: 0;
  font-family: var(--serif); font-size: 24px; color: var(--ink);
  text-align: left; line-height: 1.2;
  transition: padding-left .25s ease;
}
.faq-q:hover { padding-left: 10px; }
.faq-q .plus {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--rule-2);
  display: grid; place-items: center; font-size: 16px; color: var(--ink-3);
  transition: transform .35s ease, background .25s ease, color .25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--ink); color: var(--bg); border-color: var(--ink); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.2,.8,.2,1);
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding: 0 0 28px; color: var(--ink-2); max-width: 720px; margin: 0;
  font-size: 16px; line-height: 1.6;
}

/* contact */
.contact-grid {
  display: grid; gap: clamp(40px, 5vw, 80px);
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-meta { display: flex; flex-direction: column; gap: 28px; }
.contact-block h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 10px;
}
.contact-block .big {
  font-family: var(--serif); font-size: 22px; color: var(--ink);
}
.contact-block .multi { color: var(--ink-2); line-height: 1.6; }
.success-banner {
  border: 1px solid var(--accent); background: var(--accent-soft);
  border-radius: 12px; padding: 24px 28px; margin-bottom: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.success-banner .badge {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.success-banner h4 { font-family: var(--serif); font-size: 22px; margin: 0 0 4px; font-weight: 400; }
.success-banner p { margin: 0; color: var(--ink-2); font-size: 14.5px; }

/* small utility: bullet list */
.bullets { list-style: none; padding: 0; margin: 24px 0 0; }
.bullets li {
  padding: 14px 0; border-bottom: 1px solid var(--rule);
  display: flex; gap: 16px; align-items: flex-start;
}
.bullets li:first-child { border-top: 1px solid var(--rule); }
.bullets .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  margin-top: 9px; flex-shrink: 0;
}
.bullets .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); width: 110px; flex-shrink: 0; margin-top: 4px;
}
.bullets p { margin: 0; flex: 1; color: var(--ink); text-wrap: pretty; }
