/* =========================================================================
   Blackwater Ventures — shared stylesheet
   Built on the 9Labs design system (light, editorial, sharp-cornered),
   re-skinned with a deep-teal accent + a whisper of warm gold.
   Plain CSS, no build step. Mobile-first.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Core palette (from 9Labs, accent swapped) */
  --color-bg: #f2f2f2;          /* page background — light gray */
  --color-fg: #1b1b1c;          /* near-black text */
  --color-muted: #6b6b6b;       /* secondary text */
  --color-subtle: #d9d9d9;      /* hairline borders */
  --color-card: #ebebeb;        /* image placeholder bg */
  --color-surface: #ffffff;     /* raised cards / panels */

  /* Blackwater brand accents */
  --color-accent: #0d5650;      /* deep teal — links, CTAs, focus */
  --color-accent-hover: #0a423d;/* darker teal on hover */
  --color-accent-soft: #e7efed; /* pale teal wash for highlight blocks */
  --color-gold: #b07d2c;        /* warm gold — used sparingly (spiritual warmth) */

  /* Typography */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Radius — sharp/editorial everywhere */
  --radius: 0px;

  /* Spacing scale (single source of truth) */
  --space-section-y: clamp(6rem, 13vw, 12rem);
  --space-section-y-hero: clamp(8rem, 16vw, 15rem);
  --space-block-y: clamp(3.5rem, 7vw, 7rem);
  --space-stack: 2.5rem;
  --space-stack-sm: 1.5rem;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 76rem;
  --pad-inline: clamp(1.5rem, 4vw, 3rem);
}

/* -------------------------------------------------------------------------
   2. Reset + base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  background: var(--color-bg);
  color: var(--color-fg);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

::selection {
  background: var(--color-accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

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

.section { padding-block: var(--space-section-y); }
.section--hero { padding-block: var(--space-section-y-hero) var(--space-section-y); }
.section--tight { padding-block: clamp(4rem, 9vw, 8rem); }

.divider { border: 0; border-top: 1px solid var(--color-subtle); }

/* -------------------------------------------------------------------------
   4. Typography
   ------------------------------------------------------------------------- */
.display {
  font-weight: 500;
  font-size: clamp(40px, 9vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.display--sm {
  font-weight: 500;
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1;
}

h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; }

.h2 {
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.h3 { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.25; }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 38ch;
}

.body { color: var(--color-muted); line-height: 1.7; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

.muted { color: var(--color-muted); }
.accent { color: var(--color-accent); }
.gold { color: var(--color-gold); }
.text-sm { font-size: 0.875rem; }   /* 14px — dominant UI/label size */
.text-xs { font-size: 0.78rem; }

/* Eyebrow — small tracked label above a heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--color-accent);
}
.eyebrow--gold::before { background: var(--color-gold); }
.eyebrow--plain::before { display: none; }

/* -------------------------------------------------------------------------
   5. Buttons + links
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.9rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out-expo),
    background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn .arrow { transition: transform 0.25s var(--ease-out-expo); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-hover); }

.btn--ghost {
  background: transparent;
  color: var(--color-fg);
  border-color: var(--color-subtle);
}
.btn--ghost:hover { border-color: var(--color-fg); }

.btn--wa { background: #1f9d57; color: #fff; }   /* WhatsApp green */
.btn--wa:hover { background: #178246; }

/* Inline text link with arrow */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent);
  font-size: 0.9rem;
  transition: gap 0.25s var(--ease-out-expo);
}
.link:hover { gap: 0.7rem; }
.link .arrow { transition: transform 0.25s var(--ease-out-expo); }
.link:hover .arrow { transform: translate(2px, -2px); }

/* -------------------------------------------------------------------------
   6. Pills / tags
   ------------------------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  color: var(--color-fg);
  border: 1px solid var(--color-subtle);
  background: var(--color-surface);
}
.pill--dot::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-accent);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* -------------------------------------------------------------------------
   7. Site header / nav
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--color-subtle) 60%, transparent);
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 1.85rem;
  height: 1.85rem;
  background: var(--color-fg);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 0.85rem;
  letter-spacing: 0;
}
.brand__name { font-size: 0.98rem; }
.brand__name small { display:block; font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--color-muted); }

.nav { display: none; align-items: center; gap: 2.5rem; }
.nav a {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color 0.2s ease;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--color-accent); }
/* The nav "Request invite" button keeps white text in every state
   (the .nav a rule above would otherwise tint it muted/accent). */
.nav a.btn--primary,
.nav a.btn--primary:hover { color: #fff; }

.nav-toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: var(--color-fg);
}
.nav-toggle span {
  position: absolute;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { transform: translateY(-0.3rem); }
.nav-toggle span:nth-child(2) { transform: translateY(0.3rem); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid color-mix(in srgb, var(--color-subtle) 60%, transparent);
  background: var(--color-bg);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid color-mix(in srgb, var(--color-subtle) 60%, transparent);
}
.mobile-nav a:last-child { border-bottom: 0; }

@media (min-width: 820px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

/* -------------------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------------------- */
.hero__grid {
  display: grid;
  gap: 3.5rem;
}
.hero__media { position: relative; }

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: 4rem;
  }
}

/* -------------------------------------------------------------------------
   9. Generic grids + cards
   ------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.25rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-subtle);
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.25s ease;
}
.card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--color-fg) 40%, var(--color-subtle)); }
.card__index {
  font-size: 0.8rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}
.card__title { margin-top: 1rem; font-size: 1.15rem; }
.card__text { margin-top: 0.6rem; color: var(--color-muted); font-size: 0.95rem; line-height: 1.6; }

/* numbered step list */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.step__num {
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border: 1px solid var(--color-subtle);
  color: var(--color-accent);
  font-size: 0.9rem;
}
.step__title { font-size: 1.05rem; }
.step__text { margin-top: 0.35rem; color: var(--color-muted); font-size: 0.95rem; }

/* feature row (icon-less, label + text) */
.feature { padding: 1.5rem 0; border-top: 1px solid var(--color-subtle); }
.feature__title { font-size: 1.1rem; }
.feature__text { margin-top: 0.5rem; color: var(--color-muted); max-width: 52ch; }

/* -------------------------------------------------------------------------
   10. Image placeholders (until real photos drop in)
   ------------------------------------------------------------------------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--color-card),
      var(--color-card) 14px,
      #e4e4e4 14px,
      #e4e4e4 28px
    );
  border: 1px solid var(--color-subtle);
  display: grid;
  place-items: center;
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ph[data-label]::after { content: attr(data-label); }
.ph--frame { background: var(--color-surface); padding: 0.75rem; }
.ph--frame > .ph__img { width: 100%; height: 100%; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-3-2 { aspect-ratio: 3 / 2; }
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-16-9 { aspect-ratio: 16 / 9; }

/* -------------------------------------------------------------------------
   11. Testimonials
   ------------------------------------------------------------------------- */
.quote {
  background: var(--color-surface);
  border: 1px solid var(--color-subtle);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.quote__text { font-size: 1.15rem; line-height: 1.5; letter-spacing: -0.01em; }
.quote__mark { color: var(--color-gold); font-size: 1.5rem; line-height: 1; }
.quote__by { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.quote__avatar { width: 2.5rem; height: 2.5rem; background: var(--color-card); border: 1px solid var(--color-subtle); }
.quote__name { font-size: 0.9rem; }
.quote__role { font-size: 0.8rem; color: var(--color-muted); }

/* -------------------------------------------------------------------------
   12. Pricing
   ------------------------------------------------------------------------- */
.tiers { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .tiers { grid-template-columns: repeat(2, 1fr); } }

.tier {
  background: var(--color-surface);
  border: 1px solid var(--color-subtle);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tier--featured { border-color: var(--color-accent); box-shadow: 0 0 0 1px var(--color-accent); }
.tier__badge {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  padding: 0.3rem 0.6rem;
}
.tier__name { font-size: 1.1rem; }
.tier__price { font-size: clamp(2.25rem, 4vw, 3rem); letter-spacing: -0.03em; line-height: 1; }
.tier__price small { font-size: 0.9rem; color: var(--color-muted); letter-spacing: 0; }
.tier__list { list-style: none; padding: 0; display: grid; gap: 0.85rem; }
.tier__list li { display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; font-size: 0.95rem; color: var(--color-muted); }
.tier__list li::before { content: "—"; color: var(--color-accent); }

/* -------------------------------------------------------------------------
   13. FAQ (native disclosure)
   ------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--color-subtle); }
.faq details { border-bottom: 1px solid var(--color-subtle); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--color-accent);
  font-size: 1.4rem;
  transition: transform 0.3s var(--ease-out-expo);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 0 1.5rem; color: var(--color-muted); max-width: 64ch; }

/* -------------------------------------------------------------------------
   14. CTA banner
   ------------------------------------------------------------------------- */
.cta {
  background: var(--color-fg);
  color: #fff;
  padding: clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--color-accent) 55%, transparent), transparent 55%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta .eyebrow { color: #cfcfcf; }
.cta .eyebrow::before { background: var(--color-gold); }
.cta .muted { color: #b9b9b9; }

/* -------------------------------------------------------------------------
   15. Contact methods
   ------------------------------------------------------------------------- */
.contact-method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-subtle);
}
.contact-method:last-of-type { border-bottom: 1px solid var(--color-subtle); }
.contact-method__label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-muted); }
.contact-method__value { font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: -0.01em; margin-top: 0.25rem; }

/* -------------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--color-subtle);
  padding-block: clamp(3rem, 6vw, 5rem) 2.5rem;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 760px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer__links { display: grid; gap: 0.65rem; }
.site-footer__links a { font-size: 0.9rem; color: var(--color-muted); transition: color 0.2s; }
.site-footer__links a:hover { color: var(--color-accent); }
.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* -------------------------------------------------------------------------
   17. Utilities
   ------------------------------------------------------------------------- */
.stack > * + * { margin-top: var(--space-stack); }
.stack-sm > * + * { margin-top: var(--space-stack-sm); }
.stack-xs > * + * { margin-top: 0.75rem; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.wrap { display: flex; flex-wrap: wrap; gap: 1rem; }
.between { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.soft-block { background: var(--color-accent-soft); border: 1px solid color-mix(in srgb, var(--color-accent) 18%, var(--color-subtle)); padding: clamp(1.75rem, 4vw, 2.75rem); }

/* -------------------------------------------------------------------------
   18. Motion — load reveal + scroll reveal (respects reduced-motion)
   ------------------------------------------------------------------------- */
/* Content is visible by default; it's only hidden once JS is active (so no-JS
   visitors and crawlers still see everything). JS reveals on scroll / on load. */
.reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------
   19. Photos — figures, frames, hover zoom
   ------------------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-subtle);
  display: block;
}
.media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out-expo);
}
.media:hover > img { transform: scale(1.045); }

/* 9Labs-style white frame around an image */
.framed { background: var(--color-surface); border: 1px solid var(--color-subtle); padding: 0.6rem; }
.framed > .media { border: 1px solid var(--color-subtle); }

.caption { margin-top: 0.8rem; font-size: 0.8rem; color: var(--color-muted); }

/* -------------------------------------------------------------------------
   20. Community marquee (auto-scrolling photo strip)
   ------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 52s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: 0 0 auto; width: clamp(180px, 22vw, 248px); }
.marquee__item .media { aspect-ratio: 1 / 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------------------------------------------------------------
   21. Bento photo gallery
   ------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.bento .media { aspect-ratio: 4 / 3; }
.bento__lg { grid-column: span 2; }
@media (min-width: 760px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(180px, 19vw, 230px); }
  .bento .media { aspect-ratio: auto; height: 100%; }
  .bento__lg { grid-column: span 2; grid-row: span 2; }
}

/* -------------------------------------------------------------------------
   22. Full-bleed image band (duotone + overlay text)
   ------------------------------------------------------------------------- */
.band {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  min-height: clamp(320px, 44vw, 480px);
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 30, 28, 0.5), rgba(8, 30, 28, 0.8));
}
.band__inner { position: relative; max-width: 56rem; padding: 3rem var(--pad-inline); text-align: center; }
.band .eyebrow { color: #d6e2de; }
.band .eyebrow::before { background: var(--color-gold); }

/* -------------------------------------------------------------------------
   23. Image + text rows
   ------------------------------------------------------------------------- */
.media-text { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 880px) {
  .media-text { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .media-text--rev .media-text__media { order: 2; }
}

/* -------------------------------------------------------------------------
   24. Info cards (photo + title + text)
   ------------------------------------------------------------------------- */
.info-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-subtle);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.25s ease;
}
.info-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--color-fg) 40%, var(--color-subtle)); }
.info-card .media { aspect-ratio: 4 / 3; border: 0; border-bottom: 1px solid var(--color-subtle); }
.info-card__body { padding: 1.5rem; }
.info-card__title { font-size: 1.05rem; }
.info-card__text { margin-top: 0.55rem; color: var(--color-muted); font-size: 0.95rem; line-height: 1.6; }

/* -------------------------------------------------------------------------
   25. Motion — load reveal + scroll reveal (respects reduced-motion)
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
  .media:hover > img { transform: none; }
}
