/* =========================================================================
   Future Steps, Inc. — REDESIGN PROTOTYPE  ("editorial + human")
   Fraunces headlines · Hanken Grotesk body · duotone photography ·
   asymmetric editorial layout · chevron "forward-motion" motif.
   Brand kept: teal #288D9C · terracotta #A9451F · warm paper.
   ========================================================================= */

:root {
  --teal:        #288D9C;
  --teal-700:    #1F6F7C;
  --teal-800:    #185863;
  --teal-900:    #10353B;   /* deep ink-teal */
  --ink:         #17272C;
  --muted:       #52646A;
  --paper:       #F7EFE6;   /* warmer than before */
  --paper-2:     #F0E4D6;
  --sand-line:   #E2D3C2;
  --terra:       #A9451F;
  --terra-600:   #8F3B1A;
  --terra-tint:  #F3D9CC;
  --white:       #fff;

  --maxw: 1200px;
  --gutter: clamp(1.2rem, 5vw, 3rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ring: rgba(40,141,156,.5);
  --sh-1: 0 1px 2px rgba(16,53,59,.05), 0 8px 24px rgba(16,53,59,.06);
  --sh-2: 0 24px 60px rgba(16,53,59,.16);
}

/* ---- Base ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
/* subtle paper grain — signals "material", not flat template */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
img, svg { max-width: 100%; display: block; }
::selection { background: var(--terra); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: 1.32rem; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
strong { font-weight: 600; }
em { font-style: italic; }

a { color: var(--teal-800); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--terra-600); }

/* ---- a11y ------------------------------------------------------------- */
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 3px; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--teal-900); color: #fff; padding: .7rem 1.1rem; border-radius: 8px; transition: top .18s ease; text-decoration: none; font-weight: 600; }
.skip-link:focus { top: 12px; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Layout ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.rule { height: 1px; background: var(--sand-line); border: 0; margin: 0; }

/* Kicker — a chevron + small-caps label. Replaces the dash-eyebrow cliché. */
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--terra);
  margin: 0 0 1.1rem;
}
.kicker svg { width: 15px; height: 15px; flex: none; }
.kicker.on-dark { color: #FBE9E1; }

/* ---- Buttons (squared, chevron-driven — not a generic pill) ----------- */
.btn {
  --bg: var(--teal-800); --fg: #fff; --bd: var(--teal-800);
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .92rem 1.5rem; border-radius: 9px;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  text-decoration: none; cursor: pointer; line-height: 1;
  transition: transform .16s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease, background .18s ease;
  box-shadow: var(--sh-1);
}
.btn .chev { transition: transform .18s cubic-bezier(.2,.7,.2,1); }
.btn:hover { transform: translateY(-2px); color: var(--fg); }
.btn:hover .chev { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn-primary { --bg: var(--terra); --bd: var(--terra); }
.btn-primary:hover { --bg: var(--terra-600); }
.btn-outline { --bg: transparent; --fg: var(--ink); --bd: var(--sand-line); box-shadow: none; }
.btn-outline:hover { --bg: rgba(23,39,44,.04); --bd: var(--ink); }
.btn-on-dark { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.45); box-shadow: none; }
.btn-on-dark:hover { --bg: rgba(255,255,255,.12); }
.btn-lg { font-size: 1.06rem; padding: 1.05rem 1.9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ---- Header ----------------------------------------------------------- */
.topbar { height: 4px; background: linear-gradient(90deg, var(--terra) 0 33%, var(--teal) 33% 66%, var(--teal-900) 66%); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,239,230,.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--sand-line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand svg { width: 40px; height: 40px; flex: none; color: var(--teal); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-weight: 600; font-size: 1.24rem; letter-spacing: -0.01em; }
.brand-text span { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-700); font-weight: 700; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 500; font-size: .97rem; color: var(--ink); text-decoration: none; padding: .5rem .85rem; border-radius: 8px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--terra-600); }
.nav-links a[aria-current="page"] { color: var(--teal-800); }
.nav-cta { margin-left: .5rem; }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--sand-line); background: #fff; border-radius: 10px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
@media (max-width: 1020px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: .1rem; background: var(--paper); border-bottom: 1px solid var(--sand-line); padding: .8rem var(--gutter) 1.4rem; box-shadow: var(--sh-1); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .85rem .6rem; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; margin-top: .5rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---- HERO (asymmetric, editorial) ------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(3rem, 7vw, 6rem); }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .ital { font-style: italic; font-weight: 500; color: var(--terra); }
.hero-lead { font-size: 1.28rem; line-height: 1.5; color: var(--muted); max-width: 40ch; margin-bottom: 1.9rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .55rem 1.6rem; margin-top: 1.9rem; color: var(--muted); font-size: .93rem; font-weight: 500; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { width: 17px; height: 17px; color: var(--teal); flex: none; }

/* Duotone photo slot — bleeds to the top-right, overlaps into the type column */
.hero-figure { position: relative; }
.duotone {
  position: relative; border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-900) 100%);
  box-shadow: var(--sh-2); aspect-ratio: 4 / 5;
}
.duotone .grain { position: absolute; inset: 0; opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.duotone figure, .duotone svg { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; }
.duotone .cap { position: absolute; left: 14px; bottom: 12px; z-index: 3; font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.72); font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; background: rgba(16,53,59,.35); padding: .3rem .6rem; border-radius: 6px; backdrop-filter: blur(3px); }
.chip-float { position: absolute; z-index: 4; background: var(--white); border-radius: 12px; box-shadow: var(--sh-1); padding: .75rem .95rem; display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .9rem; }
.chip-float.tl { top: -18px; left: -22px; }
.chip-float.br { bottom: 20px; right: -22px; }
.chip-float .dot { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--terra-tint); color: var(--terra-600); flex: none; }
.chip-float .dot svg { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 400px; margin-top: .5rem; }
  .chip-float.tl { left: -8px; } .chip-float.br { right: -8px; }
}

/* ---- Mission — bold terracotta editorial band ------------------------- */
.band-terra { background: var(--terra); color: #fff; position: relative; overflow: hidden; }
.band-terra::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.07); }
.band-terra h2 { color: #fff; }
.mission-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: start; position: relative; z-index: 1; }
.mission-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.28; letter-spacing: -0.015em; color: #fff; max-width: 20ch; }
.strands { display: grid; gap: .1rem; }
.strand { display: flex; gap: .9rem; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.22); }
.strand:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.strand svg { width: 22px; height: 22px; flex: none; color: #fff; margin-top: .15rem; }
.strand h3 { color: #fff; margin: 0 0 .2rem; font-size: 1.12rem; }
.strand p { color: rgba(255,255,255,.92); margin: 0; font-size: .98rem; }

/* ---- The stat / need — single arresting number ------------------------ */
.stat-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; }
.stat-big { font-family: var(--font-display); font-weight: 600; font-size: clamp(4rem, 11vw, 8rem); line-height: .92; letter-spacing: -0.03em; color: var(--teal-800); }
.stat-big small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; letter-spacing: .01em; color: var(--muted); margin-top: 1rem; max-width: 26ch; }
.stat-copy h2 { margin-bottom: .8rem; }
.stat-copy .lead { font-size: 1.2rem; color: var(--muted); }
@media (max-width: 820px) { .mission-grid, .stat-grid { grid-template-columns: 1fr; } }

/* ---- Steps — ascending "stride", chevron-linked ----------------------- */
.stride { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: s; margin-top: 2.4rem; }
.stride-item { position: relative; background: #fff; border: 1px solid var(--sand-line); border-radius: 14px; padding: 1.6rem; box-shadow: var(--sh-1); }
.stride-item:nth-child(2) { transform: translateY(-18px); }
.stride-item:nth-child(3) { transform: translateY(-36px); }
.stride-num { counter-increment: s; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--terra); display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .7rem; }
.stride-num::before { content: "0" counter(s); }
.stride-num svg { width: 16px; height: 16px; }
.stride-item h3 { margin: 0 0 .35rem; }
.stride-item p { margin: 0; color: var(--muted); font-size: .98rem; }
@media (max-width: 820px) {
  .stride { grid-template-columns: 1fr; gap: 1rem; }
  .stride-item:nth-child(2), .stride-item:nth-child(3) { transform: none; }
}

/* ---- Human story — duotone portrait + quote --------------------------- */
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
.story-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.34; letter-spacing: -0.01em; color: var(--ink); }
.story-quote .mark { color: var(--terra); }
.story-by { margin-top: 1.3rem; font-weight: 600; color: var(--ink); }
.story-by span { display: block; font-weight: 500; color: var(--muted); font-size: .95rem; }
.portrait { aspect-ratio: 3 / 4; border-radius: 16px; }
@media (max-width: 820px) { .story-grid { grid-template-columns: 1fr; } .portrait { max-width: 320px; } }

/* "At a glance" credibility card (replaces the portrait placeholder) */
.facts { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--sand-line); border-radius: 16px; box-shadow: var(--sh-1); padding: clamp(1.6rem, 3.2vw, 2.5rem); }
.facts::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--terra) 0 50%, var(--teal) 50% 100%); }
.facts-title { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.01em; color: var(--ink); margin: .5rem 0 1.2rem; }
.facts ul { list-style: none; margin: 0; padding: 0; }
.facts li { display: flex; align-items: center; gap: .85rem; padding: 1rem 0; border-top: 1px solid var(--sand-line); color: var(--ink); font-weight: 500; font-size: 1.02rem; }
.facts li:first-child { border-top: 0; }
.facts li svg { width: 18px; height: 18px; flex: none; color: var(--terra); }
.facts .num { font-variant-numeric: tabular-nums; letter-spacing: .02em; }

/* ---- Closing CTA ------------------------------------------------------ */
.closing { background: var(--teal-900); color: #fff; position: relative; overflow: hidden; }
.closing::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 120%, rgba(169,69,31,.35), transparent 60%); }
.closing .wrap { position: relative; z-index: 1; text-align: center; }
.closing h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 16ch; margin-inline: auto; }
.closing p { color: rgba(255,255,255,.8); max-width: 46ch; margin: 1rem auto 2rem; font-size: 1.15rem; }
.closing .btn-row { justify-content: center; }

/* ---- Footer ----------------------------------------------------------- */
.site-footer { background: var(--teal-900); color: #C6DCDE; padding-block: 3.2rem 1.8rem; border-top: 1px solid rgba(255,255,255,.08); }
.site-footer a { color: #DCEBEC; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer-brand svg { width: 42px; height: 42px; color: var(--paper); }
.footer-brand .brand-text b { color: #fff; }
.footer-brand .brand-text span { color: #8FD3DC; }
.footer-note { max-width: 34ch; color: #9FC0C3; font-size: .93rem; margin-top: 1rem; }
.footer-col h2 { font-family: var(--font-body); color: #fff; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .84rem; color: #93B4B7; font-variant-numeric: tabular-nums; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---- Motion ----------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; } .js .reveal.d2 { transition-delay: .16s; } .js .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }
/* chevron "draws" on load */
.draw path { stroke-dasharray: 120; stroke-dashoffset: 120; animation: draw 1.1s .3s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .draw path { stroke-dashoffset: 0; animation: none; } }

/* =========================================================================
   INTERIOR PAGES — every legacy component, reskinned in the new language.
   (about / what-we-do / get-involved / donate / contact / 404)
   ========================================================================= */

/* ---- Layout + utilities ---------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 760px; }
.section-cream { background: var(--paper); }
.section-sand { background: var(--paper-2); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.center.measure { margin-inline: auto; }
.text-muted { color: var(--muted); }
.hr { height: 1px; background: var(--sand-line); border: 0; margin: 2rem 0; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; }

/* ---- Eyebrow (reskinned to the chevron kicker look, no dash cliché) --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--terra);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; flex: none;
  border-right: 2.5px solid currentColor; border-top: 2.5px solid currentColor;
  transform: rotate(45deg);
}
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--muted); }

/* ---- Interior page hero ---------------------------------------------- */
.page-hero { background: linear-gradient(180deg, #fff, var(--paper)); border-bottom: 1px solid var(--sand-line); padding-block: clamp(2.6rem, 6vw, 4.4rem); }
.page-hero h1 { margin-bottom: .6rem; }
.page-hero .lead { max-width: 60ch; margin-bottom: 0; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; letter-spacing: .01em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--terra-600); }

/* ---- Prose ------------------------------------------------------------ */
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p { color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--terra); }

/* ---- Cards + grids ---------------------------------------------------- */
.grid { display: grid; gap: 1.3rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--sand-line); border-radius: 14px; padding: 1.7rem; box-shadow: var(--sh-1); }
.card h3 { margin-top: .2rem; }
.card p:last-child { margin-bottom: 0; }
.card-hover { transition: transform .16s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }

/* ---- Icon badge ------------------------------------------------------- */
.icon-badge { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: rgba(40,141,156,.10); color: var(--teal-800); margin-bottom: 1rem; }
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.accent { background: var(--terra-tint); color: var(--terra-600); }

/* ---- Callout ---------------------------------------------------------- */
.callout { background: #fff; border: 1px solid var(--sand-line); border-left: 4px solid var(--teal); border-radius: 12px; padding: 1.4rem 1.5rem; box-shadow: var(--sh-1); }
.callout.accent { border-left-color: var(--terra); }
.callout .eyebrow { margin-top: 0; }

/* ---- Numbered steps --------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: st; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border: 1px solid var(--sand-line); border-radius: 14px; padding: 1.7rem; box-shadow: var(--sh-1); }
.step-num { counter-increment: st; font-family: var(--font-display); font-weight: 600; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--terra); color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.step-num::before { content: counter(st); }

/* ---- Stat value ------------------------------------------------------- */
.stat-value { font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; color: var(--teal-800); line-height: 1; }

/* ---- CTA band --------------------------------------------------------- */
.cta-band { background: linear-gradient(140deg, var(--teal-800), var(--teal-900)); color: #fff; border-radius: 20px; padding: clamp(2rem, 5vw, 3.4rem); text-align: center; box-shadow: var(--sh-2); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 260px at 82% 118%, rgba(169,69,31,.34), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.5rem; }

/* ---- Dark band -------------------------------------------------------- */
.band-dark { background: var(--teal-900); color: #C6DCDE; position: relative; overflow: hidden; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: #C6DCDE; }
.band-dark .eyebrow { color: #E8A98C; }

/* ---- Contact ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--sand-line); border-radius: 14px; padding: 1.4rem; box-shadow: var(--sh-1); }
.contact-item .icon-badge { flex: none; margin-bottom: 0; width: 46px; height: 46px; }
.contact-item h3 { font-size: 1.05rem; margin: 0 0 .2rem; }
.contact-item p { margin: 0; color: var(--muted); }
.contact-item a { font-weight: 600; }

/* ---- Donate ----------------------------------------------------------- */
.donate-card { background: #fff; border: 1px solid var(--sand-line); border-radius: 20px; box-shadow: var(--sh-2); padding: clamp(1.6rem, 4vw, 2.6rem); }
.note-box { background: var(--paper-2); border: 1px dashed var(--teal); border-radius: 12px; padding: 1rem 1.2rem; font-size: .92rem; color: var(--muted); }

/* ---- Footer trust badge ---------------------------------------------- */
.badge-501 { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: .35rem .9rem; color: #DCEBEC; font-size: .82rem; }
.badge-501 svg { width: 15px; height: 15px; color: #8FD3DC; }

/* ---- Button aliases (legacy markup compatibility) -------------------- */
.btn-accent { --bg: var(--terra); --bd: var(--terra); }
.btn-accent:hover { --bg: var(--terra-600); }
.btn-ghost { --bg: transparent; --fg: var(--ink); --bd: var(--sand-line); box-shadow: none; }
.btn-ghost:hover { --bg: rgba(23,39,44,.04); --bd: var(--ink); }
.btn-block { width: 100%; justify-content: center; }
