/* ============================================================
   The Real Estate Foundation Inc — Main Stylesheet
   Housing stability nonprofit · Tampa, FL · 501(c)(3)
   Sections: 1.Tokens 2.Reset 3.Typography 4.Layout 5.Header
             6.Hero 7.Components 8.Footer 9.Utilities 10.Responsive
   Accessibility target: WCAG 2.1 AA (contrast, focus, motion)
============================================================ */

/* ============================================================
   1. TOKENS
   Palette: evergreen (stability/growth) + terracotta (shelter/warmth)
   Verified contrast on --cream #FAF7F1:
     --forest      #12463C -> 10.9:1  (AAA body & heading)
     --terracotta  #C05F3C ->  4.6:1  (AA large text / borders only)
     --ink         #1A1F1D -> 15.8:1  (AAA)
     --muted       #5A6461 ->  6.2:1  (AA)
   White #FFF on --terracotta-deep #A34A2B -> 6.1:1 (AA) — button default
============================================================ */
:root {
  --forest: #12463C;            /* primary brand */
  --forest-mid: #1D6355;
  --forest-deep: #0C3129;       /* dark surfaces, footer */
  --forest-tint: #E4EDEA;       /* pale fill */

  --terracotta: #C05F3C;        /* accent — large text, rules, icons */
  --terracotta-deep: #A34A2B;   /* accent button background (white text) */
  --terracotta-tint: #F6E7DF;

  --sand: #E8DCC8;              /* soft section fill */
  --cream: #FAF7F1;             /* page background */
  --white: #FFFFFF;

  --ink: #1A1F1D;               /* body text on light */
  --ink-soft: #34403C;
  --muted: #5A6461;             /* secondary text */
  --border: #DDD6C9;
  --border-soft: #EBE5DA;

  /* Typography — serif headings, system sans body, no webfonts */
  --font-base: 17px;
  --font-heading: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;

  /* Spacing — 4px scale */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 20px;  --space-6: 24px;  --space-8: 32px;  --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;

  --container-max: 1160px;
  --container-narrow: 760px;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(18, 70, 60, 0.08);
  --shadow-md: 0 6px 18px rgba(18, 70, 60, 0.10);
  --shadow-lg: 0 16px 40px rgba(18, 70, 60, 0.14);

  --transition-fast: 140ms ease;
  --transition-base: 240ms ease;

  --tap: 44px;                  /* minimum touch target */
}

/* ============================================================
   2. RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;     /* offset sticky header for anchor links */
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--font-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-deep); }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* Visible focus for every interactive element — never remove without replacement */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--terracotta-deep);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Respect users who ask the OS to reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   3. TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { max-width: 68ch; }
p + p { margin-top: var(--space-4); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: var(--space-3);
}

.lead { font-size: 1.12rem; color: var(--ink-soft); }

.prose h2 { margin-top: var(--space-12); margin-bottom: var(--space-4); }
.prose h3 { margin-top: var(--space-8); margin-bottom: var(--space-3); }
.prose p, .prose ul, .prose ol { margin-bottom: var(--space-4); }
.prose > *:first-child { margin-top: 0; }

.prose ul { list-style: none; }
.prose ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  max-width: 68ch;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--terracotta);
}
.prose ol { list-style: decimal; padding-left: var(--space-6); }
.prose ol li { margin-bottom: var(--space-3); max-width: 68ch; }

blockquote.pullquote {
  border-left: 4px solid var(--terracotta);
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  margin: var(--space-8) 0;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--forest);
}

/* ============================================================
   4. LAYOUT
============================================================ */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-6); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--space-20) 0; }
.section--tight { padding: var(--space-12) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--sand { background: var(--sand); }
.section--tint { background: var(--forest-tint); }
.section--forest { background: var(--forest); color: var(--white); }
.section--forest h2, .section--forest h3 { color: var(--white); }
.section--forest .eyebrow { color: var(--sand); }
.section--forest a { color: var(--sand); }

.section-header { max-width: var(--container-narrow); margin-bottom: var(--space-12); }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header--center p { margin-left: auto; margin-right: auto; }
.section-header__lead { margin-top: var(--space-4); font-size: 1.1rem; color: var(--muted); }

.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   5. HEADER + NAV
============================================================ */
.skip-link {
  position: absolute;
  left: var(--space-4); top: -60px;
  z-index: 200;
  padding: var(--space-3) var(--space-5);
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 0; color: var(--white); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
  min-height: 76px;
}

.site-logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--forest); }
.site-logo__mark { flex: none; width: 42px; height: 42px; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.site-logo__text strong {
  font-family: var(--font-heading);
  font-size: 1.06rem; font-weight: 600; letter-spacing: -0.01em;
}
.site-logo__text small { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

.nav { display: flex; align-items: center; gap: var(--space-5); }
.nav__menu { display: flex; align-items: center; gap: var(--space-1); }
.nav__link {
  display: inline-flex; align-items: center;
  min-height: var(--tap);
  padding: 0 var(--space-3);
  font-size: 0.92rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav__link:hover { color: var(--forest); background: var(--forest-tint); }
.nav__link[aria-current="page"] { color: var(--forest); font-weight: 700; box-shadow: inset 0 -2px 0 var(--terracotta); }

/* Header call-to-action — folds into the menu on small screens */
.nav__cta { white-space: nowrap; }
.nav__menu-cta { display: none; }

.nav-toggle {
  display: none;
  width: var(--tap); height: var(--tap);
  align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  display: block; width: 20px; height: 2px;
  background: var(--forest); border-radius: 2px;
}
.nav-toggle__bar { position: relative; }
.nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

/* ============================================================
   6. HERO
============================================================ */
.hero {
  position: relative;
  background: var(--forest);
  color: var(--white);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Overlay keeps hero text at >=7:1 contrast over any photograph */
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12, 49, 41, 0.94) 0%, rgba(12, 49, 41, 0.86) 45%, rgba(18, 70, 60, 0.66) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 720px; padding: var(--space-24) 0; }
.hero__eyebrow { color: var(--sand); }
.hero__title { color: var(--white); }
.hero__title .accent { color: var(--sand); }
.hero__lead { margin-top: var(--space-5); font-size: 1.16rem; color: rgba(255, 255, 255, 0.93); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); }
.hero__cta--center { justify-content: center; }

/* Compact hero for interior pages */
.page-hero { background: var(--forest); color: var(--white); padding: var(--space-16) 0 var(--space-12); }
.page-hero h1 { color: var(--white); }
.page-hero__lead { margin-top: var(--space-4); font-size: 1.12rem; color: rgba(255, 255, 255, 0.9); max-width: 62ch; }
.page-hero .eyebrow { color: var(--sand); }

/* ============================================================
   7. COMPONENTS
============================================================ */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap);
  padding: var(--space-3) var(--space-6);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; text-align: center;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.btn--primary { background: var(--terracotta-deep); color: var(--white); }
.btn--primary:hover { background: #8E3F24; color: var(--white); }
.btn--forest { background: var(--forest); color: var(--white); }
.btn--forest:hover { background: var(--forest-deep); color: var(--white); }
.btn--outline { border-color: var(--forest); color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--white); }
.btn--outline-light { border-color: rgba(255, 255, 255, 0.7); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--forest); }
.btn--large { padding: var(--space-4) var(--space-8); font-size: 1rem; }

/* --- Status strip: the nonprofit-credential band --- */
.status-strip { background: var(--forest-deep); color: var(--white); padding: var(--space-6) 0; }
.status-strip__grid {
  display: grid; gap: var(--space-4) var(--space-8);
  grid-template-columns: repeat(4, 1fr);
}
.status-strip__item { display: flex; flex-direction: column; gap: var(--space-1); }
.status-strip__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sand);
}
.status-strip__value { font-size: 0.98rem; font-weight: 600; color: var(--white); }

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-md);
  background: var(--forest-tint);
  color: var(--forest);
}
.card__title { margin-bottom: var(--space-3); }
.card__text { color: var(--muted); font-size: 0.97rem; }
.card__link {
  display: inline-block; margin-top: var(--space-4);
  font-weight: 600; font-size: 0.93rem; color: var(--terracotta-deep);
}

/* Program card with image */
.program-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.program-card__image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.program-card__body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; }
.program-card__title { margin-bottom: var(--space-3); }
.program-card__text { color: var(--muted); font-size: 0.96rem; flex: 1; }

/* --- Split media/text block --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* --- Definition / fact list (used on Transparency + Contact) --- */
.fact-list { display: grid; gap: 0; border-top: 1px solid var(--border); }
.fact-list__row {
  display: grid; grid-template-columns: 260px 1fr; gap: var(--space-6);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
}
.fact-list__term { font-weight: 700; color: var(--forest); font-size: 0.95rem; }
.fact-list__desc { color: var(--ink-soft); }
.fact-list__desc small { display: block; margin-top: var(--space-1); color: var(--muted); font-size: 0.84rem; }

/* --- Person card (governance) --- */
.person-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.person-card__name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--forest); }
.person-card__role {
  margin-top: var(--space-1);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--terracotta-deep);
}
.person-card__contact { margin-top: var(--space-4); font-size: 0.93rem; word-break: break-word; }

/* --- Callout / notice --- */
.callout {
  background: var(--forest-tint);
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-6);
  margin: var(--space-8) 0;
}
.callout--warm { background: var(--terracotta-tint); border-left-color: var(--terracotta-deep); }
.callout p { max-width: none; }
.callout__title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: var(--space-2); color: var(--forest); }

/* --- FAQ accordion (native details/summary — no JS needed) --- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  overflow: hidden;
}
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  min-height: var(--tap);
  font-family: var(--font-heading);
  font-size: 1.08rem; font-weight: 600; color: var(--forest);
  cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--terracotta-deep);
  border-bottom: 2px solid var(--terracotta-deep);
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--transition-fast);
}
.faq-item[open] .faq-item__q::after { transform: rotate(-135deg) translateY(-3px); }
.faq-item__a { padding: 0 var(--space-6) var(--space-6); color: var(--ink-soft); }
.faq-item__a p { max-width: 72ch; }
.faq-item__a p + p { margin-top: var(--space-3); }

/* --- Contact method block --- */
.contact-method {
  display: flex; gap: var(--space-5);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: none; }
.contact-method__icon { flex: none; color: var(--terracotta-deep); }
.contact-method__label { font-weight: 700; color: var(--forest); margin-bottom: var(--space-1); }
.contact-method__value { color: var(--ink-soft); }

/* --- Step list (programs / how it works) --- */
.steps { counter-reset: step; display: grid; gap: var(--space-6); }
.step { position: relative; padding-left: var(--space-16); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--forest); color: var(--white);
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
}
.step__title { margin-bottom: var(--space-2); }
.step__text { color: var(--muted); font-size: 0.97rem; }

/* --- Source citation line --- */
.source-note {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.source-note a { color: var(--muted); }

/* ============================================================
   8. FOOTER
============================================================ */
.site-footer { background: var(--forest-deep); color: rgba(255, 255, 255, 0.82); padding: var(--space-20) 0 var(--space-8); }
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.site-footer a:hover { color: var(--sand); text-decoration: underline; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer__logo { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-5); }
.footer__logo img { width: 44px; height: 44px; }
.footer__logo strong { font-family: var(--font-heading); font-size: 1.08rem; color: var(--white); line-height: 1.25; }
.footer__about { font-size: 0.92rem; line-height: 1.65; }
.footer__legal { margin-top: var(--space-5); font-size: 0.86rem; line-height: 1.7; }
.footer__legal strong { color: var(--white); }

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--space-4);
}
.footer__links li { margin-bottom: var(--space-2); }
.footer__links a { font-size: 0.92rem; display: inline-block; padding: var(--space-1) 0; }

.footer__address { font-size: 0.92rem; font-style: normal; line-height: 1.7; }
.footer__address a { text-decoration: underline; }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-8);
  font-size: 0.85rem;
}
.footer__bottom p { max-width: none; }
.footer__host { color: rgba(255, 255, 255, 0.62); }
.footer__host a { text-decoration: underline; }

/* ============================================================
   9. UTILITIES
============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.not-italic { font-style: normal; }
.no-pad { padding: 0; }

/* Scroll reveal.
   Content is VISIBLE by default — the hidden starting state is applied by
   nav.js (via .is-animatable) only when the script actually runs. Without
   JavaScript, or if the script fails, every section still renders. */
.fade-in.is-animatable {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.fade-in.is-animatable.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in.is-animatable { opacity: 1; transform: none; }
}

/* ============================================================
   10. RESPONSIVE
============================================================ */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .status-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .split--reverse .split__media { order: 0; }
  .fact-list__row { grid-template-columns: 1fr; gap: var(--space-1); }
}

@media (max-width: 768px) {
  :root { --font-base: 16px; }

  .nav-toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; left: 0; right: 0; top: 100%;
    display: none; flex-direction: column; align-items: stretch;
    gap: 0;
    padding: var(--space-3) var(--space-6) var(--space-6);
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav__menu.is-open { display: flex; }
  .nav__link { min-height: var(--tap); padding: var(--space-3); border-bottom: 1px solid var(--border-soft); border-radius: 0; }
  .nav__link[aria-current="page"] { box-shadow: none; border-left: 3px solid var(--terracotta); padding-left: var(--space-4); }

  /* Move the CTA inside the collapsed menu so the header bar stays uncluttered */
  .nav__cta { display: none; }
  .nav__menu-cta { display: block; margin-top: var(--space-4); }
  .nav__menu-cta .btn { width: 100%; }

  .section { padding: var(--space-16) 0; }
  .hero__content { padding: var(--space-16) 0; }
  .hero__cta .btn { width: 100%; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .status-strip__grid { grid-template-columns: 1fr; }
  .step { padding-left: var(--space-12); }
  .step::before { width: 36px; height: 36px; font-size: 0.95rem; }
}

@media (max-width: 420px) {
  .site-logo__text small { display: none; }
  .container { padding: 0 var(--space-4); }
}

/* ============================================================
   PRINT — board/officer + transparency pages are often printed
   for grant and verification packets
============================================================ */
@media print {
  .site-header, .site-footer, .nav, .skip-link, .hero__media { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  h1, h2, h3 { color: #000; }
  .page-hero, .hero { background: #fff !important; color: #000 !important; padding: 0 0 1rem; }
  .page-hero h1, .page-hero__lead, .hero__title, .hero__lead { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #444; }
  .card, .person-card, .program-card { box-shadow: none; border: 1px solid #999; break-inside: avoid; }
}
