/* palette: bg=#F4F2E9 fg=#171522 accent=#FF2E7E */
/* fonts: display="Syne" body="Space Grotesk" mono="JetBrains Mono" */

:root {
  --bg: #F4F2E9;        /* paper white, slightly cool */
  --bg-alt: #ECE8DA;    /* second print pass paper */
  --paper-deep: #E4DECB;
  --fg: #171522;        /* riso ink near-black */
  --fg-soft: #2E2A3D;
  --muted: #6B6478;     /* secondary text */
  --accent: #FF2E7E;    /* riso fluo pink */
  --accent-deep: #D80E5C;
  --blue: #2438E8;      /* riso blue */
  --blue-deep: #1322B8;
  --border: rgba(23, 21, 34, 0.18);
  --border-strong: #171522;
  --serif: 'Syne', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 4px 24px -4px rgba(23,21,34,0.08);
  --shadow-hover: 0 12px 40px -8px rgba(23,21,34,0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain / riso misregistration texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image:
    radial-gradient(rgba(23,21,34,0.16) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue);
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.04; margin: 0; }
p { margin: 0 0 1.1em; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 242, 233, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-strong);
  box-shadow: 0 6px 0 -3px rgba(255,46,126,0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--fg);
  transform: rotate(-4deg);
  box-shadow: 3px 3px 0 var(--blue);
}
.nav { display: none; gap: 30px; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--accent-deep); }

.nav__cta {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 18px;
  background: var(--fg);
  color: var(--bg);
  border: 1.5px solid var(--fg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav__cta:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--accent); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 120;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--border);
}
.mobile-menu a span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-deep);
  margin-right: 14px;
  vertical-align: middle;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 56px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
  mix-blend-mode: multiply;
  opacity: 0.22;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(255,46,126,0.16), transparent 55%),
    radial-gradient(100% 90% at 0% 100%, rgba(36,56,232,0.14), transparent 55%);
}
.hero .container { width: 100%; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-soft);
  border-top: 1.5px solid var(--fg);
  border-bottom: 1.5px solid var(--fg);
  padding: 12px 0;
  margin-bottom: 40px;
}
.hero__meta span { display: inline-flex; gap: 8px; }
.hero__meta b { color: var(--accent-deep); font-weight: 700; }
.hero h1 {
  font-size: clamp(3.4rem, 11vw, 9rem);
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  text-shadow: 3px 3px 0 var(--blue);
}
.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  max-width: 52ch;
  color: var(--fg-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 26px;
  border: 1.5px solid var(--fg);
  background: var(--accent);
  color: var(--bg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--blue); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { box-shadow: 6px 6px 0 var(--accent); background: var(--bg); }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { box-shadow: 6px 6px 0 var(--accent); }

.textlink {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  transition: gap 0.25s var(--ease);
}
.textlink:hover { gap: 14px; }

/* ============ SECTION SHELL ============ */
.section { padding: clamp(80px, 12vw, 150px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--fg); color: var(--bg); }
.section--dark .eyebrow { color: var(--accent); }
.section--dark .eyebrow::before { background: var(--bg); }
.section--dark .muted { color: rgba(244,242,233,0.66); }

.section__head {
  display: grid;
  gap: 18px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 860px) {
  .section__head { grid-template-columns: 1.3fr 0.9fr; gap: 40px; }
}
.section__head h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.025em;
}
.section__head h2 em { font-style: normal; color: var(--accent); }
.section__intro { color: var(--muted); font-size: 1.05rem; }
.muted { color: var(--muted); }

/* numbered chapter marker */
.chno {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
}

/* ============ TABLE OF CONTENTS ============ */
.toc { display: grid; gap: 0; border-top: 1.5px solid var(--fg); }
.toc__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 26px 6px;
  border-bottom: 1.5px solid var(--border);
  transition: background 0.25s var(--ease), padding 0.25s var(--ease);
}
.toc__row:hover { background: var(--bg-alt); padding-left: 18px; }
.toc__num { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); }
.toc__title { font-family: var(--serif); font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 600; letter-spacing: -0.02em; }
.toc__title small { display: block; font-family: var(--sans); font-size: 0.92rem; font-weight: 400; color: var(--muted); letter-spacing: 0; margin-top: 6px; max-width: 60ch; line-height: 1.6; }
.toc__page { font-family: var(--mono); font-size: 12px; color: var(--muted); white-space: nowrap; }

/* ============ CARD GRID ============ */
.grid { display: grid; gap: 1.5px; background: var(--fg); border: 1.5px solid var(--fg); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { background: var(--bg-alt); }
.card__no { font-family: var(--mono); font-size: 12px; color: var(--accent-deep); letter-spacing: 0.1em; }
.card h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.card ul { margin: 6px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.card li { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--fg-soft); display: flex; gap: 8px; }
.card li::before { content: "→"; color: var(--accent); }

/* ============ MANIFESTO ============ */
.manifesto { text-align: center; }
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.6;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}
.manifesto__by {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244,242,233,0.6);
  margin-top: 40px;
}

/* ============ STATS ============ */
.stats { display: grid; gap: 1.5px; background: var(--border-strong); border: 1.5px solid var(--fg); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 30px 24px; }
.section--dark .stat { background: var(--fg); }
.stat b { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; display: block; color: var(--accent); }
.stat span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.section--dark .stat span { color: rgba(244,242,233,0.6); }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1.5px solid var(--fg);
  border-bottom: 1.5px solid var(--fg);
  background: var(--accent);
  color: var(--bg);
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.marquee__track span { display: inline-flex; gap: 40px; }
.marquee__track span::after { content: "✳"; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SPLIT / FEATURE ============ */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split--rev .split__media { order: -1; }
.split__media {
  position: relative;
  border: 1.5px solid var(--fg);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--blue);
}
.split__media img { aspect-ratio: 4/5; object-fit: cover; filter: grayscale(1) contrast(1.1); mix-blend-mode: multiply; }
.split__media::after { content: ""; position: absolute; inset: 0; background: rgba(255,46,126,0.2); mix-blend-mode: screen; }
.split h2 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.025em; margin-bottom: 22px; }
.split h2 em { font-style: normal; color: var(--accent); }
.split p { color: var(--fg-soft); }

/* ============ PRINCIPLES (text-only team) ============ */
.people { display: grid; gap: 1.5px; background: var(--fg); border: 1.5px solid var(--fg); }
@media (min-width: 700px) { .people { grid-template-columns: repeat(2, 1fr); } }
.person { background: var(--bg); padding: 32px 28px; display: flex; gap: 20px; }
.avatar {
  width: 58px; height: 58px;
  flex: 0 0 58px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--bg);
  border: 1.5px solid var(--fg);
  transform: rotate(-3deg);
}
.person h3 { font-size: 1.2rem; }
.person .role { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-deep); margin: 4px 0 10px; }
.person p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* ============ FAQ ============ */
.faq { border-top: 1.5px solid var(--fg); }
.faq details { border-bottom: 1.5px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 4px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 1.5rem; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 4px 28px; color: var(--muted); max-width: 70ch; }

/* ============ CTA BAND ============ */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 7vw, 5.2rem); letter-spacing: -0.03em; margin-bottom: 24px; }
.cta h2 em { font-style: normal; color: var(--accent); text-shadow: 3px 3px 0 var(--blue); }
.cta p { max-width: 52ch; margin: 0 auto 36px; color: rgba(244,242,233,0.7); }

/* ============ CONTACT FORM ============ */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--fg);
  color: var(--fg);
  border-radius: 0;
  transition: box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: 4px 4px 0 var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

.contact-info { display: grid; gap: 26px; align-content: start; }
.contact-block { border-top: 1.5px solid var(--fg); padding-top: 18px; }
.contact-block h3 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-deep); font-weight: 700; margin-bottom: 8px; }
.contact-block p { margin: 0; font-size: 1.05rem; }
.contact-block a:hover { color: var(--accent-deep); }

/* ============ FOOTER ============ */
.footer { background: var(--fg); color: var(--bg); padding: 80px 0 40px; }
.footer__top { display: grid; gap: 44px; margin-bottom: 56px; }
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; } }
.footer__brand .brand { font-size: 26px; color: var(--bg); }
.footer__brand p { color: rgba(244,242,233,0.6); max-width: 36ch; margin-top: 18px; font-size: 0.96rem; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; color: rgba(244,242,233,0.78); font-size: 0.95rem; transition: color 0.2s, transform 0.2s var(--ease); }
.footer__col a:hover { color: var(--bg); transform: translateX(4px); }
.footer__bottom {
  border-top: 1px solid rgba(244,242,233,0.2);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(244,242,233,0.55);
  text-transform: uppercase;
}

/* ============ LEGAL / PROSE ============ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.03em; margin-bottom: 18px; }
.prose h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); letter-spacing: -0.02em; margin: 48px 0 14px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 1.02rem; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }

.page-hero { padding: 140px 0 60px; border-bottom: 1.5px solid var(--fg); }
.page-hero h1 { font-size: clamp(2.8rem, 9vw, 6.5rem); letter-spacing: -0.035em; }
.page-hero h1 em { font-style: normal; color: var(--accent); text-shadow: 3px 3px 0 var(--blue); }
.page-hero p { max-width: 56ch; color: var(--fg-soft); margin-top: 22px; font-size: 1.1rem; }

/* thank-you */
.thanks { min-height: 80vh; display: grid; place-items: center; text-align: center; padding: 120px 0; }
.thanks h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); letter-spacing: -0.03em; margin-bottom: 20px; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { max-width: 48ch; margin: 0 auto 32px; color: var(--muted); }

/* ============ COOKIE POPUP ============ */
.cookie-popup { position:fixed;inset:0;z-index:9999;display:flex;align-items:flex-end;justify-content:flex-start;padding:24px;background:rgba(23,21,34,0.45);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity .3s; }
.cookie-popup[data-open="true"] { opacity:1;pointer-events:all; }
.cookie-popup__card { background:var(--bg);padding:30px 32px;max-width:460px;border:1.5px solid var(--fg);box-shadow:8px 8px 0 var(--accent); }
.cookie-popup__label { font-family:var(--mono);font-size:11px;text-transform:uppercase;letter-spacing:0.14em;color:var(--accent-deep);margin-bottom:10px; }
.cookie-popup__card h3 { font-size:1.4rem;letter-spacing:-0.01em;margin-bottom:10px; }
.cookie-popup__card p { font-size:0.92rem;color:var(--muted);margin:0; }
.cookie-popup__actions { display:flex;gap:12px;margin-top:22px; }
.cookie-popup__actions button { padding:11px 22px;border:1.5px solid var(--fg);cursor:pointer;font-family:var(--mono);font-size:12px;text-transform:uppercase;letter-spacing:0.06em;transition:transform 0.2s var(--ease),box-shadow 0.2s var(--ease); }
.cookie-popup__actions button:hover { transform:translate(-2px,-2px); }
.cookie-popup__actions button:first-child:hover { box-shadow:3px 3px 0 var(--muted); }
.cookie-popup__actions button:last-child { background:var(--fg);color:var(--bg); }
.cookie-popup__actions button:last-child:hover { box-shadow:3px 3px 0 var(--accent); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  .marquee__track { animation: none; }
}
