@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #07182f;
  --ink-2: #102a49;
  --red: #c92732;
  --red-dark: #a71924;
  --cream: #f5efe4;
  --paper: #fbfaf7;
  --white: #fff;
  --muted: #5c6878;
  --line: #dfe3e7;
  --gold: #d4a24c;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(7, 24, 47, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: .98; }
h1, h2, h3, .nav-brand-copy strong { font-family: "Barlow Condensed", Impact, sans-serif; text-transform: uppercase; letter-spacing: -.02em; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: white; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #f3c7c9; }
.section-head { display: grid; grid-template-columns: 1fr minmax(260px, 440px); align-items: end; gap: 60px; margin-bottom: 46px; }
.section-title { max-width: 700px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.section-copy { color: var(--muted); font-size: 1rem; }
.centered { text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered .section-copy { max-width: 650px; margin: 18px auto 0; }

/* Navigation */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,250,247,.95); border-bottom: 1px solid rgba(7,24,47,.08); backdrop-filter: blur(14px); }
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 54px; height: 54px; object-fit: contain; }
.nav-brand-copy { display: grid; line-height: 1; }
.nav-brand-copy strong { font-size: 1.35rem; letter-spacing: .02em; }
.nav-brand-copy span { margin-top: 5px; color: var(--muted); font-size: .59rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.nav-links a { display: block; padding: 10px 11px; border-radius: 999px; font-size: .8rem; font-weight: 700; }
.nav-links a:hover, .nav-links a.active { color: var(--red); background: #f4e9e8; }
.nav-links a.donate-link { color: var(--red); border: 1px solid rgba(201,39,50,.28); }
.nav-links a.cta { margin-left: 2px; padding: 12px 19px; color: white; background: var(--red); }
.nav-links a.cta:hover { background: var(--red-dark); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; font-size: 1.35rem; cursor: pointer; }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: .83rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--red); }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { color: white; background: var(--ink); }
.btn-outline { color: var(--ink); border-color: rgba(7,24,47,.22); background: transparent; }
.btn-light { color: var(--ink); background: white; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.text-link::after { content: "\2192"; font-size: 1.05rem; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Home */
.hero { position: relative; overflow: hidden; min-height: 660px; color: white; background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 74% 43%, rgba(201,39,50,.3), transparent 36%), linear-gradient(105deg, rgba(7,24,47,.25), rgba(7,24,47,.92)); }
.hero::after { content: ""; position: absolute; width: 650px; height: 650px; right: -150px; bottom: -360px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); align-items: center; gap: 50px; min-height: 660px; padding: 72px 0; }
.hero h1 { max-width: 780px; color: white; font-size: clamp(4rem, 8vw, 7.3rem); }
.hero h1 span { display: block; color: #f0cfc8; }
.hero-copy { max-width: 650px; margin: 24px 0 30px; color: #d1d9e2; font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hero-logo-wrap { position: relative; justify-self: end; }
.hero-logo-wrap::before { content: ""; position: absolute; inset: 12% 9%; border-radius: 50%; background: rgba(255,255,255,.13); filter: blur(40px); }
.hero-logo { position: relative; width: min(440px, 38vw); filter: drop-shadow(0 34px 30px rgba(0,0,0,.35)); }
.hero .btn-outline { color: white; border-color: rgba(255,255,255,.48); }
.quick-strip { position: relative; z-index: 3; margin-top: -38px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.quick-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 25px 28px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-number { color: var(--red); font: 800 2.5rem/1 "Barlow Condensed", sans-serif; }
.quick-item strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 1.2rem; text-transform: uppercase; }
.quick-item span:last-child { color: var(--muted); font-size: .74rem; }
.section { padding: 112px 0; }
.section.alt { background: var(--cream); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card { position: relative; min-height: 330px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 32px; border-radius: var(--radius); color: white; background: var(--ink); }
.program-card::before { content: ""; position: absolute; width: 250px; height: 250px; right: -95px; top: -95px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.02); }
.program-card.red { background: var(--red); }
.program-card.cream { color: var(--ink); background: #e8dac1; }
.program-icon { position: absolute; top: 29px; left: 30px; font: 800 3.6rem/1 "Barlow Condensed", sans-serif; opacity: .35; }
.program-card h3 { position: relative; color: inherit; font-size: 2.15rem; }
.program-card p { position: relative; max-width: 300px; margin: 13px 0 22px; color: inherit; opacity: .8; font-size: .9rem; }
.program-card .text-link { color: inherit; }
.mission-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; align-items: center; }
.mission-mark { position: relative; display: grid; place-items: center; min-height: 500px; border-radius: var(--radius); background: var(--ink); overflow: hidden; }
.mission-mark::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.02); }
.mission-mark img { position: relative; z-index: 2; width: 75%; filter: drop-shadow(0 20px 20px rgba(0,0,0,.4)); }
.mission-copy h2 { font-size: clamp(3.2rem, 6vw, 5.8rem); }
.mission-copy > p { margin: 26px 0; color: var(--muted); font-size: 1.05rem; }
.values { display: grid; gap: 0; margin: 28px 0 34px; border-top: 1px solid var(--line); }
.value { display: grid; grid-template-columns: 52px 1fr; gap: 10px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.value span { color: var(--red); font: 800 1.1rem "Barlow Condensed", sans-serif; }
.value strong { text-transform: uppercase; }
.value p { margin: 4px 0 0; color: var(--muted); font-size: .85rem; }
.cta-band { padding: 72px 0; color: white; background: var(--red); }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.cta-band h2 { max-width: 760px; color: white; font-size: clamp(2.8rem, 5vw, 5rem); }
.cta-band p { margin: 13px 0 0; color: #f7d9db; }
.sponsor-love { padding: 88px 0; background: white; }
.sponsor-love-inner { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.sponsor-love h2 { font-size: clamp(3rem, 5vw, 5rem); }
.sponsor-love p { max-width: 520px; margin: 20px 0 26px; color: var(--muted); }
.logo-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sponsor-logo { min-height: 118px; display: grid; place-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 14px; color: #9aa2ac; background: var(--paper); font: 800 .72rem Manrope, sans-serif; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.sponsor-logo img { max-width: 160px; max-height: 72px; object-fit: contain; }
.sponsor-logo-active { gap: 12px; color: var(--ink); text-decoration: none; text-transform: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
a.sponsor-logo-active:hover { transform: translateY(-3px); border-color: #c7cbd0; box-shadow: 0 12px 26px rgba(20, 25, 31, .08); }
.sponsor-logo-copy { display: grid; gap: 3px; letter-spacing: 0; }
.sponsor-logo-copy strong { font-size: .88rem; }
.sponsor-logo-copy span { color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.sponsor-logo-empty { grid-column: 1 / -1; min-height: 100px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.team-card { min-height: 250px; display: grid; place-items: center; align-content: center; gap: 18px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: white; text-align: center; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
a.team-card:hover { transform: translateY(-4px); border-color: #c7cbd0; box-shadow: 0 14px 30px rgba(20, 25, 31, .09); }
.team-logo { width: 128px; height: 128px; display: grid; place-items: center; }
.team-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.team-card-copy { display: grid; gap: 5px; }
.team-card-copy strong { font: 800 1.05rem Manrope, sans-serif; }
.team-card-copy span { color: var(--muted); font: 700 .72rem Manrope, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.team-empty { grid-column: 1 / -1; padding: 40px 24px; border: 1px dashed #c7cbd0; border-radius: var(--radius); color: var(--muted); background: white; text-align: center; }
.donation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.donation-card { position: relative; overflow: hidden; min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; border-radius: var(--radius); color: white; background: var(--ink); }
.donation-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -110px; top: -110px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025); }
.donation-card.crypto { background: var(--red); }
.donation-card h2 { color: white; font-size: clamp(2.8rem, 5vw, 4.2rem); }
.donation-card p { max-width: 450px; margin-top: 18px; color: rgba(255,255,255,.78); }
.donation-card .button-row { position: relative; z-index: 2; margin-top: 35px; }
.btn[aria-disabled="true"] { opacity: .65; pointer-events: none; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; padding: 92px 0 86px; color: white; background: var(--ink); }
.page-hero::after { content: ""; position: absolute; width: 500px; height: 500px; right: -120px; top: -220px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 850px; color: white; font-size: clamp(4rem, 8vw, 7rem); }
.page-hero p { max-width: 680px; margin: 22px 0 0; color: #ccd5df; font-size: 1.08rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.split h2 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.split-copy { color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 40px rgba(7,24,47,.05); }
.card-kicker { display: block; margin-bottom: 24px; color: var(--red); font: 800 .74rem Manrope, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.card h3 { font-size: 1.75rem; }
.card p { margin: 14px 0 0; color: var(--muted); font-size: .9rem; }
.card .text-link { margin-top: 24px; }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.board-card { display: flex; flex-direction: column; min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 40px rgba(7,24,47,.05); }
.board-role { display: block; margin-bottom: 28px; color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.board-card h3 { font-size: 2rem; }
.board-card > p { margin-top: 12px; color: var(--muted); font-size: .86rem; }
.board-contact { display: grid; gap: 7px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 700; }
.board-contact a { color: var(--ink-2); }
.board-contact a:hover { color: var(--red); }
.document-list { display: grid; gap: 12px; }
.document-link { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 18px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: white; transition: transform .2s ease, border-color .2s ease; }
.document-link:not([aria-disabled="true"]):hover { transform: translateY(-2px); border-color: rgba(201,39,50,.45); }
.document-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 11px; color: white; background: var(--ink); font: 800 .72rem Manrope, sans-serif; }
.document-link strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 1.3rem; text-transform: uppercase; }
.document-link span:not(.document-icon):not(.document-action) { color: var(--muted); font-size: .8rem; }
.document-action { color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.document-link[aria-disabled="true"] { cursor: default; }
.document-link[aria-disabled="true"] .document-action { color: #9aa2ac; }
.process { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 42px; }
.process-item { position: relative; padding: 32px 32px 0 0; border-top: 2px solid var(--ink); }
.process-item::before { counter-increment: step; content: "0" counter(step); display: inline-block; margin-top: -20px; padding: 0 10px 0 0; color: var(--red); background: var(--paper); font: 800 1.1rem "Barlow Condensed", sans-serif; }
.process-item h3 { margin-top: 22px; font-size: 1.6rem; }
.process-item p { max-width: 310px; margin-top: 10px; color: var(--muted); font-size: .88rem; }
.notice { max-width: 850px; margin: 0 auto; padding: 24px 28px; border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; background: #fff8e9; color: #6a593a; font-size: .9rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: white; background: var(--ink); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
td { color: var(--muted); }
tbody tr:last-child td { border-bottom: 0; }
.status-pill { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: #785f2a; background: #f5e6bf; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.calendar-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 28px; color: white; background: var(--ink); }
.calendar-toolbar strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 1.45rem; text-transform: uppercase; }
.calendar-toolbar span { color: #bdc8d5; font-size: .78rem; }
.calendar-toolbar .btn { min-height: 44px; padding: 0 18px; }
.event-list { display: grid; }
.event-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 26px; align-items: center; padding: 28px; border-bottom: 1px solid var(--line); }
.event-item:last-child { border-bottom: 0; }
.event-date { display: grid; place-items: center; min-height: 84px; border-radius: 12px; color: white; background: var(--red); text-align: center; }
.event-date span { font: 800 .78rem Manrope, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.event-date strong { font: 800 2.3rem/.9 "Barlow Condensed", sans-serif; }
.event-details h3 { font-size: 1.85rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: 7px 18px; margin-top: 10px; color: var(--muted); font-size: .8rem; }
.event-description { margin: 10px 0 0; color: var(--muted); font-size: .85rem; }
.event-type { align-self: start; display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--red); background: #f4e9e8; font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.calendar-empty { padding: 65px 30px; text-align: center; }
.calendar-empty-mark { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; color: var(--red); background: #f4e9e8; font: 800 1.2rem "Barlow Condensed", sans-serif; }
.calendar-empty h3 { font-size: 2rem; }
.calendar-empty p { max-width: 510px; margin: 12px auto 0; color: var(--muted); font-size: .88rem; }
.calendar-error { padding: 24px; color: #8a2028; background: #fbe7e8; font-size: .85rem; }
.form-shell { max-width: 820px; margin: 0 auto; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-intro { margin-bottom: 28px; }
.form-intro h2 { font-size: 2.7rem; }
.form-intro p { margin-top: 10px; color: var(--muted); font-size: .9rem; }
fieldset { margin: 0 0 25px; padding: 0; border: 0; }
legend { width: 100%; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font: 800 1.35rem "Barlow Condensed", sans-serif; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
label { display: block; margin-bottom: 7px; font-size: .78rem; font-weight: 800; }
input, select, textarea { width: 100%; padding: 13px 15px; border: 1px solid #cbd1d7; border-radius: 9px; color: var(--ink); background: #fcfcfb; font: inherit; font-size: .9rem; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(201,39,50,.13); border-color: var(--red); }
.form-status { display: none; margin: 16px 0 0; padding: 12px 14px; border-radius: 8px; font-size: .85rem; }
.form-status.show { display: block; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.contact-list { display: grid; gap: 12px; }
.contact-item { padding: 23px 0; border-bottom: 1px solid var(--line); }
.contact-item strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.contact-item span { color: var(--muted); font-size: .88rem; }

/* Footer */
.site-footer { padding: 72px 0 24px; color: #aeb9c6; background: #051326; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 70px; padding-bottom: 55px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand img { width: 58px; }
.footer-brand strong { color: white; font: 800 1.8rem "Barlow Condensed", sans-serif; text-transform: uppercase; }
.footer-lead { max-width: 420px; font-size: .88rem; }
.site-footer h4 { margin-bottom: 18px; color: white; font: 800 1rem Manrope, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; font-size: .84rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }

@media (max-width: 930px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; inset: 84px 0 auto; display: none; max-height: calc(100vh - 84px); overflow: auto; padding: 20px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 14px 16px; }
  .nav-links a.cta { margin: 8px 0 0; text-align: center; }
  .hero-inner { grid-template-columns: 1fr .55fr; }
  .program-grid, .cards, .board-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .program-card:last-child, .cards .card:last-child { grid-column: 1 / -1; }
  .mission-wrap { gap: 45px; }
  .sponsor-love-inner { gap: 40px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 74px; }
  .nav-brand-copy span { display: none; }
  .nav-links { top: 74px; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 76px 0 100px; }
  .hero-logo-wrap { position: absolute; right: -80px; bottom: 2px; opacity: .18; }
  .hero-logo { width: 330px; }
  .hero h1 { font-size: clamp(3.8rem, 17vw, 5.7rem); }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-item:last-child { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-head, .split, .mission-wrap, .contact-grid, .sponsor-love-inner { grid-template-columns: 1fr; gap: 28px; }
  .program-grid, .cards, .board-grid, .team-grid { grid-template-columns: 1fr; }
  .program-card:last-child, .cards .card:last-child { grid-column: auto; }
  .mission-mark { min-height: 390px; }
  .process { grid-template-columns: 1fr; gap: 35px; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .page-hero { padding: 72px 0; }
  .page-hero h1 { font-size: clamp(3.6rem, 17vw, 5.5rem); }
  .form-shell { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .logo-wall, .donation-grid { grid-template-columns: 1fr; }
  .document-link { grid-template-columns: 44px 1fr; padding: 17px; }
  .document-icon { width: 44px; height: 44px; }
  .document-action { grid-column: 2; }
  .calendar-toolbar { align-items: flex-start; flex-direction: column; }
  .event-item { grid-template-columns: 76px 1fr; gap: 18px; padding: 20px; }
  .event-date { min-height: 74px; }
  .event-type { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
.cf-turnstile {
  margin-bottom: 18px;
}
