/* =========================================================================
   Herbivorize Predators — design system
   Palette: warm paper, deep forest, dawn gold. Editorial, calm, confident.
   ========================================================================= */

:root {
  --bg: #faf6ee;
  --bg-alt: #f2ecdd;
  --paper: #fbf8f1;
  --ink: #1e271f;
  --ink-soft: #3c4a3e;
  --muted: #6a7568;
  --line: #e4dcc9;

  --forest: #2e5a4b;
  --forest-deep: #16261f;
  --forest-mid: #234a3c;
  --sage: #8fb2a0;
  --sage-soft: #bcd3c5;

  --gold: #c78a3c;
  --gold-soft: #e6b866;
  --gold-warm: #f4d9a0;

  --cream: #f4ecdb;

  --maxw: 1160px;
  --narrow: 760px;
  --radius: 14px;
  --radius-lg: 22px;

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

  --shadow-sm: 0 1px 3px rgba(30, 39, 31, 0.06), 0 4px 16px rgba(30, 39, 31, 0.05);
  --shadow-md: 0 10px 40px rgba(22, 38, 31, 0.10);

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

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 em, h2 em { font-style: italic; font-weight: 500; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.wrap--narrow { max-width: var(--narrow); }

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
  white-space: nowrap;
}
.nav__mark { flex: none; }
.nav__links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(244, 236, 219, 0.82);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: var(--gold-soft);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(244, 236, 219, 0.4);
  color: var(--cream);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--forest-deep); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.4s var(--ease);
}

/* Scrolled state */
.nav.is-scrolled {
  background: rgba(251, 248, 241, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-scrolled .nav__brand { color: var(--forest-deep); }
.nav.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav.is-scrolled .nav__links a:hover { color: var(--forest); }
.nav.is-scrolled .nav__cta { color: var(--forest); border-color: var(--forest); }
.nav.is-scrolled .nav__cta:hover { background: var(--forest); color: #fff; }
.nav.is-scrolled .nav__toggle span { background: var(--forest-deep); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--forest-deep);
  padding: 8px 28px 22px;
}
.nav__mobile a {
  color: rgba(244, 236, 219, 0.9);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
  font-family: var(--ff-serif);
}
.nav.is-open .nav__mobile { display: flex; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.is-open { background: var(--forest-deep); }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 28px 80px;
  overflow: hidden;
  color: var(--cream);
}
.hero__art { position: absolute; inset: 0; z-index: 0; }
.hero__svg { width: 100%; height: 100%; display: block; }
.hero__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,38,31,0.55) 0%, rgba(22,38,31,0.1) 35%, rgba(22,38,31,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-warm);
  margin: 0 0 22px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  color: #fdfaf3;
  margin-bottom: 26px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__lede {
  font-size: clamp(1.06rem, 1.9vw, 1.32rem);
  line-height: 1.65;
  color: rgba(250, 244, 233, 0.92);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(244, 236, 219, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero__scroll svg { animation: bob 2.2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold-soft); color: var(--forest-deep); box-shadow: 0 8px 24px rgba(198, 138, 62, 0.3); }
.btn--gold:hover { background: var(--gold-warm); box-shadow: 0 12px 30px rgba(198, 138, 62, 0.38); }
.btn--ghost { background: transparent; border-color: rgba(244, 236, 219, 0.5); color: var(--cream); }
.btn--ghost:hover { background: rgba(244, 236, 219, 0.12); border-color: var(--cream); }
.btn--ghost-dark { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--ghost-dark:hover { background: rgba(255,255,255,0.12); }

/* -------------------------------------------------------------------------
   Epigraph
   ------------------------------------------------------------------------- */
.epigraph {
  background: var(--forest-deep);
  color: var(--cream);
  padding: clamp(64px, 10vw, 130px) 28px;
}
.epigraph blockquote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.epigraph p {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 3vw, 2.15rem);
  line-height: 1.35;
  font-weight: 400;
  color: #f3ecdc;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.epigraph cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}
.epigraph cite span { font-style: italic; text-transform: none; letter-spacing: 0; }

/* -------------------------------------------------------------------------
   Sections
   ------------------------------------------------------------------------- */
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section--paper { background: var(--bg); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--dark { background: var(--forest-deep); color: var(--cream); }
.section--vision {
  background: linear-gradient(180deg, #24463a 0%, #2e5a4b 60%, #35624f 100%);
  color: var(--cream);
}

.section__head { max-width: 820px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 18px;
}
.section__kicker--light { color: var(--gold-soft); }
.section__head h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
.section--forest .section__head h2,
.section--dark .section__head h2,
.section--vision .section__head h2 { color: #fbf6ea; }
.section__intro {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--muted);
  margin: 22px 0 0;
  line-height: 1.65;
}
.section--forest .section__intro,
.section--dark .section__intro,
.section--vision .section__intro { color: rgba(240, 234, 220, 0.85); }
.section__head--center .section__intro { margin-left: auto; margin-right: auto; max-width: 640px; }

/* -------------------------------------------------------------------------
   Problem — stats + prose
   ------------------------------------------------------------------------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.stat__num {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 16px;
}
.stat__num sup { font-size: 0.5em; }
.stat__label { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.55; }

.prose p { margin: 0 0 20px; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.prose--center { text-align: center; max-width: 680px; margin: 0 auto; }
.prose--center p { color: rgba(240, 234, 220, 0.9); font-size: 1.1rem; }

/* -------------------------------------------------------------------------
   Proposal — pillars + trophic
   ------------------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 80px;
}
.pillar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 236, 219, 0.16);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.09); }
.pillar__icon { color: var(--gold-soft); margin-bottom: 20px; }
.pillar__icon svg { width: 44px; height: 44px; }
.pillar h3 { font-size: 1.32rem; color: #fbf6ea; margin-bottom: 12px; }
.pillar p { margin: 0; color: rgba(240, 234, 220, 0.82); font-size: 0.98rem; }

.trophic {
  margin: 0;
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(244, 236, 219, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.trophic__cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trophic__col { flex: 1 1 240px; max-width: 320px; text-align: center; }
.trophic__col svg { width: 100%; height: auto; }
.trophic__caption {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 14px;
}
.trophic__arrow { flex: 0 0 auto; }
.trophic figcaption {
  margin-top: 30px;
  text-align: center;
  color: rgba(240, 234, 220, 0.8);
  font-size: 0.98rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------------
   Why — comparison table + points
   ------------------------------------------------------------------------- */
.compare {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  margin-bottom: 64px;
}
.compare__row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 1.4fr;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  font-size: 0.96rem;
}
.compare__row:last-child { border-bottom: none; }
.compare__row--head {
  background: var(--forest-deep);
  color: var(--gold-warm);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.compare__row span:first-child { color: var(--muted); }
.compare__row--head span { color: var(--gold-warm) !important; }
.compare__name { font-weight: 600; color: var(--ink) !important; font-family: var(--ff-serif); font-size: 1.05rem; display: flex; flex-direction: column; gap: 8px; }
.compare__row span:not(.compare__name) { color: var(--ink-soft); }
.compare__row--win { background: linear-gradient(90deg, rgba(198,138,62,0.10), rgba(143,178,160,0.10)); }
.compare__row--win .compare__name { color: var(--forest) !important; }
.compare__badge {
  align-self: flex-start;
  background: var(--gold-soft);
  color: var(--forest-deep);
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
}

.why-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-point {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.why-point h3 { font-size: 1.24rem; color: var(--forest); margin-bottom: 10px; }
.why-point p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* -------------------------------------------------------------------------
   Objections — accordion
   ------------------------------------------------------------------------- */
.accordion { max-width: 760px; margin: 0 auto; }
.acc {
  border: 1px solid rgba(244, 236, 219, 0.18);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.acc[open] { background: rgba(255, 255, 255, 0.07); border-color: rgba(230, 184, 102, 0.4); }
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--ff-serif);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #fbf6ea;
  font-weight: 500;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary i {
  position: relative;
  flex: none;
  width: 20px; height: 20px;
}
.acc summary i::before, .acc summary i::after {
  content: "";
  position: absolute;
  background: var(--gold-soft);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.acc summary i::before { top: 9px; left: 0; width: 20px; height: 2px; }
.acc summary i::after { top: 0; left: 9px; width: 2px; height: 20px; }
.acc[open] summary i::after { transform: scaleY(0); opacity: 0; }
.acc__body { padding: 0 26px 24px; }
.acc__body p { margin: 0; color: rgba(240, 234, 220, 0.85); font-size: 1rem; line-height: 1.7; }

/* -------------------------------------------------------------------------
   Vision
   ------------------------------------------------------------------------- */
.highlight { color: var(--gold-warm); font-style: italic; }
.pull {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  line-height: 1.35;
  color: #fdfaf3 !important;
  margin: 42px 0 !important;
  font-style: italic;
  position: relative;
}
.pull span {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-top: 16px;
}

/* -------------------------------------------------------------------------
   Sources
   ------------------------------------------------------------------------- */
.sources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 64px;
}
.source-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.source-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.source-card__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.source-card h3 { font-size: 1.34rem; color: var(--ink); line-height: 1.25; margin-bottom: 14px; }
.source-card__authors { font-size: 0.9rem; color: var(--muted); margin: 0 0 14px; font-style: italic; }
.source-card__desc { font-size: 0.98rem; color: var(--ink-soft); margin: 0 0 24px; flex-grow: 1; }
.source-card__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}
.source-card:hover .source-card__go svg { transform: translate(2px, -2px); }
.source-card__go svg { transition: transform 0.25s var(--ease); }

.cta-band {
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
}
.cta-band h3 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: #fbf6ea; margin-bottom: 18px; }
.cta-band p { max-width: 640px; margin: 0 auto 30px; color: rgba(240, 234, 220, 0.86); }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band p.cta-band__fine { max-width: 440px; margin: 28px auto 0; font-size: 0.82rem; line-height: 1.6; color: rgba(240, 234, 220, 0.58); }
.cta-band__fine a { color: rgba(240, 234, 220, 0.85); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s var(--ease); }
.cta-band__fine a:hover { color: var(--gold-soft); }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.footer {
  background: #111d17;
  color: rgba(240, 234, 220, 0.7);
  padding: 64px 0 48px;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.footer__mark { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--cream); font-weight: 600; }
.footer__brand p { margin: 12px auto 0; max-width: 420px; font-size: 0.95rem; }
.footer__email { display: inline-block; margin-top: 14px; color: var(--gold-soft); text-decoration: none; font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer__email:hover { color: var(--cream); }
.footer__nav { display: flex; flex-flow: row wrap; justify-content: center; gap: 12px 28px; }
.footer__nav a { text-decoration: none; color: rgba(240, 234, 220, 0.72); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: var(--gold-soft); }

/* -------------------------------------------------------------------------
   Reveal animation
   ------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .stat-grid, .pillars, .why-points { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 8px; }
  .sources { grid-template-columns: 1fr; }
  .compare__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .compare__row--head { display: none; }
  .compare__name { font-size: 1.1rem; margin-bottom: 4px; }
  .compare__row span:not(.compare__name)[data-label]::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
    margin-bottom: 2px;
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero { padding: 110px 20px 70px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .trophic__arrow { transform: rotate(90deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__scroll svg { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
