/* ============================================================
   Sarıhan İşkembe — cinematic night build.

   Dark throughout, deliberately: the two earlier mockups both run on a
   light --bone page, and this one earns its difference by staying in the
   hour it depicts. Brand tokens (ember, saffron, Bodoni + Manrope) are
   carried over so all three read as the same restaurant.
   ============================================================ */

:root {
  --ink:        #0a0908;   /* deeper than the light builds' #11100f  */
  --ink-2:      #131110;
  --ink-3:      #1c1917;
  --paper:      #fffdf8;
  --muted:      #a9a099;
  --muted-dim:  #6f6862;
  --line:       rgba(255,253,248,.12);
  --line-soft:  rgba(255,253,248,.07);

  --ember:      #b6492e;
  --ember-lit:  #d4603f;
  --saffron:    #dba72f;

  --radius:     20px;
  --radius-lg:  28px;
  --container:  1200px;

  --serif: "Bodoni Moda", Didot, Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Fixed glass nav would otherwise cover the top of any anchored section. */
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden: `overflow-x: hidden` forces overflow-y to `auto`, which
     turns body into its own scroll container and breaks window scrolling.
     `clip` contains the same overflow without that side effect. */
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, dl, dd, ul { margin: 0; }
ul { padding: 0; list-style: none; }

::selection { background: var(--ember); color: var(--paper); }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  padding: 12px 18px; border-radius: 999px;
  background: var(--paper); color: var(--ink); font-weight: 700;
}
.skip:focus { top: 16px; }

.wrap { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }

/* ---------- shared type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  margin-bottom: 20px;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--saffron);
}
/* A small filled bead instead of the usual thin kicker rule — reads as a
   drop of oil on the broth, a house mark, rather than the default SaaS dash. */
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.display em { font-style: italic; color: var(--saffron); }

.sec-head { margin-bottom: 56px; }

/* ============================================================
   LIQUID GLASS
   Adapted from the guide, with the pseudo-element border it describes.
   The trick is the masked gradient rim: bright at top and bottom, absent
   through the middle, so the edge catches light like a real bevel instead
   of drawing a flat 1px box.
   ============================================================ */
.glass {
  position: relative;
  overflow: hidden;
  background: rgba(255,253,248,.045);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.12),
    0 18px 50px rgba(0,0,0,.4);
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,.45) 0%,
    rgba(255,255,255,.14) 22%,
    rgba(255,255,255,0)   42%,
    rgba(255,255,255,0)   60%,
    rgba(255,255,255,.14) 80%,
    rgba(255,255,255,.40) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  border: 0; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.btn-lg { min-height: 56px; padding: 0 30px; font-size: .88rem; }

/* The button warms and throws an ember glow rather than the reflexive -2px
   lift every generated page shares. Feedback stays obvious; the tell doesn't. */
.btn-ember { background: var(--ember); color: var(--paper); }
.btn-ember:hover { background: var(--ember-lit); box-shadow: 0 10px 30px rgba(182,73,46,.4); }
.btn-glass { color: var(--paper); }
.btn-glass:hover { background: rgba(255,253,248,.1); }
.btn-glass::before { /* reuse .glass rim on a button */ }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 100;
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
  transition: top .35s var(--ease);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 26px;
  min-height: 62px; padding: 0 12px 0 24px;
  border-radius: 999px;
}
/* Barely-there at rest over the video, solid once the page scrolls under it. */
.nav-wrap.scrolled .nav {
  background: rgba(10,9,8,.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-mark {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  letter-spacing: -.01em;
}
.brand-sub {
  font-size: .58rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,253,248,.72);
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--paper); }

.nav-end { display: flex; align-items: center; gap: 12px; }

.live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
/* An ember that breathes, not a SaaS "live" status LED. Warm colour, and a
   slow opacity glow instead of the clinical green ping-ring. */
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 8px rgba(219,167,47,.8);
  animation: glow 3.6s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--line);
  background: transparent; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 17px; height: 1.5px; margin: 4px auto;
  background: var(--paper);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  margin-top: 10px;
  padding: 14px 10px;
  border-radius: var(--radius-lg);
  background: rgba(10,9,8,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mobile-nav a {
  display: block; padding: 14px 18px; border-radius: 14px;
  font-size: .95rem; font-weight: 600;
}
.mobile-nav a:hover { background: rgba(255,253,248,.06); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  /* Black under the video kills the white flash before it loads, and is
     the visible backdrop if the file is missing entirely. */
  background:
    radial-gradient(120% 90% at 18% 62%, rgba(182,73,46,.20), transparent 55%),
    radial-gradient(90% 70% at 12% 48%, rgba(219,167,47,.14), transparent 60%),
    #06060a;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Grade, not a flat scrim. Darkest on the right, where the copy sits, and
   thinnest on the left, where the lit doorway is — so the footage keeps its
   depth instead of being flattened into wallpaper. */
.hero-grade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,6,10,.30) 0%, rgba(6,6,10,.42) 38%, rgba(6,6,10,.80) 72%, rgba(6,6,10,.90) 100%),
    linear-gradient(180deg, rgba(6,6,10,.62) 0%, transparent 30%);
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 22vh;
  z-index: 2; pointer-events: none;
  background: linear-gradient(to top, var(--ink), transparent);
}

.hero-inner {
  position: relative; z-index: 3;
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
  padding: 120px 0 90px;
  display: flex;
  justify-content: flex-end;   /* copy right, subject left */
}
.hero-copy { max-width: 540px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 7.4vw, 6.2rem);
  line-height: .96;
  letter-spacing: -.035em;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero h1 em { font-style: italic; color: var(--saffron); }

.hero-lede {
  max-width: 30ch;
  margin-top: 26px;
  color: rgba(255,253,248,.78);
  font-size: 1.02rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 4;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid rgba(255,253,248,.28);
  border-radius: 999px;
}
.scroll-cue span {
  display: block; width: 3px; height: 7px; margin: 8px auto 0;
  border-radius: 999px; background: var(--paper);
  animation: cue 2.1s var(--ease) infinite;
}
@keyframes cue {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { padding: clamp(90px, 14vw, 170px) 0; }
.statement-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  margin-top: 54px;
  padding-top: 44px;
  border-top: 1px solid var(--line-soft);
}
.statement-grid > p { color: var(--muted); font-size: 1.08rem; max-width: 46ch; }

.facts { display: grid; gap: 22px; align-content: start; }
.facts div { display: grid; gap: 3px; }
.facts dt {
  font-size: .66rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-dim);
}
.facts dd { font-family: var(--serif); font-size: 1.5rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu { padding: clamp(70px, 10vw, 120px) 0; background: var(--ink-2); }

.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 76px;
}
.feat {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  transition: background .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.feat:hover { border-color: rgba(219,167,47,.45); background: #201c19; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.feat-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.feat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
/* Slow, barely-there push-in — the plate settles rather than snapping up. */
.feat:hover .feat-img img { transform: scale(1.035); }
.feat-body { padding: 24px 24px 26px; }
.feat-cat {
  font-size: .64rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--saffron);
}
.feat-body h3 {
  margin: 9px 0 7px;
  font-family: var(--serif); font-weight: 500; font-size: 1.6rem;
  letter-spacing: -.015em;
}
.feat-d { color: var(--muted); font-size: .9rem; min-height: 2.6em; }
.feat-p { margin-top: 14px; font-family: var(--serif); font-size: 1.35rem; }
.feat-p span { color: var(--ember-lit); }

.menu-tools {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
  margin-bottom: 34px;
}
.tabs { display: flex; flex-wrap: wrap; gap: 8px; transition: opacity .3s var(--ease); }
.tabs.muted { opacity: .35; }
.tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: .8rem; font-weight: 600;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.tab:hover { border-color: rgba(255,253,248,.35); }
.tab i { font-style: normal; font-size: .68rem; color: var(--muted-dim); }
.tab.on { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.tab.on i { color: rgba(10,9,8,.5); }

.search {
  position: relative;
  display: flex; align-items: center;
  min-width: 230px;
}
.search svg {
  position: absolute; left: 15px;
  width: 16px; height: 16px;
  fill: none; stroke: var(--muted-dim); stroke-width: 1.8; stroke-linecap: round;
}
.search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,248,.03);
  font-size: .88rem;
}
.search input::placeholder { color: var(--muted-dim); }
.search input:focus { border-color: rgba(219,167,47,.5); }
/* Safari draws its own clear button; ours is the only one we want. */
.search input::-webkit-search-cancel-button { -webkit-appearance: none; }

.items { display: grid; gap: 2px; }
.item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  transition: background .25s var(--ease);
}
.item:hover { background: rgba(255,253,248,.04); }
.item-th {
  width: 62px; height: 62px;
  border-radius: 12px; object-fit: cover;
  background: var(--ink-3);
}
.item-th--none {
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.3rem;
  color: var(--muted-dim);
  border: 1px solid var(--line-soft);
}
.item-n { font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.badge {
  font-style: normal;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(219,167,47,.15); color: var(--saffron);
  font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.item-d { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.item-cat {
  margin-top: 3px;
  font-size: .64rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-dim);
}
.item-p {
  font-family: var(--serif); font-size: 1.2rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.item-p span { color: var(--ember-lit); }

.empty { padding: 48px 0; text-align: center; color: var(--muted); }
.menu-note {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-dim); font-size: .8rem;
  max-width: 60ch;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: clamp(70px, 10vw, 120px) 0; }
.strip {
  display: flex; gap: 16px;
  padding: 4px 0 30px;
  padding-inline: max(22px, calc((100vw - var(--container)) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.shot {
  position: relative;
  flex: 0 0 clamp(240px, 30vw, 350px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--ink-3);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.shot:hover img { transform: scale(1.035); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 44px 20px 18px;
  font-family: var(--serif); font-size: 1.2rem;
  background: linear-gradient(to top, rgba(6,6,10,.9), transparent);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: clamp(70px, 10vw, 120px) 0; }
.reviews-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.rating-lockup { display: flex; align-items: center; gap: 14px; }
.rating-lockup strong { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.rating-lockup .stars { color: var(--saffron); letter-spacing: .18em; font-size: .82rem; }
.rating-lockup small { display: block; margin-top: 3px; color: var(--muted-dim); font-size: .74rem; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  min-height: 232px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--ink-3);
  transition: background .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.review-card:hover { border-color: rgba(219,167,47,.45); background: #201c19; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.review-stars { color: var(--saffron); letter-spacing: .18em; font-size: .78rem; margin-bottom: 14px; }
.review-quote {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.06rem; line-height: 1.45; letter-spacing: -.01em;
  flex: 1;
}
.review-meta {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: var(--muted-dim);
}
.js-reveal .review-grid .review-card:nth-child(2) { transition-delay: .06s; }
.js-reveal .review-grid .review-card:nth-child(3) { transition-delay: .12s; }
.js-reveal .review-grid .review-card:nth-child(4) { transition-delay: .18s; }
.js-reveal .review-grid .review-card:nth-child(5) { transition-delay: .24s; }
.js-reveal .review-grid .review-card:nth-child(6) { transition-delay: .3s; }

/* ============================================================
   INFO
   ============================================================ */
.info { padding: clamp(70px, 10vw, 120px) 0; background: var(--ink-2); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  padding: 30px 26px 32px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--ink-3);
}
.card h3 {
  font-size: .66rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--saffron);
}
.card-big {
  margin: 14px 0 10px;
  font-family: var(--serif); font-weight: 500; font-size: 2.1rem;
  letter-spacing: -.02em;
}
.card p:not(.card-big) { color: var(--muted); font-size: .9rem; }
.link {
  display: inline-block; margin-top: 14px;
  font-size: .8rem; font-weight: 700;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,253,248,.3);
  padding-bottom: 2px;
}
.link:hover { border-color: var(--saffron); color: var(--saffron); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: clamp(90px, 13vw, 160px) 0 60px;
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(182,73,46,.16), transparent 60%),
    var(--ink);
}
.foot-h { margin-bottom: 34px; }
.foot-meta { margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--line-soft); }
.foot-meta p { color: var(--muted-dim); font-size: .82rem; }
.disclaim { margin-top: 8px; opacity: .75; }

/* ============================================================
   REVEAL

   Content is visible by default and only hidden once main.js has added
   `js-reveal` to <html>. Hiding it in plain CSS would mean a script error,
   a blocked file or an observer that never fires leaves the entire page
   below the hero permanently invisible — a decorative animation must never
   be able to swallow the content it decorates.
   ============================================================ */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-reveal .reveal.in { opacity: 1; transform: none; }

/* Cards in a row shouldn't all fade in on the same frame — that dead-uniform
   sweep is its own tell. Let siblings arrive a beat apart. */
.js-reveal .featured .feat:nth-child(2) { transition-delay: .08s; }
.js-reveal .featured .feat:nth-child(3) { transition-delay: .16s; }
.js-reveal .cards .card:nth-child(2) { transition-delay: .06s; }
.js-reveal .cards .card:nth-child(3) { transition-delay: .12s; }
.js-reveal .cards .card:nth-child(4) { transition-delay: .18s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .featured { grid-template-columns: 1fr; }
  .feat-d { min-height: 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .statement-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 90px; }
  .nav-links, .live { display: none; }
  .nav-toggle { display: block; }
  .nav { padding-left: 18px; }

  /* Centre the hero copy once there is no room to sit it beside the subject. */
  .hero-inner { justify-content: center; padding: 130px 0 110px; }
  .hero-copy { max-width: 100%; text-align: center; }
  .hero-lede { max-width: 100%; margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-grade {
    background:
      linear-gradient(180deg, rgba(6,6,10,.72) 0%, rgba(6,6,10,.45) 40%, rgba(6,6,10,.86) 100%);
  }
  .scroll-cue { display: none; }

  .menu-tools { flex-direction: column; align-items: stretch; }
  .item { grid-template-columns: 52px 1fr auto; gap: 14px; padding: 14px 10px; }
  .item-th { width: 52px; height: 52px; }
  .cards { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .reviews-head { align-items: flex-start; }
}

/* ============================================================
   REDUCED MOTION
   The video is the page's whole idea, so this does not merely slow things
   down — it stops the loop and shows the poster instead, which is why the
   poster is generated from the same processed frames.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js-reveal .reveal { opacity: 1; transform: none; }
  .scroll-cue span, .live-dot { animation: none; }
  .strip { scroll-snap-type: none; }
}
