/* =========================================================================
   EchoVoices Analytics - styles.css
   "Documentary Editorial" - warm cream paper · deep avocado-olive · warm
   clay/orange accent (both drawn from the brand logo) · authentic photography
   under a unifying warm grade. Two grounding bands (deep olive · warm ink).
   Display/editorial: Fraunces (serif) · UI/body: Inter · Labels: IBM Plex Mono.
   ========================================================================= */

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Paper - warm cream */
  --paper:       #F7F2E9;
  --paper-2:     #FCF9F2;   /* raised surfaces / cards */
  --paper-3:     #F0E9DA;   /* alternating sections */

  /* Ink - warm near-black (logo hands) */
  --ink:         #1C1A17;
  --ink-2:       #574F44;
  --ink-3:       #8A8275;

  /* Lines */
  --line:        rgba(28, 26, 23, 0.14);
  --line-strong: rgba(28, 26, 23, 0.26);

  /* Olive - brand green from the logo */
  --olive:       #4A5920;
  --olive-deep:  #3C4A1A;
  --olive-dark:  #2E3914;   /* the olive band background */
  --olive-tint:  rgba(74, 89, 32, 0.08);
  --olive-light: #9DB07E;   /* olive for dark backgrounds */

  /* Clay / orange - brand accent from the logo waveform */
  --orange:      #E57F37;
  --orange-deep: #C0641F;   /* deeper for text/links/buttons on cream (AA) */
  --orange-tint: rgba(229, 127, 55, 0.10);

  /* Dark band */
  --slate:       #1C1A17;
  --slate-2:     #262219;
  --on-dark:        #F3EEE3;
  --on-dark-muted:  #BDB4A4;

  /* Type */
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 5px;
  --radius-card: 12px;
  --radius-img: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 400; color: var(--ink); }
p { margin: 0; }
ul, ol { margin: 0; }

/* ---------------------------------------------------------------- Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(64px, 9vw, 124px);
  border-top: 1px solid var(--line);
}
.section-alt { background: var(--paper-3); }

/* ---------------------------------------------------------------- A11y */
.skip-link {
  position: absolute;
  left: -999px; top: 0;
  z-index: 100;
  background: var(--olive);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 6px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------------------------------------------- Type primitives */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 1.5rem;
}
.eyebrow-rule {
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--orange-deep);
  opacity: 0.7;
}

.section-index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.section-head { margin-bottom: clamp(34px, 5vw, 56px); max-width: 720px; }

.section-intro {
  margin-top: 1.4rem;
  max-width: 56ch;
  color: var(--ink-2);
  font-size: 1.06rem;
}

.accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--orange-deep);
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.62rem);
  line-height: 1.46;
  font-weight: 400;
  color: var(--ink);
}

/* ---------------------------------------------------------------- Buttons */
.btn {
  --pad-y: 0.85em;
  --pad-x: 1.45em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
              border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.35s var(--ease);
}
.btn-sm { --pad-y: 0.6em; --pad-x: 1.1em; font-size: 0.84rem; }
.btn-lg { --pad-y: 1em; --pad-x: 1.75em; font-size: 0.99rem; }

.btn-primary {
  background: var(--olive);
  color: #FCFAF4;
  box-shadow: 0 8px 20px -12px rgba(46, 57, 20, 0.8);
}
.btn-primary:hover {
  background: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(46, 57, 20, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--olive);
  color: var(--olive);
  background: var(--olive-tint);
  transform: translateY(-2px);
}

.btn-on-dark { color: var(--on-dark); border-color: rgba(255,255,255,0.3); }
.btn-on-dark:hover { color: #fff; border-color: var(--orange); background: rgba(229,127,55,0.14); }

/* ================================================================ HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 242, 233, 0.85);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 70px;
}

.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand-mark { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 3px;
  padding-left: 2px;
}

.site-nav { display: flex; gap: 1.7rem; margin-left: auto; }
.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding-block: 4px;
  transition: color 0.25s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--orange-deep);
  transition: width 0.3s var(--ease);
}
.site-nav a:hover { color: var(--orange-deep); }
.site-nav a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; margin-inline: auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem var(--gutter) 1.75rem;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  padding: 0.7rem 0;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 1rem; justify-content: center; }
.mobile-nav[hidden] { display: none; }

/* ================================================================ HERO */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vh, 72px);
  padding-bottom: clamp(56px, 9vh, 104px);
  overflow: hidden;
  background-image: radial-gradient(rgba(28, 26, 23, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: -12px -12px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 36rem; }
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.hero-sub {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 3rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  position: relative;
  padding: 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}
.hero-meta li:first-child { padding-left: 0; }
.hero-meta li:not(:last-child)::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 12px;
  background: var(--line-strong);
}

/* Figures / photo treatment */
.hero-figure, .about-figure, .voice-figure, .giving-figure, .focus-figure { margin: 0; position: relative; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 30px 60px -30px rgba(40, 34, 22, 0.5);
}
figcaption { position: absolute; left: 14px; bottom: 14px; }
.cap-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: rgba(28, 26, 23, 0.78);
  padding: 6px 11px;
  border-radius: 3px;
  backdrop-filter: blur(2px);
}
.cap-tag-dark { background: rgba(28, 26, 23, 0.6); }

/* ================================================================ WHO WE ARE */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.about-body { margin-top: 1.4rem; max-width: 52ch; }
.value-row {
  list-style: none;
  margin-top: 2.4rem;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.value-row li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--paper-2);
  padding: 1.1rem 1.3rem;
}
.value-k {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--olive);
}
.value-v { font-size: 0.95rem; color: var(--ink-2); }
.about-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 30px 60px -32px rgba(40, 34, 22, 0.5);
}

/* ================================================================ HOW IT WORKS */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.step {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.35s var(--ease);
}
.step:hover {
  transform: translateY(-5px);
  border-color: var(--olive);
  box-shadow: 0 26px 46px -30px rgba(40, 34, 22, 0.45);
}
.step-figure { margin: 0; }
.step-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--orange-deep);
  letter-spacing: 0.1em;
  margin: 1.4rem 1.5rem 0;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0.4rem 1.5rem 0.6rem;
}
.step p { color: var(--ink-2); font-size: 0.98rem; margin: 0 1.5rem 1.6rem; }

/* ================================================================ YOUR VOICE (olive band) */
.section-olive {
  background: var(--olive-dark);
  color: var(--on-dark);
  border-top-color: rgba(255,255,255,0.08);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
}
.section-olive .section-title,
.section-olive h2, .section-olive h3 { color: var(--on-dark); }
.section-olive .section-index { color: var(--orange); }
.section-olive .section-intro { color: var(--on-dark-muted); }
.section-olive .accent-italic { color: #F0B98A; }

.voice-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.voice-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 34px 60px -28px rgba(0, 0, 0, 0.6);
}
.protect-list { list-style: none; display: grid; gap: 1.4rem; margin: 0 0 2rem; }
.protect-list li {
  display: grid;
  gap: 0.3rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--olive-light);
}
.protect-k {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--on-dark);
  letter-spacing: -0.005em;
}
.protect-v { color: var(--on-dark-muted); font-size: 0.97rem; line-height: 1.55; }

/* ================================================================ GIVING BACK */
.giving-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 56px);
}
.giving-head .section-head { margin-bottom: 0; }
.giving-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 28px 52px -32px rgba(40, 34, 22, 0.5);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.pillar {
  padding-top: 1.5rem;
  border-top: 2px solid var(--olive);
}
.pillar-k {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--orange-deep);
  letter-spacing: 0.08em;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 500;
  margin: 0.8rem 0 0.5rem;
}
.pillar p { color: var(--ink-2); font-size: 0.99rem; }

/* ================================================================ FOCUS / REACH */
.focus-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}
.focus-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  margin-top: 2.2rem;
}
.focus-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  padding-bottom: 0.8rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-strong);
}
.focus-col ul { list-style: none; display: grid; gap: 0.7rem; }
.focus-col li {
  position: relative;
  padding-left: 1.3rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.3;
}
.focus-col li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px;
  background: var(--olive);
  border-radius: 50%;
}
.focus-figure img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 30px 58px -32px rgba(40, 34, 22, 0.5);
}

/* ================================================================ DARK BAND (why) */
.section-dark { background: var(--slate); color: var(--on-dark); border-top-color: rgba(255,255,255,0.08); }
.section-dark .section-index { color: var(--orange); }
.section-dark .accent-italic { color: #F0B98A; }

.section-why { text-align: center; }
.why-inner { max-width: 880px; margin-inline: auto; }
.why-statement {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 2.95rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--on-dark);
  margin-bottom: 1.6rem;
}
.why-body {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--on-dark-muted);
  font-size: 1.08rem;
}
.why-rule {
  width: 56px; height: 2px;
  margin: 2.6rem auto 0;
  background: var(--orange);
  opacity: 0.85;
}

/* ================================================================ CONTACT */
.closing { text-align: center; background: var(--paper-3); }
.closing-inner { max-width: 760px; margin-inline: auto; }
.closing .eyebrow { justify-content: center; }
.closing-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin-bottom: 1.3rem;
}
.closing-sub { max-width: 52ch; margin: 0 auto 2.2rem; color: var(--ink-2); font-size: 1.08rem; }
.closing-email-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.7rem;
}
.closing-email {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 3.6vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--olive);
  word-break: break-word;
}

/* ================================================================ FOOTER */
.site-footer { padding-top: clamp(52px, 7vw, 80px); padding-bottom: 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
.footer-mark { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: 0.4rem;
}
.footer-tag { color: var(--on-dark-muted); font-size: 0.95rem; max-width: 34ch; }

.footer-nav { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav-title {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.footer-nav a, .footer-contact a {
  color: var(--on-dark-muted);
  font-size: 0.94rem;
  width: fit-content;
  transition: color 0.25s var(--ease);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--on-dark); }
.footer-contact { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-note { color: #8b8273; font-size: 0.84rem; max-width: 30ch; margin-top: 0.2rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p { color: var(--on-dark-muted); font-size: 0.82rem; }
.footer-disclaimer { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* ================================================================ LEGAL / PROSE (privacy page) */
.page-hero {
  padding-block: clamp(48px, 8vw, 92px) clamp(34px, 5vw, 60px);
  background-image: radial-gradient(rgba(28, 26, 23, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: -12px -12px;
}
.page-hero-inner { max-width: 760px; }
.page-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.page-lead { font-size: 1.12rem; line-height: 1.6; color: var(--ink-2); max-width: 60ch; }
.page-updated {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.prose { padding-block: clamp(40px, 6vw, 72px); }
.prose-inner { max-width: 720px; }
.prose-block { margin-bottom: clamp(30px, 4vw, 48px); }
.prose-block:last-child { margin-bottom: 0; }
.prose-block h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.prose-block h2 .ix {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--orange-deep);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.6rem;
}
.prose-block p { color: var(--ink-2); margin-bottom: 0.9rem; }
.prose-block p:last-child { margin-bottom: 0; }
.prose-block ul { list-style: none; display: grid; gap: 0.7rem; margin-top: 0.6rem; }
.prose-block ul li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-2);
}
.prose-block ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px;
  background: var(--olive);
  border-radius: 50%;
}
.prose-block a { color: var(--orange-deep); font-weight: 600; border-bottom: 1px solid var(--orange-tint); }
.prose-block a:hover { border-bottom-color: var(--orange-deep); }
.prose-callout {
  margin-top: 1.2rem;
  padding: 1.3rem 1.5rem;
  background: var(--olive-tint);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.prose-callout p { color: var(--olive-deep); font-weight: 500; margin: 0; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.6rem;
}
.back-link:hover { color: var(--orange-deep); }

/* ================================================================ REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ================================================================ RESPONSIVE */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure img { aspect-ratio: 16 / 10; }
  .about-grid, .voice-grid, .focus-grid, .giving-head { grid-template-columns: 1fr; }
  .about-figure { order: -1; max-width: 460px; }
  .about-figure img { aspect-ratio: 4 / 3; }
  .voice-figure { order: -1; }
  .voice-figure img { aspect-ratio: 16 / 10; }
  .focus-figure img { aspect-ratio: 16 / 10; }
  .step-grid, .pillar-grid { grid-template-columns: 1fr; }
  .step-figure img { aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .site-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .focus-cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-meta li { padding: 0.1rem 1.1rem 0.1rem 0; }
  .hero-meta li:not(:last-child)::after { display: none; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ================================================================ MOTION PREFERENCES */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
