/* ============================================================
   TALLO — American flair. Caribbean soul.
   Palette sampled from the Tallo logo (espresso trunk, olive leaves)
   and the room (black marble, brass rails, gold twig chandeliers).
   Type: Marcellus (Roman caps, echoes the wordmark) ·
         Instrument Serif italic (accent) · Hanken Grotesk (body)
   ============================================================ */
:root {
  --ink:      #0d0a08;
  --ink-2:    #15100c;
  --ink-3:    #1d1712;
  --espresso: #2b1710;
  --bark:     #3d251b;
  --brass:    #c9a24f;
  --brass-2:  #e5c67a;
  --olive:    #8a9556;
  --cream:    #f4ecdd;
  --sand:     #cbb894;
  --muted:    #a08f76;
  --rojo:     #b8302c;

  --font-display: "Marcellus", "Times New Roman", serif;
  --font-accent:  "Instrument Serif", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --pad: clamp(20px, 5vw, 72px);
  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; scrollbar-width: none; -ms-overflow-style: none; scrollbar-gutter: auto; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; width: 0; height: 0; }
/* Page-level scroll progress (replaces the native scrollbar) */
.page-progress { position: fixed; left: 0; top: 0; height: 2px; width: 100%; z-index: 95; pointer-events: none; background: transparent; }
.page-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brass), var(--brass-2)); box-shadow: 0 0 10px rgba(201,162,79,.5); transition: width .08s linear; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, canvas, video { display: block; max-width: 100%; }
img { height: auto; }   /* width/height attrs are hints for CLS; CSS aspect-ratio/height rules take over */
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--brass); color: var(--ink); }

/* ---------- Utilities ---------- */
.wrap { width: min(1240px, 100% - 2 * var(--pad)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brass); opacity: .7; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--brass); opacity: .7; }
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .01em;
  color: var(--cream);
}
.h1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); }
.h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--brass-2);
}
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--sand); max-width: 58ch; }
.muted { color: var(--muted); }
.gold-rule { width: 64px; height: 1px; background: linear-gradient(90deg, var(--brass), transparent); margin: 22px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border: 1px solid var(--brass);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s;
  white-space: nowrap;
}
.btn:hover { background: var(--brass); color: var(--ink); transform: translateY(-1px); }
.btn.solid { background: var(--brass); color: var(--ink); }
.btn.solid:hover { background: var(--brass-2); border-color: var(--brass-2); }
.btn.ghost { border-color: rgba(244,236,221,.28); }
.btn.ghost:hover { border-color: var(--cream); background: var(--cream); color: var(--ink); }
.btn.sm { padding: 11px 18px; font-size: 11px; }
.btn svg { width: 14px; height: 14px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(13,10,8,.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-color: rgba(201,162,79,.14); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo .wordmark { font-family: var(--font-display); font-size: 22px; letter-spacing: .28em; color: var(--cream); padding-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-body); font-weight: 500; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,236,221,.82); position: relative; padding: 6px 0;
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--brass); transition: width .35s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: transform .35s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 85; background: rgba(13,10,8,.97);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
  padding: 90px 24px 40px;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a.big { font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3rem); color: var(--cream); padding: 10px; letter-spacing: .06em; }
.mobile-menu .row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.mobile-menu .meta { margin-top: 30px; color: var(--muted); font-size: 13px; text-align: center; letter-spacing: .08em; }

/* ---------- Scrub sections (canvas frame sequence) ---------- */
.scrub { position: relative; height: 480vh; }
.scrub.hero { height: 560vh; }
.scrub .sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh; width: 100%; overflow: hidden;
  background: var(--ink);
}
.scrub canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.scrub .vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 40%, rgba(13,10,8,.55) 100%),
    linear-gradient(180deg, rgba(13,10,8,.55) 0%, transparent 28%, transparent 62%, rgba(13,10,8,.85) 100%);
}
.scrub .grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.scrub .overlay { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.scrub .reveal-line {
  position: absolute; left: 0; right: 0;
  padding: 0 var(--pad);
  opacity: 0; will-change: opacity, transform;
  pointer-events: none;
}
.scrub .reveal-line .inner { pointer-events: auto; text-shadow: 0 2px 22px rgba(13,10,8,.85), 0 0 3px rgba(13,10,8,.7); }
.scrub .reveal-line .btn { text-shadow: none; }
.scrub .reveal-line.center .inner { position: relative; padding: 30px 40px; }
.scrub .reveal-line.center .inner::before { content: ""; position: absolute; inset: -12% -22%; background: radial-gradient(closest-side, rgba(13,10,8,.62), rgba(13,10,8,0)); z-index: -1; pointer-events: none; }
.scrub .reveal-line.tl .inner, .scrub .reveal-line.bl .inner, .scrub .reveal-line.br .inner, .scrub .reveal-line.ml .inner, .scrub .reveal-line.mr .inner { position: relative; padding: 24px 28px; }
.scrub .reveal-line.tl .inner::before, .scrub .reveal-line.bl .inner::before, .scrub .reveal-line.br .inner::before, .scrub .reveal-line.ml .inner::before, .scrub .reveal-line.mr .inner::before { content: ""; position: absolute; inset: -10% -18%; background: radial-gradient(closest-side, rgba(13,10,8,.55), rgba(13,10,8,0)); z-index: -1; pointer-events: none; }
.scrub .reveal-line.br .inner::before, .scrub .reveal-line.mr .inner::before { inset: -10% -18% -10% -30%; }
.reveal-line.center { top: 50%; transform: translateY(-50%); text-align: center; }
.reveal-line.center .inner { margin-inline: auto; max-width: 900px; }
.reveal-line.bl { bottom: 12vh; text-align: left; }
.reveal-line.bl .inner { max-width: 640px; }
.reveal-line.br { bottom: 12vh; text-align: right; }
.reveal-line.br .inner { max-width: 640px; margin-left: auto; }
.reveal-line.tl { top: 18vh; text-align: left; }
.reveal-line.tl .inner { max-width: 640px; }
.reveal-line.ml { top: 50%; transform: translateY(-50%); text-align: left; }
.reveal-line.ml .inner { max-width: 640px; }
.reveal-line.mr { top: 50%; transform: translateY(-50%); text-align: right; }
.reveal-line.mr .inner { max-width: 640px; margin-left: auto; }
.reveal-line.mr .desc { margin-left: auto; }
.reveal-line.mr .ctas { justify-content: flex-end; }
.reveal-line .kicker { margin-bottom: 14px; }
.reveal-line .price { font-family: var(--font-display); color: var(--brass-2); font-size: 1.1em; }
.reveal-line .desc { color: var(--sand); font-size: clamp(.98rem, 1.3vw, 1.15rem); margin-top: 14px; max-width: 52ch; }
.reveal-line.center .desc { margin-inline: auto; }
.reveal-line.br .desc { margin-left: auto; }
.reveal-line .ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.reveal-line.center .ctas { justify-content: center; }
.reveal-line.br .ctas { justify-content: flex-end; }

.hero-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-brand img { width: clamp(150px, 20vw, 220px); height: auto; filter: drop-shadow(0 8px 30px rgba(0,0,0,.6)); }
.hero-title { font-family: var(--font-display); font-size: clamp(3.4rem, 11vw, 9rem); line-height: .95; letter-spacing: .12em; padding-left: .12em; text-shadow: 0 10px 40px rgba(0,0,0,.6); }
.hero-tag { font-family: var(--font-accent); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--brass-2); margin-top: 6px; }
.hero-sub { color: var(--sand); letter-spacing: .12em; text-transform: uppercase; font-size: 12px; font-weight: 500; margin-top: 16px; }

.scrub .progress { position: absolute; left: var(--pad); right: var(--pad); bottom: 30px; height: 1px; background: rgba(244,236,221,.14); z-index: 6; }
.scrub .progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--brass), var(--brass-2)); }
.scroll-hint {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); z-index: 6;
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(244,236,221,.6);
  display: flex; flex-direction: column; align-items: center; gap: 10px; transition: opacity .4s;
}
.scroll-hint i { display: block; width: 1px; height: 38px; background: linear-gradient(180deg, var(--brass), transparent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.scrub .corner { position: absolute; z-index: 6; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(244,236,221,.55); font-weight: 500; }
.scrub .corner.l { left: var(--pad); bottom: 44px; }
.scrub .corner.r { right: var(--pad); bottom: 44px; }
.loader { position: absolute; inset: 0; z-index: 8; display: grid; place-items: center; background: var(--ink); transition: opacity .6s var(--ease); }
.loader.done { opacity: 0; pointer-events: none; }
.loader .bar { width: 160px; height: 1px; background: rgba(244,236,221,.15); position: relative; overflow: hidden; }
.loader .bar i { position: absolute; inset: 0; width: 0; background: var(--brass); }
.loader img { width: 120px; margin-bottom: 20px; opacity: .9; }

/* ---------- Sections ---------- */
section.block { position: relative; padding: clamp(80px, 11vw, 150px) 0; }
section.block.tight { padding: clamp(60px, 8vw, 100px) 0; }
.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { align-items: center; text-align: center; }
.section-head .lede { margin-top: 4px; }

/* Intro */
.intro { background: var(--ink); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.intro-quote { font-family: var(--font-accent); font-style: italic; font-size: clamp(2rem, 4.2vw, 3.6rem); line-height: 1.12; color: var(--cream); }
.intro-quote em { color: var(--brass-2); font-style: italic; }
.intro p + p { margin-top: 18px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,162,79,.16); border: 1px solid rgba(201,162,79,.16); margin-top: clamp(50px, 6vw, 80px); }
.fact { background: var(--ink); padding: 26px 24px; }
.fact .k { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--brass); font-weight: 500; }
.fact .v { font-family: var(--font-display); font-size: clamp(1.15rem, 1.6vw, 1.45rem); margin-top: 8px; color: var(--cream); }
.fact .s { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Ticker */
.ticker { border-top: 1px solid rgba(201,162,79,.18); border-bottom: 1px solid rgba(201,162,79,.18); overflow: hidden; background: var(--ink-2); padding: 16px 0; }
.ticker-track { display: flex; gap: 0; width: max-content; animation: tick 60s linear infinite; }
.ticker span { font-family: var(--font-display); font-size: 15px; letter-spacing: .28em; text-transform: uppercase; color: var(--sand); padding: 0 34px; white-space: nowrap; }
.ticker span::after { content: "◆"; color: var(--brass); font-size: 8px; margin-left: 34px; vertical-align: middle; }
@keyframes tick { to { transform: translateX(-50%); } }

/* Signature dishes */
.signatures { background: var(--ink-2); }
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dish {
  position: relative; overflow: hidden; border-radius: 3px; background: var(--ink-3);
  border: 1px solid rgba(201,162,79,.12);
  transition: transform .5s var(--ease), border-color .5s;
}
.dish:hover { transform: translateY(-4px); border-color: rgba(201,162,79,.4); }
.dish .ph { aspect-ratio: 4 / 3; overflow: hidden; }
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.dish:hover img { transform: scale(1.05); }
.dish .body { padding: 20px 22px 24px; }
.dish .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.dish h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; }
.dish .p { font-family: var(--font-display); color: var(--brass-2); }
.dish .d { color: var(--muted); font-size: 14.5px; margin-top: 8px; line-height: 1.5; }
.dish .tag { position: absolute; top: 14px; left: 14px; font-size: 10px; letter-spacing: .26em; text-transform: uppercase; background: rgba(13,10,8,.7); backdrop-filter: blur(6px); border: 1px solid rgba(201,162,79,.35); color: var(--brass-2); padding: 6px 10px; border-radius: 2px; }
.center-cta { display: flex; justify-content: center; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

/* Chef */
.chef { background: var(--ink); overflow: hidden; }
.chef-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.chef-photo { position: relative; }
.chef-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: 3px; filter: saturate(.95) contrast(1.02); }
.chef-photo::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(201,162,79,.35); border-radius: 3px; z-index: -1; }
.chef-photo .badge { position: absolute; left: -14px; bottom: 30px; background: var(--brass); color: var(--ink); padding: 12px 16px; border-radius: 2px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.chef-name { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.chef-role { font-family: var(--font-accent); font-style: italic; color: var(--brass-2); font-size: clamp(1.3rem, 2vw, 1.7rem); margin-top: 4px; }
.chef p + p { margin-top: 16px; }
.chef blockquote { margin: 28px 0 0; padding-left: 22px; border-left: 1px solid var(--brass); font-family: var(--font-accent); font-style: italic; font-size: clamp(1.25rem, 1.8vw, 1.5rem); color: var(--cream); line-height: 1.4; }
.chef blockquote cite { display: block; margin-top: 10px; font-family: var(--font-body); font-style: normal; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); }
.chef-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.pillar .n { font-family: var(--font-display); color: var(--brass-2); font-size: 1.05rem; }
.pillar .t { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Story */
.story { background: var(--ink-2); position: relative; overflow: hidden; }
.story .watermark { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: min(60vw, 720px); opacity: .05; pointer-events: none; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: start; position: relative; }
.story .big { font-family: var(--font-accent); font-style: italic; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.12; }
.story .big em { color: var(--brass-2); }
.story p + p { margin-top: 16px; }
.story-steps { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid rgba(201,162,79,.18); }
.story-steps .step { display: grid; grid-template-columns: 70px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(201,162,79,.18); }
.story-steps .num { font-family: var(--font-display); color: var(--brass); font-size: 1.05rem; letter-spacing: .1em; }
.story-steps h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; }
.story-steps p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* Moments (brunch / happy hour / winesday / event) */
.moments { background: var(--ink); }
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.moment { position: relative; border-radius: 3px; overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; border: 1px solid rgba(201,162,79,.12); }
.moment img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.moment picture { display: contents; }
.moment:hover img { transform: scale(1.04); }
.moment::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,10,8,.1) 0%, rgba(13,10,8,.35) 40%, rgba(13,10,8,.95) 100%); }
.moment .body { position: relative; z-index: 2; padding: 28px; }
.moment .body h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; margin-top: 10px; }
.moment .when { color: var(--brass-2); font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; margin-top: 4px; }
.moment .d { color: var(--sand); font-size: 14.5px; margin-top: 10px; }
.moment .body .btn { margin-top: 18px; }
.event-band { margin-top: 22px; border: 1px solid rgba(201,162,79,.3); border-radius: 3px; padding: 26px 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; background: linear-gradient(90deg, rgba(201,162,79,.08), transparent 60%); }
.event-band .date { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-2); }
.event-band .date b { display: block; font-size: 2.2rem; letter-spacing: 0; line-height: 1; color: var(--cream); font-weight: 400; }
.event-band h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; }
.event-band p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* Gallery */
.gallery { background: var(--ink-2); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 12px; }
.gal-grid figure { overflow: hidden; border-radius: 3px; position: relative; }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gal-grid figure:hover img { transform: scale(1.05); }
.gal-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-grid figure:nth-child(4) { grid-row: span 2; }
.gal-grid figcaption { position: absolute; left: 14px; bottom: 12px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--cream); background: rgba(13,10,8,.55); padding: 6px 10px; border-radius: 2px; backdrop-filter: blur(6px); }

/* Visit */
.visit { background: var(--ink); }
.visit-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 70px); align-items: stretch; }
.visit .h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.visit address { font-style: normal; font-size: 1.05rem; line-height: 1.7; margin-top: 18px; }
.visit address a:hover { color: var(--brass-2); }
.hours { margin-top: 26px; border-top: 1px solid rgba(201,162,79,.2); }
.hours li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(201,162,79,.14); font-size: 15px; }
.hours li span:first-child { color: var(--sand); }
.hours li.today span { color: var(--brass-2); }
.hours li.closed span:last-child { color: var(--muted); }
.visit .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.map { position: relative; min-height: 460px; border-radius: 3px; overflow: hidden; border: 1px solid rgba(201,162,79,.2); background: var(--ink-3); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.05) brightness(.92) sepia(.15); }
.map .pin { position: absolute; left: 14px; bottom: 14px; z-index: 2; background: rgba(13,10,8,.85); backdrop-filter: blur(8px); border: 1px solid rgba(201,162,79,.35); padding: 12px 14px; border-radius: 3px; font-size: 13px; line-height: 1.5; }
.map .pin b { display: block; font-family: var(--font-display); font-weight: 400; color: var(--brass-2); letter-spacing: .04em; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; padding: clamp(80px, 12vw, 160px) 0; text-align: center; }
.cta-band .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .55; transform: scale(1.02); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 70% at 50% 50%, rgba(13,10,8,.35), rgba(13,10,8,.9)); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band .h-display { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
.cta-band .row { display: flex; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* Footer */
footer { background: var(--ink-2); border-top: 1px solid rgba(201,162,79,.16); padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.foot-grid img { width: 130px; }
.foot-grid h5 { font-family: var(--font-display); font-weight: 400; letter-spacing: .2em; text-transform: uppercase; font-size: 12px; color: var(--brass); margin-bottom: 14px; }
.foot-grid li { margin: 8px 0; font-size: 14.5px; color: var(--sand); }
.foot-grid li a:hover { color: var(--brass-2); }
.foot-grid p { color: var(--muted); font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(201,162,79,.3); border-radius: 50%; color: var(--sand); transition: all .3s; }
.social a:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.social svg { width: 16px; height: 16px; fill: currentColor; }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(201,162,79,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }

/* ---------- Menu page ---------- */
.menu-hero { position: relative; min-height: 62vh; display: grid; place-items: end start; padding: 140px 0 60px; overflow: hidden; }
.menu-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.menu-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,10,8,.55), rgba(13,10,8,.35) 40%, rgba(13,10,8,.98)); }
.menu-hero .wrap { position: relative; z-index: 2; }
.menu-hero .h1 { margin-top: 14px; }
.menu-hero .row { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.menu-tabs { position: sticky; top: var(--nav-h); z-index: 40; background: rgba(13,10,8,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-block: 1px solid rgba(201,162,79,.16); }
.menu-tabs .wrap { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-block: 10px; }
.menu-tabs .wrap::-webkit-scrollbar { display: none; }
.menu-tabs a { flex: 0 0 auto; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; padding: 10px 14px; border-radius: 2px; color: rgba(244,236,221,.7); border: 1px solid transparent; transition: all .3s; }
.menu-tabs a:hover, .menu-tabs a.active { color: var(--brass-2); border-color: rgba(201,162,79,.4); }
.menu-section { padding: clamp(60px, 8vw, 100px) 0 10px; scroll-margin-top: calc(var(--nav-h) + var(--nowbar-h) + 70px); }
.menu-section .section-head { margin-bottom: 30px; }
.menu-note { color: var(--muted); font-size: 14px; font-style: italic; font-family: var(--font-accent); font-size: 1.15rem; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(30px, 5vw, 70px); }
.mi { padding: 16px 0; border-bottom: 1px solid rgba(201,162,79,.14); break-inside: avoid; }
.mi .row { display: flex; align-items: baseline; gap: 10px; }
.mi .n { font-family: var(--font-display); font-size: 1.12rem; color: var(--cream); }
.mi .dots { flex: 1; border-bottom: 1px dotted rgba(201,162,79,.4); transform: translateY(-5px); min-width: 20px; }
.mi .p { font-family: var(--font-display); color: var(--brass-2); font-size: 1.05rem; white-space: nowrap; }
.mi .d { color: var(--muted); font-size: 14.5px; margin-top: 5px; line-height: 1.5; }
.mi .x { color: var(--olive); font-size: 13px; margin-top: 5px; letter-spacing: .02em; }
.mi.simple { padding: 10px 0; }
.mi.simple .n { font-size: 1rem; font-family: var(--font-body); font-weight: 400; }
.wine-table { width: 100%; border-collapse: collapse; }
.wine-table th { text-align: left; font-family: var(--font-display); font-weight: 400; color: var(--brass); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; padding: 24px 0 8px; border-bottom: 1px solid rgba(201,162,79,.3); }
.wine-table th.r, .wine-table td.r { text-align: right; width: 64px; font-family: var(--font-display); }
.wine-table td { padding: 10px 0; border-bottom: 1px solid rgba(201,162,79,.12); font-size: 15px; color: var(--sand); }
.wine-table td.r { color: var(--brass-2); }
.hh-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.hh-box { border: 1px solid rgba(201,162,79,.3); padding: 26px; border-radius: 3px; background: linear-gradient(180deg, rgba(201,162,79,.06), transparent); }
.hh-box h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; }
.hh-box .big { font-family: var(--font-display); font-size: 2.6rem; color: var(--brass-2); line-height: 1; }
.hh-box p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.menu-cta { padding: clamp(60px, 8vw, 100px) 0; text-align: center; }
.disclaimer { color: var(--muted); font-size: 12.5px; line-height: 1.6; max-width: 80ch; margin: 30px auto 0; text-align: center; }
.menu-photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 40px; }
.menu-photo-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .dish-grid, .moment-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --nav-h: 66px; }
  .nav-links, .nav-cta .btn.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img { height: 44px; }
  .intro-grid, .chef-grid, .story-grid, .visit-grid, .hh-grid { grid-template-columns: 1fr; }
  .chef-photo { max-width: 460px; }
  .facts { grid-template-columns: 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  .event-band { grid-template-columns: 1fr; gap: 14px; }
  .scrub { height: 380vh; }
  .scrub.hero { height: 440vh; }
  .reveal-line.bl, .reveal-line.br { bottom: 14vh; text-align: left; }
  .reveal-line.mr { text-align: left; }
  .reveal-line.mr .inner { margin-left: 0; }
  .reveal-line.mr .desc { margin-left: 0; }
  .reveal-line.mr .ctas { justify-content: flex-start; }
  /* On phones the 9:16 clips put the subject in the lower 2/3 — pin secondary copy to the top (dark room/steam area) */
  .reveal-line.ml, .reveal-line.mr { top: 13vh; bottom: auto; transform: none; }
  .scrub.hero .reveal-line.center:first-child { top: 46%; }
  .hero-brand img { width: 110px; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-title .hero-sub { font-size: 10px; letter-spacing: .2em; }
  .scrub .reveal-line.center .inner::before { inset: -6% -14%; background: radial-gradient(closest-side, rgba(13,10,8,.5), rgba(13,10,8,0)); }
  .reveal-line.br .inner { margin-left: 0; }
  .reveal-line.br .desc { margin-left: 0; }
  .reveal-line.br .ctas { justify-content: flex-start; }
  .scrub .corner.r { display: none; }
  .scrub .vignette { background: radial-gradient(120% 90% at 50% 40%, transparent 40%, rgba(13,10,8,.5) 100%), linear-gradient(180deg, rgba(13,10,8,.6) 0%, transparent 26%, transparent 48%, rgba(13,10,8,.55) 68%, rgba(13,10,8,.94) 100%); }
  .map { min-height: 340px; }
  .menu-photo-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .dish-grid, .moment-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gal-grid figure:nth-child(4) { grid-row: span 1; }
  .foot-grid { grid-template-columns: 1fr; }
  .chef-pillars { grid-template-columns: 1fr; gap: 12px; }
  .hero-title { letter-spacing: .08em; }
  .btn { padding: 14px 20px; letter-spacing: .18em; }
  .reveal-line .ctas .btn { flex: 1 1 auto; }
  .moment { min-height: 380px; }
  .scrub .corner { display: none; }
  .scroll-hint { bottom: 36px; }
}

/* ---------- Added: a11y, poster, H1 sub, rating, FAQ, contact, brunch ---------- */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--brass); color: var(--ink); padding: 10px 16px; border-radius: 2px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 12px; outline: 2px solid var(--cream); }
.scrub .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-title .hero-sub { display: block; font-family: var(--font-body); font-size: clamp(10px, 1.1vw, 12px); letter-spacing: .28em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-top: 12px; padding-left: 0; letter-spacing: .26em; line-height: 1.5; }
.rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding: 10px 14px; border: 1px solid rgba(201,162,79,.3); border-radius: 3px; font-size: 14px; color: var(--sand); transition: border-color .3s, background .3s; }
.rating:hover { border-color: var(--brass); background: rgba(201,162,79,.06); }
.rating .stars { color: var(--brass-2); letter-spacing: 2px; font-size: 15px; }
.rating .stars i { font-style: normal; opacity: .45; }
.rating b { color: var(--cream); font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; }
.faq { background: var(--ink-2); }
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid rgba(201,162,79,.22); }
.faq-list details { border-bottom: 1px solid rgba(201,162,79,.16); }
.faq-list summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--brass); font-family: var(--font-body); font-weight: 300; font-size: 26px; line-height: 1; transition: transform .3s var(--ease); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p { padding: 0 0 20px; color: var(--sand); font-size: 15.5px; max-width: 70ch; }
.faq-list p a { color: var(--brass-2); border-bottom: 1px solid rgba(229,198,122,.4); }

/* Contact page */
.page-hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 50px; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .5; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,10,8,.6), rgba(13,10,8,.55) 50%, var(--ink) 100%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .h1 { margin-top: 14px; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.form { display: grid; gap: 16px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); font-weight: 500; }
.field input, .field textarea, .field select { width: 100%; background: var(--ink-3); border: 1px solid rgba(201,162,79,.22); color: var(--cream); font: 300 16px/1.5 var(--font-body); padding: 14px 16px; border-radius: 2px; transition: border-color .3s, box-shadow .3s; -webkit-appearance: none; appearance: none; }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field select option { background: var(--ink-3); color: var(--cream); }
.field input::placeholder, .field textarea::placeholder { color: rgba(203,184,148,.45); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(201,162,79,.15); }
.field textarea { min-height: 150px; resize: vertical; }
.form .fine { color: var(--muted); font-size: 13px; }
.form .status { font-size: 14px; color: var(--brass-2); min-height: 1.4em; }
.contact-side .card { border: 1px solid rgba(201,162,79,.2); border-radius: 3px; padding: 26px; background: linear-gradient(180deg, rgba(201,162,79,.05), transparent); }
.contact-side .card + .card { margin-top: 16px; }
.contact-side h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; margin-bottom: 10px; }
.contact-side p, .contact-side li { color: var(--sand); font-size: 15px; }
.contact-side a:hover { color: var(--brass-2); }
.contact-side .hours { margin-top: 12px; }
.map.tall { min-height: 420px; margin-top: 40px; }

/* Brunch page */
.brunch-hero { position: relative; padding: calc(var(--nav-h) + 40px) 0 0; overflow: hidden; background: var(--ink); }
.brunch-hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.brunch-hero .copy { padding-bottom: clamp(50px, 6vw, 90px); }
.brunch-hero .h1 { margin-top: 14px; max-width: 12ch; }
.brunch-hero .row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.brunch-hero .when { font-family: var(--font-accent); font-style: italic; color: var(--brass-2); font-size: clamp(1.3rem, 2.4vw, 2rem); margin-top: 8px; }
.brunch-hero .photo { position: relative; align-self: center; margin-bottom: clamp(50px, 6vw, 90px); }
.brunch-hero .photo img { width: 100%; height: clamp(380px, 62vh, 600px); object-fit: cover; object-position: 50% 58%; border-radius: 3px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.brunch-hero .photo::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid rgba(201,162,79,.35); border-radius: 3px; z-index: -1; }
.brunch-hero .photo .chip { position: absolute; left: -16px; top: 28px; background: var(--brass); color: var(--ink); padding: 12px 16px; border-radius: 2px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; }
.split picture { display: contents; }
.split.flip > :first-child { order: 2; }
.brunch-list { margin-top: 20px; }
.brunch-list .mi { padding: 12px 0; }
.photo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photo-row figure { position: relative; overflow: hidden; border-radius: 3px; }
.photo-row img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1.2s var(--ease); }
.photo-row picture, .menu-photo-strip picture, .brunch-hero .photo picture { display: contents; }
.photo-row figure:hover img { transform: scale(1.05); }
.photo-row figcaption { position: absolute; left: 12px; bottom: 10px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; background: rgba(13,10,8,.6); padding: 6px 10px; border-radius: 2px; backdrop-filter: blur(6px); }

@media (max-width: 900px) {
  .contact-grid, .split { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: 0; }
  .split img { aspect-ratio: 4/3; }
  .form .row2 { grid-template-columns: 1fr; }
  .photo-row { grid-template-columns: repeat(2, 1fr); }
  .brunch-hero .wrap { grid-template-columns: 1fr; }
  .brunch-hero .photo { order: -1; margin: 0 calc(-1 * var(--pad)); }
  .brunch-hero .photo img { height: 58vw; max-height: 420px; object-position: 50% 62%; border-radius: 0; box-shadow: none; }
  .brunch-hero .photo::before { display: none; }
  .brunch-hero .photo .chip { left: var(--pad); }
  .brunch-hero .copy { padding-top: 28px; }
}

/* Focal points for portrait photos cropped into wider boxes */
.fp-55 { object-position: 50% 55% !important; }
.fp-65 { object-position: 50% 65% !important; }
.fp-70 { object-position: 50% 70% !important; }
.fp-80 { object-position: 50% 80% !important; }
.fp-92 { object-position: 50% 92% !important; }

.field input, .field textarea, .field select { color-scheme: dark; }


/* ---------- "Right now at Tallo" smart bar ---------- */
:root { --nowbar-h: 0px; }
.now-bar { position: fixed; left: 0; right: 0; top: var(--nav-h); z-index: 88; height: 36px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 0 44px 0 var(--pad); background: rgba(21,16,12,.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,162,79,.18); font-size: 12.5px; letter-spacing: .06em; color: var(--sand); transform: translateY(-110%); opacity: 0; transition: transform .5s var(--ease), opacity .4s; }
.now-bar.show { transform: none; opacity: 1; }
.now-bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass-2); box-shadow: 0 0 0 0 rgba(229,198,122,.6); animation: pulse 2.2s ease-out infinite; flex: 0 0 auto; }
.now-bar.closed .dot { background: var(--muted); animation: none; box-shadow: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(229,198,122,.55); } 70% { box-shadow: 0 0 0 8px rgba(229,198,122,0); } 100% { box-shadow: 0 0 0 0 rgba(229,198,122,0); } }
.now-bar .k { color: var(--brass); font-weight: 600; text-transform: uppercase; letter-spacing: .24em; font-size: 10.5px; flex: 0 0 auto; }
.now-bar .msg { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.now-bar .msg b { color: var(--cream); font-weight: 500; }
.now-bar .go { flex: 0 0 auto; color: var(--brass-2); border-bottom: 1px solid rgba(229,198,122,.45); padding-bottom: 1px; font-weight: 500; white-space: nowrap; }
.now-bar .go:hover { color: var(--cream); border-color: var(--cream); }
.now-bar .x { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; display: grid; place-items: center; color: var(--muted); font-size: 18px; line-height: 1; border-radius: 50%; }
.now-bar .x:hover { color: var(--cream); background: rgba(255,255,255,.06); }
.menu-tabs { top: calc(var(--nav-h) + var(--nowbar-h)); }
@media (max-width: 600px) {
  .now-bar { font-size: 12px; gap: 10px; padding-left: 16px; }
  .now-bar .k { display: none; }
}

/* ---------- Reviews strip ---------- */
.reviews { background: var(--ink); position: relative; }
.rev-head { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px, 4vw, 48px); align-items: center; margin-bottom: 30px; }
.rev-score { display: flex; align-items: baseline; gap: 14px; }
.rev-score .n { font-family: var(--font-display); font-size: clamp(3.4rem, 6vw, 5rem); line-height: 1; color: var(--cream); }
.rev-score .s { display: grid; gap: 4px; }
.rev-score .stars { color: var(--brass-2); font-size: 18px; letter-spacing: 3px; }
.rev-score .stars i { font-style: normal; opacity: .4; }
.rev-score .c { color: var(--muted); font-size: 13px; letter-spacing: .06em; }
.rev-head .lede { max-width: 40ch; font-size: 1.05rem; }
.rev-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.rev-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 0 18px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.rev-track::-webkit-scrollbar { display: none; }
.rev { scroll-snap-align: start; background: var(--ink-2); border: 1px solid rgba(201,162,79,.14); border-radius: 3px; padding: 26px 26px 22px; display: grid; grid-template-rows: auto 1fr auto; gap: 14px; min-height: 230px; transition: border-color .4s, transform .4s var(--ease); }
.rev:hover { border-color: rgba(201,162,79,.4); transform: translateY(-3px); }
.rev .stars { color: var(--brass-2); font-size: 13px; letter-spacing: 2px; }
.rev q { font-family: var(--font-accent); font-style: italic; font-size: clamp(1.2rem, 1.5vw, 1.4rem); line-height: 1.35; color: var(--cream); quotes: "\201C" "\201D"; }
.rev q::before { content: open-quote; color: var(--brass); }
.rev q::after { content: close-quote; color: var(--brass); }
.rev .who { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted); letter-spacing: .06em; }
.rev .who b { color: var(--sand); font-weight: 500; }
.rev .who .g { display: inline-flex; align-items: center; gap: 6px; }
.rev .who .g svg { width: 14px; height: 14px; }
.rev-more { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.rev-more button { width: 34px; height: 34px; border: 1px solid rgba(201,162,79,.3); border-radius: 50%; color: var(--sand); display: grid; place-items: center; transition: all .3s; }
.rev-more button:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
@media (max-width: 900px) {
  .rev-head { grid-template-columns: 1fr; }
  .rev-links { justify-content: flex-start; }
  .rev-track { grid-auto-columns: 84%; }
}
