:root {
  --page:       #ffffff;
  --page-alt:   #f3f7fc;
  --page-warm:  #fdf8f2;
  --text-h:     #0d1c28;
  --text-b:     #365060;
  --text-m:     #6a8798;
  --border:     #dce8f2;
  --brand-red:  #b80000;
  --brand-gold: #c8900a;
  --brand-green:#0b7856;
  --brand-cyan: #0a7fa3;
  --radius:     10px;
  --shell:      min(1200px, calc(100% - 48px));
  --section-pad:clamp(72px, 9vw, 116px);
  --shadow-sm:  0 2px 10px rgba(13,28,40,.07);
  --shadow-md:  0 6px 24px rgba(13,28,40,.10);
  --shadow-lg:  0 16px 48px rgba(13,28,40,.13);
}

/* ── RESET ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  color: var(--text-b);
  font-family: "Plus Jakarta Sans","Segoe UI",sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--page);
  overflow-x: hidden;
}
html, body { max-width: 100%; }

body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }

/* ── UTILITIES ── */
.skip-link {
  position: fixed; top: 14px; left: 14px; z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px; border-radius: 6px;
  background: var(--brand-red); color: #fff;
  font-weight: 700; text-decoration: none;
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section-shell { width: var(--shell); margin-inline: auto; }

/* ── HEADER ── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  min-height: 78px; padding: 8px 32px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: min-height 200ms ease, box-shadow 200ms ease;
}
.site-header.is-scrolled {
  min-height: 64px;
  box-shadow: 0 4px 20px rgba(13,28,40,.10);
}

.brand {
  display: inline-flex; align-items: center;
  text-decoration: none; padding: 4px 0;
}
.brand img { height: 86px; width: auto; max-width: 260px; object-fit: contain; }

.footer-brand {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,.94);
  border-radius: 10px;
  padding: 14px;
  align-self: start;
}
.footer-brand img { height: 100px; width: auto; max-width: 280px; object-fit: contain; }

.site-nav {
  justify-self: center;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px,1.6vw,20px);
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: .85rem; font-weight: 700;
  text-decoration: none; color: var(--text-h);
  padding-bottom: 4px;
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--brand-red);
  transition: right 180ms ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }

/* ── BUTTONS ── */
.header-cta, .button, .bank-card button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 22px;
  border: none; border-radius: 8px;
  font: inherit; font-size: .88rem; font-weight: 700; line-height: 1;
  text-decoration: none; cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.header-cta, .button--primary {
  color: #fff; background: var(--brand-red);
  box-shadow: 0 4px 14px rgba(184,0,0,.30);
}
.header-cta:hover, .button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(184,0,0,.42);
  background: #9a0000;
}

.button--ghost {
  background: transparent;
  color: var(--brand-red);
  border: 1.5px solid var(--brand-red);
}
.button--ghost:hover { background: rgba(184,0,0,.06); }

/* ── MOBILE MENU ── */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 8px; background: #fff;
  padding: 10px; cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block; width: 100%; height: 2px; margin: 4px 0;
  background: var(--text-h); border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── SECTION TYPOGRAPHY ── */
.section-kicker {
  margin: 0;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--brand-red);
  font-size: .74rem; font-weight: 800;
  letter-spacing: .10em; text-transform: uppercase;
}
.section-kicker::before {
  content: ""; display: block;
  width: 22px; height: 2px;
  background: currentColor; border-radius: 2px; flex-shrink: 0;
}

.section-heading { display: grid; gap: 12px; }

.hero h1, .page-hero h1,
.section-heading h2, .manifesto h2,
.members-section h2, .member-cta h2,
.trust-strip__head h2, .president__message h2,
.strategy h2, .donate-cta h2, .donate-page h2 {
  margin: 0;
  font-family: "Space Grotesk","Plus Jakarta Sans",sans-serif;
  color: var(--text-h);
  letter-spacing: -.02em; line-height: 1.1;
  text-wrap: balance;
}

.section-heading h2, .manifesto h2, .members-section h2,
.member-cta h2, .strategy h2, .donate-cta h2, .donate-page h2 {
  font-size: clamp(1.7rem,3vw,2.6rem);
}

.section-heading p, .manifesto__body p, .member-cta p, .donate-cta p {
  margin: 0; color: var(--text-b); line-height: 1.75;
}

main > section { position: relative; }

/* section padding */
.trust-strip, .manifesto, .work, .strategy,
.activities, .president, .donate-cta,
.members-section, .member-cta { padding: var(--section-pad) 0; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px,.92fr) minmax(300px,1.08fr);
  gap: clamp(24px,4vw,56px);
  min-height: 92svh;
  padding: clamp(108px,14vh,148px) 32px clamp(52px,7vh,80px);
  background:
    linear-gradient(to right, rgba(8,18,28,.90) 0%, rgba(8,18,28,.75) 46%, rgba(8,18,28,.30) 100%),
    url('assets/images/terai-field-landscape.jpg') center/cover no-repeat;
  border-bottom: none;
}

.hero__copy { align-self: center; max-width: 580px; }

.hero__tagline {
  margin: 0 0 16px;
  display: inline-flex; align-items: center; gap: 10px;
  color: #f5c842;
  font-size: .74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .10em;
}
.hero__tagline::before {
  content: ""; display: block;
  width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.2rem,4.5vw,3.8rem);
  max-width: 15ch;
  color: #ffffff;
}

.hero__copy > p {
  margin: 20px 0 0; color: rgba(255,255,255,.78);
  font-size: 1.04rem; max-width: 52ch; line-height: 1.72;
}

.hero__actions, .donate-actions {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

.signal-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 32px 0 0; padding: 0; list-style: none;
}
.signal-list li {
  display: grid; gap: 2px;
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--page-alt);
  font-size: .85rem; font-weight: 600; color: var(--text-h);
}
.signal-list li span {
  color: var(--brand-red);
  font-size: .64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
}

.hero__visual { align-self: center; }

.visual-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas: "main health" "main field" "main sanitation";
  gap: 10px;
}
.visual-grid figure { margin: 0; }
.visual-grid img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.visual-grid__main     { grid-area: main;       min-height: 440px; }
.visual-grid__tile     { min-height: 136px; }
.visual-grid__tile--health     { grid-area: health; }
.visual-grid__tile--field      { grid-area: field; }
.visual-grid__tile--sanitation { grid-area: sanitation; }

/* hero dark bg overrides */
.hero .visual-grid img { border-color: rgba(255,255,255,.12); }
.hero .signal-list li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
.hero .signal-list li span { color: #f5c842; }
.hero .button--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .button--ghost:hover { background: rgba(255,255,255,.10); }

/* ════════════════════════════════
   EMOTION BAND (accent strip)
════════════════════════════════ */
.emotion-band {
  padding: 26px 0;
  background: linear-gradient(90deg, #8e0000, #0b6640);
}
.emotion-band__grid {
  display: flex; align-items: center; gap: 24px;
}
.emotion-band p {
  margin: 0; color: #fff;
  font-size: 1.05rem; font-weight: 600; line-height: 1.55;
}
.emotion-band a {
  flex-shrink: 0; padding: 11px 20px;
  border-radius: 8px; border: 1.5px solid rgba(255,255,255,.5);
  color: #fff; text-decoration: none;
  font-size: .88rem; font-weight: 700; white-space: nowrap;
}
.emotion-band a:hover { background: rgba(255,255,255,.14); }

/* ════════════════════════════════
   TRUST STRIP — white
════════════════════════════════ */
.trust-strip { background: var(--page); }

.trust-strip__head { margin-bottom: 40px; }
.trust-strip__head h2 {
  margin: 10px 0 0; font-size: clamp(1.6rem,3vw,2.4rem);
}
.trust-strip__head p { margin: 14px 0 0; color: var(--text-b); line-height: 1.72; }

.trust-strip__grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.trust-strip__grid article {
  margin: 0; padding: 16px;
  border-radius: 10px; border: 1px solid var(--border);
  background: var(--page); box-shadow: var(--shadow-sm);
}
.trust-strip__grid img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: 6px;
  border: 1px solid var(--border);
}
.trust-strip__grid h3 {
  margin: 14px 0 0; font-size: .92rem;
  font-weight: 700; color: var(--text-h); line-height: 1.4;
}

/* ════════════════════════════════
   ABOUT / MANIFESTO — alt bg
════════════════════════════════ */
.manifesto {
  background: var(--page-alt);
  border-top: 3px solid var(--brand-cyan);
}
.manifesto__grid {
  display: grid;
  gap: clamp(24px,5vw,64px);
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
}
.manifesto h2 { color: var(--text-h); }
.manifesto__body { display: grid; gap: 18px; align-content: center; }
.manifesto__body p { color: var(--text-b); font-size: 1.02rem; }

/* ════════════════════════════════
   VISION / MISSION (inside manifesto)
════════════════════════════════ */
.north-star__grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2,minmax(0,1fr));
  margin-top: 40px;
}
.north-star__grid article {
  background: var(--page);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-cyan);
  border-radius: 10px; padding: 32px;
  box-shadow: var(--shadow-sm);
}
.north-star__grid article .card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(10,127,163,.10);
  color: var(--brand-cyan);
  margin-bottom: 20px;
}
.north-star__grid article span {
  display: block; color: var(--brand-cyan);
  font-family: "Space Grotesk",sans-serif;
  font-weight: 800; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
}
.north-star__grid article p { margin: 0; color: var(--text-b); font-size: 1.06rem; line-height: 1.75; }

/* ════════════════════════════════
   PROGRAMS — alt bg
════════════════════════════════ */
.work {
  background: var(--page);
  border-top: 3px solid var(--brand-gold);
}
.program-matrix {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px;
}
.program-block {
  margin: 0; padding: 28px 24px;
  background: var(--page); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.program-block:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.program-block div { display: grid; gap: 12px; align-content: start; }

.program-block span {
  width: fit-content; padding: 5px 12px;
  border-radius: 20px; font-size: .72rem;
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.program-block h3 {
  margin: 0; font-size: 1.28rem;
  font-family: "Space Grotesk",sans-serif; font-weight: 700; color: var(--text-h);
}
.program-block p { margin: 0; color: var(--text-b); font-size: .95rem; line-height: 1.65; }

.program-block:nth-child(1) { border-top: 3px solid #d42400; }
.program-block:nth-child(1) span { background: rgba(212,36,0,.10); color: #a41c00; }

.program-block:nth-child(2) { border-top: 3px solid var(--brand-cyan); }
.program-block:nth-child(2) span { background: rgba(10,127,163,.10); color: #086f8f; }

.program-block:nth-child(3) { border-top: 3px solid var(--brand-green); }
.program-block:nth-child(3) span { background: rgba(11,120,86,.10); color: #096647; }

.program-block:nth-child(4) { border-top: 3px solid var(--brand-gold); }
.program-block:nth-child(4) span { background: rgba(200,144,10,.12); color: #9e6f04; }

/* ════════════════════════════════
   HOW SUPPORT IS USED — white
════════════════════════════════ */
.strategy { background: var(--page-alt); border-top: 3px solid var(--brand-red); }
.strategy h2 { color: var(--text-h); }
.strategy__grid {
  display: grid; gap: clamp(24px,5vw,64px);
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
}
.strategy-list { display: grid; gap: 14px; align-content: start; }
.strategy-list article {
  background: var(--page);
  border: 1px solid var(--border); border-left: 4px solid var(--brand-red);
  border-radius: 10px; padding: 20px 22px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.strategy-list span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%; background: var(--brand-red);
  color: #fff; font-size: .8rem; font-weight: 800; margin-top: 2px;
}
.strategy-list p { margin: 0; color: var(--text-b); font-size: .95rem; line-height: 1.65; }

/* ════════════════════════════════
   ACTIVITIES — alt bg
════════════════════════════════ */
.activities {
  background: var(--page);
  border-top: 3px solid var(--brand-gold);
}
.activities__grid { display: grid; gap: 40px; }
.activities__copy { max-width: 680px; display: grid; gap: 14px; align-content: start; }

.activity-rail { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.activity-rail figure {
  margin: 0; border-radius: 10px; overflow: hidden;
  background: var(--page); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.activity-rail img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 300ms ease; }
.activity-rail figure:hover img { transform: scale(1.04); }
.activity-rail figcaption {
  padding: 12px 14px; color: var(--text-b); font-size: .86rem; line-height: 1.5;
}

/* ════════════════════════════════
   PRESIDENT — warm bg
════════════════════════════════ */
.president {
  background: var(--page-warm);
  border-top: 3px solid var(--brand-gold);
}
.president__grid {
  display: grid; gap: clamp(24px,5vw,64px);
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
}
.president__photo {
  margin: 0; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.president__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.president__message { align-self: center; }
.president__message blockquote {
  margin: 20px 0; padding: 16px 20px;
  border-left: 3px solid var(--brand-gold);
  background: rgba(200,144,10,.07);
  border-radius: 0 8px 8px 0;
  color: var(--text-h); font-size: 1.04rem; line-height: 1.72; font-style: italic;
}
.president__message > p { margin: 14px 0 0; color: var(--text-b); line-height: 1.72; }
.signature { margin-top: 20px; color: var(--brand-gold); font-weight: 700; font-family: "Space Grotesk",sans-serif; }

/* ════════════════════════════════
   DONATE CTA (index page — simple teaser)
════════════════════════════════ */
.donate-cta {
  background: var(--page);
  border-top: 3px solid var(--brand-red);
}
.donate-cta__grid {
  display: grid; gap: clamp(24px,4vw,56px);
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
}
.donate-cta h2 { color: var(--text-h); }
.donate-cta .button { flex-shrink: 0; }

/* ════════════════════════════════
   DONATE PAGE (donate.html)
════════════════════════════════ */
.donate-page {
  background: var(--page-alt);
  border-top: 3px solid var(--brand-red);
  padding: var(--section-pad) 0;
}
.donate-page__grid {
  display: grid; gap: clamp(24px,4vw,56px);
  grid-template-columns: minmax(0,1fr) minmax(0,.9fr);
}
.donate-page h2 { color: var(--text-h); }
.donate-page__copy { display: grid; gap: 18px; align-content: start; }
.donate-page__copy p { color: var(--text-b); line-height: 1.75; }

.bank-card {
  padding: 28px;
  border-radius: 12px; border: 1px solid var(--border);
  background: var(--page); box-shadow: var(--shadow-md);
}
.bank-card__top {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid var(--border);
}
.bank-card h3 { margin: 0; font-size: 1rem; color: var(--text-h); font-family: "Space Grotesk",sans-serif; }
.bank-card button {
  min-height: 36px; background: var(--page-alt);
  border: 1px solid var(--border); color: var(--text-b);
  padding-inline: 16px; border-radius: 6px; font-size: .82rem;
}
.bank-card button:hover { background: var(--border); }
.bank-card dl { margin: 4px 0 16px; display: grid; gap: 0; }
.bank-card dl div {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border);
}
.bank-card dl div:last-child { border-bottom: none; }
.bank-card dt { color: var(--text-m); font-size: .84rem; }
.bank-card dd { margin: 0; font-weight: 700; font-size: .92rem; color: var(--text-h); font-family: "Space Grotesk",monospace; }
.bank-card > p { margin: 0; color: var(--text-m); font-size: .84rem; line-height: 1.6; }

.donate-steps { display: grid; gap: 14px; }
.donate-steps article {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: 10px;
  background: var(--page); border: 1px solid var(--border);
  border-left: 4px solid var(--brand-red); box-shadow: var(--shadow-sm);
}
.donate-steps__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%; background: var(--brand-red);
  color: #fff; font-size: .78rem; font-weight: 800; margin-top: 2px;
}
.donate-steps article p { margin: 0; color: var(--text-b); font-size: .94rem; line-height: 1.65; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: #0f2133;
  padding: 56px 0 28px;
  border-top: 3px solid var(--brand-red);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(160px,.85fr) minmax(130px,.7fr) minmax(200px,1.1fr) minmax(160px,.75fr);
  align-items: start; gap: clamp(20px,4vw,48px);
}
.site-footer nav { display: grid; gap: 10px; }
.footer-column { display: grid; gap: 10px; }
.footer-column--donate { align-content: start; }
.footer-column h2 {
  margin: 0 0 6px; color: #fff;
  font-family: "Space Grotesk",sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.footer-column p,
.footer-column a,
.site-footer__bottom p,
.site-footer nav a {
  margin: 0; color: #8aaabf;
  font-size: .84rem; text-decoration: none; line-height: 1.6;
}
.footer-column a:hover,
.site-footer nav a:hover { color: #fff; }
.footer-donate {
  width: fit-content; padding: 9px 16px;
  border-radius: 6px; border: 1px solid rgba(255,255,255,.25);
  color: #fff !important; font-size: .84rem; font-weight: 700;
}
.footer-donate:hover { background: rgba(255,255,255,.08); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ════════════════════════════════
   MEMBERS PAGE — HERO
════════════════════════════════ */
.page-hero {
  padding: clamp(108px,14vh,156px) 0 72px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, var(--page-alt) 100%);
  border-bottom: 3px solid var(--brand-gold);
  overflow: hidden;
}
.page-hero .section-kicker { justify-content: center; margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(1.55rem,4.8vw,2.2rem);
  max-width: min(100%, 22ch);
  margin-inline: auto;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}
.page-hero p {
  margin: 20px auto 0; max-width: min(100%, 560px);
  font-size: 1.02rem; color: var(--text-b); line-height: 1.75;
  overflow-wrap: break-word;
}
.page-hero__grid {
  width: min(760px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-items: center;
}
.page-hero__grid > div { width: 100%; min-width: 0; }

/* ════════════════════════════════
   MEMBERS PAGE — SECTIONS
════════════════════════════════ */
.members-section { background: var(--page); border-top: 1px solid var(--border); }
.members-section--dark { background: var(--page-alt); border-top: 1px solid var(--border); }

.member-cta {
  background: var(--page-alt);
  border-top: 3px solid var(--brand-red);
}
.member-cta__grid {
  display: grid; gap: clamp(24px,5vw,64px);
  grid-template-columns: minmax(0,1fr) auto; align-items: center;
}
.member-cta .button { width: fit-content; flex-shrink: 0; }

/* Executive committee */
.member-grid--executive {
  margin-top: 36px; display: grid; gap: 14px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.member-card--featured {
  padding: 20px;
  background: var(--page-warm);
  border: 1px solid var(--border); border-left: 5px solid var(--brand-gold);
  border-radius: 10px; box-shadow: var(--shadow-sm); margin: 0;
}
.member-card--featured .featured-info { display: grid; gap: 4px; }

.exec-row { display: contents; }

.member-grid {
  margin-top: 32px; display: grid; gap: 14px;
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.member-card {
  margin: 0; padding: 20px;
  background: var(--page); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: var(--shadow-sm);
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.member-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.member-card span {
  display: inline-block; color: var(--brand-red);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px;
}
.member-card h3 { margin: 0 0 6px; font-size: 1.06rem; color: var(--text-h); font-family: "Space Grotesk",sans-serif; }
.member-card p { margin: 0; color: var(--text-b); font-size: .88rem; }

.member-card[data-role="vp"]        { border-left: 4px solid var(--brand-cyan); }
.member-card[data-role="treasurer"] { border-left: 4px solid var(--brand-green); }
.member-card[data-role="secretary"] { border-left: 4px solid var(--brand-red); }
.member-card--featured              { border-left: 5px solid var(--brand-gold); }

/* Member featured role text */
.member-card--featured span {
  color: var(--brand-gold);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 8px;
}
.member-card--featured h3 { margin: 0 0 4px; font-size: 1.2rem; color: var(--text-h); font-family: "Space Grotesk",sans-serif; }
.member-card--featured p { margin: 0; color: var(--text-b); font-size: .92rem; }

/* Advisers */
.advisers-grid {
  display: grid; gap: 20px;
  grid-template-columns: minmax(200px,.75fr) minmax(0,1.25fr); align-items: start;
}
.adviser-list { display: grid; gap: 14px; }
.adviser-list article {
  padding: 20px; background: var(--page);
  border: 1px solid var(--border); border-left: 4px solid var(--brand-cyan);
  border-radius: 10px; box-shadow: var(--shadow-sm);
  transition: box-shadow 180ms ease;
}
.adviser-list article:hover { box-shadow: var(--shadow-md); }
.adviser-list h3 { margin: 0 0 6px; font-size: 1.02rem; color: var(--text-h); font-family: "Space Grotesk",sans-serif; }
.adviser-list p { margin: 0; color: var(--text-b); font-size: .88rem; line-height: 1.6; }

/* ── FOCUS ── */
:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 3px; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .site-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .hero, .manifesto__grid, .strategy__grid,
  .president__grid, .donate-page__grid, .advisers-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .north-star__grid { grid-template-columns: minmax(0,1fr); margin-top: 28px; }
  .hero { min-height: unset; }
  .visual-grid__main { min-height: 320px; }
  .member-cta__grid { grid-template-columns: minmax(0,1fr); }
  .donate-cta__grid { grid-template-columns: minmax(0,1fr); }
  .member-grid--executive { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px; padding-inline: 20px;
    grid-template-columns: auto auto 1fr; gap: 12px;
  }
  .brand img { height: 46px; }
  .menu-toggle { display: inline-flex; justify-content: center; align-items: center; }
  .site-nav {
    position: fixed; inset: 68px 16px auto 16px; z-index: 120;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px; background: #fff;
    border: 1px solid var(--border); border-radius: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 12px 14px; border-radius: 8px; background: var(--page-alt); }
  .site-nav a::after { display: none; }
  .header-cta { justify-self: end; min-height: 40px; padding-inline: 14px; font-size: .82rem; }
}

@media (max-width: 680px) {
  :root { --shell: min(1240px, calc(100% - 28px)); }
  .hero { padding-inline: 14px; }
  .hero h1 { font-size: clamp(1.9rem,8.5vw,2.6rem); }
  .page-hero { padding: 104px 0 58px; }
  .page-hero__grid {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
  .page-hero h1 {
    font-size: clamp(1.42rem,7vw,1.82rem);
    line-height: 1.14;
    max-width: 100%;
  }
  .page-hero p { font-size: .92rem; max-width: 100%; padding-inline: 0; }
  .visual-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "health" "field" "sanitation";
  }
  .visual-grid__main, .visual-grid__tile { min-height: 200px; }
  .emotion-band__grid { flex-direction: column; align-items: flex-start; }
  .program-matrix, .activity-rail, .trust-strip__grid,
  .member-grid, .member-grid--executive { grid-template-columns: minmax(0,1fr); }
  .site-footer__grid {
    grid-template-columns: minmax(0,1fr);
    text-align: center; justify-items: center;
  }
  .footer-column, .site-footer nav { justify-items: center; }
  .site-footer p, .site-footer__bottom p { text-align: center; }
  .site-footer__bottom { justify-content: center; }
}

@media (max-width: 520px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .header-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
