:root {
  --bg: #050505;
  --bg2: #0d0d0d;
  --surface: #151515;
  --surface2: #1d1d1d;
  --gold: #fdc726;
  --gold2: #e8b422;
  --ink: #f2f0e7;
  --muted: #a2a3a3;
  --faint: #7a7c7c;
  --border: rgba(255,255,255,.09);
  --border2: rgba(255,255,255,.2);
  --fd: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --fb: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --r: 10px;
  --rs: 6px;
  --ease: cubic-bezier(.22,.61,.21,1);
  --maxw: 1200px;
  --hdr-h: 68px;
  --shadow: 0 18px 50px rgba(0,0,0,.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 28px); -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; overflow-x: hidden; background: var(--bg); color: var(--ink); font: 400 16px/1.6 var(--fb); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; background: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; }
strong, b { color: var(--ink); font-weight: 600; }
::selection { background: var(--gold); color: #0a0a0a; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--rs); }
[hidden] { display: none !important; }

.skip-link { position: absolute; top: -60px; left: 16px; z-index: 200; padding: 12px 16px; border-radius: var(--rs); background: var(--gold); color: #0a0a0a; font-size: 13px; font-weight: 600; transition: top .2s var(--ease); }
.skip-link:focus { top: 12px; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section.alt, .fund, .band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section.alt, .band { background: var(--bg2); }
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-21 { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }

.kicker { display: block; color: var(--muted); font: 600 13px/1 var(--fd); letter-spacing: .24em; text-transform: uppercase; }
.kicker.gold { color: var(--gold); }
.h1 { font: 700 clamp(36px, 5vw, 62px)/1.04 var(--fd); letter-spacing: .005em; text-transform: uppercase; }
.h2 { font: 700 clamp(28px, 3.5vw, 42px)/1.05 var(--fd); letter-spacing: .008em; text-transform: uppercase; }
.h3 { color: var(--ink); font: 700 20px/1.2 var(--fd); letter-spacing: .04em; text-transform: uppercase; }
.lead { color: var(--muted); font-size: 17px; line-height: 1.65; }
.small { color: var(--muted); font-size: 14px; line-height: 1.6; }
.cap { color: var(--faint); font: 600 12px/1 var(--fd); letter-spacing: .16em; text-transform: uppercase; }
.sec-head { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin-bottom: 44px; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.sec-head-row .sec-head { margin-bottom: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; padding: 0 22px; border: 1px solid transparent; border-radius: var(--rs); font: 600 14px/1 var(--fb); letter-spacing: .02em; white-space: nowrap; transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .12s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #0a0a0a; }
.btn-primary:hover { background: var(--gold2); }
.btn-ghost { border-color: var(--border2); color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); }
.btn-lg { min-height: 52px; padding: 0 30px; font-size: 15px; }
.btn-sm { min-height: 38px; padding: 0 16px; font-size: 13px; }
.btn-block { width: 100%; }
.link-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 5px 2px; border-bottom: 1px solid transparent; color: var(--ink); font: 600 14px/1.4 var(--fb); transition: color .15s, border-color .15s; }
.link-ghost:hover { color: var(--gold); border-color: var(--border2); }
.link-ghost .ic { width: 16px; height: 16px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid transparent; border-radius: var(--rs); color: var(--muted); transition: color .15s, background .15s, border-color .15s; }
.icon-btn:hover { border-color: var(--border); background: rgba(255,255,255,.06); color: var(--ink); }
.ic { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.card { padding: 24px; border: 1px solid var(--border); border-radius: var(--r); background: var(--surface); }
.card-hover:hover, .support-option:hover { border-color: var(--border2); background: var(--surface2); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tag, .status-chip { display: inline-flex; align-items: center; width: fit-content; border: 1px solid var(--border); border-radius: 999px; padding: 6px 11px; color: var(--muted); font: 600 11px/1 var(--fd); letter-spacing: .16em; text-transform: uppercase; }
.tag.gold { border-color: rgba(253,199,38,.35); background: rgba(253,199,38,.07); color: var(--gold); }
.status-chip { color: var(--faint); letter-spacing: .08em; }
.notice { max-width: 720px; padding: 14px 16px; border: 1px solid var(--border2); border-radius: var(--rs); background: rgba(255,255,255,.035); color: var(--muted); font-size: 14px; line-height: 1.55; }
.notice strong { color: var(--ink); }
.pending-action { display: inline-flex; align-items: center; align-self: flex-start; padding: 8px 12px; border: 1px dashed var(--border2); border-radius: 999px; color: var(--faint); font: 600 11px/1 var(--fd); letter-spacing: .13em; text-transform: uppercase; }

/* Header and navigation */
.hdr { position: sticky; top: 0; z-index: 90; border-bottom: 1px solid transparent; background: rgba(5,5,5,.62); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: background .25s var(--ease), border-color .25s var(--ease); }
.hdr.scrolled { border-color: var(--border); background: rgba(5,5,5,.94); }
.hdr-in { display: flex; align-items: center; gap: 28px; height: var(--hdr-h); }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; flex: none; overflow: hidden; border: 1px solid var(--border2); border-radius: var(--rs); background: var(--surface); }
.brand-mark img { width: 34px; height: 34px; object-fit: contain; border-radius: 4px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-top { color: var(--ink); font: 700 17px/1 var(--fd); letter-spacing: .2em; text-transform: uppercase; }
.brand-sub { margin-top: 4px; color: var(--muted); font: 600 10.5px/1 var(--fd); letter-spacing: .3em; text-transform: uppercase; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link { position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 10px 11px; border-radius: var(--rs); color: var(--muted); font: 600 13px/1 var(--fb); transition: color .15s, background .15s; }
.nav-link:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { position: absolute; right: 11px; bottom: 3px; left: 11px; height: 2px; border-radius: 2px; background: var(--gold); content: ""; }
.nav-link .ic { width: 13px; height: 13px; opacity: .7; }
.has-drop { position: relative; }
.drop { position: absolute; top: calc(100% + 10px); left: 0; z-index: 95; min-width: 220px; padding: 8px; border: 1px solid var(--border2); border-radius: var(--r); background: var(--surface); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s; }
.has-drop:hover .drop, .has-drop:focus-within .drop, .has-drop.open .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-list > li:last-child .drop { right: 0; left: auto; }
.drop a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: var(--rs); color: var(--muted); font-size: 14px; }
.drop a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.drop a .ic { width: 14px; height: 14px; color: var(--faint); }
.hdr-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; }

/* Mobile navigation */
.mnav { position: fixed; inset: 0; z-index: 120; background: rgba(5,5,5,.68); opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), visibility .22s; }
.mnav.open { opacity: 1; visibility: visible; }
.mnav-panel { position: absolute; top: 0; right: 0; bottom: 0; display: flex; width: min(420px, 92vw); flex-direction: column; overflow-y: auto; border-left: 1px solid var(--border2); background: var(--bg2); transform: translateX(100%); transition: transform .26s var(--ease); }
.mnav.open .mnav-panel { transform: translateX(0); }
.mnav-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.mnav-head .brand { margin: 0; }
.mnav-body > ul { display: flex; flex-direction: column; padding: 14px 22px 24px; }
.mnav-body li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 15px; }
.mnav-body li a:hover { color: var(--ink); }
.mnav-body .mnav-heading { padding: 18px 0 8px; color: var(--gold); font: 700 12px/1 var(--fd); letter-spacing: .2em; text-transform: uppercase; }
.mnav-body .mnav-heading:first-child { padding-top: 4px; }
.mnav-foot { display: flex; flex-direction: column; gap: 10px; padding: 18px 22px calc(24px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); margin-top: auto; }
.mnav-loc { color: var(--faint); font-size: 12px; line-height: 1.5; }
.quickbar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 100; display: grid; grid-template-columns: repeat(4, 1fr); padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--border2); background: rgba(13,13,13,.95); backdrop-filter: blur(14px); }
.quickbar a { display: flex; min-height: 58px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 10px 4px 12px; color: var(--muted); }
.quickbar a:hover, .quickbar a[aria-current="page"] { color: var(--ink); }
.quickbar a:last-child { color: var(--gold); }
.quickbar a .ic { width: 21px; height: 21px; }
.quickbar a span { font: 600 10.5px/1 var(--fd); letter-spacing: .16em; text-transform: uppercase; }

/* Home and page heroes */
.hero { position: relative; overflow: hidden; padding: calc(76px + 4vh) 0 92px; background: var(--bg); }
.hero::before, .page-hero::before { position: absolute; inset: 0; pointer-events: none; content: ""; }
.hero::before { background: radial-gradient(58% 42% at 76% 12%, rgba(253,199,38,.08), transparent 70%), linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: auto, 96px 96px, 96px 96px; mask-image: radial-gradient(120% 90% at 50% 10%, #000 30%, transparent 85%); }
.hero-in, .page-hero .container { position: relative; }
.hero-logo { width: clamp(120px, 18vw, 210px); height: auto; margin-bottom: 24px; filter: drop-shadow(0 14px 28px rgba(253,199,38,.12)); }
.hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; color: var(--gold); font: 600 15px/1 var(--fd); letter-spacing: .42em; text-transform: uppercase; }
.hero-kicker::after { width: 64px; height: 1px; background: rgba(253,199,38,.5); content: ""; }
.hero-title { color: var(--ink); font: 700 clamp(62px, 11.5vw, 148px)/.95 var(--fd); letter-spacing: .01em; text-transform: uppercase; }
.hero-tag { margin-top: 18px; color: transparent; font: 600 clamp(18px, 2.4vw, 28px)/1 var(--fd); letter-spacing: .3em; text-transform: uppercase; -webkit-text-stroke: 1px rgba(242,240,231,.55); }
.hero-sub { max-width: 58ch; margin-top: 26px; color: var(--muted); font-size: 16.5px; line-height: 1.65; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 72px; padding-top: 22px; border-top: 1px solid var(--border); }
.hero-loc { color: var(--muted); font: 600 12.5px/1 var(--fd); letter-spacing: .3em; text-transform: uppercase; }
.hero-meta { color: var(--faint); font-size: 12.5px; }
.page-hero { position: relative; overflow: hidden; padding: 84px 0 64px; }
.page-hero::before { background: radial-gradient(55% 70% at 82% 0%, rgba(253,199,38,.06), transparent 70%); }
.page-hero .kicker { margin-bottom: 18px; }
.page-hero .lead { max-width: 66ch; margin-top: 18px; }

/* Home modules */
.qa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.qa-card { display: flex; flex-direction: column; gap: 12px; padding: 26px; }
.qa-card .qa-ic { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: var(--rs); background: rgba(255,255,255,.05); color: var(--muted); font-size: 24px; line-height: 1; }
.qa-card h3 { color: var(--ink); font: 700 21px/1.1 var(--fd); letter-spacing: .04em; text-transform: uppercase; }
.qa-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.qa-card:hover { border-color: var(--border2); background: var(--surface2); }
.qa-card.is-donate { border-color: rgba(253,199,38,.28); background: linear-gradient(160deg, rgba(253,199,38,.08), rgba(253,199,38,.02) 55%), var(--surface); }
.qa-card.is-donate .qa-ic { border-color: var(--gold); background: var(--gold); color: #0a0a0a; }
.about-split { display: grid; grid-template-columns: 5fr 6fr; align-items: center; gap: 52px; }
.feature-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border: 1px solid var(--border); border-radius: var(--r); }
.portrait { width: 100%; max-width: 480px; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--border); border-radius: var(--r); }
.copy-stack { display: flex; flex-direction: column; gap: 16px; }
.copy-stack p { color: var(--muted); line-height: 1.7; }
.copy-stack details { padding-top: 14px; border-top: 1px solid var(--border); }
.copy-stack summary { cursor: pointer; font-weight: 600; }
.fund { background: radial-gradient(60% 120% at 12% 50%, rgba(253,199,38,.05), transparent 60%), var(--bg2); }
.fund-in { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 56px; }
.fund-title { margin-top: 14px; }
.fund-sub { max-width: 46ch; margin-top: 16px; }
.fund-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.fund-meter { padding: 30px; border: 1px solid var(--border2); border-radius: var(--r); background: var(--surface); }
.fund-nums { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.fund-raised { color: var(--ink); font: 700 clamp(52px, 6vw, 76px)/1 var(--fd); font-variant-numeric: tabular-nums; }
.fund-goal { color: var(--muted); font-size: 14px; line-height: 1.3; }
.gold { color: var(--gold); }
.meter { position: relative; height: 10px; margin: 22px 0 18px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.meter > i { position: absolute; inset: 0 auto 0 0; display: block; border-radius: 999px; background: linear-gradient(90deg, var(--gold2), var(--gold)); }
.fund-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fund-meta div { display: flex; flex-direction: column; gap: 5px; }
.fund-meta dt { color: var(--faint); font: 600 10.5px/1 var(--fd); letter-spacing: .18em; text-transform: uppercase; }
.fund-meta dd { color: var(--ink); font: 600 17px/1 var(--fd); font-variant-numeric: tabular-nums; }

/* Events */
.event-note { margin-bottom: 28px; }
.source-details { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.source-details summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 2px; cursor: pointer; color: var(--ink); font: 700 17px/1.2 var(--fd); letter-spacing: .06em; text-transform: uppercase; }
.source-details summary::after { color: var(--faint); content: "+"; font-size: 22px; font-weight: 400; }
.source-details[open] summary::after { color: var(--gold); content: "−"; }
.source-details > p { margin: 0 0 18px; }
.source-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 20px; padding: 0 2px 22px; }
.source-links .doc-link { font-size: 12px; }
.event-grid { align-items: stretch; }
.ev-card { display: flex; width: 100%; min-height: 250px; flex-direction: column; gap: 14px; text-align: left; }
.ev-card h2 { color: var(--ink); font: 700 22px/1.2 var(--fd); letter-spacing: .03em; text-transform: uppercase; }
.ev-card:hover h2 { color: var(--gold); }
.ev-card .btn { align-self: flex-start; margin-top: auto; }
.ev-meta { display: flex; flex-direction: column; gap: 7px; }
.ev-meta li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13.5px; }
.ev-meta .ic { width: 15px; height: 15px; color: var(--faint); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.fchip { padding: 9px 14px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font: 600 11.5px/1 var(--fd); letter-spacing: .16em; text-transform: uppercase; }
.fchip:hover { border-color: var(--border2); color: var(--ink); }
.fchip[aria-pressed="true"] { border-color: var(--gold); background: var(--gold); color: #0a0a0a; }

/* Resources, documents, and status cards */
.res-card, .doc-card, .support-option, .media-card { display: flex; flex-direction: column; gap: 14px; }
.res-card h3, .doc-card h3, .support-option h3, .media-card h3 { color: var(--ink); font: 700 20px/1.2 var(--fd); letter-spacing: .05em; text-transform: uppercase; }
.res-card p, .doc-card p, .support-option p, .media-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.doc-link { display: inline-flex; align-items: center; align-self: flex-start; gap: 8px; padding-bottom: 5px; border-bottom: 1px solid var(--border2); color: var(--ink); font: 600 13px/1.4 var(--fb); }
.doc-link:hover { border-color: var(--gold); color: var(--gold); }
.doc-link .ic { width: 16px; height: 16px; }
.res-list { display: flex; flex-direction: column; }
.res-list li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 2px; border-bottom: 1px solid rgba(255,255,255,.06); color: var(--ink); font-size: 14.5px; }
.res-list li:last-child { border-bottom: 0; }
.res-list .r-name { min-width: 0; font-weight: 500; }
.res-list .r-note { color: var(--faint); font-size: 12.5px; text-align: right; }
.support-option { min-height: 190px; transition: border-color .18s var(--ease), background .18s var(--ease); }
.support-option .tag, .media-card .tag { align-self: flex-start; }
.donation-list-card { padding: 12px 24px; }
.donation-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 36px; }
.donation-list li { border-bottom: 1px solid rgba(255,255,255,.06); }
.donation-list li:last-child, .donation-list li:nth-last-child(2) { border-bottom: 0; }
.donation-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 2px; color: var(--ink); font-size: 14px; }
.donation-list a:hover { color: var(--gold); }
.donation-main { display: flex; align-items: center; min-width: 0; gap: 12px; }
.donation-main > span:last-child { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.donation-main strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.donation-main small { color: var(--faint); font-size: 11px; }
.donation-thumb { display: grid; width: 48px; height: 48px; flex: none; place-items: center; overflow: hidden; border: 1px solid var(--border); border-radius: var(--rs); background: var(--bg2); object-fit: contain; }
.donation-thumb-empty .ic { width: 19px; height: 19px; color: var(--faint); }
.donation-open { color: var(--faint); font-size: 16px; }
.media-card { min-height: 180px; justify-content: space-between; }
.role-list { display: grid; gap: 12px; }
.role-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.role-list li:last-child { border-bottom: 0; }
.role-list strong { color: var(--ink); font: 700 17px/1.2 var(--fd); letter-spacing: .05em; text-transform: uppercase; }
.role-list span { color: var(--faint); font-size: 13px; text-align: right; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.check-list li::before { color: var(--gold); content: "•"; font-size: 20px; line-height: 1; }
.empty-state { padding: 48px 24px; border: 1px dashed var(--border2); border-radius: var(--r); color: var(--faint); text-align: center; }
.empty-state p { max-width: 52ch; margin: 0 auto; font-size: 14.5px; }

/* Parent guide, split panels, accordion */
.steps { display: flex; flex-direction: column; counter-reset: step; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.step::before { counter-increment: step; color: var(--gold); content: counter(step, decimal-leading-zero); font: 700 26px/1 var(--fd); }
.step h3 { margin-bottom: 6px; font: 700 17px/1.3 var(--fd); letter-spacing: .06em; text-transform: uppercase; }
.step p { max-width: 60ch; color: var(--muted); font-size: 14px; line-height: 1.6; }
.step a, .acc a { color: var(--ink); border-bottom: 1px solid var(--border2); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.split-panel { display: flex; flex-direction: column; gap: 16px; }
.sp-label { color: var(--faint); font: 700 13px/1 var(--fd); letter-spacing: .24em; text-transform: uppercase; }
.split-panel h3 { font: 700 26px/1.1 var(--fd); letter-spacing: .03em; text-transform: uppercase; }
.split-links { display: flex; flex-direction: column; margin-top: 4px; }
.split-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 2px; border-bottom: 1px solid rgba(255,255,255,.06); color: var(--ink); font-size: 15px; }
.split-links a:last-child { border-bottom: 0; }
.split-links a small { color: var(--faint); font-size: 12.5px; }
.split-links a:hover { color: var(--gold); }
.acc { border-top: 1px solid var(--border); }
.acc details { border-bottom: 1px solid var(--border); }
.acc summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 4px; cursor: pointer; color: var(--ink); font-size: 16.5px; font-weight: 600; }
.acc summary::after { color: var(--faint); content: "+"; font-size: 22px; font-weight: 400; }
.acc details[open] summary::after { content: "−"; color: var(--gold); }
.acc-a { max-width: 68ch; padding: 0 4px 22px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* CTA and footer */
.band { position: relative; overflow: hidden; }
.band-in { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.band p { max-width: 52ch; margin-top: 12px; color: var(--muted); }
.band-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.ftr { padding: 72px 0 0; border-top: 1px solid var(--border); background: var(--bg2); }
.ftr-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.ftr-brand .brand { margin: 0 0 16px; }
.ftr-brand p { max-width: 34ch; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.ftr-brand .pcsb { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--muted); font-size: 13px; }
.ftr-brand .pcsb:hover { color: var(--ink); }
.ftr-brand .pcsb .ic { width: 14px; height: 14px; }
.ftr-col h4 { margin-bottom: 18px; color: var(--faint); font: 700 12.5px/1 var(--fd); letter-spacing: .22em; text-transform: uppercase; }
.ftr-col ul { display: flex; flex-direction: column; gap: 11px; }
.ftr-col a, .ftr-bottom a { color: var(--muted); font-size: 14px; }
.ftr-col a:hover, .ftr-bottom a:hover { color: var(--ink); }
.ftr-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); }
.ftr-bottom p { color: var(--faint); font-size: 12.5px; }
.err { padding: 140px 0 160px; text-align: center; }
.err-num { color: transparent; font: 700 clamp(120px, 22vw, 260px)/1 var(--fd); letter-spacing: .04em; -webkit-text-stroke: 1.5px rgba(242,240,231,.3); }
.err .lead { max-width: 44ch; margin: 18px auto 34px; }
.err-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.mt-s { margin-top: 12px; }
.mt-m { margin-top: 24px; }
.mt-l { margin-top: 40px; }
.center { text-align: center; }

@media (max-width: 1080px) {
  .qa-grid { grid-template-columns: repeat(2, 1fr); }
  .fund-in { grid-template-columns: 1fr; gap: 36px; }
  .ftr-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .nav { display: none; }
  .nav-burger { display: inline-flex; }
  .section { padding: 72px 0; }
  .about-split, .g-21 { grid-template-columns: 1fr; gap: 32px; }
  .portrait { max-width: none; }
  .band-in { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 720px) {
  body { padding-bottom: 66px; }
  .source-links, .donation-list { grid-template-columns: minmax(0, 1fr); }
  .donation-list li:nth-last-child(2) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .donation-list li:last-child { border-bottom: 0; }
  .g2, .g3, .g4, .split, .qa-grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sec-head-row { align-items: flex-start; flex-direction: column; }
  .feature-photo { min-height: 240px; }
  .role-list li { align-items: flex-start; flex-direction: column; gap: 5px; }
  .role-list span { text-align: left; }
}
@media (min-width: 721px) { .quickbar { display: none; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
