/* Uncle Franks — concept by VCTR. Not the live Uncle Franks website.
   Their red is taken from their existing site (#d9242b); the amber is the
   sodium-streetlight note that carries the late-night idea.

   Animation budget: transform and opacity only. No blend modes, no filters on
   anything that moves — those are what make a page feel heavy in Safari. */

@font-face { font-family: Anton; src: url('/fonts/anton-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: Inter; src: url('/fonts/inter-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: Inter; src: url('/fonts/inter-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --void: #0b0a0c;
  --coal: #131115;
  --smoke: #1b181d;
  --red: #d9242b;
  --red-2: #ff3a41;
  --amber: #ffb547;
  --chalk: #f6f3ef;
  --grey: #9d969c;      /* 5.9:1 on --void */
  --line: rgba(246, 243, 239, 0.12);

  --display: Anton, Impact, 'Haettenschweiler', sans-serif;
  --body: Inter, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;

  --maxw: 1560px;
  --gut: clamp(20px, 4.4vw, 76px);
  /* left/right inset that lines full-bleed rails up with the content column */
  --edge: max(var(--gut), calc((100vw - var(--maxw)) / 2 + var(--gut)));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* one spacing scale, used everywhere, so nothing ends up touching */
  --s-1: 8px;
  --s-2: 14px;
  --s-3: 22px;
  --s-4: 34px;
  --s-5: clamp(44px, 6vw, 68px);
  --s-6: clamp(64px, 9vw, 116px);
  --s-7: clamp(88px, 13vw, 180px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: clamp(80px, 9vw, 104px); }
body {
  margin: 0; background: var(--void); color: var(--chalk);
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
button { font: inherit; color: inherit; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.wrap { padding-inline: var(--gut); max-width: var(--maxw); margin-inline: auto; width: 100%; }
.skip { position: fixed; top: -60px; left: 12px; z-index: 200; background: var(--amber); color: #111; padding: 10px 16px; }
.skip:focus { top: 8px; }

/* ---------- type ---------- */
.display { font-family: var(--display); text-transform: uppercase; line-height: 0.95; letter-spacing: 0.006em; font-weight: 400; }
.d-l { font-size: clamp(2.6rem, 7vw, 5.6rem); }
.d-m { font-size: clamp(1.9rem, 4vw, 3rem); }
.d-s { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
.eyebrow, .label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; }
.eyebrow { color: var(--amber); }
.mono { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.01em; }
.lede { font-size: clamp(1.04rem, 1.3vw, 1.22rem); color: #cbc5c9; max-width: 54ch; }
.muted { color: var(--grey); }
.rating__stars { color: var(--amber); letter-spacing: 3px; }

/* Reveal start states only exist when JS is running. */
.line { display: block; overflow: hidden; }
.line__in { display: block; }
.js .line__in { transform: translateY(105%); }
.js .reveal { opacity: 0; }
.js .dish, .js .menu__rail li { opacity: 0; }

/* ---------- chrome ---------- */
.conceptbar {
  position: relative; z-index: 60; display: flex; gap: 1.4em; justify-content: center;
  background: var(--red); color: #fff; padding: 8px var(--edge);
  font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap; overflow: hidden;
}
.conceptbar a { text-decoration: underline; display: inline-block; padding-block: 5px; margin-block: -5px; }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: clamp(14px, 2vw, 34px);
  padding: 14px var(--edge); background: var(--void);
  border-bottom: 1px solid var(--line);
  transition: transform 0.45s var(--ease);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: rgba(11, 10, 12, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}
.nav.is-up { transform: translateY(-101%); }
.nav__logo, .footer__brand { display: inline-flex; align-items: center; gap: 11px; }
.nav__mark { width: clamp(34px, 3.4vw, 42px); height: auto; border-radius: 50%; }
.nav__word {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1; color: var(--chalk);
}
.footer__brand .nav__mark { width: 46px; }
.footer__brand .nav__word { font-size: 1.35rem; }
.nav__links { display: flex; gap: clamp(14px, 2vw, 30px); margin-left: auto; font-size: 0.94rem; }
.nav__links a { position: relative; padding: 8px 0; color: #d6d0d4; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--red-2); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after, .nav__links a.is-on::after { transform: scaleX(1); }
.nav__burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: none; padding: 0; place-content: center; justify-items: center; }
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--chalk); transition: transform 0.4s var(--ease); }
.nav__burger span + span { margin-top: 7px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span + span { transform: translateY(-4.5px) rotate(-45deg); }
.nav__progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--red-2); transform: scaleX(0); transform-origin: left; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; background: var(--red); color: #fff; border: 0; border-radius: 999px;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background-color 0.25s, transform 0.25s var(--ease); cursor: pointer;
}
.btn:hover { background: var(--red-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--chalk); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { background: var(--chalk); color: #111; }
.btn--sm { padding: 11px 20px; font-size: 0.72rem; }

/* Sits under the header so the burger stays visible as the close control. */
.drawer { position: fixed; inset: 0; z-index: 45; background: var(--void); padding: clamp(124px, 17vw, 142px) var(--gut) 44px; display: grid; align-content: space-between; }
.drawer[hidden] { display: none; }
.drawer__links { display: grid; gap: 4px; }
.drawer__links a { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.4rem, 12vw, 4rem); line-height: 1.12; }
.drawer__foot { display: grid; gap: 12px; }
.drawer__phone { font-family: var(--display); font-size: 2rem; color: var(--amber); }

/* ---------- hero ---------- */
.hero { position: relative; max-width: var(--maxw); margin-inline: auto; padding-block: var(--s-6) var(--s-5); overflow: hidden; }
/* Sits behind the food as its light source. Amber only — mixing red into it
   over near-black turned the middle of the page a muddy brown. */
.hero__glow {
  position: absolute; right: -4%; top: 50%; width: min(900px, 74%); aspect-ratio: 1.25;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 181, 71, 0.13) 0%, rgba(255, 150, 60, 0.05) 42%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative; display: grid; align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(20px, 3vw, 56px);
}
.hero__stage { position: relative; width: 100%; pointer-events: none; will-change: transform; }
.hero__cut { width: 100%; filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.65)); }
.hero__body { position: relative; display: grid; justify-items: start; gap: var(--s-3); }
.hero__title { font-size: clamp(3.4rem, 10.5vw, 9.5rem); line-height: 0.98; margin-block: var(--s-1) var(--s-3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-2); }

.status {
  display: inline-flex; align-items: center; gap: 10px; margin-top: var(--s-2);
  padding: 10px 18px; border-radius: 999px; background: rgba(246, 243, 239, 0.06);
  box-shadow: inset 0 0 0 1px var(--line); font-family: var(--mono); font-size: 0.74rem;
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey); flex: 0 0 auto; }
.status.is-open .status__dot { background: #35d07f; box-shadow: 0 0 0 4px rgba(53, 208, 127, 0.18); }
.status.is-shut .status__dot { background: var(--red-2); box-shadow: 0 0 0 4px rgba(255, 58, 65, 0.16); }

.hero__meta {
  position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-3); margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--line);
}
.hero__stat { display: grid; gap: 6px; }
.hero__stat b { font-family: var(--display); font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1; font-weight: 400; }
.hero__stat .mono { color: var(--grey); }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; background: var(--red); color: #fff; padding: 14px 0; }
.marquee__track { display: flex; gap: 30px; width: max-content; will-change: transform; animation: slide 42s linear infinite; }
.marquee__track span { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2.2rem); }
.marquee__track i { font-style: normal; opacity: 0.5; font-size: 0.9em; }
@keyframes slide { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* ---------- the review ---------- */
.proof { padding-block: var(--s-7); border-bottom: 1px solid var(--line); }
.proof__q {
  font-family: var(--display); text-transform: uppercase; line-height: 1.02;
  font-size: clamp(1.9rem, 5.4vw, 4.6rem); max-width: 20ch;
}
.proof__by { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.proof__by .mono { color: var(--grey); }
.proof__by b { color: var(--chalk); font-weight: 600; }

/* ---------- menu ---------- */
.menu { padding-block: var(--s-7); }
.menu__head { display: grid; gap: var(--s-2); margin-bottom: var(--s-6); }
.menu__head .lede { margin-top: var(--s-1); }
.menu__grid { display: grid; grid-template-columns: 136px minmax(0, 1.25fr) minmax(0, 0.72fr); gap: clamp(26px, 3.2vw, 52px); align-items: start; }

.menu__rail { position: sticky; top: clamp(96px, 11vw, 124px); }
.menu__rail ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.menu__rail a {
  display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: center;
  padding: 11px 12px; border-radius: 8px; font-size: 0.93rem; color: var(--grey);
  transition: background-color 0.3s, color 0.3s;
}
.menu__rail a .mono { font-size: 0.66rem; opacity: 0.7; }
.menu__rail a:hover { color: var(--chalk); background: rgba(246, 243, 239, 0.05); }
.menu__rail a.is-on { color: #fff; background: var(--red); }
.menu__rail a.is-on .mono { opacity: 0.85; }

.menu__stage { position: sticky; top: clamp(110px, 14vw, 170px); order: 3; display: grid; }
.stage__item { grid-area: 1 / 1; opacity: 0; transform: scale(0.94) translateY(12px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.stage__item.is-on { opacity: 1; transform: none; }
.stage__item img { width: 100%; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6)); }

.menu__list { display: grid; gap: var(--s-7); }
.group__head { display: grid; gap: var(--s-2); margin-bottom: var(--s-4); padding-bottom: var(--s-3); border-bottom: 1px solid var(--line); }
.group__n { color: var(--red-2); }
.group__note { color: var(--grey); font-size: 0.95rem; }

.dishes { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.dish { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(24px, 0.6fr) auto; align-items: baseline; gap: var(--s-2); }
.dish__main { display: grid; gap: 5px; min-width: 0; }
.dish__name { font-size: 1.04rem; }
.dish__desc { font-size: 0.87rem; color: var(--grey); line-height: 1.5; }
.dish__rule { height: 1px; background: repeating-linear-gradient(90deg, rgba(246,243,239,.22) 0 2px, transparent 2px 6px); transform: translateY(-3px); }
.dish__prices { display: flex; gap: var(--s-2); white-space: nowrap; }
.price { display: inline-flex; align-items: baseline; gap: 6px; }
.price i { font-style: normal; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.price b { font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---------- the board ---------- */
.board { height: 260vh; }
.board__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; display: grid; align-content: center; gap: var(--s-5); overflow: hidden; contain: paint; }
.board__head { display: flex; justify-content: space-between; align-items: end; gap: var(--s-3); }
.board__head > div { display: grid; gap: var(--s-2); }
.board__track { display: flex; gap: clamp(18px, 2vw, 30px); padding-inline: var(--edge); will-change: transform; }
.card {
  flex: 0 0 min(76vw, 400px); background: var(--coal); border: 1px solid var(--line); border-radius: 18px;
  padding: var(--s-3) var(--s-3) var(--s-4); display: grid; gap: var(--s-3); align-content: start;
}
.card__img { background: radial-gradient(circle at 50% 60%, rgba(255, 181, 71, 0.14), transparent 62%); border-radius: 12px; padding: var(--s-2); }
.card__img img { width: 100%; filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.5)); }
.card__body { display: grid; gap: var(--s-1); }
.card__n { color: var(--amber); }
.card h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.4rem; margin-top: 2px; }
.card p { color: #bdb6bb; font-size: 0.94rem; margin-top: 2px; }
.card__price { font-family: var(--display); font-size: 1.9rem; color: var(--red-2); margin-top: var(--s-1); }

/* ---------- open late ---------- */
.late { padding-block: var(--s-7); background: var(--coal); border-block: 1px solid var(--line); }
.late .wrap { display: grid; gap: var(--s-3); }
.late__big { font-size: clamp(4.5rem, 20vw, 17rem); line-height: 0.97; color: var(--amber); }
.late__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(30px, 5vw, 80px); align-items: start; margin-top: var(--s-4); }
.late__facts { display: grid; gap: 0; margin: 0; }
.late__facts div { display: grid; grid-template-columns: 128px 1fr; gap: var(--s-2); padding: var(--s-2) 0; border-top: 1px solid var(--line); }
.late__facts dt { color: var(--grey); padding-top: 3px; }
.late__facts dd { margin: 0; }
.late__facts a:hover { color: var(--amber); }

/* ---------- find us ---------- */
.find { padding-block: var(--s-7) 0; display: grid; gap: var(--s-5); }
.find__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.66fr); gap: clamp(26px, 4vw, 70px); align-items: end; }
.find__head > div { display: grid; gap: var(--s-2); }
.find__head .lede { margin-top: var(--s-1); }
.find__facts { display: grid; gap: 0; margin: 0; }
.find__facts div { display: grid; grid-template-columns: 110px 1fr; gap: var(--s-2); padding: var(--s-2) 0; border-top: 1px solid var(--line); }
.find__facts dt { padding-top: 3px; }
.find__facts dd { margin: 0; }
.find__facts a:hover { color: var(--amber); }
.find__frame {
  position: relative; aspect-ratio: 21 / 9; overflow: hidden; background: var(--smoke);
  background-image:
    repeating-linear-gradient(0deg, rgba(246,243,239,.05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(246,243,239,.05) 0 1px, transparent 1px 44px);
}
.find__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Once the embed is up it draws its own card with the name, address, rating and
   a directions button, so ours would be a second card saying the same thing.
   The address and hours sit in the fact list directly above the map anyway. */
.find__frame.is-live .find__panel { display: none; }
.find__panel {
  position: absolute; left: clamp(16px, 3vw, 44px); bottom: clamp(16px, 3vw, 44px);
  max-width: min(92%, 460px); display: grid; gap: var(--s-2);
  padding: clamp(20px, 2vw, 30px); border-radius: 14px; background: rgba(11, 10, 12, 0.94);
  box-shadow: inset 0 0 0 1px var(--line);
}
.find__actions { display: flex; flex-wrap: wrap; gap: var(--s-1); margin-top: var(--s-1); }
.find__note { font-size: 0.68rem; }

/* ---------- footer ---------- */
/* The concept badge is fixed bottom-right, so the footer keeps a lane clear. */
.footer { background: var(--coal); border-top: 1px solid var(--line); padding: var(--s-6) var(--edge) 76px; display: grid; gap: var(--s-5); }
.footer__top { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1fr; gap: var(--s-4) var(--s-3); max-width: var(--maxw); margin-inline: auto; width: 100%; }

.footer__line { margin-top: var(--s-2); color: #bdb6bb; max-width: 34ch; }
.footer__list { list-style: none; margin: var(--s-2) 0 0; padding: 0; display: grid; gap: 11px; font-size: 0.94rem; color: #c8c2c6; }
.footer__list a { display: inline-block; padding-block: 4px; }
.footer__list a:hover { color: var(--amber); }
.footer__list li { display: flex; justify-content: space-between; gap: var(--s-2); max-width: 260px; }
.footer__list li span { white-space: nowrap; }
.footer__list b { font-weight: 600; white-space: nowrap; }
.footer__bottom {
  max-width: var(--maxw); margin-inline: auto; width: 100%;
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  padding-top: var(--s-3); border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.71rem; line-height: 1.6; color: var(--grey);
}
.footer__bottom a { color: var(--amber); }
.footer__bottom span:last-child { padding-right: 96px; }

/* ---------- concept watermark ---------- */
.wm {
  position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: 0.07;
  background-repeat: repeat; background-size: 300px 175px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='175'%3E%3Ctext x='150' y='92' fill='%23aaa' font-family='Arial,Helvetica,sans-serif' font-size='17' font-weight='700' letter-spacing='2.5' text-anchor='middle' transform='rotate(-26 150 88)'%3ECONCEPT %C2%B7 VCTR%3C/text%3E%3C/svg%3E");
}
.wm-badge {
  position: fixed; right: 14px; bottom: 14px; z-index: 71; display: flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 999px; background: rgba(11, 10, 12, 0.92); color: var(--chalk);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(217, 36, 43, 0.6);
}
.wm-badge b { color: var(--red-2); font-weight: 600; }
.wm-badge span { display: none; }
.wm-badge:hover span, .wm-badge:focus-visible span { display: inline; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .menu__grid { grid-template-columns: 1fr; }
  .menu__stage { display: none; }
  .menu__rail {
    position: sticky; top: clamp(74px, 11vw, 92px); z-index: 20; margin: 0 calc(var(--gut) * -1) var(--s-4);
    padding: 10px var(--gut); background: rgba(11, 10, 12, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-block: 1px solid var(--line);
  }
  .menu__rail ul { grid-auto-flow: column; grid-auto-columns: max-content; gap: 6px; overflow-x: auto; scrollbar-width: none; }
  .menu__rail ul::-webkit-scrollbar { display: none; }
  .menu__rail a { grid-template-columns: 1fr; white-space: nowrap; padding: 10px 14px; }
  .menu__rail a .mono { display: none; }
}
@media (max-width: 1000px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: grid; }
  /* the headline leads on a phone; the food follows it */
  /* the headline leads on a phone; the food follows it */
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .hero__body { order: 1; }
  .hero__stage { order: 2; transform: none !important; width: 94%; margin-inline: auto; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: var(--s-4) var(--s-3); }
  .late__grid, .find__head { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .board { height: auto; }
  .board__sticky { position: static; height: auto; padding-block: var(--s-6); overflow: visible; contain: none; }
  .board__track {
    transform: none !important; overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: var(--s-2);
  }
  .board__track::-webkit-scrollbar { display: none; }
  .card { flex: 0 0 min(78vw, 340px); scroll-snap-align: start; }
  .find__frame { aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .conceptbar__alt { display: none; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: var(--s-1); width: 100%; }
  .hero__actions .btn { width: 100%; }
  .dish { grid-template-columns: 1fr; gap: 6px; }
  .dish__rule { display: none; }
  .dish__prices { justify-content: flex-start; }
  .late__facts div, .find__facts div { grid-template-columns: 1fr; gap: 5px; padding: var(--s-2) 0; }
  .late__facts dt, .find__facts dt { padding-top: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__list { gap: 14px; }
  .footer__bottom span:last-child { padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .js .line__in, .js .reveal, .js .dish, .js .menu__rail li { transform: none; opacity: 1; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
