@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ink: oklch(22% 0.016 350);
  --ink-soft: oklch(36% 0.024 352);
  --gold: oklch(66.2% 0.209 356);
  --gold-light: oklch(88% 0.09 356);
  --gold-pale: oklch(96.5% 0.035 356);
  --pink-ink: oklch(48% 0.17 356);
  --white: #fff;
  --soft: oklch(98% 0.012 356);
  --muted: oklch(45% 0.024 352);
  --line: oklch(22% 0.016 350 / 0.11);
  --danger: oklch(45% 0.17 25);
  --container: min(1200px, calc(100vw - 48px));
  --font: "Rubik", "Trebuchet MS", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-nav: 30;
  --z-sticky: 40;
  --z-mobile: 60;
  --z-modal-backdrop: 80;
  --z-modal: 90;
  --z-skip: 100;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.popup-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 5.4vw, 5rem); }
h2 { font-size: clamp(2.25rem, 4.1vw, 3.85rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { text-wrap: pretty; }
::selection { color: var(--ink); background: var(--gold-light); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 145px) 0; }
.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-light);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.section-label,
.hero__location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--pink-ink);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0;
}
.section-label::before,
.hero__location::before { width: 24px; height: 2px; background: currentColor; content: ""; }
.lead { font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.45; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 0 24px;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.button > span { font-size: 1rem; transition: transform 180ms var(--ease-out); }
.button:hover { transform: translateY(-2px); }
.button:hover > span { transform: translateX(4px); }
.button:active { transform: translateY(0) scale(0.98); }
.button--small { min-height: 42px; padding-inline: 16px; }
.button--gold { color: var(--ink); background: var(--gold); }
.button--gold:hover { background: oklch(62% 0.21 356); }
.button--ink { color: var(--white); background: var(--ink); }
.button--ink:hover { background: oklch(29% 0.02 350); }
.button--outline { border-color: var(--line); color: var(--ink); background: transparent; }
.button--outline:hover { border-color: var(--ink); background: var(--soft); }
.button--text { min-height: 44px; border: 0; border-bottom: 1px solid currentColor; border-radius: 0; padding: 0; color: var(--ink); background: transparent; }
.button--text-light { color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.button-row--center { justify-content: center; }

.site-header { position: relative; z-index: var(--z-nav); background: var(--white); box-shadow: 0 3px 8px oklch(40% 0.08 356 / 0.07); }
.header__inner { display: flex; min-height: 104px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 250px; height: 92px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.65vw, 25px); }
.site-nav > a:not(.button) { position: relative; font-size: 0.8rem; font-weight: 680; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 3px; border-radius: 999px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms var(--ease-out); }
.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.support-stage { background: var(--white); }
.support-stage__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 390px); column-gap: clamp(55px, 7vw, 105px); }
.hero { grid-column: 1; grid-row: 1; min-width: 0; border-bottom: 1px solid var(--line); }
.hero__copy { max-width: 760px; padding: clamp(86px, 10vw, 140px) 0 clamp(90px, 11vw, 155px); }
.hero h1 { margin-bottom: 30px; }
.hero__lede { max-width: 670px; margin-bottom: 35px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.hero__note { margin: 24px 0 0; color: var(--muted); font-size: 0.82rem; }
.hero__note a { color: var(--ink); font-weight: 760; }

[data-hero-copy] > * { animation: hero-enter 680ms var(--ease-out) both; }
[data-hero-copy] > :nth-child(2) { animation-delay: 70ms; }
[data-hero-copy] > :nth-child(3) { animation-delay: 130ms; }
[data-hero-copy] > :nth-child(4) { animation-delay: 190ms; }
[data-hero-copy] > :nth-child(5) { animation-delay: 240ms; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(22px); clip-path: inset(0 0 18% 0); } to { opacity: 1; transform: translateY(0); clip-path: inset(0); } }

.support-rail { position: relative; grid-column: 2; grid-row: 1 / 5; min-width: 0; padding-top: 64px; }
.support-form-card { position: sticky; z-index: var(--z-sticky); top: 24px; overflow: hidden; border-radius: 16px; background: var(--white); box-shadow: 0 6px 8px oklch(50% 0.12 356 / 0.14); }
.support-form-card__heading { padding: 34px 32px 24px; background: var(--white); }
.support-form-card__heading p { display: inline-flex; margin-bottom: 16px; border-radius: 999px; padding: 7px 12px; color: var(--ink); background: var(--gold-light); font-size: 0.76rem; font-weight: 650; }
.support-form-card__heading h2 { margin-bottom: 12px; color: var(--ink); font-size: clamp(1.9rem, 2.7vw, 2.55rem); font-weight: 620; }
.support-form-card__heading span { display: block; max-width: 33ch; color: var(--muted); font-size: 0.82rem; }
.support-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 18px 32px 14px; }
.support-form label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 0.72rem; font-weight: 600; }
.support-form label:nth-of-type(3), .support-form label:nth-of-type(4), .support-form label:nth-of-type(5), .support-form .form-status, .support-form button { grid-column: 1 / -1; }
.support-form input, .support-form select, .support-form textarea { width: 100%; border: 0; border-radius: 10px; padding: 12px 14px; color: var(--ink); background: var(--soft); font-size: 0.86rem; box-shadow: inset 0 0 0 1px var(--line); transition: background-color 150ms ease, box-shadow 150ms ease; }
.support-form input, .support-form select { min-height: 48px; }
.support-form textarea { min-height: 98px; resize: vertical; }
.support-form input:focus, .support-form select:focus, .support-form textarea:focus { outline: 0; background: var(--white); box-shadow: 0 0 0 3px var(--gold-light); }
.support-form button { width: 100%; }
.support-form-card__note { margin: 0; padding: 11px 32px 28px; color: var(--muted); font-size: 0.68rem; line-height: 1.45; }
.form-status { min-height: 1.3em; margin: 0; color: var(--danger); font-size: 0.74rem; font-weight: 700; }

.stage-section { grid-column: 1; padding: clamp(85px, 10vw, 138px) 0; border-bottom: 1px solid var(--line); }
.stage-section h2 { max-width: 760px; }
.mission { grid-row: 2; }
.mission__copy { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(30px, 5vw, 68px); align-items: start; margin-top: 48px; }
.mission__copy p { margin-bottom: 0; }
.mission__copy p:last-child { color: var(--muted); }
.mission__image { position: relative; overflow: hidden; margin: 50px 0 0; border-radius: 20px; background: var(--gold-pale); }
.mission__image img { display: block; width: 100%; height: clamp(280px, 32vw, 460px); object-fit: cover; object-position: 38% center; }
.mission__image figcaption { position: absolute; right: 16px; bottom: 16px; max-width: 240px; margin: 0; border-radius: 999px; padding: 9px 14px; color: var(--ink); background: rgb(255 255 255 / 0.9); font-size: 0.72rem; font-weight: 650; backdrop-filter: blur(8px); }
.services { grid-row: 3; }
.stage-section__heading { display: grid; grid-template-columns: 1fr 0.62fr; gap: 38px; align-items: end; margin-bottom: 58px; }
.stage-section__heading .section-label { grid-column: 1 / -1; margin-bottom: -8px; }
.stage-section__heading > p:last-child { margin: 0; color: var(--muted); }
.program-list { display: grid; gap: 14px; }
.program-row { display: grid; overflow: hidden; grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr); min-height: 250px; border-radius: 16px; background: var(--soft); transition: background-color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.program-row:hover { background: var(--gold-pale); transform: translateY(-3px); }
.program-row__media { min-width: 0; margin: 0; background: var(--gold-pale); }
.program-row__media img { display: block; width: 100%; height: 100%; min-height: 250px; object-fit: cover; transition: transform 420ms var(--ease-out); }
.program-row:nth-child(1) .program-row__media img { object-position: center 46%; }
.program-row:nth-child(2) .program-row__media img { object-position: center 42%; }
.program-row:nth-child(3) .program-row__media img { object-position: center; }
.program-row:nth-child(4) .program-row__media img { object-position: center 38%; }
.program-row:hover .program-row__media img { transform: scale(1.025); }
.program-row:nth-child(even) .program-row__media { grid-column: 2; grid-row: 1; }
.program-row:nth-child(even) .program-row__content { grid-column: 1; grid-row: 1; }
.program-row__content { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; padding: 30px 28px; }
.program-row h3 { max-width: 100%; margin-bottom: 12px; font-size: clamp(1.55rem, 2.4vw, 2.35rem); overflow-wrap: anywhere; }
.program-row p { max-width: 520px; margin: 0; color: var(--muted); font-size: 0.92rem; }
.program-row a { margin-top: 20px; font-size: 0.76rem; font-weight: 680; white-space: nowrap; text-decoration: none; }
.program-row a span { display: inline-block; margin-left: 10px; transition: transform 160ms var(--ease-out); }
.program-row a:hover span { transform: translateX(4px); }

.impact { grid-row: 4; }
.impact-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 60px; }
.impact-list p { display: flex; min-height: 180px; flex-direction: column; justify-content: center; gap: 10px; margin: 0; border-radius: 14px; padding: 26px; background: var(--gold-pale); }
.impact-list strong { color: var(--pink-ink); font-size: clamp(3.2rem, 5.4vw, 5.25rem); font-weight: 620; line-height: 0.9; letter-spacing: -0.03em; }
.impact-list span { color: var(--ink-soft); font-size: 0.8rem; font-weight: 720; }
.impact__source { margin: 18px 0 0; color: var(--muted); font-size: 0.7rem; }

.who { background: var(--soft); }
.who__grid { display: grid; grid-template-columns: 0.78fr 1fr; gap: clamp(60px, 10vw, 140px); }
.who__intro { align-self: start; }
.who__intro > p:not(.section-label) { max-width: 460px; margin: 28px 0; color: var(--muted); }
.audience-list { display: grid; gap: 10px; }
.audience { border-radius: 14px; padding: 28px 30px; background: var(--white); }
.audience h3 { margin-bottom: 10px; }
.audience p { margin: 0; color: var(--muted); }

.founder { background: var(--white); }
.founder__grid { display: grid; grid-template-columns: 0.72fr 1fr; gap: clamp(60px, 9vw, 125px); align-items: center; }
.founder__image { position: relative; padding: 0 0 32px 32px; }
.founder__image::before { position: absolute; inset: 32px 32px 0 0; background: var(--gold-pale); content: ""; }
.founder__image img { position: relative; width: 100%; max-height: 650px; border-radius: 16px; object-fit: cover; object-position: center top; }
.founder__image > p { position: absolute; right: 0; bottom: 0; display: grid; min-width: 74%; margin: 0; border-radius: 12px 0 16px 0; padding: 18px 22px; color: var(--ink); background: var(--gold-light); }
.founder__image strong { font-size: 1.05rem; }
.founder__image span { color: var(--gold-light); font-size: 0.7rem; }
.founder__story h2 { margin-bottom: 30px; }
.founder__story > p:not(.section-label) { color: var(--muted); }
.founder blockquote { margin: 36px 0 0; border-radius: 14px; padding: 24px; color: var(--ink); background: var(--gold-pale); font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 560; line-height: 1.45; }

.team { background: var(--soft); }
.section-heading--split { display: grid; grid-template-columns: 1.2fr 0.65fr; gap: 8vw; align-items: end; margin-bottom: 70px; }
.section-heading--split > p { margin: 0; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 24px; align-items: end; }
.team-card__photo { overflow: hidden; height: 380px; margin-bottom: 20px; border-radius: 16px; background: var(--gold-pale); }
.team-card--feature .team-card__photo { height: 520px; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 500ms var(--ease-out); }
.team-card:hover img { transform: scale(1.025); }
.team-card__role { margin-bottom: 5px; color: var(--pink-ink); font-size: 0.72rem; font-weight: 700; }
.team-card h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }

.leadership-callout, .events-callout { padding: clamp(76px, 9vw, 120px) 0; color: var(--ink); background: var(--white); }
.leadership-callout { background: var(--soft); }
.leadership-callout .section-label, .events-callout .section-label, .event-invite .section-label { color: var(--ink); }
.leadership-callout__inner, .events-callout__inner { display: grid; grid-template-columns: 1.2fr 0.7fr; gap: 10vw; align-items: end; border-radius: 16px; padding: clamp(46px, 6vw, 78px); background: var(--gold-pale); }
.events-callout__inner { background: var(--soft); }
.leadership-callout__inner > div:last-child > p, .events-callout__inner > div:last-child > p { margin-bottom: 28px; color: var(--ink-soft); }
.leadership-callout .button--text-light, .events-callout .button--text-light, .event-invite .button--text-light { color: var(--ink); }

.location { background: var(--white); }
.location__top { display: grid; grid-template-columns: 1fr 0.85fr; gap: 7vw; align-items: end; margin-bottom: 52px; }
.counties { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.counties span { border: 1px solid var(--line); padding: 7px 11px; color: var(--muted); font-size: 0.68rem; font-weight: 700; }
.location__grid { display: grid; grid-template-columns: 1.5fr 0.72fr; min-height: 540px; }
.map-wrap { overflow: hidden; min-height: 470px; border-radius: 16px 0 0 16px; background: var(--soft); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 470px; border: 0; filter: grayscale(0.55) contrast(0.95); }
.contact-card { display: flex; flex-direction: column; justify-content: center; border-radius: 0 16px 16px 0; padding: 50px 42px; color: var(--ink); background: var(--gold-pale); }
.contact-card .section-label { color: var(--ink); }
.contact-card h3 { margin-bottom: 30px; }
.contact-card address { display: grid; gap: 13px; margin-bottom: 30px; font-style: normal; }
.contact-card address a { color: var(--ink); text-decoration: none; }
.contact-card .button { align-self: flex-start; }
.contact-card__note { margin: 24px 0 0; color: var(--ink-soft); font-size: 0.72rem; }

.donate-band { padding: clamp(88px, 11vw, 145px) 0; color: var(--ink); text-align: center; background: var(--white); }
.donate-band__inner { max-width: 920px; border-radius: 16px; padding: clamp(56px, 7vw, 88px); background: var(--gold-light); }
.donate-band h2 { margin-bottom: 26px; }
.donate-band__inner > p { max-width: 650px; margin: 0 auto 32px; color: var(--ink-soft); }
.donate-band .button--text-light { color: var(--ink); }

.site-footer { padding: 76px 0 24px; color: var(--muted); background: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 0.7fr 0.8fr 1.1fr; gap: 54px; padding-bottom: 64px; }
.footer__grid--legal { grid-template-columns: 1.4fr 1fr; }
.footer__brand img { width: 285px; height: 145px; object-fit: contain; object-position: left center; }
.footer__brand p { max-width: 380px; font-size: 0.88rem; }
.footer__heading { margin: 28px 0 20px; color: var(--pink-ink); font-family: var(--font); font-size: 0.72rem; font-weight: 700; line-height: 1.2; letter-spacing: 0; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { width: fit-content; font-size: 0.8rem; text-decoration: none; }
.footer__links a:hover { color: var(--ink); }
.footer__bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; border-top: 1px solid var(--line); padding-top: 22px; font-size: 0.68rem; }
.footer__bottom p { margin: 0; }
.footer__bottom div { display: flex; gap: 22px; }
.footer__bottom a { text-decoration: none; }
.footer__credit { text-align: right; }

.popup { position: fixed; z-index: var(--z-modal-backdrop); inset: 0; display: grid; place-items: center; padding: 24px; }
.popup[hidden] { display: none; }
.popup__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: oklch(10% 0.025 340 / 0.76); backdrop-filter: blur(4px); cursor: pointer; }
.popup__card { position: relative; z-index: var(--z-modal); width: min(500px, 100%); border-radius: 16px; padding: 50px; background: var(--white); box-shadow: 0 6px 8px oklch(10% 0.02 350 / 0.2); }
.popup__card h2 { margin-bottom: 20px; font-size: clamp(2.35rem, 5vw, 3.8rem); }
.popup__card > p:not(.section-label) { color: var(--muted); }
.popup__close { position: absolute; top: 14px; right: 16px; width: 40px; height: 40px; border: 0; background: transparent; font-size: 2rem; line-height: 1; cursor: pointer; }
.popup__later { display: block; margin: 17px 0 0; border: 0; padding: 0; color: var(--muted); background: transparent; font-size: 0.76rem; text-decoration: underline; cursor: pointer; }
.mobile-actions { display: none; }

.events-main { background: var(--white); }
.events-hero { border-bottom: 1px solid var(--line); padding: clamp(95px, 12vw, 170px) 0; background: var(--soft); }
.events-hero__inner { max-width: 980px; }
.events-hero h1 { max-width: 900px; margin-bottom: 30px; }
.events-hero__inner > p:last-child { max-width: 760px; margin-bottom: 0; color: var(--muted); font-size: 1.15rem; }
.event-feature__heading { display: grid; grid-template-columns: 1fr 0.62fr; gap: 8vw; align-items: end; margin-bottom: 60px; }
.event-feature__heading > p { margin: 0; color: var(--muted); }
.event-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.event-gallery figure { margin: 0; }
.event-gallery img { width: 100%; aspect-ratio: 4 / 5; border-radius: 16px; object-fit: cover; object-position: center; }
.event-gallery figcaption { padding-top: 12px; color: var(--muted); font-size: 0.72rem; }
.event-invite { padding: clamp(80px, 10vw, 140px) 0; color: var(--ink); background: var(--gold-pale); }
.event-invite__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 9vw; align-items: end; }
.event-invite__inner > div:last-child > p { margin-bottom: 30px; color: var(--ink-soft); }

.legal-main { background: var(--white); }
.legal-hero { padding: clamp(80px, 10vw, 135px) 0 70px; border-bottom: 1px solid var(--line); color: var(--ink); background: var(--soft); }
.legal-hero h1 { margin-bottom: 18px; }
.legal-hero > .container > p:not(.section-label):not(.eyebrow):not(.legal-updated) { max-width: 680px; font-size: 1.2rem; }
.legal-updated { margin-top: 26px; color: var(--muted); font-size: 0.75rem; }
.legal-content { max-width: 820px; padding-top: 80px; padding-bottom: 100px; }
.legal-content section { border-bottom: 1px solid var(--line); padding: 0 0 38px; margin-bottom: 38px; }
.legal-content h2 { margin-bottom: 18px; font-size: 2rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content li + li { margin-top: 8px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--pink-ink); font-size: 0.86rem; font-weight: 700; }
.eyebrow::before { width: 24px; height: 2px; background: currentColor; content: ""; }

@media (max-width: 1100px) {
  :root { --container: min(100% - 40px, 960px); }
  .menu-toggle { position: relative; z-index: calc(var(--z-nav) + 2); display: flex; align-items: center; gap: 11px; border: 0; padding: 10px 0; background: transparent; cursor: pointer; }
  .menu-toggle__label { font-size: 0.72rem; font-weight: 800; }
  .menu-toggle__lines { display: grid; gap: 5px; }
  .menu-toggle__lines i { display: block; width: 24px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: calc(var(--z-nav) + 1); top: 0; right: 0; bottom: 0; display: flex; width: min(440px, 60vw); flex-direction: column; align-items: stretch; gap: 0; padding: 112px 36px 40px; background: var(--white); box-shadow: -8px 0 8px oklch(10% 0.01 75 / 0.12); transform: translateX(105%); transition: transform 240ms var(--ease-out); }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a:not(.button) { display: block; border-bottom: 1px solid var(--line); padding: 15px 0; font-size: 1.3rem; }
  .site-nav .button { margin-top: 14px; }
  .support-stage__grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 350px); column-gap: 45px; }
  .support-form { grid-template-columns: 1fr; }
  .support-form label, .support-form label:nth-of-type(4), .support-form label:nth-of-type(5), .support-form .form-status, .support-form button { grid-column: 1; }
  .program-row { grid-template-columns: 1fr; }
  .program-row:nth-child(even) .program-row__media, .program-row:nth-child(even) .program-row__content { grid-column: 1; }
  .program-row:nth-child(even) .program-row__media { grid-row: 1; }
  .program-row:nth-child(even) .program-row__content { grid-row: 2; }
  .program-row__media { grid-row: 1; }
  .program-row__content { grid-row: 2; }
  .program-row__media img { height: 210px; min-height: 210px; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 32px); }
  body { padding-bottom: 58px; font-size: 15px; }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.75rem, 12.5vw, 4rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.45rem); }
  .header__inner { min-height: 78px; }
  .brand img { width: 182px; height: 68px; }
  .site-nav { width: min(88vw, 390px); padding: 100px 28px 36px; }
  .support-stage__grid { display: flex; flex-direction: column; }
  .hero { order: 1; }
  .hero__copy { padding: 68px 0 74px; }
  .hero__lede { font-size: 1.02rem; }
  .button-row .button { width: 100%; }
  .support-rail { order: 2; padding: 0 0 76px; }
  .support-form-card { position: static; }
  .support-form { grid-template-columns: 1fr 1fr; }
  .support-form label:nth-of-type(1), .support-form label:nth-of-type(2), .support-form label:nth-of-type(3) { grid-column: auto; }
  .support-form label:nth-of-type(3) { grid-column: 1 / -1; }
  .support-form label:nth-of-type(4), .support-form label:nth-of-type(5), .support-form .form-status, .support-form button { grid-column: 1 / -1; }
  .stage-section { order: 3; padding: 76px 0; }
  .mission { order: 3; }
  .services { order: 4; }
  .impact { order: 5; }
  .mission__copy, .stage-section__heading, .who__grid, .founder__grid, .section-heading--split, .leadership-callout__inner, .events-callout__inner, .location__top, .location__grid, .event-feature__heading, .event-invite__inner { grid-template-columns: 1fr; }
  .mission__copy { gap: 22px; margin-top: 34px; }
  .stage-section__heading { gap: 22px; margin-bottom: 42px; }
  .stage-section__heading .section-label { margin-bottom: -2px; }
  .program-row { grid-template-columns: 1fr; min-height: 0; }
  .program-row__media img { height: 230px; min-height: 230px; }
  .program-row__content { padding: 26px 24px 28px; }
  .impact-list { grid-template-columns: 1fr; margin-top: 42px; }
  .impact-list p { min-height: 128px; padding: 22px 0; }
  .impact-list p + p { border-left: 0; }
  .who__grid { gap: 52px; }
  .founder__grid { gap: 62px; }
  .founder__image { margin-right: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card--feature { grid-column: 1 / -1; }
  .team-card--feature .team-card__photo { height: min(128vw, 620px); }
  .team-card__photo { height: 55vw; }
  .leadership-callout__inner, .events-callout__inner, .event-invite__inner { gap: 32px; }
  .location__top { gap: 28px; }
  .counties { justify-content: flex-start; }
  .map-wrap, .map-wrap iframe { min-height: 380px; }
  .map-wrap { border-radius: 16px 16px 0 0; }
  .contact-card { border-radius: 0 0 16px 16px; padding: 38px 26px; }
  .event-gallery { grid-template-columns: 1fr; }
  .event-feature__heading { gap: 24px; margin-bottom: 42px; }
  .event-gallery img { aspect-ratio: 4 / 5; }
  .footer__grid, .footer__grid--legal { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
  .footer__bottom { grid-template-columns: 1fr; gap: 12px; }
  .footer__bottom div { order: -1; }
  .footer__credit { text-align: left; }
  .popup__card { padding: 44px 26px 32px; }
  .mobile-actions { position: fixed; z-index: var(--z-mobile); right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 58px; box-shadow: 0 -4px 8px oklch(10% 0.01 75 / 0.14); }
  .mobile-actions a { display: grid; place-items: center; border-top: 1px solid var(--line); color: var(--ink); background: var(--white); font-size: 0.76rem; font-weight: 700; text-decoration: none; }
  .mobile-actions a:last-child { color: var(--ink); background: var(--gold); }
}

@media (max-width: 430px) {
  .support-form { grid-template-columns: 1fr; }
  .support-form label, .support-form label:nth-of-type(1), .support-form label:nth-of-type(2), .support-form label:nth-of-type(3), .support-form label:nth-of-type(4), .support-form label:nth-of-type(5) { grid-column: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card--feature { grid-column: auto; }
  .team-card__photo, .team-card--feature .team-card__photo { height: 122vw; max-height: 540px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand, .footer__grid > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
