/* ══════════════════════════════════════════════════════════════════════════
   Good Seed CDC — v3 "From the sidewalk to the lease" site stylesheet.
   Dark cinematic ground, cream paper sections, sun-yellow accent.
   Shared by every page; page-specific layout lives in the components below.
   ══════════════════════════════════════════════════════════════════════ */
:root {
  --ink: #0d1a12; --ink-2: #16301f; --ink-3: #1f3d2a;
  --moss: #4a8562; --leaf: #88bd9e; --mint: #d6ecdd;
  --paper: #f4f1e8; --paper-2: #ebe7da; --paper-3: #e2ddcc;
  --sun: #f2c14e; --ember: #e9895a;
  --line: rgba(244,241,232,.14); --line-dark: rgba(13,26,18,.14);
  --f-head: "Barlow Condensed", system-ui, sans-serif;
  --f-body: "Barlow", system-ui, sans-serif;
  --gutter: clamp(18px, 4.5vw, 64px);
  --ease: cubic-bezier(.2,.7,.2,1); --ease-out: cubic-bezier(.16,1,.3,1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--ink); color: var(--paper); font: 400 16px/1.55 var(--f-body); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 700; line-height: .95; letter-spacing: -.02em; margin: 0; text-wrap: balance; }
p { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--sun); color: var(--ink); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; }
.paper :focus-visible, .paper-2 :focus-visible { outline-color: var(--ink); }
[id] { scroll-margin-top: 90px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--sun); color: var(--ink); padding: 10px 14px; font: 700 13px/1 var(--f-head); letter-spacing: .1em; text-transform: uppercase; }
.skip:focus { top: 16px; }

.grain { position: fixed; inset: -50%; width: 200%; height: 200%; pointer-events: none; z-index: 100; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite; }
@keyframes grain { 0%,100% { transform: translate(0,0); } 10% { transform: translate(-5%,-10%); } 20% { transform: translate(-15%,5%); } 30% { transform: translate(7%,-25%); } 40% { transform: translate(-5%,25%); } 50% { transform: translate(-15%,10%); } 60% { transform: translate(15%,0); } 70% { transform: translate(0,15%); } 80% { transform: translate(3%,35%); } 90% { transform: translate(-10%,10%); } }
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--leaf), var(--sun)); z-index: 95; }

/* — text helpers — */
.kicker { display: inline-flex; align-items: center; gap: 12px; font: 600 12px/1 var(--f-head); text-transform: uppercase; letter-spacing: .22em; color: var(--leaf); }
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.kicker.sun { color: var(--sun); }
.kicker.ink { color: var(--moss); }
.kicker.bare::before { display: none; }
.display { font-size: clamp(44px, 8vw, 132px); }
.h-xl { font-size: clamp(38px, 5.4vw, 88px); }
.h-lg { font-size: clamp(30px, 3.6vw, 56px); }
.h-md { font-size: clamp(24px, 2.6vw, 36px); }
.lede { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.5; color: rgba(244,241,232,.78); max-width: 52ch; }
.paper .lede, .paper-2 .lede { color: rgba(13,26,18,.75); }
.muted { opacity: .65; }

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px; padding: 16px 26px; overflow: hidden;
  font: 700 15px/1 var(--f-head); text-transform: uppercase; letter-spacing: .1em; border: 1px solid var(--line); border-radius: 999px;
  color: var(--paper); transition: color .3s var(--ease), border-color .3s var(--ease); white-space: nowrap;
}
.btn::before { content: ""; position: absolute; inset: 0; background: var(--sun); transform: translateY(101%); transition: transform .45s var(--ease-out); z-index: 0; border-radius: inherit; }
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: var(--ink); border-color: var(--sun); }
.btn:hover::before { transform: none; }
.btn .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); transition: background .3s; }
.btn:hover .dot { background: var(--ink); }
.btn-sun { background: var(--sun); color: var(--ink); border-color: var(--sun); }
.btn-sun::before { background: var(--paper); }
.btn-sun .dot { background: var(--ink); }
.btn-ink { border-color: rgba(13,26,18,.35); color: var(--ink); }
.btn-ink::before { background: var(--ink); }
.btn-ink:hover { color: var(--paper); border-color: var(--ink); }
.btn-solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-solid::before { background: var(--sun); }
.btn-solid:hover { color: var(--ink); }
.btn-solid .dot { background: var(--sun); }
.btn-sm { padding: 11px 18px; font-size: 13px; }
.link { display: inline-flex; align-items: center; gap: 10px; font: 700 13px/1 var(--f-head); letter-spacing: .14em; text-transform: uppercase; color: var(--sun); }
.link::after { content: "→"; transition: transform .25s var(--ease); }
.link:hover::after { transform: translateX(5px); }
.paper .link, .paper-2 .link { color: var(--ink); }
.paper .link::after, .paper-2 .link::after { color: var(--moss); }

/* ══ NAV ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px var(--gutter); transition: background .35s ease, padding .35s ease, color .35s ease;
}
.nav.scrolled, .nav.solid { background: rgba(13,26,18,.8); backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); padding: 12px var(--gutter); border-bottom: 1px solid var(--line); }
.nav.on-paper { color: var(--ink); }
.nav.on-paper.scrolled { background: rgba(244,241,232,.82); border-color: var(--line-dark); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand b { font: 700 24px/1 var(--f-head); text-transform: uppercase; letter-spacing: .04em; }
.brand small { display: block; font: 500 10px/1 var(--f-head); letter-spacing: .28em; text-transform: uppercase; opacity: .6; margin-top: 3px; }
.nav-mid { display: flex; gap: 26px; font: 600 13px/1 var(--f-head); text-transform: uppercase; letter-spacing: .14em; align-items: center; }
.nav-mid > a, .nav-mid .has-menu > a { position: relative; padding: 8px 0; opacity: .82; transition: opacity .2s; display: inline-flex; align-items: center; gap: 6px; }
.nav-mid > a:hover, .nav-mid .has-menu:hover > a, .nav-mid a[aria-current] { opacity: 1; }
.nav-mid > a::after, .nav-mid .has-menu > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--sun); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out); }
.nav-mid > a:hover::after, .nav-mid .has-menu:hover > a::after, .nav-mid a[aria-current]::after { transform: scaleX(1); transform-origin: left; }
.has-menu { position: relative; }
.has-menu > a small { font-size: 8px; opacity: .7; }
.mega {
  position: absolute; top: 100%; left: -20px; padding-top: 16px; width: 640px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .25s var(--ease-out), visibility .2s; text-transform: none; letter-spacing: 0; font: 400 15px/1.4 var(--f-body);
}
.has-menu:hover .mega, .has-menu:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner { background: var(--ink-2); border: 1px solid var(--line); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); color: var(--paper); display: grid; grid-template-columns: 1fr 1fr; }
.mega-inner a { display: flex; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line); transition: background .2s; align-items: flex-start; }
.mega-inner a:hover { background: rgba(255,255,255,.05); }
.mega-inner a:nth-child(odd) { border-right: 1px solid var(--line); }
.mega .n { font: 700 12px/1.4 var(--f-head); letter-spacing: .18em; color: var(--sun); flex: none; padding-top: 3px; }
.mega b { display: block; font: 700 18px/1 var(--f-head); margin-bottom: 4px; }
.mega span { font-size: 13px; color: rgba(244,241,232,.6); display: block; }
.mega-foot { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; background: rgba(0,0,0,.25); }
.mega-foot a { padding: 0; border: 0 !important; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-right .btn { padding: 11px 18px; font-size: 13px; }
.nav-right .btn-give { padding: 13px 24px; font-size: 15px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font: 600 17px/1 var(--f-head); letter-spacing: .06em; opacity: .85; padding: 10px 12px; white-space: nowrap; }
.nav-phone .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 0 rgba(136,189,158,.6); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(136,189,158,.55); } 70%,100% { box-shadow: 0 0 0 10px transparent; } }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; position: relative; flex: none; }
.burger i, .burger i::before, .burger i::after { position: absolute; left: 13px; right: 13px; height: 1.5px; background: currentColor; content: ""; transition: transform .3s var(--ease), opacity .2s; }
.burger i { top: 21px; } .burger i::before { left: 0; right: 0; top: -5px; } .burger i::after { left: 0; right: 0; top: 5px; }
.on-paper .burger { border-color: var(--line-dark); }
.menu {
  position: fixed; inset: 0; z-index: 85; background: var(--ink-2); color: var(--paper); overflow-y: auto; padding: 96px var(--gutter) 40px;
  clip-path: circle(0 at calc(100% - 40px) 40px); transition: clip-path .7s var(--ease-out); visibility: hidden;
}
.menu.open { clip-path: circle(160% at calc(100% - 40px) 40px); visibility: visible; }
.menu-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.menu-main a { font: 700 clamp(26px, 7vw, 64px)/1 var(--f-head); gap: 12px; text-transform: uppercase; letter-spacing: -.01em; padding: 10px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.menu-main a span:last-child { font: 500 12px/1 var(--f-head); letter-spacing: .2em; opacity: .5; flex: none; }
.menu-main a:hover { color: var(--sun); }
.menu-sub .kicker { margin-bottom: 14px; }
.menu-sub a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); font: 600 17px/1.2 var(--f-head); letter-spacing: .02em; }
.menu-sub a:hover { color: var(--sun); }
.menu .foot { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 14px; opacity: .7; }

/* ══ HOME HERO ═══════════════════════════════════════════════════════════ */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; transform: scale(1.08); will-change: transform; filter: saturate(.85) contrast(1.05); }
.hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--ink-2); mix-blend-mode: multiply; opacity: .55; }
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(13,26,18,.55) 0%, rgba(13,26,18,.08) 35%, rgba(13,26,18,.3) 65%, var(--ink) 100%); }
.hero-inner { position: relative; z-index: 3; padding: 0 var(--gutter) clamp(28px, 4vw, 48px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px 48px; align-items: end; }
.hero-top { position: absolute; z-index: 3; top: 110px; left: var(--gutter); right: var(--gutter); display: flex; justify-content: space-between; align-items: flex-start; font: 600 12px/1.4 var(--f-head); text-transform: uppercase; letter-spacing: .2em; opacity: .75; }
.hero-top .coords { text-align: right; }
.hero h1 { font-size: clamp(64px, 13.5vw, 224px); line-height: .84; letter-spacing: -.03em; font-weight: 800; text-transform: uppercase; }
.hero h1 .w { display: block; overflow: hidden; }
.hero h1 .w > span { display: inline-block; transform: translateY(110%) rotate(2deg); transform-origin: left bottom; animation: rise 1.1s var(--ease-out) forwards; }
.hero h1 .w:nth-child(2) > span { animation-delay: .1s; }
.hero h1 .w:nth-child(3) > span { animation-delay: .2s; color: var(--sun); }
.hero h1 .w:nth-child(3) > span em { font-style: normal; color: var(--paper); }
@keyframes rise { to { transform: none; } }
.hero-side { display: flex; flex-direction: column; gap: 18px; max-width: 360px; opacity: 0; animation: fade 1s .6s ease forwards; }
.hero-side p { font-size: 17px; line-height: 1.5; color: rgba(244,241,232,.82); }
.hero-side .actions { display: flex; flex-wrap: wrap; gap: 10px; }
@keyframes fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--ink); position: relative; z-index: 3; }
.marquee .track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee a { display: inline-flex; align-items: center; gap: 28px; padding: 16px 28px 16px 0; font: 700 clamp(18px, 2.2vw, 28px)/1 var(--f-head); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; transition: color .2s; }
.marquee a:hover { color: var(--sun); }
.marquee a i { width: 8px; height: 8px; background: var(--sun); transform: rotate(45deg); display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ══ MANIFESTO ═══════════════════════════════════════════════════════════ */
.manifesto { padding: clamp(80px, 12vw, 150px) var(--gutter); display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); gap: 40px; }
.manifesto .kicker { position: sticky; top: 100px; align-self: start; }
.manifesto p { font: 500 clamp(26px, 3.8vw, 58px)/1.1 var(--f-head); letter-spacing: -.015em; max-width: 22ch; }
.manifesto p + p { margin-top: .6em; }
.manifesto .w { display: inline-block; opacity: .18; transition: opacity .35s ease; }
.manifesto .w.lit { opacity: 1; }
.manifesto .gold .w { color: var(--sun); }

/* ══ TRIAGE (paper) ═════════════════════════════════════════════════════ */
.paper { background: var(--paper); color: var(--ink); }
.paper-2 { background: var(--paper-2); color: var(--ink); }
.section { padding: clamp(64px, 9vw, 130px) var(--gutter); }
.section-tight { padding: clamp(44px, 6vw, 80px) var(--gutter); }
.triage { padding: clamp(72px, 10vw, 140px) var(--gutter) clamp(56px, 7vw, 96px); }
.fill { font: 700 clamp(40px, 7vw, 112px)/1 var(--f-head); letter-spacing: -.02em; text-transform: uppercase; display: flex; flex-wrap: wrap; gap: 0 .25em; align-items: baseline; margin-top: 18px; }
.fill .blank { position: relative; display: inline-block; min-width: 4ch; color: var(--moss); border-bottom: 4px solid var(--moss); line-height: 1; padding: 0 .1em; min-height: 1em; }
.fill .blank::after { content: ""; position: absolute; right: -.15em; top: .1em; bottom: .1em; width: 3px; background: var(--moss); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.triage-sub { margin-top: 14px; font-size: 16px; color: rgba(13,26,18,.65); max-width: 60ch; }
.needs { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 40px; }
.need {
  font: 600 15px/1 var(--f-head); text-transform: uppercase; letter-spacing: .1em; padding: 14px 20px; border: 1px solid var(--line-dark); border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .3s;
}
.need:hover { border-color: var(--ink); transform: translateY(-2px); }
.need.glow { border-color: var(--moss); background: var(--mint); box-shadow: 0 0 0 4px rgba(74,133,98,.15); }
.need[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.doors { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 12px; }
.door { background: rgba(255,255,255,.35); border: 1px solid var(--line-dark); padding: 28px 26px; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; transition: background .3s ease, border-color .3s ease; }
.door:hover { border-color: var(--moss); }
.door::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--moss); transform: scaleY(0); transform-origin: bottom; transition: transform .4s var(--ease-out); }
.door:hover { background: #fff; }
.door:hover::before { transform: none; }
.door.hide { display: none; }
.door .k { font: 600 11px/1.3 var(--f-head); text-transform: uppercase; letter-spacing: .18em; color: var(--moss); }
.door h3 { font-size: 27px; line-height: 1; }
.door p { font-size: 15px; line-height: 1.55; color: rgba(13,26,18,.75); flex: 1; }
.door .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 11px; letter-spacing: .04em; padding: 4px 10px; background: var(--mint); color: var(--ink-2); border-radius: 999px; white-space: nowrap; }
.tag.o { background: transparent; border: 1px solid var(--moss); }
.dark .tag { background: rgba(255,255,255,.08); color: var(--paper); }
.door .link { margin-top: 8px; }
.empty { display: none; margin-top: 24px; font-size: 16px; color: rgba(13,26,18,.7); }

/* ══ SIX DOORS GRID ═════════════════════════════════════════════════════ */
.six { padding: 0 var(--gutter) clamp(72px, 10vw, 140px); }
.six-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; padding: clamp(40px, 6vw, 72px) 0 26px; border-top: 1px solid var(--line-dark); }
.six-head h2 { max-width: 16ch; }
.six-head p { max-width: 40ch; font-size: 16px; color: rgba(13,26,18,.65); }
.six-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.step {
  position: relative; overflow: hidden; border: 1px solid var(--line); min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: var(--ink-2); color: var(--paper); isolation: isolate;
}
.step img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(.75) contrast(1.05); transition: transform 1.2s var(--ease-out), filter .8s ease; }
.step::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(13,26,18,.1) 15%, rgba(13,26,18,.92) 100%); }
.step:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.02); }
.step .n { position: absolute; top: 20px; left: 24px; font: 700 14px/1 var(--f-head); letter-spacing: .2em; color: var(--sun); }
.step .n::after { content: " / 06"; color: rgba(244,241,232,.5); }
.step .lbl { position: absolute; top: 18px; right: 20px; font: 600 11px/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(13,26,18,.5); backdrop-filter: blur(6px); }
.step h3 { font-size: clamp(28px, 2.6vw, 38px); line-height: .95; margin-bottom: 10px; }
.step p { font-size: 15px; line-height: 1.5; color: rgba(244,241,232,.82); max-width: 40ch; }
.step .link { margin-top: 14px; }
.step .link::after { color: var(--sun); }
.paper .step .link, .paper-2 .step .link { color: var(--sun); }

/* ══ CALAIM (stacking cards) ════════════════════════════════════════════ */
.calaim { padding: clamp(72px, 10vw, 140px) var(--gutter) 0; }
.calaim-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: 56px; }
.stack { display: flex; flex-direction: column; }
.stack-card {
  position: sticky; top: 90px; margin-bottom: 20px; padding: 32px 36px; border: 1px solid var(--line); background: var(--ink-2);
  display: grid; grid-template-columns: 130px minmax(0, 1fr) auto; gap: 32px; align-items: start; box-shadow: 0 -20px 60px rgba(0,0,0,.35);
}
.stack-card:nth-child(2) { background: var(--ink-3); top: 106px; }
.stack-card:nth-child(3) { background: #264a33; top: 122px; }
.stack-card:nth-child(4) { background: #2f5a3e; top: 138px; }
.stack-card:nth-child(5) { background: #3a6d4b; top: 154px; }
.stack-card:nth-child(6) { background: #427a55; top: 170px; }
.stack-card:nth-child(7) { background: #467f59; top: 186px; }
.stack-card:nth-child(8) { background: var(--moss); top: 202px; }
.stack-card .code { font: 800 clamp(28px, 3.4vw, 48px)/.9 var(--f-head); letter-spacing: -.02em; color: var(--sun); }
.stack-card .type { display: block; margin-top: 8px; font: 600 11px/1.3 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: rgba(244,241,232,.6); }
.stack-card h3 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 10px; }
.stack-card p { font-size: 16px; line-height: 1.55; color: rgba(244,241,232,.82); max-width: 60ch; }
.stack-card .tags { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.stack-card .tag { font: 600 11px/1 var(--f-head); letter-spacing: .12em; text-transform: uppercase; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--paper); }
.stack-card .link { margin-top: 12px; }
.stack-end { padding: 40px 0 clamp(72px, 10vw, 140px); display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 20px; }
.stack-end p { font-size: 18px; line-height: 1.5; max-width: 60ch; color: rgba(244,241,232,.8); }
.btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ══ NUMBERS ════════════════════════════════════════════════════════════ */
.numbers { padding: clamp(60px, 8vw, 120px) var(--gutter); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: radial-gradient(900px 400px at 10% 100%, rgba(74,133,98,.28), transparent 70%), var(--ink); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.num { border-top: 1px solid var(--line); padding-top: 22px; }
.num b { display: block; font: 800 clamp(56px, 8vw, 140px)/.85 var(--f-head); letter-spacing: -.03em; color: var(--paper); }
.num b em { font-style: normal; color: var(--sun); }
.num > span { display: block; margin-top: 14px; font-size: 15px; line-height: 1.45; color: rgba(244,241,232,.65); max-width: 26ch; }

/* ══ VOICE ══════════════════════════════════════════════════════════════ */
.voice { position: relative; min-height: 70svh; display: grid; place-items: center; padding: clamp(80px, 10vw, 140px) var(--gutter); overflow: hidden; }
.voice > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); opacity: .26; transform: scale(1.06); will-change: transform; }
.voice::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink), transparent 30%, transparent 70%, var(--ink)); }
.voice blockquote { position: relative; margin: 0; max-width: 1100px; text-align: center; }
.voice .q { font: 600 clamp(30px, 5vw, 76px)/1.02 var(--f-head); letter-spacing: -.02em; }
.voice .w { display: inline-block; opacity: .2; transition: opacity .4s ease; }
.voice .w.lit { opacity: 1; }
.voice footer { margin-top: 28px; font: 600 13px/1 var(--f-head); letter-spacing: .22em; text-transform: uppercase; color: var(--sun); }

/* ══ WHO (home) ═════════════════════════════════════════════════════════ */
.who { padding: clamp(72px, 10vw, 140px) var(--gutter); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.who h2 { font-size: clamp(38px, 5vw, 76px); margin: 14px 0 22px; }
.who .lede { margin-bottom: 30px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillars > div { border-top: 2px solid var(--ink); padding-top: 14px; }
.pillars h3 { font-size: 20px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.pillars p { font-size: 15px; line-height: 1.55; color: rgba(13,26,18,.75); }
.who-media { position: relative; }
.who-media .main { aspect-ratio: 4 / 4.2; overflow: hidden; }
.who-media .main img { width: 100%; height: 100%; object-fit: cover; }
.stamp { position: absolute; left: -30px; bottom: 40px; width: 150px; height: 150px; border-radius: 50%; background: var(--sun); color: var(--ink); display: grid; place-items: center; animation: spin 18s linear infinite; }
.stamp svg { width: 100%; height: 100%; }
.stamp text { font: 700 13.5px var(--f-head); letter-spacing: .3em; text-transform: uppercase; fill: var(--ink); }
@keyframes spin { to { transform: rotate(360deg); } }

.strip { overflow: hidden; padding-bottom: clamp(72px, 10vw, 140px); }
.strip-head { padding: 0 var(--gutter) 24px; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
.strip .track { display: flex; gap: 14px; width: max-content; animation: marquee 70s linear infinite; }
.strip:hover .track { animation-play-state: paused; }
.strip figure { margin: 0; flex: none; width: clamp(220px, 26vw, 380px); aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.strip figure:nth-child(odd) { margin-top: 30px; }
.strip img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .8s var(--ease-out), filter .5s; }
.strip figure:hover img { transform: scale(1.05); filter: saturate(1.05); }
.strip figcaption { position: absolute; left: 12px; bottom: 10px; font: 600 11px/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: var(--paper); background: rgba(13,26,18,.7); padding: 6px 10px; }

/* ══ NEWS ═══════════════════════════════════════════════════════════════ */
.news { padding: clamp(72px, 10vw, 140px) var(--gutter); }
.news-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 30px; }
.news-list { border-top: 1px solid var(--line); }
.news-row { display: grid; grid-template-columns: 120px minmax(0, 1fr) 200px 40px; gap: 28px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease); }
.news-row:hover { padding-left: 16px; }
.news-row .date { font: 600 12px/1.4 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: rgba(244,241,232,.55); }
.news-row h3 { font-size: clamp(24px, 2.8vw, 40px); line-height: 1; }
.news-row p { font-size: 15px; color: rgba(244,241,232,.7); margin-top: 8px; }
.news-row .thumb { aspect-ratio: 3 / 2; overflow: hidden; }
.news-row .thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .8s var(--ease-out); }
.news-row:hover .thumb img { transform: scale(1.06); }
.news-row .arr { font-size: 28px; color: var(--sun); transition: transform .3s var(--ease); }
.news-row:hover .arr { transform: translate(6px, -6px); }

/* ══ GIVE ═══════════════════════════════════════════════════════════════ */
.give { position: relative; padding: clamp(80px, 12vw, 160px) var(--gutter); overflow: hidden; background: var(--sun); color: var(--ink); }
.give::before { content: ""; position: absolute; inset: 0; background: var(--give-img, none) center/cover; filter: grayscale(1) contrast(1.2); mix-blend-mode: multiply; opacity: .14; }
.give-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 40px; align-items: end; }
.give h2 { font-size: clamp(44px, 7vw, 120px); line-height: .88; letter-spacing: -.03em; text-transform: uppercase; }
.give p { margin-top: 24px; font-size: 18px; line-height: 1.5; max-width: 50ch; color: rgba(13,26,18,.78); }
.give .btns { flex-direction: column; align-items: flex-start; }

/* ══ FOOTER ═════════════════════════════════════════════════════════════ */
.footer { padding: clamp(60px, 8vw, 100px) var(--gutter) 30px; background: var(--ink); color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer h4 { font: 600 12px/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: rgba(244,241,232,.5); margin: 0 0 16px; }
.footer p, .footer a { font-size: 15px; line-height: 1.6; color: rgba(244,241,232,.82); }
.footer .col a { display: block; }
.footer .col a:hover { color: var(--sun); }
.footer .col p + p { margin-top: 12px; }
.footer .big-phone { font: 700 clamp(28px, 3vw, 40px)/1 var(--f-head); color: var(--paper); display: inline-block; margin-top: 6px; }
.footer .big-phone:hover { color: var(--sun); }
.wordmark { font: 800 clamp(64px, 17.5vw, 300px)/.8 var(--f-head); letter-spacing: -.04em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(244,241,232,.35); white-space: nowrap; overflow: hidden; user-select: none; }
.wordmark b { color: var(--paper); -webkit-text-stroke: 0; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; color: rgba(244,241,232,.5); }

/* ══ INNER PAGES ════════════════════════════════════════════════════════ */
.page-hero { position: relative; min-height: min(62svh, 620px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 140px var(--gutter) clamp(32px, 4vw, 56px); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; filter: saturate(.8) contrast(1.05); transform: scale(1.04); z-index: 0; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--ink-2); mix-blend-mode: multiply; opacity: .5; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,26,18,.6) 0%, rgba(13,26,18,.15) 40%, rgba(13,26,18,.55) 75%, var(--ink) 100%); }
.page-hero > * { position: relative; z-index: 2; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font: 600 12px/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: rgba(244,241,232,.65); margin-bottom: 20px; }
.crumbs a:hover { color: var(--sun); }
.crumbs span::before { content: "/"; margin-right: 8px; opacity: .5; }
.page-hero h1 { font-size: clamp(48px, 8.5vw, 140px); line-height: .88; letter-spacing: -.03em; text-transform: uppercase; font-weight: 800; max-width: 12ch; }
.page-hero h1 em { font-style: normal; color: var(--sun); }
.page-hero .lede { margin-top: 22px; }
.page-hero .actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr); gap: 40px; align-items: end; }
.facts { border: 1px solid var(--line); background: rgba(13,26,18,.55); backdrop-filter: blur(8px); padding: 20px 22px; }
.facts dt { font: 600 11px/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--sun); margin-top: 12px; }
.facts dt:first-child { margin-top: 0; }
.facts dd { margin: 5px 0 0; font-size: 15px; line-height: 1.45; color: rgba(244,241,232,.85); }
.facts dd a { border-bottom: 1px solid rgba(244,241,232,.3); }
.facts dd a:hover { color: var(--sun); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 6vw, 96px); align-items: start; }
.split.wide-aside { grid-template-columns: minmax(0, 1fr) 380px; }
.aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.aside-box { border: 1px solid var(--line-dark); padding: 22px; background: rgba(255,255,255,.35); }
.dark .aside-box { border-color: var(--line); background: rgba(255,255,255,.04); }
.aside-box h4 { font: 700 12px/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--moss); margin: 0 0 14px; }
.dark .aside-box h4 { color: var(--sun); }
.aside-box p, .aside-box li { font-size: 15px; line-height: 1.5; }
.aside-box li + li { margin-top: 8px; }
.aside-box .btn { margin-top: 14px; }
.aside-box a.big { font: 700 26px/1 var(--f-head); display: block; }
.aside-box a.big:hover { color: var(--moss); }
.aside-box .small { font-size: 13px; opacity: .65; margin-top: 8px; }

.prose { max-width: 68ch; font-size: 17px; line-height: 1.65; color: rgba(13,26,18,.82); }
.dark .prose { color: rgba(244,241,232,.82); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(30px, 3.6vw, 52px); color: var(--ink); margin-top: 1.6em; line-height: .98; }
.prose h3 { font-size: clamp(22px, 2.4vw, 32px); color: var(--ink); margin-top: 1.5em; }
.dark .prose h2, .dark .prose h3 { color: var(--paper); }
.prose h2:first-child, .prose h3:first-child, .prose .kicker + h2 { margin-top: 0; }
.prose .kicker { display: inline-flex; margin-top: 1.4em; }
.prose .kicker + h2, .prose .kicker + h3 { margin-top: .5em; }
.prose ul { list-style: none; padding: 0; }
.prose ul li { position: relative; padding-left: 26px; margin-top: .45em; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 12px; height: 12px; background: var(--sun); transform: rotate(45deg) scale(.7); }
.prose ol { padding-left: 0; counter-reset: n; list-style: none; }
.prose ol li { counter-increment: n; position: relative; padding-left: 44px; margin-top: .6em; }
.prose ol li::before { content: counter(n, decimal-leading-zero); position: absolute; left: 0; top: .15em; font: 700 14px/1 var(--f-head); letter-spacing: .1em; color: var(--moss); }
.prose strong { font-weight: 600; color: var(--ink); }
.dark .prose strong { color: var(--paper); }
.prose a:not(.btn):not(.link) { border-bottom: 1px solid var(--moss); color: var(--ink-2); }
.prose a:not(.btn):not(.link):hover { color: var(--moss); }
.prose .pull { font: 500 clamp(24px, 2.6vw, 34px)/1.15 var(--f-head); letter-spacing: -.01em; color: var(--ink); border-left: 4px solid var(--sun); padding-left: 22px; margin: 1.6em 0; }
.dark .prose .pull { color: var(--paper); }

.elig { border: 1px solid var(--line-dark); background: rgba(255,255,255,.4); padding: 26px 28px; margin-top: 1.6em; }
.dark .elig { border-color: var(--line); background: rgba(255,255,255,.04); }
.elig h4 { font: 700 13px/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--moss); margin: 0 0 6px; }
.dark .elig h4 { color: var(--sun); }
.elig .note { font-size: 14px; color: rgba(13,26,18,.65); margin-bottom: 14px; }
.dark .elig .note { color: rgba(244,241,232,.65); }
.elig ul { margin: 0; }
.elig li { position: relative; padding-left: 30px; margin-top: .5em; font-size: 16px; line-height: 1.45; }
.elig li::before { content: "✓"; position: absolute; left: 0; top: 0; font: 700 15px/1.45 var(--f-head); color: var(--moss); background: none; transform: none; width: auto; height: auto; }
.dark .elig li::before { color: var(--sun); }
.elig .contact { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-dark); font-size: 15px; display: flex; flex-wrap: wrap; gap: 6px 20px; }
.dark .elig .contact { border-color: var(--line); }
.elig .contact a { font-weight: 600; border-bottom: 1px solid var(--moss); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card { border: 1px solid var(--line-dark); padding: 26px; background: rgba(255,255,255,.35); display: flex; flex-direction: column; gap: 10px; transition: background .3s, transform .3s var(--ease); }
.card:hover { background: #fff; transform: translateY(-3px); }
.dark .card { border-color: var(--line); background: rgba(255,255,255,.04); }
.dark .card:hover { background: rgba(255,255,255,.08); }
.card .k { font: 600 11px/1.3 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: var(--moss); }
.dark .card .k { color: var(--sun); }
.card h3 { font-size: 26px; line-height: 1; }
.card p { font-size: 15px; line-height: 1.55; color: rgba(13,26,18,.72); flex: 1; }
.dark .card p { color: rgba(244,241,232,.72); }
.card .link { margin-top: 6px; }
.card.photo { padding: 0; overflow: hidden; }
.card.photo .ph { aspect-ratio: 3 / 2; overflow: hidden; }
.card.photo .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.card.photo:hover .ph img { transform: scale(1.05); }
.card.photo .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.hours { width: 100%; border-collapse: collapse; font-size: 16px; }
.hours th, .hours td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line-dark); vertical-align: top; }
.hours th { font: 600 12px/1.4 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--moss); width: 40%; }
.hours td b { font-weight: 600; }
.dark .hours th, .dark .hours td { border-color: var(--line); }
.dark .hours th { color: var(--sun); }

.steps { counter-reset: s; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.steps > div { counter-increment: s; background: var(--paper); padding: 26px 24px; }
.steps > div::before { content: counter(s, decimal-leading-zero); display: block; font: 800 44px/1 var(--f-head); color: var(--sun); margin-bottom: 14px; -webkit-text-stroke: 1px var(--ink); color: transparent; }
.steps h3 { font-size: 24px; margin-bottom: 8px; }
.steps p { font-size: 15px; line-height: 1.5; color: rgba(13,26,18,.72); }

.faq details { border-top: 1px solid var(--line-dark); }
.faq details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font: 700 22px/1.1 var(--f-head); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 400 30px/1 var(--f-head); color: var(--moss); transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 22px; font-size: 16px; line-height: 1.6; color: rgba(13,26,18,.78); max-width: 70ch; }
.faq .a p + p { margin-top: .8em; }

.cta-band { background: var(--sun); color: var(--ink); padding: clamp(48px, 6vw, 80px) var(--gutter); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px 40px; }
.cta-band h2 { font-size: clamp(30px, 4vw, 60px); text-transform: uppercase; letter-spacing: -.02em; max-width: 18ch; }
.cta-band p { margin-top: 10px; font-size: 17px; color: rgba(13,26,18,.75); max-width: 50ch; }

.next { padding: clamp(56px, 7vw, 90px) var(--gutter); border-top: 1px solid var(--line); }
.next-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.next-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.next .step { min-height: 260px; }
.next .step h3 { font-size: 28px; }

.locations { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.loc { border: 1px solid var(--line-dark); background: rgba(255,255,255,.35); overflow: hidden; display: flex; flex-direction: column; }
.loc .ph { aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink-2); }
.loc .ph img { width: 100%; height: 100%; object-fit: cover; }
.loc .body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.loc h3 { font-size: 26px; }
.loc address { font-style: normal; font-size: 15px; line-height: 1.5; color: rgba(13,26,18,.75); }
.loc .btns { margin-top: auto; padding-top: 10px; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font: 600 12px/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: rgba(13,26,18,.6); }
.form label.full { grid-column: 1 / -1; }
.form input, .form select, .form textarea { font: 400 16px/1.4 var(--f-body); padding: 13px 14px; border: 1px solid var(--line-dark); background: #fff; color: var(--ink); border-radius: 0; width: 100%; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px rgba(242,193,78,.5); }
.form textarea { min-height: 140px; resize: vertical; }
.form .actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form .note { font-size: 13px; color: rgba(13,26,18,.6); max-width: 46ch; }
.alert { border-left: 4px solid var(--sun); background: rgba(242,193,78,.18); padding: 16px 20px; font-size: 15px; line-height: 1.5; }
.alert b { font-weight: 600; }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 240px; gap: 10px; }
.gallery figure { margin: 0; overflow: hidden; position: relative; background: var(--ink-2); }
.gallery figure.w2 { grid-column: span 2; }
.gallery figure.h2 { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 12px; bottom: 10px; font: 600 11px/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: var(--paper); background: rgba(13,26,18,.7); padding: 6px 10px; }

.article { max-width: 760px; }
.article .meta { display: flex; gap: 14px; align-items: center; font: 600 12px/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: rgba(13,26,18,.55); margin-bottom: 14px; }
.article h2 { font-size: clamp(30px, 3.6vw, 52px); line-height: .98; margin-bottom: 18px; }
.article .ph { aspect-ratio: 5 / 2; overflow: hidden; margin: 22px 0; }
.article .ph img { width: 100%; height: 100%; object-fit: cover; }
.article + .article { margin-top: clamp(56px, 7vw, 96px); padding-top: clamp(56px, 7vw, 96px); border-top: 1px solid var(--line-dark); }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s var(--ease-out); }

/* ══ RESPONSIVE ═════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .six-grid, .next-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .locations { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .nav-mid, .nav-phone { display: none; }
  .burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { max-width: 520px; }
  .manifesto { grid-template-columns: 1fr; gap: 20px; }
  .manifesto .kicker { position: static; }
  .calaim-head, .who, .give-inner, .split, .split.wide-aside, .hero-grid { grid-template-columns: 1fr; }
  .aside { position: static; }
  .stack-card { grid-template-columns: 90px minmax(0, 1fr); padding: 26px 22px; }
  .stack-card .tags { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-row { grid-template-columns: minmax(0, 1fr) 40px; }
  .news-row .thumb { display: none; }
  .news-row .date { grid-column: 1 / -1; margin-bottom: -10px; }
  .stamp { left: auto; right: 12px; bottom: 12px; width: 110px; height: 110px; }
  .who-media { overflow: hidden; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 200px; }
  .menu-grid { grid-template-columns: minmax(0, 1fr); }
  .menu { overflow-x: hidden; }
}
@media (max-width: 640px) {
  .hero { min-height: 560px; }
  .hero-top { top: 90px; font-size: 10px; }
  .hero h1 { font-size: clamp(56px, 19vw, 120px); }
  .page-hero { padding-top: 110px; min-height: 60svh; }
  .page-hero h1 { font-size: clamp(44px, 14vw, 90px); }
  .six-grid, .next-grid, .grid-2, .grid-3, .grid-4, .pillars, .form, .numbers-grid { grid-template-columns: 1fr; }
  .step { min-height: 360px; padding: 18px; }
  .doors { grid-template-columns: 1fr; }
  .brand small { display: none; }
  .brand img { height: 40px; }
  .brand b { font-size: 19px; }
  .brand { gap: 8px; min-width: 0; }
  .nav { gap: 10px; }
  .nav-right { gap: 8px; flex: none; }
  .burger { width: 40px; height: 40px; }
  .burger i { top: 19px; left: 12px; right: 12px; }
  .nav-right .btn { padding: 10px 14px; font-size: 12px; }
  .nav-right .btn-give { padding: 10px 14px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 42vw; }
  .gallery figure.w2, .gallery figure.h2 { grid-column: span 1; grid-row: span 1; }
  .six-head { flex-direction: column; align-items: flex-start; }
  .steps { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero h1 .w > span { transform: none; }
  .hero-side { opacity: 1; }
  .grain { display: none; }
  .manifesto .w, .voice .w { opacity: 1; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* program sections on door pages: the program name is the big heading */
.prose .program { margin-top: 2.2em; }
.prose .program:first-child { margin-top: 0; }
.prose .program .kicker { margin-top: 0; }
.prose .prog-title { font-size: clamp(38px, 4.6vw, 68px); line-height: .92; letter-spacing: -.025em; margin-top: .35em; color: var(--ink); }
.prose .tagline { font: 500 clamp(19px, 1.8vw, 24px)/1.25 var(--f-head); color: var(--moss); margin-top: .5em; }
.prose .program + p { margin-top: 1.2em; }

/* ── WordPress additions ─────────────────────────────────────────────── */
.gs-block { display: contents; }
body.admin-bar .nav, body.admin-bar .menu { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav, body.admin-bar .menu { top: 46px; } }
.gs-fallback { padding: 160px var(--gutter) 80px; max-width: 760px; }
.gs-fallback h1 { font-size: clamp(40px, 6vw, 88px); margin-bottom: 20px; }
.gs-fallback .entry { font-size: 17px; line-height: 1.6; color: rgba(244,241,232,.82); }
.gs-fallback .entry a { color: var(--sun); }
/* single posts: WordPress content inside .prose */
.prose img, .prose figure { max-width: 100%; height: auto; margin: 1.4em 0; }
.prose figcaption { font-size: 13px; opacity: .65; margin-top: 6px; }
/* forms rendered by a form plugin (WPForms, Contact Form 7, …) */
.gs-plugin-form label, .gs-plugin-form .wpforms-field-label { font: 600 12px/1.3 var(--f-head) !important; letter-spacing: .16em; text-transform: uppercase; color: rgba(13,26,18,.6) !important; }
.gs-plugin-form input[type=text], .gs-plugin-form input[type=email], .gs-plugin-form input[type=tel], .gs-plugin-form input[type=url], .gs-plugin-form input[type=number], .gs-plugin-form select, .gs-plugin-form textarea {
  font: 400 16px/1.4 var(--f-body) !important; padding: 13px 14px !important; border: 1px solid var(--line-dark) !important; background: #fff !important; color: var(--ink) !important; border-radius: 0 !important; width: 100% !important; max-width: 100% !important; box-shadow: none !important; height: auto !important; }
.gs-plugin-form input:focus, .gs-plugin-form select:focus, .gs-plugin-form textarea:focus { border-color: var(--ink) !important; outline: none; box-shadow: 0 0 0 3px rgba(242,193,78,.5) !important; }
.gs-plugin-form textarea { min-height: 140px; }
.gs-plugin-form input[type=submit], .gs-plugin-form button[type=submit] {
  font: 700 15px/1 var(--f-head) !important; text-transform: uppercase; letter-spacing: .1em; padding: 16px 26px !important; border-radius: 999px !important; background: var(--ink) !important; color: var(--paper) !important; border: 1px solid var(--ink) !important; cursor: pointer; height: auto !important; }
.gs-plugin-form input[type=submit]:hover, .gs-plugin-form button[type=submit]:hover { background: var(--sun) !important; color: var(--ink) !important; border-color: var(--sun) !important; }
.form-fallback .lede { max-width: 60ch; }
