/* ============================================================
   HOMEWARD BOUND of Wooster & Wayne County
   Direction: warm editorial (retheme of warm-hospitality-lodging)
   Accent = the logo green, one meaning: give / take action.
   Purple = brand structure (nav, headings, dark bands). Type-led, no stock.
   ============================================================ */

/* ---------- self-hosted fonts ---------- */
/* Spectral 600 is the headline / LCP face: optional so LCP never waits on a swap */
@font-face{font-family:'Spectral';font-weight:600;font-style:normal;font-display:optional;src:url('/fonts/spectral-600.woff2') format('woff2');}
@font-face{font-family:'Spectral';font-weight:500;font-style:normal;font-display:swap;src:url('/fonts/spectral-500.woff2') format('woff2');}
@font-face{font-family:'Spectral';font-weight:500;font-style:italic;font-display:swap;src:url('/fonts/spectral-italic-500.woff2') format('woff2');}
/* Figtree is variable across 400-700 in one file */
@font-face{font-family:'Figtree';font-weight:400 700;font-style:normal;font-display:swap;src:url('/fonts/figtree-var.woff2') format('woff2');}

/* ---------- tokens ---------- */
:root{
  --bg:#f6f1e7;            /* warm linen */
  --surface:#fbf8f1;
  --surface-2:#efe7d8;
  --text:#292430;         /* dark plum charcoal */
  --text-dim:#5c5568;     /* holds 4.5:1 on linen */
  --border-c:#e6dcc9;
  --border:1px solid var(--border-c);

  --accent:#6db63c;       /* the logo green: the action */
  --accent-ink:#1d2b0d;   /* dark ink that sits on the green */
  --accent-deep:#3f7018;  /* green as text/link on linen, holds 4.5:1 */
  --accent-bright:#84cf4f;

  --purple:#524587;       /* brand structure, headings */
  --purple-deep:#372f5c;  /* dark bands, white text */
  --purple-ink:#2b2547;
  --purple-bright:#8779bf;

  --font-display:'Spectral', Georgia, serif;
  --font-body:'Figtree', system-ui, sans-serif;
  --font-mono:ui-monospace, 'Cascadia Mono', monospace;

  --step--1:.833rem; --step-0:1rem; --step-1:1.25rem; --step-2:1.563rem;
  --step-3:1.953rem; --step-4:2.441rem; --step-5:3.052rem; --step-6:3.815rem;
  --s-1:.5rem; --s-2:1rem; --s-3:1.5rem; --s-4:2.5rem; --s-5:4rem; --s-6:6rem;

  --radius:16px;
  --radius-sm:10px;
  --shadow:0 14px 40px -18px rgba(41,36,48,.20);
  --shadow-lg:0 30px 70px -24px rgba(41,36,48,.28);
  --max:1140px;
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--text);
  font-family:var(--font-body);font-size:1.0625rem;line-height:1.6;
  font-weight:400;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
svg{display:block}
a{color:var(--accent-deep);text-decoration-thickness:1px;text-underline-offset:2px}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;line-height:1.1;color:var(--purple);margin:0 0 .5em;letter-spacing:-.01em}
h1{font-size:clamp(2.35rem,6vw,var(--step-6));letter-spacing:-.02em}
h2{font-size:clamp(1.85rem,4vw,var(--step-4))}
h3{font-size:var(--step-2)}
p{margin:0 0 1em;max-width:66ch}
strong{font-weight:700;color:var(--purple-ink)}
ul{margin:0 0 1em;padding-left:1.1em}
li{margin:.3em 0}

/* ---------- layout ---------- */
.container{width:100%;max-width:var(--max);margin-inline:auto;padding-inline:clamp(1.1rem,4vw,2rem)}
[id]{scroll-margin-top:88px}
.section{padding-block:clamp(3.2rem,8vw,var(--s-6))}
.section--tight{padding-block:clamp(2.4rem,5vw,4rem)}
.eyebrow{font-family:var(--font-body);font-weight:700;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;color:var(--accent-deep);margin:0 0 .8rem}
.lede{font-size:clamp(1.12rem,2.4vw,1.35rem);line-height:1.5;color:var(--text-dim);max-width:60ch}
.center{text-align:center;margin-inline:auto}
.center .lede{margin-inline:auto}

.skip-link{position:absolute;left:-9999px;top:0;z-index:200;background:var(--accent);color:var(--accent-ink);padding:.7rem 1.1rem;border-radius:0 0 .5rem 0;font-weight:700}
.skip-link:focus{left:0}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-body);font-weight:700;font-size:1.02rem;
  padding:.85rem 1.5rem;border-radius:999px;border:2px solid transparent;
  text-decoration:none;cursor:pointer;transition:transform .15s ease,background .2s ease,box-shadow .2s ease,color .2s ease;
  line-height:1.1;
}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn--primary{background:var(--accent);color:var(--accent-ink);box-shadow:0 10px 26px -12px rgba(109,182,60,.8)}
.btn--primary:hover{background:var(--accent-bright)}
.btn--ghost{background:transparent;color:var(--purple);border-color:var(--purple)}
.btn--ghost:hover{background:var(--purple);color:#fff}
.btn--light{background:#fff;color:var(--purple);border-color:transparent}
.btn--light:hover{background:var(--surface-2)}
.btn--on-dark{background:var(--accent);color:var(--accent-ink)}
.btn--on-dark:hover{background:var(--accent-bright)}
.btn--ghost-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.btn--ghost-light:hover{background:rgba(255,255,255,.12);border-color:#fff}
.btn-row{display:flex;flex-wrap:wrap;gap:.85rem}

/* ---------- header / nav ---------- */
.site-header{position:sticky;top:0;z-index:100;background:rgba(246,241,231,.9);backdrop-filter:blur(10px);border-bottom:1px solid rgba(230,220,201,.7)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-block:.7rem}
.brand{display:flex;align-items:center;gap:.6rem;text-decoration:none;color:var(--purple)}
.brand svg{width:44px;height:auto;flex:0 0 auto}
.brand-name{font-family:var(--font-display);font-weight:600;font-size:1.18rem;letter-spacing:.06em;color:var(--purple);line-height:1;text-transform:uppercase}
.brand-name small{display:block;font-family:var(--font-body);font-weight:600;font-size:.58rem;letter-spacing:.12em;color:var(--text-dim);margin-top:2px;text-transform:uppercase}
.nav-links{display:flex;align-items:center;gap:.35rem;list-style:none;margin:0;padding:0}
.nav-links a:not(.btn){display:inline-block;padding:.5rem .7rem;color:var(--purple-ink);text-decoration:none;font-weight:600;font-size:.98rem;border-radius:8px;transition:background .15s ease,color .15s ease}
/* the current-page treatment is for text links only: on the solid green Donate
   button it would repaint the label dark green on green (2.37:1) */
.nav-links a:not(.btn):hover,.nav-links a[aria-current="page"]:not(.btn){color:var(--accent-deep)}
.nav-links a[aria-current="page"]:not(.btn){text-decoration:underline;text-decoration-color:var(--accent);text-decoration-thickness:2px;text-underline-offset:5px}
.nav-cta{margin-left:.4rem;padding:.6rem 1.2rem}
.nav-toggle{display:none;background:none;border:0;padding:.4rem;cursor:pointer;color:var(--purple)}
.nav-toggle svg{width:28px;height:28px}

/* ---------- hero ---------- */
.hero{position:relative;overflow:hidden;background:
  radial-gradient(1100px 520px at 82% -12%, rgba(109,182,60,.18), transparent 60%),
  radial-gradient(900px 500px at 8% 0%, rgba(82,69,135,.14), transparent 62%);
  border-bottom:1px solid rgba(230,220,201,.7)}
.hero .container{padding-block:clamp(3.2rem,9vw,6.5rem)}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.hero h1{color:var(--purple-ink)}
.hero h1 .accent{color:var(--accent-deep);font-style:italic;font-weight:500}
.hero .lede{margin-block:1.2rem 1.8rem}
.hero-aside{position:relative}
.hero-roof{width:100%;max-width:420px;margin-inline:auto;filter:drop-shadow(0 24px 40px rgba(41,36,48,.18))}
.hero-note{margin-top:1.4rem;font-size:.95rem;color:var(--text-dim);display:flex;align-items:center;gap:.5rem;justify-content:center}

/* quick stat chips under hero */
.stat-chips{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.6rem}
.chip{display:inline-flex;align-items:baseline;gap:.4rem;background:var(--surface);border:var(--border);border-radius:999px;padding:.5rem .95rem;font-size:.9rem;color:var(--text-dim)}
.chip b{font-family:var(--font-display);font-weight:600;font-size:1.02rem;color:var(--accent-deep)}

/* ---------- inner page header ---------- */
.page-hero{position:relative;overflow:hidden;border-bottom:1px solid rgba(230,220,201,.7);background:
  radial-gradient(900px 460px at 88% -20%, rgba(109,182,60,.16), transparent 62%),
  radial-gradient(760px 420px at 4% -10%, rgba(82,69,135,.13), transparent 64%)}
.page-hero .container{padding-block:clamp(2.6rem,7vw,4.6rem);max-width:800px}
.page-hero h1{color:var(--purple-ink)}
.page-hero .lede{margin-top:1rem}
.breadcrumb{font-size:.85rem;color:var(--text-dim);margin-bottom:1rem}
.breadcrumb a{color:var(--text-dim);text-decoration:none}
.breadcrumb a:hover{color:var(--accent-deep);text-decoration:underline}

/* ---------- cards / grids ---------- */
.grid{display:grid;gap:1.4rem}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{background:var(--surface);border:var(--border);border-radius:var(--radius);padding:1.6rem 1.5rem;box-shadow:var(--shadow)}
.card h3{margin-top:.2rem;color:var(--purple)}
.card p{color:var(--text-dim);margin-bottom:0}
.card .icon{width:52px;height:52px;display:grid;place-items:center;border-radius:14px;background:rgba(109,182,60,.16);color:var(--accent-deep);margin-bottom:1rem}
.card .icon svg{width:28px;height:28px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.card--purple .icon{background:rgba(82,69,135,.14);color:var(--purple)}

/* ---------- impact band (the signature: count-up) ---------- */
.impact{background:var(--purple-deep);color:#f4f1fb;position:relative;overflow:hidden}
.impact::after{content:"";position:absolute;inset:auto 0 -1px 0;height:70px;background:
  radial-gradient(60% 100% at 50% 100%, rgba(109,182,60,.28), transparent 70%)}
.impact h2{color:#fff}
.impact .eyebrow{color:var(--accent-bright)}
.impact .lede{color:rgba(244,241,251,.8)}
.impact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.6rem 1.2rem;margin-top:2.4rem;position:relative;z-index:1}
.stat{border-left:2px solid rgba(135,121,191,.5);padding-left:1.1rem}
.stat .stat-value{font-family:var(--font-display);font-weight:600;font-size:clamp(2.1rem,4.5vw,3rem);color:#fff;line-height:1;letter-spacing:-.01em}
.stat .stat-label{display:block;margin-top:.5rem;font-size:.95rem;color:rgba(244,241,251,.78);font-weight:500}
.impact-foot{margin-top:2.2rem;font-size:.95rem;color:rgba(244,241,251,.7);position:relative;z-index:1}

/* ---------- alternating tone section ---------- */
.tone{background:var(--surface)}
.tone--warm{background:var(--surface-2)}
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.8rem,4vw,3.4rem);align-items:center}
.stack-list{list-style:none;padding:0;margin:0;display:grid;gap:1rem}
.stack-list li{display:flex;gap:.9rem;align-items:flex-start;margin:0}
.stack-list .tick{flex:0 0 auto;width:26px;height:26px;border-radius:50%;background:rgba(109,182,60,.18);color:var(--accent-deep);display:grid;place-items:center;margin-top:2px}
.stack-list .tick svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}

/* ---------- donation tiers ---------- */
.tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:2rem}
.tiers--4{grid-template-columns:repeat(4,1fr);gap:1rem}
.tier{background:var(--surface);border:var(--border);border-radius:var(--radius);padding:1.5rem;text-align:center;position:relative;transition:transform .15s ease,box-shadow .2s ease}
.tier:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.tier .amt{font-family:var(--font-display);font-weight:600;font-size:2.1rem;color:var(--accent-deep);line-height:1}
.tier .amt span{font-size:1rem;color:var(--text-dim)}
.tier p{color:var(--text-dim);margin:.7rem 0 0;font-size:.98rem}
.tier--feature{background:var(--purple-deep);border-color:var(--purple-deep)}
.tier--feature .amt,.tier--feature p{color:#fff}
.tier--feature .amt span{color:rgba(255,255,255,.7)}
.tier--feature::before{content:"Fuels a full day";position:absolute;top:-.7rem;left:50%;transform:translateX(-50%);background:var(--accent);color:var(--accent-ink);font-size:.72rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;padding:.25rem .8rem;border-radius:999px;white-space:nowrap}

/* ---------- CTA band ---------- */
.cta-band{background:linear-gradient(115deg,var(--purple) 0%,var(--purple-deep) 100%);color:#fff;border-radius:var(--radius);padding:clamp(2.2rem,5vw,3.4rem);text-align:center;box-shadow:var(--shadow-lg)}
.cta-band h2{color:#fff}
.cta-band p{color:rgba(255,255,255,.82);margin-inline:auto}
.cta-band .btn-row{justify-content:center;margin-top:1.6rem}

/* ---------- partners ---------- */
.partner-grid{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.8rem}
.partner{background:var(--surface);border:var(--border);border-radius:999px;padding:.55rem 1.1rem;font-size:.92rem;font-weight:500;color:var(--purple-ink)}

/* ---------- contact rows ---------- */
.info-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.2rem}
.info{display:flex;gap:1rem;align-items:flex-start;background:var(--surface);border:var(--border);border-radius:var(--radius);padding:1.4rem;min-width:0}
.info>div{min-width:0}
.info .icon{flex:0 0 auto;width:46px;height:46px;border-radius:12px;background:rgba(82,69,135,.12);color:var(--purple);display:grid;place-items:center}
.info .icon svg{width:24px;height:24px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.info h3{font-size:1.1rem;margin:0 0 .25rem}
.info p{margin:0;color:var(--text-dim);font-size:.98rem;overflow-wrap:anywhere}
.info a{font-weight:600;overflow-wrap:anywhere}

/* ---------- prose (about/privacy) ---------- */
.prose{max-width:70ch}
.prose h2{margin-top:2.2rem}
.prose h3{margin-top:1.6rem;color:var(--purple-ink)}
.prose blockquote{margin:1.6rem 0;padding:1.2rem 1.5rem;border-left:3px solid var(--accent);background:var(--surface);border-radius:0 var(--radius-sm) var(--radius-sm) 0;font-family:var(--font-display);font-style:italic;font-size:1.2rem;color:var(--purple-ink)}
.prose blockquote p{margin:0;max-width:none}

/* ---------- footer ---------- */
.site-footer{background:var(--purple-deep);color:rgba(244,241,251,.8);padding-block:3.2rem 1.6rem;margin-top:0}
.footer-grid{display:grid;grid-template-columns:1.3fr .85fr 1fr 1.2fr;gap:2rem}
.footer-brand .brand-name{color:#fff}
.footer-brand .brand-name small{color:rgba(244,241,251,.6)}
.footer-brand p{color:rgba(244,241,251,.7);font-size:.95rem;margin-top:1rem;max-width:34ch}
.site-footer .footer-head{font-family:var(--font-body);font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--accent-bright);margin:.2rem 0 1rem;font-weight:700;line-height:1.3}
.footer-links{list-style:none;margin:0;padding:0}
.footer-links li{margin:0}
.footer-links a{display:inline-block;padding:.35rem 0;color:rgba(244,241,251,.82);text-decoration:none;font-size:.97rem}
.footer-links a:hover{color:#fff;text-decoration:underline}
.footer-contact{font-size:.97rem;line-height:1.7;color:rgba(244,241,251,.82);overflow-wrap:anywhere}
.footer-contact a{color:rgba(244,241,251,.82);text-decoration:none}
.footer-contact a:hover{color:#fff;text-decoration:underline}
.footer-bottom{display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;align-items:center;margin-top:2.6rem;padding-top:1.4rem;border-top:1px solid rgba(135,121,191,.3);font-size:.85rem;color:rgba(244,241,251,.6)}
.footer-bottom a{color:rgba(244,241,251,.6)}

/* footer newsletter signup (posts to Scroll Theory Forms; JS upgrades to inline success) */
.footer-note{color:rgba(244,241,251,.7);font-size:.92rem;margin:0 0 .9rem;max-width:30ch}
.newsletter .nl-trap{position:absolute;left:-9999px;width:1px;height:1px;opacity:0}
.newsletter .nl-row{display:flex;gap:.5rem}
/* 1rem (16px) minimum: a smaller input font makes mobile Chrome/Safari zoom-and-pan
   on focus, which knocks the fixed popup off center */
.newsletter input[type="email"]{flex:1;min-width:0;background:#fff;border:0;border-radius:999px;padding:.65rem 1.05rem;font-family:var(--font-body);font-size:1rem;color:var(--text)}
.newsletter input[type="email"]::placeholder{color:var(--text-dim)}
.newsletter .btn{padding:.65rem 1.15rem;font-size:.95rem}
.newsletter .nl-msg{margin:.7rem 0 0;font-size:.92rem;color:var(--accent-bright)}

/* newsletter popup (injected by main.js; shows once, never on /donate) */
.nl-pop{position:fixed;inset:0;z-index:300;display:grid;place-items:center;padding:1.2rem;overflow:auto}
.nl-pop[hidden]{display:none}
.nl-pop-backdrop{position:absolute;inset:0;background:rgba(41,36,48,.55);cursor:pointer}
.nl-pop-card{position:relative;background:var(--bg);border:var(--border);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:2.1rem 1.9rem 1.9rem;max-width:460px;width:100%;animation:nlpop .35s ease}
@keyframes nlpop{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.nl-pop-card h2{font-size:var(--step-3);margin-bottom:.4rem}
.nl-pop-lede{color:var(--text-dim);margin-bottom:1.2rem}
.nl-pop-close{position:absolute;top:.7rem;right:.7rem;background:none;border:0;padding:.45rem;cursor:pointer;color:var(--text-dim);border-radius:8px}
.nl-pop-close:hover{color:var(--purple);background:var(--surface-2)}
.nl-pop-close svg{display:block}
.nl-pop input[type="email"]{border:var(--border)}
.nl-pop .nl-msg{color:var(--accent-deep)}
@media(prefers-reduced-motion:reduce){.nl-pop-card{animation:none}}

/* footer social row */
.social-row{display:flex;gap:.6rem;margin-top:1.1rem}
.social-row a{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:rgba(135,121,191,.22);color:#f4f1fb;transition:background .2s ease,color .2s ease,transform .15s ease}
.social-row a:hover{background:var(--accent);color:var(--accent-ink);transform:translateY(-2px)}
.social-row svg{width:19px;height:19px}

/* Scroll Theory signature credit */
.st-credit{font-family:var(--font-mono);font-size:.75rem;letter-spacing:.02em;color:#fff;opacity:.6;text-decoration:none;transition:color .2s ease,opacity .2s ease}
.st-credit:hover{opacity:1;color:#BFFF00}
.st-wm{font-weight:700}
.st-wm u{color:#BFFF00;text-decoration:none}

/* ============================================================
   PHOTOGRAPHY
   Real photos of the real place and the real people (module-7 imagery
   policy). Every crop is cut to its final ratio at build time, so the
   intrinsic width/height attributes reserve exact space and nothing shifts.
   ============================================================ */

/* the house frame: soft corners, warm hairline, one shadow */
.photo{margin:0;border-radius:var(--radius);overflow:hidden;border:var(--border);box-shadow:var(--shadow);background:var(--surface-2)}
.photo img{width:100%;height:auto}
.photo figcaption{padding:.7rem 1rem;font-size:.86rem;color:var(--text-dim);background:var(--surface);border-top:var(--border)}

/* hero: the photo replaces the roof mark, which the nav already carries */
.hero-photo{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-lg);border:3px solid var(--surface);transform:rotate(-1.1deg)}
.hero-photo img{width:100%;height:auto}

/* photo-topped card: image sits flush to the card edge */
.card--photo{padding:0;overflow:hidden;display:flex;flex-direction:column}
.card--photo>img{width:100%;height:auto;border-bottom:var(--border)}
.card--photo .card-body{padding:1.4rem 1.5rem 1.6rem}
.card--photo h3{margin-top:0}

/* before / during / after: three frames shot from the same spot */
.history{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:2.4rem;counter-reset:step}
.history .photo figcaption{display:flex;align-items:baseline;gap:.5rem}
.history .photo figcaption b{font-family:var(--font-display);color:var(--purple);font-weight:600}

/* a look inside: uniform tiles, so mixed sources still read as one set */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:.9rem;margin-top:2.4rem}
.gallery figure{margin:0;border-radius:var(--radius-sm);overflow:hidden;border:var(--border);box-shadow:var(--shadow);aspect-ratio:4/3;background:var(--surface-2)}
.gallery img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.gallery figure:hover img{transform:scale(1.04)}

/* a wide photo used as a section rule: capped so the source stays >=2x the box */
.photo-band{margin-top:2.6rem;max-width:940px;margin-inline:auto}

@media(max-width:900px){
  .history{grid-template-columns:1fr;gap:1rem}
  .gallery{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .hero-photo{transform:none}
  .gallery{gap:.6rem}
}
@media(prefers-reduced-motion:reduce){
  .gallery img,.gallery figure:hover img{transition:none;transform:none}
}

/* ---------- in the news (press coverage) ----------
   External coverage only, so the cards are text-led: outlet and date in a
   left rail, headline links out. No publisher images (CSP is self-only). */
.press-list{display:grid;gap:1.1rem;margin-top:2.4rem}
.press{display:grid;grid-template-columns:180px 1fr;gap:1.4rem;background:var(--surface);border:var(--border);border-radius:var(--radius);padding:1.5rem 1.7rem;box-shadow:var(--shadow);transition:transform .15s ease,box-shadow .2s ease}
.press:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.press-rail{border-right:2px solid rgba(109,182,60,.35);padding-right:1.2rem}
.press-outlet{display:block;font-weight:700;font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;color:var(--accent-deep)}
.press-date{display:block;margin-top:.35rem;font-size:.88rem;color:var(--text-dim)}
.press h3{font-size:var(--step-1);margin:0 0 .35rem;line-height:1.25}
.press h3 a{color:var(--purple);text-decoration:none}
.press h3 a:hover{color:var(--accent-deep);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}
.press h3 svg{display:inline-block;width:.72em;height:.72em;margin-left:.3em;vertical-align:baseline;stroke:currentColor;fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;opacity:.65}
.press p{color:var(--text-dim);margin:0;font-size:.98rem}

/* compact press teasers on the home page */
.press-teasers{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:2.4rem}
.press-teaser{display:flex;flex-direction:column;background:var(--surface);border:var(--border);border-radius:var(--radius);padding:1.4rem 1.5rem;box-shadow:var(--shadow);text-decoration:none;transition:transform .15s ease,box-shadow .2s ease}
.press-teaser:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.press-teaser .press-outlet{margin-bottom:.5rem}
.press-teaser b{font-family:var(--font-display);font-weight:600;font-size:1.12rem;line-height:1.3;color:var(--purple)}
.press-teaser:hover b{color:var(--accent-deep)}
.press-teaser span{margin-top:.6rem;font-size:.88rem;color:var(--text-dim)}

@media(max-width:900px){
  .press-teasers{grid-template-columns:1fr}
}
@media(max-width:640px){
  .press{grid-template-columns:1fr;gap:.7rem;padding:1.3rem 1.3rem}
  .press-rail{border-right:0;border-bottom:2px solid rgba(109,182,60,.35);padding:0 0 .7rem;display:flex;align-items:baseline;gap:.8rem}
  .press-date{margin-top:0}
}

/* ---------- reveal motion ---------- */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}

/* ---------- responsive ---------- */
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  /* stacked: the headline and Donate button lead, the photo follows */
  .hero-aside{max-width:520px;margin-inline:auto}
  .grid-3{grid-template-columns:1fr 1fr}
  .impact-grid{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .tiers{grid-template-columns:1fr}
}
@media(max-width:640px){
  .nav-links{position:fixed;inset:0 0 auto 0;top:0;flex-direction:column;align-items:stretch;gap:.2rem;background:var(--bg);padding:5rem 1.3rem 1.6rem;box-shadow:var(--shadow-lg);transform:translateY(-110%);transition:transform .28s ease;height:auto}
  .nav-links.open{transform:translateY(0)}
  .nav-links a:not(.btn){padding:.85rem .6rem;font-size:1.1rem;border-bottom:1px solid var(--border-c)}
  .nav-cta{margin:.8rem 0 0;width:100%;justify-content:center}
  .nav-toggle{display:block;z-index:120}
  .grid-3,.grid-2,.info-grid{grid-template-columns:1fr}
  .impact-grid{grid-template-columns:1fr 1fr;gap:1.3rem}
  .footer-grid{grid-template-columns:1fr;gap:1.6rem}
  .btn-row .btn{width:100%;justify-content:center}
  h1{font-size:clamp(2.1rem,9vw,2.9rem)}
  .hero-aside{max-width:none}        /* the shelter photo earns its place on phones */
  .hero .container{padding-block:clamp(2.4rem,8vw,3.4rem)}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .btn:hover,.tier:hover{transform:none}
  *{scroll-behavior:auto!important}
}
