/* ============ EL CHAVOCHO — SPORT BAR & RESTAURANT ============
   Color system: visual zoning — every section has its own material.
   burgundy #241014 · espresso #160E0D · brick #4A2923 · cream #F1E4CC
   bar blue #13AFC4 · amber #C9914B · red #B52B32                    */
:root {
  --burgundy: #241014;       /* smoked burgundy — identity zone */
  --espresso: #160E0D;       /* deep espresso — page foundation */
  --brick: #4A2923;          /* toasted brick — warm zones */
  --brick-deep: #35201b;
  --cream: #F1E4CC;          /* aged cream — primary type */
  --cream-dim: rgba(241,228,204,.66);
  --cream-faint: rgba(241,228,204,.42);
  --blue: #13AFC4;           /* electric bar blue — sparse accent */
  --blue-soft: rgba(19,175,196,.32);
  --amber: #C9914B;          /* warm amber — prices, micro-labels */
  --red: #B52B32;            /* controlled red — high-priority actions only */
  --red-deep: #8e2026;
  --card-paper: #f7efdd;     /* paper for white-bg dish photos */
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --ff-display: "Anton", "Arial Black", sans-serif;
  --ff-body: "Barlow", "Segoe UI", sans-serif;
  --ff-label: "Barlow Condensed", "Barlow", sans-serif;
  /* film grain, shared by the textured zones */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--red); color: var(--cream); padding: .7rem 1.2rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { width: min(1180px, 92vw); margin: 0 auto; position: relative; z-index: 2; }

/* grainy zone helper — sections opt in with .zone-grain */
.zone-grain { position: relative; }
.zone-grain::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: var(--grain); background-size: 140px 140px;
  opacity: .05; mix-blend-mode: overlay;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-label); font-weight: 600; font-size: 1.02rem;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  padding: .95rem 1.9rem; border-radius: 3px; white-space: nowrap;
  transition: transform .25s ease, background .25s ease, color .25s ease,
              border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn-red {
  background: linear-gradient(180deg, #c43239 0%, var(--red) 45%, var(--red-deep) 100%);
  color: var(--cream);
  border: 1px solid rgba(241,228,204,.14);
  box-shadow: inset 0 1px 0 rgba(241,228,204,.22), 0 10px 26px rgba(0,0,0,.45);
}
.btn-red:hover {
  background: linear-gradient(180deg, #d13a41 0%, #c02f36 45%, var(--red) 100%);
  box-shadow: inset 0 1px 0 rgba(241,228,204,.28), 0 14px 32px rgba(181,43,50,.38);
}
.btn-ghost {
  border: 1px solid rgba(241,228,204,.4); color: var(--cream); background: rgba(241,228,204,.03);
  box-shadow: inset 0 1px 0 rgba(241,228,204,.07);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(241,228,204,.1); }
.btn-uber {
  background: #06c167; color: #06210f; border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 10px 26px rgba(0,0,0,.4);
}
.btn-uber:hover { background: #1ed77e; box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 14px 30px rgba(6,193,103,.3); }
.btn-post {
  background: #ffcf01; color: #201a00; border: 1px solid rgba(255,255,255,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 26px rgba(0,0,0,.4);
}
.btn-post:hover { background: #ffdd45; box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 14px 30px rgba(255,207,1,.28); }
.btn-big { padding: 1.15rem 2.3rem; font-size: 1.1rem; }

/* ---------- nav ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 2.6rem);
  transition: background .4s ease, box-shadow .4s ease;
}
.site-nav.solid {
  background: rgba(22,14,13,.92); backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(241,228,204,.07), 0 2px 24px rgba(0,0,0,.45);
}
.nav-brand {
  font-family: var(--ff-display); font-size: 1.25rem; letter-spacing: .06em;
  color: var(--cream); text-decoration: none;
}
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  font-family: var(--ff-label); font-size: 1rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none; transition: color .25s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--cream); }
.nav-order { padding: .6rem 1.3rem; font-size: .92rem; }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-order { margin-left: auto; }
}

/* ---------- hero — footage dominant, overlays only for readability ---------- */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: var(--espresso); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,14,13,.8) 0%, rgba(22,14,13,.22) 30%, rgba(22,14,13,0) 55%),
              linear-gradient(to bottom, rgba(22,14,13,.42) 0%, rgba(22,14,13,0) 22%);
}
.hero-content {
  position: absolute; left: clamp(1.2rem, 5vw, 4rem); right: clamp(1.2rem, 5vw, 4rem); bottom: clamp(4.4rem, 9vh, 6.5rem);
  display: flex; flex-direction: column; gap: 1.5rem; z-index: 2;
}
.hero-kicker {
  font-family: var(--ff-label); font-size: clamp(.85rem, 1.4vw, 1rem);
  letter-spacing: .3em; text-transform: uppercase; color: var(--blue);
}
.hero-title {
  font-family: var(--ff-display); font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: .95; letter-spacing: .02em; color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hero-sub {
  font-family: var(--ff-label); font-weight: 600; font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: .42em; text-transform: uppercase; color: var(--cream-dim); margin-top: .4rem;
}
.hero-line { max-width: 44ch; color: var(--cream-dim); font-size: clamp(1rem, 1.5vw, 1.15rem); margin-top: .3rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-loc {
  position: absolute; right: clamp(1.2rem, 4vw, 2.6rem); bottom: 1.3rem; z-index: 2;
  font-family: var(--ff-label); font-size: .88rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-faint);
}
.scroll-cue {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 1.1rem; z-index: 2;
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--ff-label); font-size: .82rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--cream-faint);
}
.scroll-cue span {
  width: 1px; height: 34px; background: linear-gradient(to bottom, transparent, var(--cream));
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop { 0% {transform: scaleY(0); transform-origin: top;} 55% {transform: scaleY(1); transform-origin: top;} 100% {opacity: 0; transform: scaleY(1);} }
@media (max-width: 760px) {
  .hero-content { bottom: 5.4rem; }
  .hero-loc { display: none; }
}

/* ---------- identity — smoked burgundy, warm atmospheric depth ---------- */
.identity {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background:
    radial-gradient(120% 90% at 18% 0%, rgba(74,41,35,.5) 0%, rgba(74,41,35,0) 55%),
    radial-gradient(90% 80% at 85% 100%, rgba(181,43,50,.14) 0%, rgba(181,43,50,0) 60%),
    var(--burgundy);
}
.giant-type { font-family: var(--ff-display); font-size: clamp(2.4rem, 7vw, 5.6rem); line-height: 1.04; letter-spacing: .01em; color: var(--cream); }
.giant-type .line { display: block; }
.giant-type .accent { color: var(--red); text-shadow: 0 2px 24px rgba(181,43,50,.35); }
.identity-copy { max-width: 62ch; margin-top: 2.2rem; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--cream-dim); }

/* ---------- section headers ---------- */
.section-kicker {
  font-family: var(--ff-label); font-size: .95rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .6rem;
}
.section-title { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: .02em; margin-bottom: 1.2rem; }

/* ---------- featured — aged cream, editorial ---------- */
.featured {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(74,41,35,.12) 0%, rgba(74,41,35,0) 55%),
    var(--cream);
  color: #2a1712;
}
.featured .section-kicker { color: #9b3f2e; }
.featured .section-title { color: #2a1712; }
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem);
  margin-top: 2.2rem;
}
.dish-card {
  background: var(--card-paper); border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(74,41,35,.18);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 14px 34px rgba(42,23,18,.16);
  display: flex; flex-direction: column;
  transition: box-shadow .35s ease, transform .35s ease;
}
.dish-card:hover { box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 20px 44px rgba(42,23,18,.24); transform: translateY(-3px); }
.dish-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--card-paper); position: relative; }
.dish-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(74,41,35,.08), inset 0 -18px 30px -22px rgba(42,23,18,.35); pointer-events: none; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dish-media.fit-contain img { object-fit: contain; padding: 6%; }
.dish-card:hover .dish-media img { transform: scale(1.045); }
.dish-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; border-top: 1px solid rgba(74,41,35,.14); }
.dish-cat {
  font-family: var(--ff-label); font-size: .8rem; letter-spacing: .26em; text-transform: uppercase;
  color: #0e7f90;
}
.dish-name { font-family: var(--ff-display); font-size: 1.35rem; letter-spacing: .02em; line-height: 1.15; color: #2a1712; }
.dish-desc { font-size: .95rem; color: rgba(42,23,18,.72); flex: 1; }
.dish-price { font-family: var(--ff-label); font-weight: 600; font-size: 1.15rem; color: #a06a28; letter-spacing: .08em; }
.center-cta { text-align: center; margin-top: 2.6rem; }
.featured .btn-ghost {
  border-color: rgba(42,23,18,.45); color: #2a1712; background: rgba(42,23,18,.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.featured .btn-ghost:hover { border-color: #2a1712; background: rgba(42,23,18,.07); }
@media (max-width: 900px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .featured-grid { grid-template-columns: 1fr; } }

/* ---------- full menu — espresso cards, cream type, amber prices ---------- */
.menu { padding: clamp(4rem, 10vh, 7rem) 0; background: var(--espresso); }
.menu-note { color: var(--cream-dim); font-size: .95rem; margin-bottom: 1.6rem; }
.tabs-shell { position: sticky; top: 62px; z-index: 40; background: var(--espresso); padding: .6rem 0; margin: 0 0 1.4rem; box-shadow: 0 10px 18px -14px rgba(0,0,0,.8); }
.tabs { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: var(--ff-label); font-weight: 600; font-size: .98rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-dim); background: var(--burgundy);
  border: 1px solid rgba(241,228,204,.12); border-radius: 999px;
  padding: .55rem 1.15rem; cursor: pointer; white-space: nowrap;
  transition: all .25s; box-shadow: inset 0 1px 0 rgba(241,228,204,.06);
  user-select: none; -webkit-user-select: none; touch-action: manipulation;
}
.tab-btn:hover { color: var(--cream); border-color: rgba(241,228,204,.28); }
.tab-btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.tab-btn[aria-selected="true"] {
  background: linear-gradient(180deg, #c43239 0%, var(--red) 55%, var(--red-deep) 100%);
  color: var(--cream); border-color: rgba(241,228,204,.22);
  box-shadow: inset 0 1px 0 rgba(241,228,204,.24), 0 6px 18px rgba(181,43,50,.3);
}
.menu-panel[hidden] { display: none; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.6rem; }
.menu-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center;
  padding: .95rem 1rem;
  background: linear-gradient(180deg, rgba(36,16,20,.85) 0%, rgba(22,14,13,.9) 100%);
  border: 1px solid rgba(241,228,204,.08); border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(241,228,204,.05), 0 8px 20px -12px rgba(0,0,0,.6);
}
.menu-item .thumb {
  width: 64px; height: 64px; border-radius: 5px; overflow: hidden; background: var(--card-paper); flex: none;
  box-shadow: 0 0 0 1px rgba(241,228,204,.12);
}
.menu-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .thumb.fit-contain img { object-fit: contain; }
.menu-item.no-thumb { grid-template-columns: 1fr auto; }
.mi-name { font-weight: 700; font-size: 1.02rem; letter-spacing: .015em; color: var(--cream); }
.mi-desc { font-size: .88rem; color: var(--cream-dim); margin-top: .15rem; }
.mi-price { font-family: var(--ff-label); font-weight: 600; font-size: 1.05rem; letter-spacing: .06em; color: var(--amber); }
.menu-order-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 3rem; }
@media (max-width: 860px) {
  .menu-list { grid-template-columns: 1fr; }
  .tabs-shell { top: 56px; }
}

/* ---------- atmosphere — imagery leads; blue borders, red ambience ---------- */
.bar-atmo {
  padding: clamp(4rem, 10vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
  background:
    radial-gradient(80% 60% at 50% 8%, rgba(181,43,50,.1) 0%, rgba(181,43,50,0) 60%),
    radial-gradient(70% 55% at 12% 90%, rgba(19,175,196,.06) 0%, rgba(19,175,196,0) 60%),
    var(--espresso);
}
.atmo-stage { width: min(1320px, 96vw); margin: 2.4rem auto 0; position: relative; z-index: 2; }
.parallax-img {
  overflow: hidden; border-radius: 6px; position: relative;
  border: 1px solid rgba(19,175,196,.18);
  box-shadow: 0 0 0 1px rgba(0,0,0,.4), 0 24px 50px rgba(0,0,0,.5);
}
.parallax-img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.atmo-main { aspect-ratio: 21 / 9; }
.atmo-main img { height: 118%; }
figure figcaption {
  position: absolute; left: 1.1rem; bottom: .9rem; z-index: 2;
  font-family: var(--ff-label); font-size: .92rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream); text-shadow: 0 2px 12px rgba(0,0,0,.8);
}
.atmo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.6vw, 1.4rem); margin-top: clamp(.8rem, 1.6vw, 1.4rem); }
.atmo-side { aspect-ratio: 3 / 4; }
.atmo-side img { height: 116%; }
@media (max-width: 760px) {
  .atmo-main { aspect-ratio: 16 / 10; }
  .atmo-row { grid-template-columns: 1fr; }
  .atmo-side { aspect-ratio: 16 / 10; }
}

/* ---------- order — rich burgundy/red field ---------- */
.order {
  padding: clamp(4.5rem, 11vh, 8rem) 0; text-align: center; color: var(--cream);
  background:
    radial-gradient(100% 90% at 50% -10%, rgba(196,50,57,.55) 0%, rgba(196,50,57,0) 62%),
    radial-gradient(90% 70% at 85% 110%, rgba(74,41,35,.55) 0%, rgba(74,41,35,0) 60%),
    linear-gradient(180deg, #6d1c22 0%, #57181d 55%, #451318 100%);
}
.order-title { font-family: var(--ff-display); font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: .02em; text-shadow: 0 4px 28px rgba(0,0,0,.4); }
.order-sub { margin-top: .8rem; color: rgba(241,228,204,.82); }
.order-grid { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; position: relative; z-index: 2; }
.order .btn-ghost { border-color: rgba(241,228,204,.55); background: rgba(22,14,13,.18); }
.order .btn-ghost:hover { background: rgba(22,14,13,.32); border-color: var(--cream); }

/* ---------- visit — toasted brick, warm transition ---------- */
.visit {
  background:
    radial-gradient(110% 80% at 100% 0%, rgba(36,16,20,.45) 0%, rgba(36,16,20,0) 55%),
    var(--brick-deep);
}
.visit-grid { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 72vh; position: relative; z-index: 2; }
.visit-photo { border-radius: 0; box-shadow: none; border: none; }
.visit-photo img { height: 112%; }
.visit-info { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 6vw, 5rem); }
.visit-info address {
  font-style: normal; font-family: var(--ff-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2; margin: 1rem 0 .6rem; color: var(--cream);
}
.visit-phone a { color: var(--amber); text-decoration: none; font-size: 1.3rem; font-weight: 600; }
.visit-phone a:hover { text-decoration: underline; }
.visit-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.visit .btn-ghost { border-color: rgba(241,228,204,.45); }
.visit-map-link { margin-top: 1.4rem; }
.visit-map-link a { color: var(--cream-dim); font-size: .95rem; }
.visit-map-link a:hover { color: var(--cream); }
@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-photo { aspect-ratio: 16 / 10; }
}

/* ---------- finale — dark frame, restrained amber glow on the CTAs ---------- */
.final-cta { position: relative; padding: clamp(6rem, 16vh, 11rem) 0; overflow: hidden; background: var(--espresso); }
.final-bg {
  position: absolute; inset: -12% 0; background: url("../assets/img/still-bar-2.jpg") center / cover no-repeat;
  will-change: transform;
}
.final-cta::after { content: ""; position: absolute; inset: 0; background: rgba(22,14,13,.74); }
.final-content { position: relative; z-index: 2; text-align: center; width: min(900px, 92vw); margin: 0 auto; }
.final-content::before {
  content: ""; position: absolute; left: 50%; top: 58%; transform: translate(-50%,-30%);
  width: min(680px, 90vw); height: 260px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(201,145,75,.2) 0%, rgba(201,145,75,0) 70%);
}
.final-title { font-family: var(--ff-display); font-size: clamp(2.6rem, 7vw, 5.4rem); letter-spacing: .02em; color: var(--cream); }
.final-ctas { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; position: relative; }

/* ---------- footer ---------- */
.site-footer {
  background: #100a09; padding: 2.6rem 1.2rem 7rem; text-align: center;
  color: var(--cream-dim); font-size: .95rem;
  border-top: 1px solid rgba(241,228,204,.07);
}
.foot-brand { font-family: var(--ff-display); color: var(--cream); font-size: 1.3rem; letter-spacing: .04em; margin-bottom: .5rem; }
.foot-brand span { font-family: var(--ff-label); font-size: .8rem; letter-spacing: .3em; color: var(--amber); margin-left: .6rem; }
.site-footer a { color: var(--cream-dim); }
.site-footer a:hover { color: var(--cream); }
.foot-links { margin-top: .5rem; }
@media (min-width: 761px) { .site-footer { padding-bottom: 2.6rem; } }

/* ---------- mobile bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none; grid-template-columns: 1fr 1fr 1fr;
  background: rgba(22,14,13,.96); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(241,228,204,.14);
  transform: translateY(110%); transition: transform .35s ease;
}
.mobile-bar.on { transform: translateY(0); }
.mobile-bar a {
  padding: 1.05rem 0 calc(1.05rem + env(safe-area-inset-bottom, 0px));
  text-align: center; text-decoration: none;
  font-family: var(--ff-label); font-weight: 600; font-size: 1rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream);
}
.mobile-bar a:first-child {
  background: linear-gradient(180deg, #c43239 0%, var(--red) 55%, var(--red-deep) 100%);
  box-shadow: inset 0 1px 0 rgba(241,228,204,.2);
}
@media (max-width: 760px) { .mobile-bar { display: grid; } }

/* ---------- reveal defaults (JS adds motion; base = visible) ---------- */
.reveal-item { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-cue span { animation: none; }
  * { transition-duration: .01ms !important; }
}
