/* ==========================================================================
   Butazzo Pizza — Home v5 "Dark Fine Dining"
   Dark-first restaurant template with GSAP scroll animation hooks.
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --surface: #161616;
  --border: #1f1f1f;
  --border-soft: #2a2a2a;
  --text: #f5f0e8;
  --text-dim: #b8b1a3;
  --text-mute: #8a847a;
  --gold: #c9a961;
  --gold-soft: #e9d5a1;
  --gold-deep: #8a7340;
  --accent-red: #b03a2e;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;

  --ease-smooth: cubic-bezier(0.6, 0.05, 0.1, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease-smooth); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-dim); }

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

/* ----- Lenis ----- */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ----- Utility ----- */
.container-x { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}
.section { padding: 140px 0; position: relative; }
.section-sm { padding: 90px 0; }
.text-gold { color: var(--gold); }
.italic { font-style: italic; }

/* ----- Buttons ----- */
.btn-gold, .btn-ghost, .btn-line {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 36px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  transition: all .5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-soft); color: var(--bg); transform: translateY(-2px); }
.btn-ghost { color: var(--text); border-color: var(--border-soft); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-line { padding: 12px 0; color: var(--text); }
.btn-line::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(.4); transform-origin: left;
  transition: transform .6s var(--ease-smooth);
}
.btn-line:hover::after { transform: scaleX(1); }
.btn-icon { width: 18px; height: 18px; }

/* ----- Preloader ----- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 32px;
}
.preloader__mark {
  font-family: var(--font-display);
  font-size: 88px; font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  overflow: hidden;
}
.preloader__bar {
  width: 240px; height: 1px; background: var(--border-soft); overflow: hidden;
}
.preloader__bar span { display: block; height: 100%; background: var(--gold); width: 0%; }
.preloader__count {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.3em;
}

/* ----- Navigation ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .5s var(--ease-smooth);
  mix-blend-mode: difference;
}
.nav.is-scrolled {
  mix-blend-mode: normal;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
}
.nav.menu-open {
  mix-blend-mode: normal;
  background: transparent;
}

/* Inner page nav — disable difference blend so logo/links stay readable over colorful hero images */
.page-inner .nav {
  mix-blend-mode: normal;
  background: linear-gradient(to bottom, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0) 100%);
}
.page-inner .nav.is-scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 44px; width: auto; display: block; }
.nav__menu {
  display: flex; list-style: none; margin: 0; padding: 0;
  gap: 44px;
}
.nav__menu a {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--text);
  position: relative;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-smooth);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: flex; align-items: center; gap: 24px; }
.nav__phone { font-family: var(--font-mono); font-size: 12px; color: var(--text); letter-spacing: 0.1em; }
.nav__toggle { display: none; }
.nav__menu-cta { display: none; }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0 40px 160px;
  overflow: hidden;
}
.hero__video, .hero__video video, .hero__video img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.25) 35%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex; flex-direction: column; gap: 28px;
}
.hero__meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.25em; text-transform: uppercase;
}
/* Corner meta — absolute positioned at bottom of hero */
.hero__corner {
  position: absolute; bottom: 40px; z-index: 3;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; flex-direction: column; gap: 5px;
  line-height: 1.6;
}
.hero__corner--left { left: 40px; }
.hero__corner--right { right: 40px; text-align: right; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line .word { display: inline-block; }
.hero__title em {
  font-style: italic; color: var(--gold-soft);
  font-weight: 300;
}
.hero__lede {
  max-width: 460px;
  font-size: 16px; line-height: 1.65;
  color: var(--text-dim);
  margin: 0;
}
.hero__bottom {
  display: flex; gap: 48px; align-items: flex-end;
  justify-content: space-between;
}
.hero__cta { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.hero__scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(245,240,232,0.45); letter-spacing: 0.35em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  white-space: nowrap;
}
.hero__scroll-line {
  width: 1px; height: 50px; background: var(--border-soft); position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: -60px; left: 0; width: 100%; height: 60px;
  background: var(--gold);
  animation: scrollDot 2.4s var(--ease-smooth) infinite;
}
@keyframes scrollDot {
  0% { top: -60px; } 100% { top: 60px; }
}

/* ----- Marquee / Ticker ----- */
.ticker {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}
.ticker__track {
  display: flex; gap: 80px;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: 36px; font-style: italic;
  color: var(--text);
}
.ticker__dot {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 14px;
  align-self: center;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Section heading ----- */
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  margin-bottom: 80px; align-items: end;
}
.related .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px 80px;
}
.section-head__left { display: flex; flex-direction: column; gap: 24px; }
.section-head__title {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  margin: 0;
}
.section-head__title em { font-style: italic; color: var(--gold-soft); }
.section-head__lede { font-size: 18px; color: var(--text-dim); max-width: 520px; }

/* ----- Story (pinned) ----- */
.story { background: var(--bg); position: relative; }
.story__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: start;
}
.story__media {
  position: sticky; top: 120px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.story__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}
.story__copy { display: flex; flex-direction: column; gap: 80px; padding-top: 40px; }
.story__chapter { display: flex; flex-direction: column; gap: 16px; }
.story__num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--gold); letter-spacing: 0.35em;
}
.story__chapter h3 {
  font-size: 44px; line-height: 1.05; margin: 0 0 12px;
}
.story__chapter p { font-size: 17px; line-height: 1.75; color: var(--text-dim); margin: 0; }

/* ----- Menu (horizontal scroll) ----- */
.menu-h {
  background: var(--bg-elev);
  overflow: hidden;
  position: relative;
}
.menu-h__head {
  padding: 140px 40px 80px;
  max-width: 1440px; margin: 0 auto;
}
.menu-h__track-wrap { position: relative; height: 100vh; }
.menu-h__track {
  display: flex; gap: 40px;
  padding: 0 40px 80px;
  height: 100%;
  align-items: center;
  will-change: transform;
}
.menu-card {
  flex: 0 0 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: border-color .5s var(--ease-smooth);
  border-radius: 2px;
}
.menu-card:hover { border-color: var(--gold-deep); }
.menu-card__img {
  aspect-ratio: 1/1; overflow: hidden; position: relative;
}
.menu-card__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-smooth);
}
.menu-card:hover .menu-card__img img { transform: scale(1.06); }
.menu-card__tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--bg);
  color: var(--gold);
  padding: 6px 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  border: 1px solid var(--gold-deep);
}
.menu-card__body { padding: 28px 32px 32px; }
.menu-card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.menu-card__title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400; margin: 0;
  letter-spacing: -0.01em;
}
.menu-card__price {
  font-family: var(--font-mono);
  font-size: 16px; color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.menu-card__desc {
  font-size: 14px; color: var(--text-mute);
  line-height: 1.65; margin: 0 0 18px;
}
.menu-card__meta {
  display: flex; gap: 14px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.2em; text-transform: uppercase;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.menu-card__meta span::before { content: "—"; margin-right: 6px; color: var(--gold-deep); }
.menu-h__progress {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 1px; background: var(--border-soft);
  z-index: 3;
}
.menu-h__progress span {
  display: block; height: 100%; background: var(--gold);
  width: 0%; transition: width .1s linear;
}

/* ----- Chef / Signature ----- */
.chef {
  background: var(--bg);
  padding: 160px 0;
  position: relative;
}
.chef__quote {
  max-width: 1000px; margin: 0 auto 100px;
  padding: 0 40px;
  text-align: center;
}
.chef__quote-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 32px;
}
.chef__quote-text span { color: var(--gold); }
.chef__quote-author {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.3em; text-transform: uppercase;
}
.chef__gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
  padding: 0 40px;
  max-width: 1600px; margin: 0 auto;
}
.chef__tile {
  overflow: hidden; position: relative;
  border-radius: 2px;
}
.chef__tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-smooth), filter .6s var(--ease-smooth);
  filter: grayscale(0.1) contrast(1.05);
}
.chef__tile:hover img { transform: scale(1.05); filter: grayscale(0) contrast(1.1); }
.chef__tile.t1 { grid-column: span 5; grid-row: span 6; }
.chef__tile.t2 { grid-column: span 4; grid-row: span 4; }
.chef__tile.t3 { grid-column: span 3; grid-row: span 6; }
.chef__tile.t4 { grid-column: span 4; grid-row: span 5; }
.chef__tile.t5 { grid-column: span 5; grid-row: span 4; }
.chef__tile.t6 { grid-column: span 3; grid-row: span 5; }

/* ----- Stats ----- */
.stats {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1; margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.stat__num em { font-style: italic; color: var(--gold-soft); }
.stat__label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.3em; text-transform: uppercase;
}

/* ----- Reservation ----- */
.reserve {
  background: var(--bg);
  padding: 160px 0;
  position: relative;
}
.reserve__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  max-width: 1300px; margin: 0 auto; padding: 0 40px;
  align-items: center;
}
.reserve__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.reserve__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}
.reserve__form { display: flex; flex-direction: column; gap: 24px; }
.reserve__form h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1; margin-bottom: 8px; }
.reserve__form h2 em { font-style: italic; color: var(--gold-soft); }
.reserve__form p { font-size: 16px; color: var(--text-dim); margin-bottom: 16px; }
.reserve__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reserve__field {
  display: flex; flex-direction: column; gap: 8px;
}
.reserve__field label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.3em; text-transform: uppercase;
}
.reserve__field input, .reserve__field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
  font-family: var(--font-body); font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color .4s var(--ease-smooth);
}
.reserve__field input:focus, .reserve__field select:focus { border-bottom-color: var(--gold); }
.reserve__field select option { background: var(--bg); color: var(--text); }
.reserve__submit { margin-top: 16px; align-self: flex-start; }
.reserve__status { font-size: 13px; letter-spacing: 0.04em; margin: 0; min-height: 1.2em; color: var(--text-dim); }
.reserve__status[data-state="success"] { color: var(--gold); }
.reserve__status[data-state="error"] { color: #e07a6a; }
.reserve__status[data-state="pending"] { color: var(--text-dim); opacity: 0.85; }

/* ----- Flatpickr (date picker) overrides ----- */
.flatpickr-calendar {
  background: #171717;
  border: 1px solid rgba(201,169,97,0.28);
  border-radius: 3px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.85);
  font-family: var(--font-body);
  color: var(--text);
  width: 340px !important;
}
/* caret arrow — both directions (up when calendar opens below, down when opens above) */
.flatpickr-calendar.arrowTop::before  { border-bottom-color: rgba(201,169,97,0.28); }
.flatpickr-calendar.arrowTop::after   { border-bottom-color: #171717; }
.flatpickr-calendar.arrowBottom::before { border-top-color: rgba(201,169,97,0.28); }
.flatpickr-calendar.arrowBottom::after  { border-top-color: #171717; }
.flatpickr-months {
  background: transparent;
  border-bottom: 1px solid rgba(201,169,97,0.14);
  padding: 12px 0 10px;
}
.flatpickr-months .flatpickr-month { background: transparent; color: var(--text); height: 36px; }
.flatpickr-current-month {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  padding-top: 4px;
}
.flatpickr-current-month .numInputWrapper { width: 68px; }
.flatpickr-current-month .numInputWrapper span.arrowUp::after  { border-bottom-color: var(--text-mute); }
.flatpickr-current-month .numInputWrapper span.arrowDown::after { border-top-color: var(--text-mute); }
.flatpickr-current-month input.cur-year,
.flatpickr-current-month input.cur-year:focus {
  color: var(--text) !important;
  font-size: 18px !important;
  font-weight: 400;
  background: transparent !important;
  opacity: 1 !important;
  -webkit-text-fill-color: var(--text) !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #171717;
  color: var(--text);
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--font-display);
}
.fp-year-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  padding: 0 2px;
  margin-left: 4px;
}
.flatpickr-weekdays { background: transparent; margin-top: 4px; }
span.flatpickr-weekday {
  background: transparent;
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.flatpickr-days { border-color: rgba(201,169,97,0.1); }
.dayContainer {
  padding: 6px;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
}
.flatpickr-day {
  color: var(--text);
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 38px;
  height: 38px;
  max-width: 44px;
  font-weight: 300;
}
.flatpickr-day:hover, .flatpickr-day:focus {
  background: rgba(201,169,97,0.12);
  border-color: transparent;
  color: var(--gold-soft);
}
.flatpickr-day.today {
  border-color: rgba(201,169,97,0.55);
  color: var(--gold);
  font-weight: 500;
}
.flatpickr-day.today:hover {
  background: rgba(201,169,97,0.12);
  color: var(--gold);
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  font-weight: 600;
}
/* correct flatpickr disabled class name */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(245,240,232,0.2) !important;
  background: transparent !important;
  cursor: not-allowed;
  text-decoration: none;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
  opacity: 0 !important;
  pointer-events: none;
  cursor: default;
}
.flatpickr-prev-month,
.flatpickr-next-month {
  color: var(--text-dim) !important;
  fill: var(--text-dim) !important;
  padding: 8px 14px !important;
}
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg { fill: var(--gold) !important; }
.flatpickr-prev-month svg,
.flatpickr-next-month svg { width: 14px; height: 14px; }

/* ----- Choices.js (select dropdown) overrides ----- */
.choices { margin-bottom: 0; }
.choices__inner {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  border-radius: 0;
  padding: 12px 24px 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  min-height: auto;
  transition: border-color .4s var(--ease-smooth);
}
.choices.is-focused .choices__inner,
.choices.is-open .choices__inner { border-bottom-color: var(--gold); box-shadow: none; }
.choices__list--single { padding: 0; }
.choices__list--single .choices__item { color: var(--text); font-size: 16px; }
.choices[data-type*="select-one"] .choices__inner { cursor: pointer; }
.choices[data-type*="select-one"]::after {
  border-color: var(--text-mute) transparent transparent transparent;
  right: 4px; top: 50%; transform: translateY(-75%);
}
.choices[data-type*="select-one"].is-open::after {
  border-color: transparent transparent var(--gold) transparent;
  transform: translateY(-25%);
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
  background: #151515;
  border: 1px solid rgba(201,169,97,0.2);
  border-radius: 2px;
  margin-top: 4px;
  z-index: 9999;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}
.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dim);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(245,240,232,0.05);
}
.choices__list--dropdown .choices__item:last-child,
.choices__list[aria-expanded] .choices__item:last-child { border-bottom: none; }
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: rgba(201,169,97,0.1);
  color: var(--gold);
}
.choices__list--dropdown .choices__item.is-selected,
.choices__list[aria-expanded] .choices__item.is-selected {
  color: var(--gold-soft);
  background: transparent;
}
.choices__placeholder { color: var(--text-mute); opacity: 1; }

/* ----- Testimonials ----- */
.reviews {
  background: var(--bg-elev);
  padding: 160px 0 100px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: hidden;
}
.reviews__slider { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.review {
  text-align: center;
  display: flex !important; flex-direction: column; align-items: center; gap: 32px;
}
.review__stars { color: var(--gold); letter-spacing: 8px; font-size: 14px; }
.review__text {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  max-width: 900px;
  margin: 0;
}
.review__author {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.review__name {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text);
}
.review__role {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-mute);
}
.reviews__slider { overflow: visible; }
.reviews__pagination {
  position: static !important;
  margin-top: 56px;
  padding: 6px 0;
  display: flex; justify-content: center; align-items: center; gap: 10px;
  overflow: visible;
}
.reviews__pagination .swiper-pagination-bullet {
  width: 7px; height: 7px;
  background: rgba(201,169,97,0.35);
  border-radius: 50%;
  opacity: 1;
  transition: background .3s, transform .3s;
  display: block; flex-shrink: 0;
}
.reviews__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.5);
}

/* ----- Footer ----- */
.foot {
  background: var(--bg);
  padding: 120px 0 40px;
  position: relative;
  border-top: 1px solid var(--border);
}
.foot__inner {
  max-width: 1440px; margin: 0 auto; padding: 0 40px;
}
.foot__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.foot__brand {
  font-family: var(--font-display);
  font-size: 72px; font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1; margin: 0 0 24px;
}
.foot__about { color: var(--text-dim); max-width: 380px; font-size: 15px; }
.foot__col h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot__col a { color: var(--text-dim); font-size: 15px; }
.foot__col a:hover { color: var(--gold); }
.foot__hours { font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); display: flex; flex-direction: column; gap: 10px; }
.foot__hours span { color: var(--gold); }
.foot__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.25em; text-transform: uppercase;
}
.foot__social { display: flex; gap: 24px; }
.foot__social a { color: var(--text-dim); }
.foot__social a:hover { color: var(--gold); }

/* ----- GSAP reveal helpers (initial states) ----- */
.reveal-up { opacity: 0; transform: translateY(48px); }
.reveal-fade { opacity: 0; }
.reveal-line .line { transform: translateY(110%); }
.split-char { display: inline-block; transform: translateY(110%); }

/* ----- Responsive ----- */

/* Hide phone number on medium screens where it crowds the nav (1025px–1280px) */
@media (max-width: 1280px) {
  .nav__phone { display: none; }
}

@media (max-width: 1024px) {
  .container-x, .container-narrow { padding: 0 28px; }
  .section { padding: 100px 0; }
  .nav { padding: 22px 28px; }
  .nav.is-scrolled { padding: 14px 28px; }

  /* Mobile menu — hidden by default, shown when .is-open toggled by JS */
  .nav__menu {
    display: none;
    position: fixed; inset: 0; z-index: 200;
    background: var(--bg);
    flex-direction: column; align-items: center; justify-content: center;
    list-style: none; padding: 100px 40px 60px;
    gap: 0;
    margin: 0;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu li {
    width: 100%; max-width: 480px;
    border-bottom: 1px solid var(--border);
  }
  .nav__menu li:first-child { border-top: 1px solid var(--border); }
  .nav__menu a {
    display: block;
    padding: 22px 0;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text);
  }
  .nav__menu a:hover { color: var(--gold); }
  .nav__menu a::after { display: none; }

  .nav__toggle {
    display: flex; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 8px;
    z-index: 201; /* above the open menu overlay */
    position: relative;
  }
  .nav__toggle span {
    width: 28px; height: 1px; background: var(--text); display: block;
    transition: transform .35s var(--ease-smooth), opacity .25s;
    transform-origin: center;
  }
  /* Hamburger → X animation */
  .nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Move "Book a Table" from header into mobile menu */
  .nav__cta .btn-ghost { display: none; }
  .nav__menu .nav__menu-cta {
    display: flex;
    justify-content: center;
    border-top: none;
    border-bottom: none;
    padding: 40px 0 8px;
    width: 100%; max-width: 480px;
  }
  .nav__menu .nav__menu-cta a {
    display: inline-block;
    border: 1px solid var(--border-soft);
    padding: 14px 40px;
    width: auto;
    text-align: center;
  }
  .nav__menu .nav__menu-cta a:hover { border-color: var(--gold); color: var(--gold); }

  .hero { padding: 0 28px 130px; }
  .hero__corner { font-size: 9px; }
  .hero__corner--left { left: 28px; }
  .hero__corner--right { right: 28px; }
  .hero__bottom { flex-direction: column; gap: 24px; align-items: flex-start; }
  .nav__logo { height: 36px; }
  .section-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .story__grid, .reserve__inner { grid-template-columns: 1fr; gap: 60px; }
  .story__media { position: relative; top: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
  .chef__gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 60px; }
  .chef__tile.t1 { grid-column: span 6; grid-row: span 5; }
  .chef__tile.t2 { grid-column: span 3; grid-row: span 4; }
  .chef__tile.t3 { grid-column: span 3; grid-row: span 4; }
  .chef__tile.t4 { grid-column: span 4; grid-row: span 4; }
  .chef__tile.t5 { grid-column: span 2; grid-row: span 4; }
  .chef__tile.t6 { grid-column: span 6; grid-row: span 4; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .menu-card { flex: 0 0 320px; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .section { padding: 80px 0; }
  .container-x, .container-narrow { padding: 0 20px; }
  .nav { padding: 18px 20px; }
  .nav__phone { display: none; }
  .hero { padding: 0 20px 110px; min-height: 90vh; }
  .hero__corner { display: none; }
  .hero__lede { font-size: 15px; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .nav__logo { height: 32px; }
  .ticker__item { font-size: 24px; }
  .ticker__track { gap: 50px; }
  .story__chapter h3 { font-size: 32px; }
  .menu-h__head { padding: 90px 20px 60px; }
  .menu-card { flex: 0 0 280px; }
  .chef { padding: 100px 0; }
  .chef__gallery { padding: 0 20px; gap: 10px; grid-auto-rows: 50px; }
  .stats__grid { grid-template-columns: 1fr; gap: 50px; }
  .reserve { padding: 100px 0; }
  .reserve__inner { padding: 0 20px; }
  .reserve__row { grid-template-columns: 1fr; }
  .reviews { padding: 100px 0; }
  .foot__grid { grid-template-columns: 1fr; gap: 48px; }
  .foot__brand { font-size: 56px; }
  .foot__bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* ==========================================================================
   Inner Page Components
   ========================================================================== */

/* ----- Page Hero (shared by about, menu, gallery, contact) ----- */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transform-origin: center;
}
.page-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.25) 0%,
    rgba(10,10,10,0.55) 45%,
    rgba(10,10,10,0.92) 100%
  );
}
.page-hero__inner {
  position: relative; z-index: 2;
  padding: 0 80px 80px;
  max-width: 860px;
}
.page-hero__eyebrow { display: inline-flex; margin-bottom: 24px; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.page-hero__title em { font-style: italic; color: var(--gold-soft); }
.page-hero__sub {
  font-size: 17px; line-height: 1.7;
  color: var(--text-dim);
  max-width: 560px; margin: 0;
}

/* ----- Menu Grid (menu.html) ----- */
.menu-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
}
.menu-grid__cat {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}
.menu-grid__cat:last-child { border-bottom: none; margin-bottom: 0; }
.menu-grid__cat-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 48px;
}
.menu-grid__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--bg);
}
.menu-grid__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg);
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.menu-grid__item:nth-child(2n) { border-right: none; }
.menu-grid__item:hover { background: var(--bg-elev); }
.menu-grid__item-img {
  flex: 0 0 96px;
  width: 96px; height: 96px;
  overflow: hidden;
  border-radius: 2px;
}
.menu-grid__item-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(0.1) contrast(1.05);
  transition: transform .6s var(--ease-smooth), filter .4s;
}
.menu-grid__item:hover .menu-grid__item-img img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1);
}
.menu-grid__item-info { flex: 1; min-width: 0; }
.menu-grid__item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}
.menu-grid__item-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  color: var(--text); margin: 0; line-height: 1.2;
}
.menu-grid__item-price {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--gold);
  white-space: nowrap; letter-spacing: 0.05em; flex-shrink: 0;
}
.menu-grid__item-desc {
  font-size: 14px; line-height: 1.65;
  color: var(--text-mute); margin: 0;
}

/* ----- Photo Gallery (gallery.html) ----- */
.photo-gallery {
  columns: 3;
  column-gap: 2px;
  padding: 80px 0;
  background: var(--bg);
}
.photo-gallery__item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 2px;
  cursor: pointer;
}
.photo-gallery__item img {
  width: 100%; height: auto;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform .7s var(--ease-smooth), filter .5s;
}
.photo-gallery__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1);
}
.photo-gallery__item-tag {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text);
  background: rgba(10,10,10,0.75);
  padding: 6px 12px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}
.photo-gallery__item:hover .photo-gallery__item-tag {
  opacity: 1; transform: translateY(0);
}

/* ----- Contact Grid (contact.html) ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.contact-grid__info {
  padding: 100px 80px 100px 60px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 56px;
}
.contact-grid__block h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-mute);
  margin: 0 0 16px;
}
.contact-grid__block address,
.contact-grid__block p {
  font-style: normal;
  font-size: 16px; line-height: 1.8;
  color: var(--text-dim); margin: 0;
}
.contact-grid__block a:not([class]) { color: var(--text-dim); transition: color .3s; }
.contact-grid__block a:not([class]):hover { color: var(--gold); }
.contact-grid__block .btn-gold { color: var(--bg); }
.contact-grid__block .btn-gold:hover { color: var(--bg); }
.contact-grid__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 8px; column-gap: 24px;
  font-size: 15px; color: var(--text-dim);
  align-items: center;
}
.contact-grid__hours span {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-mute);
  grid-column: 1 / -1;
  padding-top: 16px;
}
.contact-grid__hours span:first-child { padding-top: 0; }
.contact-grid__map {
  height: 280px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.contact-grid__map iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.25) brightness(0.9);
}

/* ----- Contact Form ----- */
.contact-form {
  padding: 100px 60px 100px 80px;
  display: flex; flex-direction: column; gap: 28px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400; line-height: 1;
  color: var(--text); margin: 0 0 4px;
}
.contact-form h3 em { font-style: italic; color: var(--gold-soft); }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__field {
  display: flex; flex-direction: column; gap: 10px;
}
.contact-form__field label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-mute);
}
.contact-form__field input,
.contact-form__field textarea {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px; color: var(--text);
  outline: none;
  transition: border-color .3s, background .3s;
  width: 100%; box-sizing: border-box;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: var(--text-mute); }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--gold);
  background: var(--bg-elev);
}
.contact-form__field textarea { resize: vertical; min-height: 140px; }

/* ----- Menu Item Detail (menu-item.html) ----- */
.page-hero--compact { height: 60vh; min-height: 420px; }
.dish-crumbs {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 22px;
}
.dish-crumbs a { color: var(--text-mute); transition: color .3s; }
.dish-crumbs a:hover { color: var(--gold); }
.dish-crumbs span { color: var(--gold-deep); }
.dish-crumbs__here { color: var(--text-dim); }

.dish-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dish-detail__media {
  padding: 80px 60px 80px 60px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 18px;
  background: var(--bg);
  min-width: 0;
  overflow: hidden;
}
.galley-swiper-box {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 0; width: 100%;
}
.galley-swiper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  min-width: 0; width: 100%;
}
.galley-swiper .swiper-slide { display: block; }
.galley-swiper .swiper-slide img {
  width: 100%; height: auto; display: block;
  filter: grayscale(0.08) contrast(1.05);
  transition: filter .5s;
}
.galley-swiper:hover .swiper-slide-active img {
  filter: grayscale(0) contrast(1);
}
.dish-detail__badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10,10,10,0.78);
  border: 1px solid var(--gold-deep);
  padding: 8px 14px;
}
.galley-thumb-swiper { width: 100%; }
.galley-thumb-swiper .swiper-slide {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  transition: border-color .3s;
}
.galley-thumb-swiper .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(0.3) brightness(0.85);
  transition: filter .3s;
}
.galley-thumb-swiper .swiper-slide:hover { border-color: var(--gold-deep); }
.galley-thumb-swiper .swiper-slide:hover img { filter: grayscale(0) brightness(1); }
.galley-thumb-swiper .swiper-slide-thumb-active { border-color: var(--gold); }
.galley-thumb-swiper .swiper-slide-thumb-active img { filter: grayscale(0) brightness(1); }
.dish-detail__body {
  padding: 80px 60px 80px 60px;
  display: flex; flex-direction: column; gap: 32px;
  background: var(--bg);
  min-width: 0;
}
.dish-detail__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.dish-detail__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400; line-height: 1;
  color: var(--text); margin: 0;
}
.dish-detail__price {
  font-family: var(--font-mono);
  font-size: 18px; letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap; flex-shrink: 0;
}
.dish-detail__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px; line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

.dish-meta {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dish-meta li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 16px;
  font-size: 14px; color: var(--text);
  border-right: 1px solid var(--border);
}
.dish-meta li:last-child { border-right: none; }
.dish-meta li span {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.dish-section { display: flex; flex-direction: column; gap: 16px; }
.dish-section__label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.dish-ingredients {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.dish-ingredients li {
  position: relative;
  padding-left: 22px;
  font-size: 15px; line-height: 1.5;
  color: var(--text-dim);
}
.dish-ingredients li::before {
  content: ""; position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--gold-deep);
}

.dish-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.dish-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-soft);
  padding: 8px 14px;
}

.dish-detail__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 8px;
}

/* ----- Chef notes ----- */
.dish-notes {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
  text-align: center;
}
.dish-notes .container-narrow {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.dish-notes__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400; line-height: 1.1;
  color: var(--text); margin: 0;
  max-width: 720px;
}
.dish-notes__title em { font-style: italic; color: var(--gold-soft); }
.dish-notes__body {
  font-size: 17px; line-height: 1.85;
  color: var(--text-dim);
  max-width: 640px; margin: 0;
}
.dish-notes__sig {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

/* ----- Pairings ----- */
.pairings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pairing {
  background: var(--surface);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s;
}
.pairing:hover { background: var(--bg-elev); }
.pairing__type {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.pairing__name {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 400; line-height: 1.1;
  color: var(--text); margin: 0;
}
.pairing__name em { font-style: italic; color: var(--gold-soft); }
.pairing__origin {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0;
}
.pairing__desc {
  font-size: 15px; line-height: 1.65;
  color: var(--text-dim);
  margin: 4px 0 0;
}
.pairing__foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.1em;
}
.pairing__price { color: var(--gold); }
.pairing__bottle { color: var(--text-mute); }

/* ----- Related ----- */
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color .3s, transform .4s var(--ease-smooth);
}
.related-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  color: var(--text);
}
.related-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elev);
}
.related-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform .7s var(--ease-smooth), filter .5s;
}
.related-card:hover .related-card__img img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1);
}
.related-card__body {
  padding: 24px 26px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.related-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.related-card__name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; line-height: 1.2;
  color: var(--text); margin: 0;
}
.related-card__price {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.related-card__desc {
  font-size: 14px; line-height: 1.6;
  color: var(--text-mute);
  margin: 0;
}

/* ----- Inner page responsive ----- */
@media (max-width: 1024px) {
  .page-hero { height: 60vh; min-height: 400px; }
  .page-hero__inner { padding: 0 28px 60px; }
  .menu-grid { padding: 80px 28px; }
  .menu-grid__items { grid-template-columns: 1fr; }
  .photo-gallery { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid__info { padding: 80px 28px; border-right: none; border-bottom: 1px solid var(--border); gap: 48px; }
  .contact-form { padding: 80px 28px; }
  .dish-detail { grid-template-columns: 1fr; }
  .dish-detail__media { padding: 60px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .dish-detail__body { padding: 60px 28px; gap: 28px; }
  .dish-notes { padding: 90px 0; }
  .pairings__grid { grid-template-columns: 1fr; }
  .related__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .page-hero { height: 75vh; min-height: 360px; }
  .page-hero--compact { height: 65vh; min-height: 380px; }
  .page-hero__inner { padding: 0 20px 50px; }
  .page-hero__sub { font-size: 15px; }
  .menu-grid { padding: 60px 20px; }
  .menu-grid__cat { padding-bottom: 60px; margin-bottom: 60px; }
  .menu-grid__item { flex-direction: column; gap: 16px; padding: 24px; }
  .menu-grid__item-img { width: 100%; height: 180px; flex: none; }
  .photo-gallery { columns: 1; padding: 40px 0; }
  .contact-grid__info { padding: 60px 20px; gap: 40px; }
  .contact-form { padding: 60px 20px; gap: 24px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .dish-crumbs { font-size: 10px; gap: 8px; }
  .dish-detail__media { padding: 40px 20px; gap: 14px; }
  .dish-detail__body { padding: 40px 20px; gap: 24px; }
  .dish-detail__head { flex-direction: column; align-items: flex-start; gap: 8px; padding-bottom: 22px; }
  .dish-meta { grid-template-columns: 1fr 1fr; }
  .dish-meta li:nth-child(2) { border-right: none; }
  .dish-meta li:nth-child(1), .dish-meta li:nth-child(2) { border-bottom: 1px solid var(--border); }
  .dish-ingredients { grid-template-columns: 1fr; gap: 8px; }
  .dish-detail__cta { flex-direction: column; align-items: stretch; }
  .dish-detail__cta .btn-gold, .dish-detail__cta .btn-ghost { justify-content: center; text-align: center; }
  .dish-notes { padding: 70px 0; }
  .pairing { padding: 32px 26px; }
  .related__grid { grid-template-columns: 1fr; }
}
