/* ============================================================
   ENTOURAGE — night luxury design system
   noir warm base · brand gold · Prata display · Manrope body
   ============================================================ */

@import url('../../fonts/fonts.css');

:root {
  --noir: #0a0908;
  --noir-2: #100e0c;
  --charcoal: #161310;
  --line: #2a251e;
  --gold: #b59a5b;
  --gold-bright: #d4b878;
  --champagne: #e8d9b0;
  --ivory: #f0ead9;
  --smoke: #8a8378;
  --wine: #3d1f24;

  --font-display: 'Prata', 'Georgia', serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;

  --w-max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--noir);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--gold); color: var(--noir); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--champagne);
}

/* ---------- utilities ---------- */
.wrap { max-width: var(--w-max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hour-mark {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.hour-mark .hour {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--gold);
  white-space: nowrap;
}
.hour-mark .hour::after { content: ' —'; color: var(--line); }

/* ---------- night timeline (signature) ---------- */
.night-line {
  position: fixed;
  top: 0; left: calc(var(--pad) / 2.5);
  width: 1px; height: 100vh;
  background: var(--line);
  z-index: 5;
  pointer-events: none;
}
.night-line .progress {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(var(--gold), var(--gold-bright));
  transform-origin: top;
  transform: scaleY(0);
}
.night-line .dot {
  position: absolute; left: -2.5px; bottom: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px 2px rgba(212, 184, 120, 0.55);
}
@media (max-width: 900px) { .night-line { display: none; } }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom-color: var(--line);
}
.site-header .logo img { height: 30px; width: auto; }

.main-nav { display: flex; gap: clamp(18px, 2.6vw, 38px); align-items: center; }
.main-nav a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ivory);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.lang-switch { display: flex; gap: 2px; margin-left: 10px; align-items: baseline; }
.lang-switch form { display: inline; }
.lang-switch a, .lang-switch span, .lang-switch button {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 4px 7px;
  color: var(--smoke);
  text-transform: uppercase;
  transition: color 0.3s;
}
.lang-switch a:hover, .lang-switch button:hover { color: var(--champagne); }
.lang-switch .current { color: var(--gold); }

.reserve-btn {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--noir);
  background: var(--gold);
  padding: 12px 26px;
  transition: background 0.35s;
  display: inline-block;
}
.reserve-btn:hover { background: var(--gold-bright); }

.burger { display: none; z-index: 60; width: 30px; height: 22px; position: relative; }
.burger span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--champagne);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, top 0.4s var(--ease-out);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 0;
    background: rgba(10, 9, 8, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 16px; }
  .burger { display: block; }
  .site-header .reserve-btn { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-canvas {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-canvas { z-index: -1; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(181, 154, 91, 0.16), transparent 60%),
    linear-gradient(rgba(10, 9, 8, 0.5), rgba(10, 9, 8, 0.35) 55%, var(--noir));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 11.5vw, 168px);
  color: var(--champagne);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero-title .char { display: inline-block; }
.hero-title .dot { color: var(--gold); }

.hero-sub {
  margin-top: 22px;
  font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding: 0 16px;
}
.hero-tagline {
  margin-top: 26px;
  max-width: 520px;
  color: var(--ivory);
  font-size: clamp(15px, 1.5vw, 17px);
  padding: 0 20px;
}
.hero-cta { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  border: 1px solid var(--gold);
  padding: 13px 30px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  display: inline-block;
}
.btn-ghost::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.btn-ghost:hover { color: var(--noir); }
.btn-ghost:hover::before { transform: scaleY(1); }

.hero-scroll {
  position: absolute; bottom: 96px; left: 50%;
  transform: translateX(-50%);
  color: var(--smoke);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 42px;
  margin: 12px auto 0;
  background: linear-gradient(var(--gold), transparent);
  animation: drip 2.2s var(--ease-out) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- ticker ---------- */
.ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(10, 9, 8, 0.45);
  backdrop-filter: blur(6px);
}
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 0 34px;
  white-space: nowrap;
}
.ticker b { color: var(--gold); font-weight: 500; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- immersive dive-in video ---------- */
.immersive { position: relative; }
.immersive-stage {
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.immersive-frame {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: inset(24% 32% 24% 32%);
  overflow: hidden;
  will-change: clip-path;
}
.immersive-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10, 9, 8, 0.15), rgba(10, 9, 8, 0.4));
  pointer-events: none;
}
.immersive-frame video.main {
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 1;
}
.immersive-frame .blur-bg {
  position: absolute; inset: -4%;
  width: 108%; height: 108%;
  object-fit: cover;
  filter: blur(44px) brightness(0.55) saturate(1.15);
}
@media (max-width: 860px) {
  /* вертикальный рилс совпадает с экраном — подложка не нужна */
  .immersive-frame .blur-bg { display: none; }
  .immersive-frame video.main { object-fit: cover; }
}
.immersive-caption {
  position: absolute;
  left: 50%; bottom: clamp(40px, 8vh, 90px);
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  opacity: 0;
  width: 90%;
}
.immersive-caption p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 46px);
  color: var(--champagne);
  margin-top: 12px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
html.no-motion .immersive-frame { clip-path: none; }
html.no-motion .immersive-caption { opacity: 1; }

/* ---------- sections ---------- */
.section { padding: clamp(90px, 12vw, 150px) 0; position: relative; }
.section + .section { border-top: 1px solid transparent; }

.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 60px); margin-top: 14px; }
.section-head p { margin-top: 20px; color: var(--smoke); max-width: 560px; }

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92);
}
.about-media::after {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}
.about-copy h2 { font-size: clamp(32px, 4vw, 52px); margin: 14px 0 24px; }
.about-copy p { color: var(--ivory); margin-bottom: 18px; }
.about-copy .muted { color: var(--smoke); }
/* на мобильных фото дублирует иммерсивное видео — скрываем */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { display: none; }
}
.about-stats {
  display: flex;
  gap: clamp(28px, 4vw, 60px);
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.about-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--gold);
}
.about-stats .stat span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--smoke); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* signature dishes — horizontal pin (desktop) / swipe scroller (touch) */
.signature { overflow: hidden; }
.sig-track {
  display: flex;
  gap: clamp(22px, 3vw, 40px);
  padding: 40px var(--pad) 20px;
  width: max-content;
}
@media (max-width: 860px) {
  .sig-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .sig-scroller::-webkit-scrollbar { display: none; }
  .sig-track > * { scroll-snap-align: center; }
}
.dish-card {
  width: clamp(280px, 30vw, 400px);
  flex-shrink: 0;
  background: var(--charcoal);
  border: 1px solid var(--line);
  transition: border-color 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.dish-card:hover { border-color: var(--gold); }
.dish-card .img-wrap { overflow: hidden; aspect-ratio: 4 / 3; }
.dish-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.dish-card:hover img { transform: scale(1.06); }
.dish-card .body { padding: 24px 26px 28px; }
.dish-card h3 { font-size: 21px; }
.dish-card .desc {
  font-size: 13.5px;
  color: var(--smoke);
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dish-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 19px;
  white-space: nowrap;
}
.price small { font-size: 11px; letter-spacing: 0.08em; color: var(--smoke); font-family: var(--font-body); }
.dish-card .weight { font-size: 11px; letter-spacing: 0.14em; color: var(--smoke); text-transform: uppercase; }

/* atmosphere collage */
.atmo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: 50px;
}
.atmo-grid figure { overflow: hidden; position: relative; }
.atmo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.atmo-grid figure:hover img { transform: scale(1.05); }
.atmo-grid .a1 { grid-column: 1 / 6; aspect-ratio: 4 / 5; }
.atmo-grid .a2 { grid-column: 6 / 10; aspect-ratio: 4 / 5; margin-top: 60px; }
.atmo-grid .a3 { grid-column: 10 / 13; aspect-ratio: 3 / 4; }
.atmo-grid .a4 { grid-column: 2 / 6; aspect-ratio: 4 / 3; margin-top: -40px; }
.atmo-grid .a5 { grid-column: 6 / 12; aspect-ratio: 16 / 9; }
@media (max-width: 760px) {
  .atmo-grid .a1, .atmo-grid .a2, .atmo-grid .a3, .atmo-grid .a4, .atmo-grid .a5 { grid-column: 1 / 13; margin-top: 0; }
}

/* club */
.club {
  background: var(--noir-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.club-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.club h2 { font-size: clamp(34px, 4.6vw, 58px); }
.club .till {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 130px);
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.club p { color: var(--smoke); margin-top: 22px; max-width: 460px; }
.club .facts { margin-top: 34px; display: grid; gap: 14px; }
.club .facts li {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 14px;
  color: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.club .facts li b { color: var(--gold); font-family: var(--font-display); font-weight: 400; min-width: 56px; }
@media (max-width: 860px) { .club-inner { grid-template-columns: 1fr; } }

/* events */
.events-list { margin-top: 40px; border-top: 1px solid var(--line); }
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(20px, 3vw, 44px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding-left 0.4s var(--ease-out);
}
.event-row:hover { padding-left: 14px; }
.event-row .date {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 24px;
}
.event-row .date small { display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; color: var(--smoke); text-transform: uppercase; margin-top: 4px; }
.event-row h3 { font-size: 22px; }
.event-row p { color: var(--smoke); font-size: 14px; margin-top: 6px; }
.event-row .time { font-size: 13px; color: var(--champagne); letter-spacing: 0.1em; white-space: nowrap; }
@media (max-width: 700px) { .event-row { grid-template-columns: 1fr; gap: 8px; } }

/* recaps preview + list */
.recap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(22px, 3vw, 36px);
  margin-top: 46px;
}
.recap-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
  display: block;
}
.recap-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.recap-card .img-wrap { aspect-ratio: 4 / 5; overflow: hidden; background: var(--noir-2); }
.recap-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.8s var(--ease-out); }
.recap-card:hover img { transform: scale(1.05); }
.recap-card .body { padding: 24px 26px 30px; }
.recap-card time { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.recap-card h3 { font-size: 21px; margin-top: 10px; }
.recap-card p { color: var(--smoke); font-size: 14px; margin-top: 10px; }

.placeholder-media {
  display: grid;
  place-items: center;
  width: 100%; height: 100%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 30px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(181, 154, 91, 0.12), transparent 55%),
    var(--noir-2);
}

/* reserve */
.reserve {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 90% at 50% 120%, rgba(181, 154, 91, 0.14), transparent 65%),
    var(--noir);
}
.reserve h2 { font-size: clamp(36px, 5.4vw, 72px); max-width: 800px; margin: 14px auto 0; }
.reserve .phone {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  transition: color 0.35s, border-color 0.35s;
}
.reserve .phone:hover { color: var(--gold-bright); border-color: var(--gold); }
.reserve .addr { margin-top: 26px; color: var(--smoke); font-size: 14px; }
.reserve .hours { margin-top: 8px; color: var(--smoke); font-size: 13px; letter-spacing: 0.08em; }

/* footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}
.site-footer img { height: 24px; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer a { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke); transition: color 0.3s; }
.site-footer a:hover { color: var(--gold); }
.site-footer .copy { font-size: 11px; color: var(--smoke); letter-spacing: 0.06em; }

/* ---------- menu page ---------- */
.page-hero {
  padding: clamp(150px, 20vh, 220px) 0 clamp(50px, 7vw, 80px);
  text-align: center;
}
.page-hero h1 { font-size: clamp(44px, 7vw, 92px); }
.page-hero p { color: var(--smoke); margin-top: 18px; }

.menu-nav {
  position: sticky;
  top: 62px;
  z-index: 30;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav .inner {
  display: flex;
  gap: 30px;
  padding: 16px var(--pad);
  width: max-content;
  margin: 0 auto;
}
.menu-nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
  transition: color 0.3s;
}
.menu-nav a:hover, .menu-nav a.active { color: var(--gold); }

.menu-section { padding-top: clamp(60px, 8vw, 100px); }
.menu-section:last-of-type { padding-bottom: clamp(80px, 10vw, 130px); }
.menu-section h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  display: flex;
  align-items: baseline;
  gap: 22px;
}
.menu-section h2::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: 40px;
}
.menu-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 16px;
  transition: border-color 0.4s;
  transform-style: preserve-3d;
}
.menu-item:hover { border-color: var(--gold); }
.menu-item .img-wrap { width: 130px; height: 130px; overflow: hidden; }
.menu-item img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .body { display: flex; flex-direction: column; }
.menu-item h3 { font-size: 18px; line-height: 1.25; }
.menu-item .desc { font-size: 13px; color: var(--smoke); margin-top: 8px; flex: 1; }
.menu-item .price-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; flex-wrap: wrap; gap: 4px 14px; }
.menu-item .weight { font-size: 10.5px; letter-spacing: 0.12em; color: var(--smoke); text-transform: uppercase; text-align: right; }
.menu-item.signature h3::after {
  content: '★';
  color: var(--gold);
  font-size: 12px;
  margin-left: 8px;
  vertical-align: super;
}
@media (max-width: 480px) {
  .menu-item { grid-template-columns: 1fr; }
  .menu-item .img-wrap { width: 100%; height: auto; aspect-ratio: 16/9; }
}

/* bar bottles — print-menu style rows with dotted leader */
.menu-rows { margin-top: 26px; max-width: 860px; }
.menu-items:empty { display: none; }
.menu-items:not(:empty) + .menu-rows { margin-top: 40px; }
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
}
.menu-row .name h3 { font-size: 17px; font-weight: 400; white-space: nowrap; }
.menu-row .name .desc { font-size: 12.5px; color: var(--smoke); margin-top: 3px; white-space: normal; }
.menu-row .leader {
  flex: 1;
  min-width: 30px;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.menu-row .weight { font-size: 11px; letter-spacing: 0.1em; color: var(--smoke); white-space: nowrap; }
.menu-row .price { font-size: 17px; }
@media (max-width: 560px) {
  .menu-row .name h3 { white-space: normal; }
}

/* ---------- recap detail ---------- */
.recap-hero { padding: clamp(150px, 20vh, 210px) 0 30px; }
.recap-hero time { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.recap-hero h1 { font-size: clamp(36px, 5.6vw, 72px); margin-top: 16px; max-width: 900px; }
.recap-hero .excerpt { color: var(--smoke); max-width: 620px; margin-top: 20px; font-size: 17px; }

.recap-body { columns: 1; max-width: 720px; color: var(--ivory); padding-bottom: 20px; }

.masonry {
  columns: 3;
  column-gap: 18px;
  padding: 40px 0 90px;
}
.masonry > * { break-inside: avoid; margin-bottom: 18px; }
.masonry img, .masonry video { width: 100%; cursor: zoom-in; border: 1px solid var(--line); }
.masonry video { cursor: pointer; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(6, 5, 4, 0.94);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img, .lightbox video { max-width: 92vw; max-height: 88vh; border: 1px solid var(--line); }
.lightbox .close {
  position: absolute; top: 26px; right: 34px;
  font-size: 34px;
  color: var(--champagne);
  line-height: 1;
}

/* ---------- cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  pointer-events: none;
  z-index: 200;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot.grow {
  width: 44px; height: 44px;
  background: rgba(212, 184, 120, 0.25);
}
@media (hover: none), (pointer: coarse) { .cursor-dot { display: none; } }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(36px); }
.reveal-clip { clip-path: inset(0 0 100% 0); }
html.no-motion .reveal, html.no-motion .reveal-clip { opacity: 1; transform: none; clip-path: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* focus */
a:focus-visible, button:focus-visible {
  outline: 1px solid var(--gold-bright);
  outline-offset: 3px;
}
