/* =========================================================================
   Zhittya Genesis Medicine — Voices of Hope
   Palette pulled from zgm.care:
     oxblood  #963230   ink #40140F   taupe #C5BBB9   white
   Motion: Apple-style scroll reveals, parallax hero, sticky stats.
   ========================================================================= */

:root {
  --oxblood: #963230;
  --oxblood-deep: #7a2826;
  --oxblood-dark: #5e1f1c;
  --ink: #40140f;
  --ink-soft: #5e3a34;
  --taupe: #c5bbb9;
  --taupe-soft: #ddd5d2;
  --cream: #f7f1ed;
  --cream-2: #efe6e0;
  --paper: #ffffff;

  --text: #3a201b;
  --text-soft: #6b4f49;
  --text-muted: #8a716b;
  --on-dark: #f6ece8;
  --on-dark-soft: #d9c4bf;

  --shadow-sm: 0 2px 10px rgba(64, 20, 15, 0.06);
  --shadow-md: 0 16px 40px rgba(64, 20, 15, 0.12);
  --shadow-lg: 0 30px 70px rgba(64, 20, 15, 0.20);

  --radius: 20px;
  --radius-sm: 14px;
  --maxw: 1180px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; color: var(--ink); margin: 0; letter-spacing: -0.01em; }
a { color: var(--oxblood); }

/* ----------------------------- reveal motion ----------------------------- */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ----------------------------- buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.97rem;
  padding: 14px 28px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s;
}
.btn-primary { background: var(--oxblood); color: #fff; box-shadow: 0 10px 26px rgba(150, 50, 48, 0.30); }
.btn-primary:hover { background: var(--oxblood-deep); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(150, 50, 48, 0.38); }

/* ----------------------------- scroll progress ----------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--oxblood), var(--oxblood-deep));
  z-index: 200; transition: width 0.1s linear;
}

/* ----------------------------- header ----------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 10px 0;
}
.site-header.solid {
  background: rgba(247, 241, 237, 0.9);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(64, 20, 15, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-emblem { height: 40px; width: auto; display: block; }
.brand-emblem--dark { display: none; }
.site-header.solid .brand-emblem--light { display: none; }
.site-header.solid .brand-emblem--dark { display: block; }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word-main { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; letter-spacing: 0.12em; color: #fff; transition: color 0.35s var(--ease); }
.brand-word-sub { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--on-dark-soft); transition: color 0.35s var(--ease); }
.site-header.solid .brand-word-main { color: var(--ink); }
.site-header.solid .brand-word-sub { color: var(--oxblood); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--on-dark); text-decoration: none; font-weight: 500; font-size: 0.94rem; transition: color 0.2s, opacity 0.2s; opacity: 0.92; }
.site-nav a:hover { opacity: 1; }
.site-header.solid .site-nav a { color: var(--ink-soft); }
.site-header.solid .site-nav a:hover { color: var(--oxblood); }
.nav-cta { padding: 8px 18px; border-radius: 999px; border: 1.5px solid currentColor; font-weight: 600; }
.site-header.solid .nav-cta { color: var(--oxblood) !important; border-color: var(--oxblood); }
.site-header.solid .nav-cta:hover { background: var(--oxblood); color: #fff !important; }

/* ----------------------------- hero ----------------------------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; color: var(--on-dark);
}
.hero-media {
  position: absolute; inset: -10% 0 0 0; height: 120%;
  background-image: url("https://images.squarespace-cdn.com/content/v1/674e52ac5c62940bda05e54c/e8fff50c-b94c-427f-a858-92103ec5544c/blood+vessels.jpeg?format=2500w");
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(64,20,15,0.55) 0%, rgba(94,31,28,0.45) 40%, rgba(64,20,15,0.85) 100%),
    radial-gradient(120% 90% at 70% 20%, rgba(150,50,48,0.30), transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: 70px; }
.hero-kicker {
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--on-dark-soft); margin: 0 0 20px; font-weight: 600;
}
.hero-title {
  font-size: clamp(3.4rem, 9vw, 7rem); color: #fff; margin: 0 0 22px;
  line-height: 0.98; letter-spacing: -0.02em; font-weight: 500;
}
.hero-lede { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--on-dark); max-width: 620px; margin: 0 0 40px; line-height: 1.55; }
.hero-scroll { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem; }
.hero-arrow { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.6); position: relative; transition: background 0.25s, border-color 0.25s; }
.hero-arrow::after { content: ""; position: absolute; left: 50%; top: 44%; width: 8px; height: 8px; border-right: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: translate(-50%,-50%) rotate(45deg); }
.hero-scroll:hover .hero-arrow { background: rgba(255,255,255,0.18); border-color: #fff; animation: bob 1s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ----------------------------- scrolly statements ----------------------------- */
.statements { background: var(--ink); color: var(--on-dark); padding: 130px 0; }
.statement { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.9rem); line-height: 1.28; color: var(--on-dark); max-width: 880px; margin: 0 auto 60px; text-align: center; }
.statement:last-child { margin-bottom: 0; }
.statement-big { color: #fff; font-size: clamp(2rem, 5vw, 3.6rem); font-style: italic; }

/* ----------------------------- stats ----------------------------- */
.stats { background: var(--cream); padding: 100px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin: 0; }
.stat-item { text-align: center; opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.stat-item.in-view { opacity: 1; transform: none; }
.stat-value { font-family: var(--serif); font-weight: 500; font-size: clamp(2.8rem, 6vw, 4.4rem); color: var(--oxblood); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-weight: 700; color: var(--ink); margin-top: 12px; font-size: 1.02rem; }
.stat-note { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }
.stats-foot { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin: 56px auto 0; max-width: 640px; }
.stats-foot strong { color: var(--oxblood); }

/* ----------------------------- Brett Favre ----------------------------- */
.brett { background: var(--paper); padding: 110px 0; }
.brett-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.brett-portrait { position: relative; }
.brett-portrait img {
  width: 100%; border-radius: var(--radius); display: block;
  box-shadow: var(--shadow-lg); aspect-ratio: 3/2; object-fit: cover; object-position: center 30%;
}
.brett-credit { font-size: 0.72rem; color: var(--text-muted); margin-top: 10px; letter-spacing: 0.02em; }
.brett-tag { display: inline-block; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--oxblood); margin-bottom: 18px; }
.brett-quote { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 2.05rem); line-height: 1.42; color: var(--ink); margin: 0 0 26px; }
.brett-quote p { margin: 0 0 18px; }
.brett-quote p:last-child { margin-bottom: 0; }
.brett-name { font-weight: 700; color: var(--ink); font-size: 1.15rem; }
.brett-role { color: var(--text-muted); font-size: 0.95rem; margin-top: 2px; }
.brett-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.brett-byline { margin-top: 4px; }
.text-link { display: inline-block; margin-top: 14px; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-decoration: none; }
.text-link:hover { color: var(--oxblood); }

/* ----------------------------- CTA thumbnails ----------------------------- */
.cta-card {
  display: flex; align-items: stretch; margin-top: 24px; max-width: 460px;
  text-decoration: none; border-radius: 14px; overflow: hidden;
  background: var(--paper); border: 1px solid var(--taupe-soft); box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cta-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cta-thumb { position: relative; flex: none; width: 116px; background: var(--oxblood-dark) center / cover no-repeat; }
.cta-video .cta-thumb { width: 168px; }
.cta-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(94,31,28,0.20), rgba(64,20,15,0.55)); }
.cta-play { position: absolute; z-index: 1; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.94); box-shadow: 0 6px 16px rgba(0,0,0,0.32); transition: transform 0.2s var(--ease); }
.cta-card:hover .cta-play { transform: translate(-50%,-50%) scale(1.08); }
.cta-play::after { content: ""; position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%); border-left: 14px solid var(--oxblood); border-top: 9px solid transparent; border-bottom: 9px solid transparent; }
.cta-ext { position: absolute; z-index: 1; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--oxblood); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.cta-body { padding: 15px 17px; display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.cta-source { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--oxblood); }
.cta-title { font-size: 0.93rem; font-weight: 600; color: var(--ink); line-height: 1.32; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cta-go { font-size: 0.82rem; font-weight: 700; color: var(--oxblood); margin-top: 2px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; }
.cta-row .cta-card { margin-top: 24px; flex: 1 1 280px; max-width: none; }
.cta-x { position: absolute; z-index: 1; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 7px; background: #111; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; }
.mark-cta { margin-top: 28px; }

/* ----------------------------- Mark Davis ----------------------------- */
.mark { position: relative; color: var(--on-dark); padding: 130px 0; overflow: hidden; }
.mark-bg { position: absolute; inset: 0; background: linear-gradient(155deg, var(--oxblood-dark), var(--ink) 70%); }
.mark-bg::after {
  content: ""; position: absolute; inset: 0; opacity: 0.16;
  background-image: url("https://images.squarespace-cdn.com/content/v1/674e52ac5c62940bda05e54c/e8fff50c-b94c-427f-a858-92103ec5544c/blood+vessels.jpeg?format=2500w");
  background-size: cover; background-position: center; mix-blend-mode: screen;
}
.mark-inner { position: relative; z-index: 2; max-width: 820px; }
.mark-tag { font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--taupe); margin-bottom: 22px; }
.mark-story p { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.7vw, 2.15rem); line-height: 1.4; color: var(--on-dark); margin: 0 0 28px; }
.mark-story p.kicker-line { color: #fff; font-style: italic; font-weight: 500; }
.mark-name { margin-top: 18px; font-weight: 700; color: #fff; font-size: 1.1rem; }
.mark-sub { color: var(--on-dark-soft); font-size: 0.95rem; }
.mark-media { margin-top: 30px; }

/* ----------------------------- featured stack ----------------------------- */
.featured { background: var(--cream); padding: 110px 0; }
.section-head { max-width: 760px; margin: 0 0 56px; }
.section-head.reveal { } /* uses .reveal */
.section-eyebrow { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oxblood); font-weight: 700; margin: 0 0 14px; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.section-sub { color: var(--text-soft); font-size: 1.06rem; margin: 18px 0 0; max-width: 620px; }

.featured-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.story-card {
  background: var(--paper); border-radius: var(--radius); padding: 38px 38px 32px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(64,20,15,0.06);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.story-card.wide { grid-column: 1 / -1; }
.story-card::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--oxblood); }
.story-quote-mark { font-family: var(--serif); font-size: 3.4rem; line-height: 0.6; color: var(--taupe); margin-bottom: 12px; }
.story-card blockquote { margin: 0 0 24px; font-family: var(--serif); font-weight: 400; font-size: 1.22rem; line-height: 1.5; color: var(--ink); }
.story-card blockquote p { margin: 0 0 14px; }
.story-card blockquote p:last-child { margin-bottom: 0; }
.story-meta { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.story-avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: #fff; background: linear-gradient(140deg, var(--oxblood), var(--oxblood-dark)); }
.story-byline .name { font-weight: 700; color: var(--ink); }
.story-byline .sub { font-size: 0.86rem; color: var(--text-muted); }

/* ----------------------------- voices grid (topics) ----------------------------- */
.voices { background: var(--paper); padding: 110px 0; }
.filter-bar { margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  padding: 9px 17px; border-radius: 999px; cursor: pointer;
  background: var(--cream); color: var(--ink-soft);
  border: 1.5px solid var(--taupe-soft);
  transition: all 0.18s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.chip:hover { border-color: var(--oxblood); color: var(--oxblood); transform: translateY(-1px); }
.chip .chip-count { font-size: 0.74rem; font-weight: 700; background: rgba(150,50,48,0.10); color: var(--oxblood); border-radius: 999px; padding: 1px 8px; }
.chip[aria-pressed="true"] { background: var(--oxblood); color: #fff; border-color: var(--oxblood); }
.chip[aria-pressed="true"] .chip-count { background: rgba(255,255,255,0.24); color: #fff; }

.results-count { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 30px; }
.results-count strong { color: var(--oxblood); }

.voices-grid { columns: 3 320px; column-gap: 26px; }
.voice-card {
  break-inside: avoid; background: var(--paper); border-radius: var(--radius-sm);
  padding: 26px 26px 22px; margin-bottom: 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(64,20,15,0.07);
  border-top: 4px solid var(--oxblood);
  opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.voice-card.in-view { opacity: 1; transform: none; }
.voice-card:hover { box-shadow: var(--shadow-md); }
.voice-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.voice-topic { font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700; color: var(--oxblood); background: rgba(150,50,48,0.08); border-radius: 999px; padding: 4px 10px; }
.voice-card blockquote { margin: 0 0 18px; font-family: var(--serif); font-size: 1.05rem; line-height: 1.52; color: var(--ink); }
.voice-card blockquote p { margin: 0 0 12px; }
.voice-card blockquote p:last-child { margin-bottom: 0; }
.voice-foot { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--cream-2); }
.voice-avatar { width: 38px; height: 38px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 0.95rem; color: #fff; background: linear-gradient(140deg, var(--oxblood), var(--oxblood-dark)); }
.voice-byline .name { font-weight: 700; color: var(--ink); font-size: 0.94rem; line-height: 1.2; }
.voice-byline .sub { font-size: 0.8rem; color: var(--text-muted); }
.media-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 600; font-size: 0.86rem; color: var(--oxblood); text-decoration: none; padding: 8px 15px; border-radius: 999px; background: rgba(150,50,48,0.07); border: 1px solid rgba(150,50,48,0.18); transition: all 0.16s var(--ease); }
.media-link:hover { background: var(--oxblood); color: #fff; border-color: transparent; }
.media-link .play { font-size: 0.7rem; }
.no-results { text-align: center; color: var(--text-muted); font-size: 1.05rem; padding: 40px 0; }

/* ----------------------------- about ----------------------------- */
.about { background: var(--cream); padding: 110px 0; }
.about-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.about-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 20px; }
.about-copy p { color: var(--text-soft); font-size: 1.08rem; margin: 0 0 20px; }
.about-copy strong { color: var(--oxblood); }
.disclaimer { font-size: 0.92rem !important; color: var(--text-muted) !important; padding-top: 18px; border-top: 1px solid var(--cream-2); }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--taupe-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-stat { background: var(--paper); padding: 30px 26px; text-align: center; }
.about-stat .big { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--oxblood); line-height: 1; }
.about-stat .cap { display: block; margin-top: 10px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.35; }

/* ----------------------------- footer ----------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-soft); padding: 60px 0 44px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 34px; align-items: flex-start; }
.footer-logo { height: 44px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-tag { margin: 16px 0 0; font-size: 0.95rem; color: var(--on-dark-soft); max-width: 280px; }
.footer-meta { font-size: 0.9rem; line-height: 1.6; max-width: 360px; }
.footer-meta p { margin: 0 0 10px; }
.footer-meta a { color: var(--taupe); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-fine { color: rgba(217,196,191,0.55); font-size: 0.8rem; }

/* ----------------------------- back to top ----------------------------- */
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 120; width: 46px; height: 46px; border-radius: 50%; background: var(--oxblood); display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.28s var(--ease); }
.back-to-top span { width: 9px; height: 9px; border-left: 2px solid #fff; border-top: 2px solid #fff; transform: rotate(45deg) translate(1px, 1px); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--oxblood-deep); transform: translateY(-3px); }

/* ----------------------------- responsive ----------------------------- */
@media (max-width: 900px) {
  .site-nav { gap: 16px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .brett-inner { grid-template-columns: 1fr; gap: 32px; }
  .brett-portrait img { aspect-ratio: 3/3.4; max-width: 420px; margin: 0 auto; }
  .featured-stack { grid-template-columns: 1fr; }
  .story-card.wide { grid-column: auto; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}
@media (max-width: 560px) {
  .voices-grid { columns: 1; }
  .statements { padding: 90px 0; }
  .stats, .brett, .mark, .featured, .voices, .about { padding: 72px 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.001ms !important; }
  .reveal, .stat-item, .voice-card { opacity: 1 !important; transform: none !important; }
  .hero-media { transform: none !important; }
}
