/* =====================================================================
   Wallace Family Foundation — Design System  (all pages share this file)
   Palette : deep navy (logo) · warm cream · gold · clay accent
   Type    : Lora (serif headings) + Inter (sans body) — loaded via Google Fonts
   To re-theme, change the CSS variables below; everything references them.

   SECTIONS — search the "----------" banners to jump:
     reset · layout · buttons · nav · mobile menu · hero · values strip ·
     mission · pillars · community split · band · founders · steps ·
     contact · footer · reveal animation · legal pages · responsive
   ===================================================================== */

:root {
  /* color */
  --navy:        #02084b;   /* exact logo navy — primary */
  --navy-600:    #0a1566;
  --navy-500:    #1b2a7a;
  --ink:         #1d2333;   /* body text */
  --muted:       #5a6172;   /* secondary text */
  --cream:       #faf6ee;   /* page background */
  --paper:       #ffffff;
  --gold:        #c7a14a;
  --gold-soft:   #e7d3a1;
  --clay:        #c06a3c;   /* warm accent: decorative strokes, large italic text */
  --clay-text:   #a3552b;   /* darker clay for small text — ≥4.5:1 on cream/white (WCAG AA) */
  --gold-bright: #d4b25e;   /* gold button hover */
  --sage:        #5f6f53;

  --line:        rgba(2, 8, 75, 0.12);
  --shadow-sm:   0 1px 2px rgba(2,8,75,.06), 0 2px 8px rgba(2,8,75,.06);
  --shadow-md:   0 10px 30px rgba(2,8,75,.10);
  --shadow-lg:   0 24px 60px rgba(2,8,75,.16);

  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 28px;

  --ff-serif: "Lora", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --ff-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }
/* gold ring on dark backgrounds, where navy would vanish */
.footer :focus-visible, .band :focus-visible, .values-strip :focus-visible { outline-color: var(--gold); }

/* skip link — first tab stop, visible only on focus */
.skip {
  position: fixed; top: .75rem; left: .75rem; z-index: 200;
  background: var(--navy); color: #fff; font-weight: 600;
  padding: .7rem 1.2rem; border-radius: 999px;
  transform: translateY(-200%);
}
.skip:focus-visible { transform: none; }

/* ---------- layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--fade-down { background: linear-gradient(180deg, var(--cream), #fff); }
.section--fade-up   { background: linear-gradient(180deg, #fff, var(--cream)); }
.section--flush-top { padding-top: 1rem; }
.measure { max-width: 60ch; }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay-text);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
/* standard rhythm after an eyebrow / before a lead (replaces inline margins) */
.eyebrow + h1, .eyebrow + h2, .eyebrow + .big { margin-top: 1rem; }
h1 + .lead, h2 + .lead { margin-top: 1rem; }
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--clay); display: inline-block;
}

h1, h2, h3 { font-family: var(--ff-serif); font-weight: 500; line-height: 1.08; color: var(--navy); letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.2; }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--muted); line-height: 1.6; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: 1rem;
  padding: .9rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-600); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-bright); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(2,8,75,.03); }
.btn--light { background: #fff; color: var(--navy); }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-row { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(250,246,238,.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: .8rem; padding-bottom: .8rem;
}
.nav__brand { display: flex; align-items: center; gap: .7rem; }
.nav__brand img { height: 44px; width: auto; transition: height .3s ease; }
.nav.scrolled .nav__brand img { height: 38px; }
.nav__brand .brand-text { font-family: var(--ff-serif); font-size: 1.18rem; color: var(--navy); line-height: 1.12; }
.nav__brand .brand-text small { display:block; margin-top: 4px; line-height: 1; font-family: var(--ff-sans); font-size: .62rem; letter-spacing:.2em; text-transform:uppercase; color: var(--clay); font-weight:700; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink); position: relative; }
.nav__links a::after {
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--clay); transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: .6rem 1.2rem; font-size: .92rem; }
/* keep CTA button text white — nav/mobile link color rules would otherwise darken it */
.nav__links a.btn--primary, .mobile-menu a.btn--primary { color: #fff; }
.nav__links a.btn--primary::after { display: none; }
.nav__toggle { display:none; background:none; border:0; cursor:pointer; padding:.4rem; }
.nav__toggle span { display:block; width:26px; height:2px; background: var(--navy); margin:5px 0; transition: .3s; border-radius:2px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem;
  transform: translateY(-100%); visibility: hidden;  /* keep closed-menu links out of tab order */
  transition: transform .4s cubic-bezier(.7,0,.2,1), visibility 0s .4s; padding: 2rem;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; transition-delay: 0s; }
.mobile-menu a { font-family: var(--ff-serif); font-size: 1.8rem; color: var(--navy); }
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(8rem, 16vw, 11rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__bg { position:absolute; inset:0; z-index:-2; background:
   radial-gradient(120% 90% at 80% -10%, #fff 0%, var(--cream) 45%, var(--cream) 100%);
}
.hero__art { position:absolute; inset:auto 0 0 0; z-index:-1; width:100%; height:auto; pointer-events:none; opacity:.5; }
.hero__grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.7rem); }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero p.lead { margin-top: 1.4rem; max-width: 34ch; }
.hero__cta { margin-top: 2.2rem; display:flex; gap: 1rem; flex-wrap: wrap; }
.hero__badge {
  margin-top: 2.4rem; display:inline-flex; align-items:center; gap:.7rem;
  font-size:.85rem; color: var(--muted);
}
.hero__badge b { color: var(--navy); }
.hero__badge svg { color: var(--clay); flex:none; }

/* hero card / monogram showcase */
.hero__card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-600) 100%);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display:flex; flex-direction:column; justify-content:space-between; padding: 2rem;
}
.hero__card::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(199,161,74,.22), transparent 60%);
}
.hero__card img.mark { width: 72%; opacity:.96; align-self:center; margin: auto 0; filter: drop-shadow(0 10px 24px rgba(0,0,0,.3)); }
.hero__card img.mark--full { width: 86%; } /* full logo (mark + wordmark) is landscape — give it more width */
.hero__card .card-foot { position:relative; color: #eef0ff; }
.hero__card .card-foot .k { font-family: var(--ff-serif); font-size:1.5rem; color:#fff; }
.hero__card .card-foot .s { font-size:.8rem; letter-spacing:.15em; text-transform:uppercase; color: var(--gold-soft); }

/* ---------- marquee / pillars strip ---------- */
.values-strip { background: var(--navy); color: #dfe3ff; }
.values-strip .wrap { display:flex; flex-wrap:wrap; justify-content:space-between; gap:1.5rem; padding-block: 1.6rem; }
.values-strip .vi { display:flex; align-items:center; gap:.7rem; color:#dfe3ff; font-size:.96rem; }
.values-strip .vi svg { color: var(--gold); flex:none; }

/* ---------- mission ---------- */
.mission .wrap { display:grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,5vw,4.5rem); align-items:start; }
.mission .big {
  font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.32; color: var(--navy); font-weight:500;
}
.mission .big em { color: var(--clay); }
.mission .side p { color: var(--muted); }
.mission .side p + p { margin-top: 1rem; }
.signature { margin-top:1.6rem; font-family: var(--ff-serif); font-style:italic; font-size:1.4rem; color: var(--navy); }
.signature small { display:block; font-family:var(--ff-sans); font-style:normal; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); margin-top:.2rem; }

/* ---------- pillars (what we do) ---------- */
.pillars { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.pillar {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.pillar__icon {
  width: 56px; height:56px; border-radius: 14px; display:grid; place-items:center;
  background: var(--cream); color: var(--clay); margin-bottom: 1.2rem;
}
.pillar--a .pillar__icon { background: #f6ede2; color: var(--clay); }
.pillar--b .pillar__icon { background: #eef1ea; color: var(--sage); }
.pillar--c .pillar__icon { background: #f1ecf7; color: var(--navy-500); }
.pillar h3 { margin-bottom:.5rem; }
.pillar p { color: var(--muted); font-size: .98rem; }
.pillar .tag { margin-top:1.2rem; font-size:.82rem; font-weight:600; color: var(--navy); display:inline-flex; align-items:center; gap:.4rem; }

/* ---------- feature / community split ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 5/4; position:relative; background: var(--navy);
}
.imgph {
  position:absolute; inset:0; display:grid; place-items:center; gap:.6rem; text-align:center;
  color:#b9c0ef; background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--navy), var(--navy-600));
  font-size:.82rem; letter-spacing:.06em;
}
.imgph svg { opacity:.6; }
.stat-row { display:flex; gap: 2.5rem; margin-top: 2rem; flex-wrap:wrap; }
.stat .n { font-family:var(--ff-serif); font-size: clamp(2.2rem,4vw,3rem); color: var(--navy); line-height:1; }
.stat .l { font-size:.85rem; color: var(--muted); margin-top:.35rem; max-width: 18ch; }
.checklist { margin-top: 1.6rem; display:grid; gap:.8rem; }
.checklist li { display:flex; gap:.7rem; align-items:flex-start; color: var(--ink); }
.checklist svg { color: var(--clay); flex:none; margin-top:.2rem; }

/* ---------- band (Sharon) ---------- */
.band {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #eef0ff; border-radius: var(--radius-lg);
  padding: clamp(2.5rem,5vw,4rem); position:relative; overflow:hidden;
}
.band::before {
  content:""; position:absolute; right:-60px; top:-60px; width:320px; height:320px; border-radius:50%;
  background: radial-gradient(circle at center, rgba(199,161,74,.25), transparent 70%);
}
.band h2 { color:#fff; }
.band .lead { color:#c7cdf2; }
.band .place { display:inline-flex; align-items:center; gap:.5rem; color: var(--gold-soft); font-weight:600; letter-spacing:.04em; margin-bottom: 1rem; }

/* ---------- process / how we give ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap:1.6rem; margin-top:2.5rem; counter-reset: s; }
.step { padding:1.8rem; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); position:relative; }
.step::before {
  counter-increment: s; content: "0" counter(s);
  font-family:var(--ff-serif); font-size:2.4rem; color: var(--gold-soft); display:block; margin-bottom:.6rem;
}
.step h3 { font-size:1.2rem; margin-bottom:.4rem; }
.step p { color:var(--muted); font-size:.95rem; }

/* ---------- CTA / contact ---------- */
.contact { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:start; }
.contact__intro .lead { max-width: 40ch; }
.contact-cards { margin-top:2rem; display:grid; gap:1rem; }
.cc {
  display:flex; gap:1rem; align-items:flex-start; padding:1.2rem 1.3rem; background:var(--paper);
  border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow-sm);
  transition: border-color .2s, transform .2s;
}
.cc:hover { border-color: var(--gold-soft); transform: translateX(3px); }
.cc .ic { width:42px;height:42px;border-radius:11px;background:var(--cream);color:var(--clay);display:grid;place-items:center;flex:none; }
.cc .t { font-weight:600; color:var(--navy); }
.cc .d { color:var(--muted); font-size:.92rem; }

form.lead-form { background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding: clamp(1.5rem,3vw,2.2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom:1.1rem; }
.field label { display:block; font-size:.85rem; font-weight:600; color:var(--navy); margin-bottom:.4rem; }
.field input, .field textarea, .field select {
  width:100%; padding:.85rem 1rem; border:1.5px solid var(--line); border-radius:11px;
  font:inherit; color:var(--ink); background:var(--cream); transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color:var(--clay); background:#fff; }
.field input:user-invalid, .field textarea:user-invalid { border-color:#b3261e; }
.field .optional { font-weight:400; color:var(--muted); }
.field textarea { resize:vertical; min-height:120px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-note { font-size:.8rem; color:var(--muted); margin-top:.4rem; }
.form-note a { color: var(--clay-text); }
.form-status { margin-top:.8rem; font-weight:600; color:var(--navy); }
.form-status:empty { display:none; }
/* honeypot — visually gone, ignored by keyboards and screen readers */
.hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color:#c7cdf2; padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer a { color:#dfe3ff; }
.footer a:hover { color: var(--gold-soft); }
.footer__grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap:2.5rem; }
.footer__brand img { height:54px; margin-bottom:1rem; }
.footer__lockup { display:flex; align-items:center; gap:.7rem; margin-bottom:1rem; }
.footer__lockup img { height:46px; width:auto; margin:0; }
.footer__wordmark { font-family:var(--ff-serif); font-size:1.25rem; color:#fff; line-height:1.05; }
.footer__wordmark small { font-family:var(--ff-sans); font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-soft); font-weight:700; }
.footer__brand p { color:#a9b0e0; font-size:.92rem; max-width:30ch; }
.footer h4 { font-family:var(--ff-sans); font-size:.78rem; letter-spacing:.18em; text-transform:uppercase; color: var(--gold-soft); margin-bottom:1rem; font-weight:700; }
.footer ul li { margin-bottom:.6rem; font-size:.95rem; }
.footer__bottom {
  border-top:1px solid rgba(255,255,255,.12); margin-top:3rem; padding-top:1.6rem;
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.85rem; color:#9aa1d4;
}
.footer__legal { display:flex; gap:1.4rem; flex-wrap:wrap; }
.ein-note { font-size:.82rem; color:#9aa1d4; margin-top:.4rem; }
/* compact footer used on legal pages */
.footer--mini .footer__bottom { border:0; margin:0; padding:0; }

/* ---------- reveal animation (progressive enhancement: visible by default) ---------- */
.reveal { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
/* hiding only applies once JS confirms it's managing the animation */
.reveal-on .reveal { opacity:0; transform: translateY(24px); }
.reveal-on .reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.08s; } .reveal.d2 { transition-delay:.16s; } .reveal.d3 { transition-delay:.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on .reveal { opacity:1; transform:none; transition:none; }
  html { scroll-behavior:auto; }
  .btn:hover, .pillar:hover, .cc:hover { transform:none; }
}

/* ---------- legal/content pages ---------- */
.page-hero { padding-top: clamp(8rem,14vw,10rem); padding-bottom: clamp(2rem,4vw,3rem); background:
  radial-gradient(120% 80% at 80% -20%, #fff, var(--cream)); }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.4rem); }
.page-hero .lead { margin-top:1rem; max-width:60ch; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem,3vw,2rem); margin: 2.5rem 0 .8rem; }
.prose h3 { font-size:1.2rem; margin:1.8rem 0 .5rem; }
.prose p, .prose li { color: var(--ink); }
.prose p { margin-bottom: 1rem; }
.prose ul.bullets { list-style: disc; padding-left: 1.4rem; margin-bottom:1rem; display:grid; gap:.5rem; }
.prose a { color: var(--clay-text); text-decoration: underline; text-underline-offset: 3px; }
.prose .updated { color: var(--muted); font-size:.9rem; margin-top:2rem; }
.page-hero .updated { margin-top:1rem; }
.callout {
  background: var(--paper); border:1px solid var(--line); border-left:4px solid var(--gold);
  border-radius: 12px; padding:1.2rem 1.4rem; margin:1.5rem 0; box-shadow:var(--shadow-sm);
}
.callout strong { color: var(--navy); }
.callout--wide { margin-top:2rem; max-width:760px; }

/* ---------- founders ---------- */
.founders { display:grid; grid-template-columns: repeat(3,1fr); gap:1.6rem; margin-top:3rem; }
.founder {
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
  padding:2.2rem 1.8rem; text-align:center; box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.founder:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--gold-soft); }
.founder .avatar {
  width:92px; height:92px; border-radius:50%; margin:0 auto 1.3rem; display:grid; place-items:center;
  background:linear-gradient(160deg, var(--navy), var(--navy-600)); color:var(--gold-soft);
  font-family:var(--ff-serif); font-size:1.55rem; letter-spacing:.01em; box-shadow:var(--shadow-sm);
  position:relative;
}
.founder .avatar::after { content:""; position:absolute; inset:5px; border:1px solid rgba(231,211,161,.35); border-radius:50%; }
.founder h3 { font-size:1.3rem; margin-bottom:.3rem; }
.founder .role { font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; color:var(--clay-text); font-weight:700; margin-bottom:.7rem; }
.founder .school { color:var(--muted); font-size:.94rem; display:inline-flex; gap:.4rem; align-items:center; justify-content:center; }
.founder .school svg { color: var(--gold); flex:none; }

/* ---------- 404 ---------- */
.error-hero { min-height:100vh; display:grid; place-items:center; text-align:center; }
.error-hero .wrap { max-width:640px; }
.error-hero .mark { width:96px; margin:0 auto 1.5rem; }
.error-hero .eyebrow { justify-content:center; }
.error-hero h1 { font-size:clamp(2.4rem, 7vw, 4rem); }
.error-hero .lead { margin:1.2rem auto 0; max-width:42ch; }
.error-hero .btn-row { justify-content:center; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav__links { display:none; }
  .nav__toggle { display:block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { max-width: 380px; margin: 1rem auto 0; aspect-ratio: 1 / 1; }
  .hero__card img.mark { width: 44%; }
  .hero__card img.mark--full { width: 80%; }
  .mission .wrap { grid-template-columns:1fr; }
  .pillars { grid-template-columns:1fr; }
  .split { grid-template-columns:1fr; }
  .split--reverse .split__media { order:0; }
  .founders { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr; }
  .contact { grid-template-columns:1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns:1fr; }
  .hero__cta { flex-direction:column; align-items:stretch; }
  .hero__cta .btn { justify-content:center; }
  .values-strip .wrap { gap:.9rem; }
  /* keep the hero eyebrow on one line on phones (was wrapping "EST." awkwardly) */
  .eyebrow { font-size:.62rem; letter-spacing:.08em; gap:.4rem; white-space:nowrap; }
  .eyebrow::before { width:16px; }
}