/* palette: bg=#F3F2F0 fg=#161616 accent=#E07B39 */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #F3F2F0;        /* dominant soft neutral background from reference */
  --bg-alt: #FFFFFF;    /* white card / alternating section */
  --bg-deep: #161616;   /* inverted dark band */
  --fg: #161616;        /* primary near-black text */
  --fg-soft: #3A3A38;   /* softened foreground */
  --muted: #9B9A96;     /* secondary grey (reference "UX Designer" tone) */
  --line: #E4E2DE;      /* hairline on light */
  --accent: #E07B39;    /* warm sunset amber from the reference image */
  --accent-deep: #BF5F22;
  --accent-soft: #F6E7DA;
  --border: rgba(22, 22, 22, 0.12);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 22px;
  --radius-sm: 12px;
  --maxw: 1240px;
}

*, *::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;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
section { position: relative; }
.section-pad { padding: clamp(80px, 12vw, 160px) 0; }

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.08; margin: 0; }
p { margin: 0 0 1.1em; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.7; color: var(--fg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn--light { background: var(--bg); color: var(--fg); }
.btn--light:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn .arw { transition: transform .4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.textlink:hover { border-color: var(--accent); gap: 12px; }
.textlink .arw { color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
  background: rgba(243, 242, 240, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.header[data-scrolled="true"] { box-shadow: 0 1px 0 var(--line), 0 8px 30px -18px rgba(0,0,0,0.2); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--fg); position: relative; flex: none;
  display: grid; place-items: center;
}
.brand__mark::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.nav { display: none; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a { font-size: 14px; color: var(--fg-soft); position: relative; transition: color .3s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--accent); transition: width .35s var(--ease); }
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--border); }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 18px; height: 1.6px; background: var(--fg); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; padding: 14px 0; border-bottom: 1px solid var(--line); letter-spacing: -0.02em; }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- Hero (split, fullbleed) ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 110px 0 60px; }
.hero__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.hero h1 {
  font-size: clamp(3.1rem, 8.4vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 30px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { max-width: 30ch; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--fg-soft); margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.35);
  background: #111;
}
@media (min-width: 940px) { .hero__card { aspect-ratio: 5 / 6; } }
.hero__card img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero__card-tag {
  position: absolute; left: 20px; bottom: 20px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.32); backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 9999px;
}
.hero__badge {
  position: absolute; top: 18px; right: 18px;
  display: flex; gap: 8px;
}
.hero__badge span {
  width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
}
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__meta div span { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; display: block; letter-spacing: -0.02em; }
.hero__meta div small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--bg-alt); }
.marquee__track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: slide 32s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: 1.15rem; color: var(--fg-soft); display: inline-flex; align-items: center; gap: 56px; }
.marquee__track span::after { content: "◇"; color: var(--accent); font-size: .9rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Manifesto / essay ---------- */
.manifesto { text-align: left; }
.manifesto .statement {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem);
  letter-spacing: -0.025em; line-height: 1.18;
  max-width: 20ch;
}
.manifesto .statement em { font-style: normal; color: var(--accent); }
.essay-grid { display: grid; gap: 40px; margin-top: 56px; }
@media (min-width: 820px) { .essay-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.essay-grid p { font-size: 1.02rem; line-height: 1.72; color: var(--fg-soft); }
.essay-grid .n { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; display: block; margin-bottom: 14px; }

/* ---------- Pull quote / dark band ---------- */
.band { background: var(--bg-deep); color: var(--bg); }
.band .eyebrow { color: rgba(255,255,255,0.55); }
.band .eyebrow::before { background: var(--accent); }
.pullquote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 4.8vw, 4rem);
  letter-spacing: -0.025em; line-height: 1.14;
  max-width: 18ch;
  position: relative;
}
.pullquote em { font-style: normal; color: var(--accent); }
.pullquote .quotemark { font-size: 5rem; color: var(--accent); line-height: 0; display: block; height: 40px; }
.pullquote__by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 40px; }

/* ---------- Services ---------- */
.svc-head { display: grid; gap: 24px; margin-bottom: 60px; }
@media (min-width: 820px) { .svc-head { grid-template-columns: 1fr 1fr; align-items: end; } }
.svc-head h2 { font-size: clamp(2.3rem, 5.6vw, 4rem); font-weight: 400; letter-spacing: -0.03em; }
.svc-grid { display: grid; gap: 20px; }
@media (min-width: 680px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px 34px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -18px rgba(0,0,0,0.18); border-color: transparent; }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--muted); }
.card__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); display: grid; place-items: center; margin: 20px 0 22px; color: var(--accent-deep); }
.card h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.02em; }
.card p { font-size: .98rem; line-height: 1.68; color: var(--fg-soft); margin-bottom: 20px; }
.card ul { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 9px; }
.card li { font-size: .9rem; color: var(--fg-soft); display: flex; gap: 10px; align-items: baseline; }
.card li::before { content: "→"; color: var(--accent); }

/* ---------- Approach (numbered rows) ---------- */
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid; gap: 14px; padding: 38px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease);
}
@media (min-width: 820px) { .row { grid-template-columns: 90px 0.9fr 1.3fr; gap: 40px; align-items: start; } .row:hover { padding-left: 14px; } }
.row__n { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.06em; }
.row h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 500; letter-spacing: -0.02em; }
.row p { font-size: 1rem; color: var(--fg-soft); line-height: 1.72; margin: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; gap: 4px; grid-template-columns: 1fr 1fr; }
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 30px 4px; }
.stat span { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; letter-spacing: -0.03em; display: block; }
.stat small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.band .stat small { color: rgba(255,255,255,0.5); }

/* ---------- Feature split (image + text) ---------- */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } .split.rev .split__media { order: 2; } }
.split__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 60px -28px rgba(0,0,0,0.3); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 400; letter-spacing: -0.03em; margin-bottom: 22px; }
.split ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.split li { display: flex; gap: 12px; font-size: 1rem; color: var(--fg-soft); }
.split li b { color: var(--fg); font-weight: 600; }
.split li::before { content: ""; flex: none; margin-top: 9px; width: 8px; height: 8px; border-radius: 3px; background: var(--accent); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center; font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--accent); left: 50%; top: 50%; transition: transform .3s var(--ease); }
.faq summary .pm::before { width: 14px; height: 1.6px; transform: translate(-50%,-50%); }
.faq summary .pm::after { width: 1.6px; height: 14px; transform: translate(-50%,-50%); }
.faq details[open] summary .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq details p { padding: 0 0 28px; margin: 0; max-width: 70ch; color: var(--fg-soft); }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta__inner {
  background: var(--bg-deep); color: var(--bg);
  border-radius: var(--radius); padding: clamp(50px, 8vw, 96px) 28px;
  position: relative; overflow: hidden;
}
.cta__inner::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,123,57,0.4), transparent 68%);
  top: -140px; right: -80px; filter: blur(10px);
}
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 400; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 22px; position: relative; }
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { max-width: 46ch; margin: 0 auto 34px; color: rgba(255,255,255,0.7); position: relative; }
.cta__actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ---------- Contact form ---------- */
.form-wrap { display: grid; gap: 48px; }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 72px; } }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px; color: var(--fg);
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.form .row2 { display: grid; gap: 18px; }
@media (min-width: 560px) { .form .row2 { grid-template-columns: 1fr 1fr; } }
.form__foot { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 8px; }
.form__foot small { font-size: 12px; color: var(--muted); max-width: 34ch; }
.contact-aside .block { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-aside .block:first-child { padding-top: 0; }
.contact-aside h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 8px; }
.contact-aside p { margin: 0; font-size: 1.05rem; color: var(--fg); }
.contact-aside a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-deep); color: rgba(255,255,255,0.72); padding: clamp(60px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 44px; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer .brand { color: #fff; margin-bottom: 20px; }
.footer .brand__mark { background: #fff; }
.footer .brand__mark::before { background: var(--accent); }
.footer__blurb { max-width: 36ch; font-size: .98rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 400; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a { font-size: .96rem; color: rgba(255,255,255,0.72); transition: color .3s var(--ease); }
.footer ul a:hover { color: var(--accent); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; margin-top: clamp(50px, 8vw, 90px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 12.5px; color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: #fff; }

/* ---------- Cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(0,0,0,0.4); 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: 32px 36px; max-width: 480px; border-radius: 16px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 12px; }
.cookie-popup__card p { font-size: .92rem; line-height: 1.65; color: var(--fg-soft); margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; border-radius: 9999px; transition: background .3s var(--ease), color .3s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }

/* ---------- Legal / prose ---------- */
.page-hero { padding: 130px 0 40px; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 400; letter-spacing: -0.035em; margin-bottom: 18px; }
.page-hero p { max-width: 52ch; color: var(--fg-soft); font-size: 1.1rem; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; letter-spacing: -0.02em; margin: 48px 0 14px; }
.prose h3 { font-size: 1.2rem; font-weight: 500; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 1.02rem; line-height: 1.75; }
.prose ul { padding-left: 20px; margin: 0 0 1.1em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-deep); border-bottom: 1px solid var(--border); }
.prose .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }

/* ---------- Thanks ---------- */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 120px 0 80px; }
.thanks .check { width: 76px; height: 76px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin: 0 auto 28px; }
.thanks h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 400; letter-spacing: -0.03em; margin-bottom: 18px; }
.thanks p { max-width: 44ch; margin: 0 auto 30px; color: var(--fg-soft); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .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; }
  .hero__card img { animation: none; }
  .marquee__track { animation: none; }
}
