/* ============================================================
   Sound Housing Cooperative — site styles
   Fonts: Fraunces (display) + Public Sans (body/UI)
   ============================================================ */

:root {
  /* Brand palette */
  --shc-harbor:       #3D5B80;  /* denim blue — hero and inverse surfaces */
  --shc-harbor-deep:  #2C4361;  /* deepest denim — dark bands, button hover */
  --shc-harbor-fog:   #D8E2EE;  /* light text / wash on denim */
  --shc-cascade:      #33587A;  /* primary blue — headings, buttons, links */
  --shc-cascade-tint: #E3EAF1;  /* pale blue — tinted cards and chips */
  --shc-cedar:        #B0722A;  /* warm accent — accent buttons, Track B */
  --shc-cedar-text:   #8C5A20;  /* accent that stays legible at label sizes */
  --shc-cedar-tint:   #F3E6D4;  /* pale accent — chips */
  --shc-golden:       #D9A441;  /* highlight, on dark surfaces only */
  --shc-parchment:      #F7F4EF; /* page background */
  --shc-parchment-deep: #F1EDE5; /* recessed sections */
  --shc-charcoal:     #2A2723;  /* body text */
  --shc-warm-gray:    #5B564E;  /* secondary text */
  --shc-line:         #D8D2C7;  /* borders and dividers */
  --shc-white:        #FFFFFF;

  /* Semantic roles */
  --primary:      var(--shc-cascade);
  --primary-dark: var(--shc-harbor-deep);
  --tint:         var(--shc-cascade-tint);
  --accent:       var(--shc-cedar);
  --accent-tint:  var(--shc-cedar-tint);
  --label:        var(--shc-cedar-text);
  --ink:          var(--shc-charcoal);
  --muted:        var(--shc-warm-gray);
  --paper:        var(--shc-parchment);
  --border:       var(--shc-line);
  --white:        var(--shc-white);
  --blue:         var(--shc-cascade);    /* links */
  --hero-sub:     var(--shc-harbor-fog); /* text on dark surfaces */
  --footer-text:  var(--shc-harbor-fog);
  --footer-muted: #8694A1;
  --footer-rule:  #37506B;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Public Sans", "Segoe UI", -apple-system, Calibri, system-ui, sans-serif;

  /* Layout & shape */
  --maxw:      1200px;
  --pad:       26px;
  --radius:    14px;
  --radius-sm: 8px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

h1, h2, h3 { font-family: var(--font-display); }

a { color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  color: var(--label);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  appearance: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  text-decoration: none;
  display: inline-block;
}
.btn:hover { transform: translateY(-1px); }

.btn--accent    { background: var(--accent); color: var(--white); }
.btn--accent:hover { box-shadow: 0 6px 18px rgba(176,114,42,.4); }

.btn--primary   { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); }

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 11px 22px;
}
.btn--outline:hover { background: var(--primary); color: var(--white); }

.btn--outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  padding: 11px 24px;
  font-weight: 600;
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--primary);
  line-height: 1;
  text-align: left;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  position: relative;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 7px;
  text-decoration: none;
  transition: background .15s ease;
}
.nav a:hover { background: var(--tint); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 1px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.link-login {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  border-radius: 7px;
  text-decoration: none;
}
.link-login:hover { text-decoration: underline; }

.btn-give {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
}
.btn-give:hover { background: var(--primary); color: var(--white); }

.btn-join {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
}
.btn-join:hover { background: var(--primary-dark); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav.open { display: block; }
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  padding: 10px var(--pad) 18px;
  gap: 2px;
}
.mobile-nav a {
  padding: 11px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 7px;
}
.mobile-nav a:hover { background: var(--tint); }
.mobile-nav__cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   Hero
   ============================================================ */
.hero { background: var(--shc-harbor); }
.hero__inner {
  padding: 76px var(--pad) 78px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  color: var(--shc-golden);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero h1 {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--white);
  margin: 16px 0 0;
  max-width: 16ch;
}
.hero__lede {
  color: var(--hero-sub);
  font-size: 19px;
  line-height: 1.55;
  max-width: 52ch;
  margin: 22px 0 0;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero__media { position: relative; }
.hero__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #B8CFE0, #B8CFE0 13px, #AEC7DA 13px, #AEC7DA 26px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.hero__photo span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: var(--hero-sub);
  background: rgba(34,61,82,.78);
  padding: 6px 11px;
  border-radius: 6px;
}
.hero__badge {
  position: absolute;
  left: -20px;
  bottom: 30px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero__badge b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--primary);
  line-height: 1;
}
.hero__badge span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
  max-width: 14ch;
}

/* ============================================================
   Stats bar
   ============================================================ */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  padding: 30px var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--primary);
  line-height: 1.05;
}
.stat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: 78px var(--pad) 8px; max-width: var(--maxw); margin: 0 auto; }
.section--pad { padding: 72px var(--pad); }
.section--band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--band .container { padding-top: 70px; padding-bottom: 70px; }

.section__head { max-width: 660px; }
.section__head h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.15;
  color: var(--primary);
  margin: 12px 0 0;
}

/* ---------- Feature cards (3-col) ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.feature {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25em 0.7em;
  border-radius: 99px;
  background: var(--primary);
  color: var(--white);
}
.chip--tint  { background: var(--tint); color: var(--primary); }
.chip--accent  { background: var(--accent-tint); color: var(--label); }
.feature h3 {
  font-weight: 600;
  font-size: 22px;
  color: var(--primary);
  margin: 16px 0 0;
}
.feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 10px 0 0;
}

/* ---------- Pathway (2-col + steps) ---------- */
.pathway {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}
.pathway__intro h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  color: var(--primary);
  margin: 12px 0 14px;
}
.pathway__intro p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
}
.steps { display: flex; flex-direction: column; gap: 12px; }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}
.step__num {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary);
  margin: 1px 0 0;
}
.step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 5px 0 0;
}

/* ---------- Tracks (2-col) ---------- */
.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.track {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 30px;
}
.track--b { border-top-color: var(--accent); }
.track h3 {
  font-weight: 600;
  font-size: 23px;
  color: var(--primary);
  margin: 14px 0 0;
}
.track p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 10px 0 0;
}
.callout {
  border-left: 4px solid var(--primary);
  background: var(--paper);
  border-radius: 4px;
  padding: 16px 24px;
  box-shadow: 0 1px 3px rgba(42,39,35,.08);
  margin-top: 24px;
}
.callout strong { color: var(--primary); }
.callout span { color: var(--ink); }

/* ---------- Events (3-col) ---------- */
.section__head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.section__head-row h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  color: var(--primary);
  margin: 10px 0 0;
}
.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.event__date {
  flex: 0 0 auto;
  text-align: center;
  background: var(--tint);
  border-radius: 10px;
  padding: 9px 12px;
  min-width: 56px;
}
.event__day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  line-height: 1;
}
.event__mon {
  font-weight: 700;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.event h3 {
  font-weight: 600;
  font-size: 17px;
  color: var(--primary);
  margin: 0;
}
.event p {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  margin: 5px 0 0;
}

/* ============================================================
   Closing CTA band
   ============================================================ */
.cta-band { background: var(--primary-dark); }
.cta-band__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px var(--pad);
  text-align: center;
}
.cta-band h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.15;
  color: var(--white);
  margin: 0;
}
.cta-band p {
  color: var(--hero-sub);
  font-size: 17px;
  line-height: 1.6;
  margin: 14px auto 0;
  max-width: 52ch;
}
.cta-band__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--primary-dark);
  color: var(--footer-text);
}
.footer-inner { padding: 52px var(--pad) 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}
.footer-about {
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 44ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--footer-muted);
  margin: 0 0 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--footer-text);
  font-size: 14px;
  text-decoration: none;
}
.footer-links a:hover { color: var(--white); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-contact .plain { color: var(--footer-text); }
.footer-legal {
  border-top: 1px solid var(--footer-rule);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 12px;
  color: var(--footer-muted);
  line-height: 1.6;
}

/* ============================================================
   Legal / prose pages (privacy policy, etc.)
   ============================================================ */
.legal-hero {
  background: var(--primary);
  padding: 56px var(--pad) 46px;
}
.legal-hero .container { max-width: 820px; }
.legal-hero .eyebrow { color: var(--accent); }
.legal-hero h1 {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--white);
  margin: 12px 0 0;
}
.legal-hero p {
  color: var(--hero-sub);
  font-size: 15px;
  margin: 14px 0 0;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px var(--pad) 72px;
}
.legal__note {
  border-left: 4px solid var(--accent);
  background: var(--accent-tint);
  border-radius: 4px;
  padding: 16px 22px;
  margin: 0 0 36px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.legal__note strong { color: var(--label); }
.legal h2 {
  font-weight: 600;
  font-size: 24px;
  color: var(--primary);
  line-height: 1.2;
  margin: 40px 0 0;
}
.legal h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 24px 0 0;
}
.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.legal p { margin: 12px 0 0; }
.legal ul { margin: 12px 0 0; padding-left: 22px; }
.legal li { margin: 6px 0; }
.legal a { color: var(--primary); font-weight: 600; }
.legal a:hover { color: var(--accent); }
.legal .fillin {
  background: var(--tint);
  border-radius: 4px;
  padding: 1px 6px;
  font-weight: 600;
  color: var(--primary);
}
.legal__updated {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
}

/* footer-legal links */
.footer-legal a { color: var(--footer-muted); text-decoration: underline; }
.footer-legal a:hover { color: var(--footer-text); }

/* ============================================================
   Waitlist modal
   ============================================================ */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 61, 82, .55);
  backdrop-filter: blur(3px);
}
.modal__panel {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 34px 30px;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  animation: fadeUp .3s ease both;
}
.modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}
.modal__close:hover { background: var(--tint); color: var(--primary); }
.modal__title {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary);
  margin: 10px 0 0;
}
.modal__sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 8px 0 22px;
}

/* Decoy field. Kept out of view and out of the tab order; only automated
   submitters fill it in, which is how the form scripts spot them. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wl-field { margin-bottom: 16px; }
.wl-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.wl-field .opt { color: var(--muted); font-weight: 400; }
.wl-field input,
.wl-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wl-field textarea { resize: vertical; min-height: 74px; }
.wl-field input:focus,
.wl-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61,91,128,.18);
}
.wl-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}
.wl-status {
  font-size: 14px;
  line-height: 1.5;
  margin: 14px 0 0;
  min-height: 1px;
}
.wl-status--ok    { color: var(--primary); font-weight: 600; }
.wl-status--error { color: #a12b2b; font-weight: 600; }
.wl-privacy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 14px 0 0;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up--slow { animation: fadeUp .7s ease both; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero h1 { font-size: 44px; }
}

@media (max-width: 900px) {
  .nav, .header-actions .desktop-only { display: none; }
  .nav-toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { max-width: 460px; }
  .pathway { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 26px 22px; }
  .tracks { grid-template-columns: 1fr; }
  .events { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; }
  .hero__inner { padding: 52px var(--pad) 56px; }
  .hero h1 { font-size: 36px; }
  .hero__lede { font-size: 17px; }
  .hero__badge { left: 0; }
  .section, .section--pad { padding-top: 52px; padding-bottom: 52px; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section__head h2, .cta-band h2 { font-size: 27px; }
  .pathway__intro h2, .section__head-row h2 { font-size: 26px; }
}

/* ============================================================
   Coming-soon splash (public landing)
   ============================================================ */
.splash {
  min-height: 100vh;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  color: #fff;
}
.splash__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  width: 100%;
}
.splash__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.splash__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  text-align: left;
}
.splash__brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--hero-sub);
  margin-top: 3px;
}
.splash__eyebrow {
  color: var(--shc-golden);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
}
.splash h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 16px 0 0;
  max-width: 18ch;
}
.splash__lede {
  color: var(--hero-sub);
  font-size: 18px;
  line-height: 1.55;
  max-width: 50ch;
  margin: 20px 0 0;
}
.splash__loader {
  width: 180px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
  margin: 30px 0 4px;
}
.splash__loader::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 99px;
  background: var(--accent);
  animation: splashSlide 1.8s ease-in-out infinite;
}
@keyframes splashSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.splash__card {
  background: var(--paper);
  border-radius: 16px;
  padding: 28px 26px 26px;
  margin-top: 30px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  text-align: left;
}
.splash__card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary);
  margin: 0 0 4px;
  text-align: center;
}
.splash__card-sub {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 20px;
}
.splash__row {
  display: flex;
  gap: 10px;
}
.splash__row .wl-field { flex: 1; margin-bottom: 14px; }
.splash__card .wl-submit { margin-top: 6px; }
.splash__privacy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 14px 0 0;
  text-align: center;
}
.splash__privacy a { color: var(--primary); font-weight: 600; }

.splash__footer {
  text-align: center;
  padding: 22px 24px 30px;
  font-size: 12.5px;
  color: var(--hero-sub);
  line-height: 1.7;
}
.splash__footer a { color: var(--accent); text-decoration: none; }
.splash__footer a:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .splash h1 { font-size: 34px; }
  .splash__lede { font-size: 16px; }
  .splash__row { flex-direction: column; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .splash__loader::after { animation: none; width: 100%; }
}

/* ============================================================
   Interior page hero + mission statement (About, etc.)
   ============================================================ */
.page-hero { background: var(--shc-harbor); }
.page-hero__inner { max-width: 860px; margin: 0 auto; padding: 66px var(--pad) 60px; }
.page-hero__eyebrow {
  color: var(--shc-golden);
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0;
}
.page-hero h1 {
  font-weight: 700; font-size: 46px; line-height: 1.1;
  letter-spacing: -0.5px; color: var(--white);
  margin: 14px 0 0; max-width: 20ch;
}
.page-hero p {
  color: var(--hero-sub); font-size: 18px; line-height: 1.6;
  margin: 18px 0 0; max-width: 62ch;
}

.statement { max-width: 900px; margin: 0 auto; text-align: center; }
.statement p {
  font-family: var(--font-display);
  font-weight: 500; font-size: 27px; line-height: 1.32;
  color: var(--primary); margin: 14px 0 0;
}
.about-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; gap: 12px;
}
.about-list li {
  position: relative; padding-left: 30px;
  font-size: 16px; line-height: 1.6; color: var(--ink);
}
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px; border-radius: 3px;
  background: var(--accent);
}

@media (max-width: 560px) {
  .page-hero h1 { font-size: 34px; }
  .statement p { font-size: 22px; }
}

/* ============================================================
   FAQ accordion + contact page
   ============================================================ */
.faq-list { max-width: 840px; margin: 26px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none; display: block;
  padding: 20px 44px 20px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  color: var(--primary); line-height: 1.32;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 8px; top: 14px;
  font-size: 26px; font-weight: 400; color: var(--accent);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--shc-harbor); }
.faq-item__body { padding: 0 44px 20px 0; }
.faq-item__body p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink); max-width: 74ch; }
.faq-item__body a { color: var(--blue); font-weight: 600; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start; margin-top: 8px;
}
.contact-info h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted);
  margin: 0 0 6px;
}
.contact-info p, .contact-info a { font-size: 16.5px; line-height: 1.6; color: var(--ink); }
.contact-info a { color: var(--blue); font-weight: 600; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.contact-info .block { margin-bottom: 24px; }
.contact-card {
  background: var(--surface-card, #fff); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Embedded donation form ---------- */
.donate-note { font-size: 13px; color: var(--muted); margin: 18px 0 0; line-height: 1.6; }
.donate-note strong { color: var(--primary); }
.donate-embed {
  margin-top: 8px; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--white); min-height: 920px;
}
.donate-embed iframe { width: 100%; min-height: 920px; border: 0; display: block; }

/* Coming-soon splash — donate link */
.splash__give {
  text-align: center;
  margin: 22px 0 0;
  font-size: 15px;
  color: var(--hero-sub);
}
.splash__give a {
  color: var(--shc-golden);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.splash__give a:hover { text-decoration: underline; }

/* ---------- Prose utilities ---------- */
.lead { max-width: 66ch; font-size: 16.5px; line-height: 1.7; color: var(--ink); margin: 18px 0 0; }
.muted { color: var(--muted); }
