/* Дюшес — Stitch rebrand (зелёная тема) */

/* ─── Dark theme (default) ─── */
:root,
[data-theme="dark"] {
  --bg: #0b1121;
  --bg-elevated: #111a2e;
  --bg-card: #151f33;
  --bg-input: #1a2540;
  --bg-muted: #0a0f1b;

  --fg: #f0f5f2;
  --fg-muted: rgb(240 245 242 / 62%);
  --fg-subtle: rgb(240 245 242 / 38%);
  --fg-inverse: #0b1a14;

  /* акцент — мятно-зелёный из макета Stitch */
  --gold: #9de0c3;
  --gold-light: #b8ecd9;
  --gold-dark: #6bc9a8;
  --gold-soft: rgb(157 224 195 / 14%);

  --line: rgb(157 224 195 / 12%);
  --line-strong: rgb(157 224 195 / 22%);

  --header-bg: transparent;
  --header-scrolled: rgb(11 17 33 / 92%);
  --hero-overlay: linear-gradient(
    180deg,
    rgb(11 17 33 / 45%) 0%,
    rgb(11 17 33 / 78%) 55%,
    #0b1121 100%
  );
  --shadow: 0 20px 60px rgb(0 0 0 / 45%);
}

/* ─── Light theme ─── */
[data-theme="light"] {
  --bg: #f2f9f5;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-input: #ffffff;
  --bg-muted: #e5f2eb;

  --fg: #0f1f18;
  --fg-muted: #4a6358;
  --fg-subtle: #7a9488;
  --fg-inverse: #f2f9f5;

  --gold: #2a8f67;
  --gold-light: #3aab7e;
  --gold-dark: #1f6b4f;
  --gold-soft: rgb(42 143 103 / 12%);

  --line: #d4e8dc;
  --line-strong: #b8d9c8;

  --header-bg: transparent;
  --header-scrolled: rgb(242 249 245 / 94%);
  --hero-overlay: linear-gradient(
    180deg,
    rgb(15 31 24 / 30%) 0%,
    rgb(15 31 24 / 60%) 55%,
    #f2f9f5 100%
  );
  --shadow: 0 20px 60px rgb(15 31 24 / 10%);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s, color 0.35s;
  overflow-x: hidden;
}

[data-theme="dark"] body {
  background-image: radial-gradient(rgb(157 224 195 / 4%) 1px, transparent 1px);
  background-size: 24px 24px;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container {
  width: min(1240px, 100% - clamp(24px, 5vw, 48px));
  margin-inline: auto;
}

/* ─── Typography ─── */
.eyebrow {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3, .heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-title em, .hero__title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 52ch;
  margin: 0;
}

.section { padding: clamp(72px, 10vw, 120px) 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head--center .section-desc { margin-inline: auto; }

/* ─── Logo ─── */
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo--lg { font-size: 2rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--fg-inverse);
  border-color: var(--gold);
}

.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline:hover { background: var(--gold-soft); }

.btn--outline-white {
  background: transparent;
  border-color: rgb(255 255 255 / 50%);
  color: #fff;
}

.btn--outline-white:hover { border-color: #fff; background: rgb(255 255 255 / 8%); }

.btn--ghost {
  background: transparent;
  color: var(--fg-muted);
  border-color: var(--line);
  padding: 10px 0;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 600;
  font-size: 0.88rem;
}

.btn--ghost:hover { color: var(--gold); }

.btn--sm { padding: 10px 20px; font-size: 0.65rem; }
.btn--lg { padding: 16px 36px; }
.btn--full { width: 100%; }

.link-arrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}

.link-arrow:hover { opacity: 0.75; }

/* ─── Theme toggle ─── */
.theme-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.theme-toggle:hover { color: var(--gold); }

[data-theme="light"] .theme-toggle {
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

[data-theme="light"] .theme-toggle:hover {
  color: var(--gold);
}

.theme-toggle__icon {
  width: 17px;
  height: 17px;
  grid-area: 1/1;
  transition: opacity 0.25s, transform 0.25s;
}

[data-theme="dark"] .theme-toggle__icon--moon,
[data-theme="light"] .theme-toggle__icon--sun { opacity: 1; transform: none; }

[data-theme="dark"] .theme-toggle__icon--sun,
[data-theme="light"] .theme-toggle__icon--moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

/* ─── Header ─── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--header-bg);
  transition: background 0.35s, border-color 0.35s;
  padding-top: env(safe-area-inset-top, 0px);
}

.header--scrolled {
  background: var(--header-scrolled);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header--solid { background: var(--header-scrolled); border-bottom: 1px solid var(--line); }

/* Прозрачная шапка поверх hero — светлый текст */
.header:not(.header--scrolled):not(.header--solid)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(11 17 33 / 82%) 0%, rgb(11 17 33 / 35%) 70%, transparent 100%);
  pointer-events: none;
}

.header:not(.header--scrolled):not(.header--solid) .logo {
  color: #fff;
  text-shadow: 0 1px 16px rgb(0 0 0 / 35%);
}

@media (min-width: 769px) {
  .header:not(.header--scrolled):not(.header--solid) .nav__link {
    color: rgb(255 255 255 / 78%);
    text-shadow: 0 1px 10px rgb(0 0 0 / 30%);
  }

  .header:not(.header--scrolled):not(.header--solid) .nav__link:hover,
  .header:not(.header--scrolled):not(.header--solid) .nav__link--active {
    color: #fff;
  }
}

.header:not(.header--scrolled):not(.header--solid) .header__phone {
  color: var(--gold);
  text-shadow: 0 1px 10px rgb(0 0 0 / 30%);
}

.header:not(.header--scrolled):not(.header--solid) .theme-toggle {
  color: rgb(255 255 255 / 85%);
}

[data-theme="light"] .header:not(.header--scrolled):not(.header--solid) .theme-toggle {
  color: var(--gold-dark);
}

.header:not(.header--scrolled):not(.header--solid) .theme-toggle:hover {
  color: var(--gold);
}

[data-theme="light"] .header:not(.header--scrolled):not(.header--solid) .theme-toggle:hover {
  color: var(--gold-light);
}

.header:not(.header--scrolled):not(.header--solid) .burger {
  border-color: rgb(255 255 255 / 35%);
}

.header:not(.header--scrolled):not(.header--solid) .burger span {
  background: #fff;
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

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

.nav__link {
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s;
  position: relative;
}

.nav__link:hover, .nav__link--active { color: var(--fg); }

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
}

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

.header__phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: none;
}

.header__account {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.header__account svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header__account:hover,
.header__account--active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

@media (min-width: 769px) {
  .header__account { display: inline-flex; }
}

@media (min-width: 900px) {
  .header__phone { display: block; }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgb(0 0 0 / 55%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  pointer-events: none;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {
  body.nav-open .nav-backdrop {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.nav__cta {
  display: none;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.nav__cta-phone {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero--page { min-height: 70vh; align-items: flex-end; padding-bottom: 64px; }

.hero__bg { position: absolute; inset: 0; }

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero--center .hero__content {
  margin-inline: auto;
  text-align: center;
}

.hero--center .hero__actions { justify-content: center; }

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 20px;
  color: #fff;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgb(255 255 255 / 72%);
  margin: 0 0 36px;
  max-width: 48ch;
}

.hero--center .hero__subtitle { margin-inline: auto; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── About / Taste ─── */
.taste {
  background: var(--bg);
}

.taste__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.taste__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.taste__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taste__stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.taste__stat-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.taste__stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-top: 6px;
}

/* ─── Features row ─── */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-box {
  padding: 36px 32px;
  background: var(--bg-card);
  text-align: center;
}

.feature-box__icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.feature-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin: 0;
}

/* ─── Location cards ─── */
.locations { background: var(--bg-muted); }

.locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.loc-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.loc-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.loc-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.loc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.loc-card:hover .loc-card__image img { transform: scale(1.04); }

.loc-card__body { padding: 20px; }

.loc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.loc-card__address {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin: 0 0 14px;
}

.loc-card__icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.loc-card__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--line);
}

/* ─── Promo banners ─── */
.privileges__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo-banner {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
}

.promo-banner__bg {
  position: absolute;
  inset: 0;
}

.promo-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 20%) 60%);
}

.promo-banner--bright .promo-banner__overlay {
  background: linear-gradient(0deg, rgb(0 0 0 / 70%) 0%, rgb(157 224 195 / 28%) 100%);
}

.promo-banner__content {
  position: relative;
  z-index: 1;
  padding: 32px;
  color: #fff;
}

.promo-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.promo-banner p {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 70%);
  margin: 0 0 20px;
  max-width: 36ch;
}

/* ─── Chef selection ─── */
.chef-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

.chef-banner__bg { position: absolute; inset: 0; }

.chef-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 40%) 60%, transparent 100%);
}

[data-theme="light"] .chef-banner__overlay {
  background: linear-gradient(90deg, rgb(242 249 245 / 95%) 0%, rgb(242 249 245 / 60%) 60%, transparent 100%);
}

.chef-banner__content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  padding: 48px 0;
}

.chef-banner h2 { font-size: 2.2rem; margin-bottom: 14px; }
.chef-banner p { color: var(--fg-muted); margin: 0 0 24px; }

/* ─── Restaurant list (restaurants page) ─── */
.restaurant-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.restaurant-row:last-child { border-bottom: none; }

.restaurant-row:nth-child(even) .restaurant-row__image { order: 2; }

.restaurant-row__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.restaurant-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-row h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.restaurant-row p {
  color: var(--fg-muted);
  margin: 0 0 20px;
}

.restaurant-row__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.restaurant-row__links .btn--gold {
  padding: 10px 20px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Social feed ─── */
.social { background: var(--bg-muted); text-align: center; }

.social__handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  margin: 12px 0 40px;
}

.social__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.social__item {
  aspect-ratio: 1;
  overflow: hidden;
}

.social__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, opacity 0.3s;
}

.social__item:hover img { transform: scale(1.06); opacity: 0.85; }

/* ─── Menu page ─── */
.menu-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: 96px;
}

.menu-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-nav__link {
  display: block;
  padding: 12px 0 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.menu-nav__link:hover,
.menu-nav__link--active {
  color: var(--fg);
  border-left-color: var(--gold);
}

.wine-card {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.wine-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0 0 8px;
}

.wine-card p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin: 0 0 12px;
}

.menu-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--line);
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto;
}

.menu-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 0.88rem;
  color: var(--fg);
}

.menu-search input::placeholder { color: var(--fg-subtle); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s;
}

.menu-item:hover { border-color: var(--gold); }

.menu-item__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--fg-inverse);
}

.menu-item__body { padding: 20px; }

.menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.menu-item__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item__desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin: 0 0 16px;
}

.menu-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--fg-subtle);
}

.menu-item__add {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.68rem;
}

.menu-item__add:hover { opacity: 0.75; }

/* ─── Homepage menu cards ─── */
.menu__categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s;
  min-height: 100%;
}

.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.menu-card__icon { font-size: 1.6rem; }

.menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin: 0;
}

.menu-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0;
  flex: 1;
  line-height: 1.55;
}

.menu-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

/* Grill list */
.grill-list { margin-top: 64px; }

.grill-list h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.grill-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.grill-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin: 0 0 4px;
}

.grill-item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0;
}

.grill-item__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
}

/* ─── Events page ─── */
.events-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 560px;
}

.event-tile--large:first-child { grid-row: 1 / 3; }

.event-tile--large:last-child { grid-column: 2; grid-row: 2; }

.event-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.3s;
}

.event-tile:hover { border-color: var(--gold); }

.event-tile--large { grid-row: span 1; }

.event-tile__bg { position: absolute; inset: 0; }

.event-tile__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.event-tile:hover .event-tile__bg img { transform: scale(1.04); }

.event-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 15%) 55%);
}

.event-tile__content {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: #fff;
}

.event-tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.event-tile p {
  font-size: 0.88rem;
  color: rgb(255 255 255 / 65%);
  margin: 0 0 14px;
  max-width: 36ch;
}

/* Inquiry form */
.inquiry {
  background: var(--bg-muted);
}

.inquiry__card {
  max-width: 640px;
  margin-inline: auto;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  text-align: center;
}

.inquiry__card h2 { font-size: 2rem; margin-bottom: 12px; }

.inquiry__card > p {
  color: var(--fg-muted);
  margin: 0 0 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--line);
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }

/* Gallery */
.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.gallery__nav {
  display: flex;
  gap: 8px;
}

.gallery__btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--fg-muted);
  transition: color 0.2s, border-color 0.2s;
}

.gallery__btn:hover { color: var(--gold); border-color: var(--gold); }

.gallery__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.gallery__slide {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA banner */
.cta-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg { position: absolute; inset: 0; }

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 72%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 48px 24px;
  color: #fff;
}

.cta-banner h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgb(255 255 255 / 70%);
  margin: 0 0 28px;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Newsletter ─── */
.newsletter {
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.newsletter h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.newsletter p {
  color: var(--fg-muted);
  margin: 0 0 32px;
}

.newsletter__form {
  display: flex;
  max-width: 440px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line-strong);
}

.newsletter__form input {
  flex: 1;
  padding: 14px 0;
  background: none;
  border: none;
  outline: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
}

.newsletter__form input::placeholder { color: var(--fg-subtle); }

.newsletter__form button {
  padding: 14px 24px;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.newsletter__form button:hover {
  background: var(--gold);
  color: var(--fg-inverse);
}

/* ─── Footer ─── */
.footer {
  background: #080d18;
  color: rgb(240 245 242 / 70%);
  padding-top: 64px;
}

[data-theme="light"] .footer {
  background: #0f1f18;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 30ch;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 15%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgb(255 255 255 / 50%);
  transition: border-color 0.2s, color 0.2s;
}

.footer__social a:hover { border-color: var(--gold); color: var(--gold); }

.footer__col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  padding: 5px 0;
  color: rgb(255 255 255 / 55%);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--gold); }

.footer__newsletter input {
  width: 100%;
  padding: 12px 14px;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 12%);
  outline: none;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer__newsletter button {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  border: none;
  color: var(--fg-inverse);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.footer__newsletter button:hover { background: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: rgb(255 255 255 / 35%);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgb(255 255 255 / 35%);
  transition: color 0.2s;
}

.footer__legal a:hover { color: var(--gold); }

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  padding: 14px 28px;
  font-size: 0.88rem;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--fg);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  max-width: min(90vw, 480px);
  text-align: center;
}

.toast--visible { transform: translateX(-50%) translateY(0); }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .locations__grid { grid-template-columns: repeat(2, 1fr); }
  .taste__grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar { position: static; }
  .menu-cat-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-cat-nav::-webkit-scrollbar { display: none; }
  .menu-cat-nav__link {
    flex-shrink: 0;
    padding: 10px 16px;
    border-left: none;
    border: 1px solid var(--line);
    background: var(--bg-card);
    white-space: nowrap;
  }
  .menu-cat-nav__link--active {
    background: var(--gold-soft);
    border-color: var(--gold);
  }
  .menu-nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .menu-nav__link { border-left: none; border-bottom: 2px solid transparent; padding: 8px 12px; }
  .menu-nav__link--active { border-bottom-color: var(--gold); }
  .wine-card { display: none; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .menu__categories { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { width: min(1240px, 100% - 24px); }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header__inner {
    height: 56px;
    gap: 12px;
  }

  .logo { font-size: 1.15rem; }

  body.nav-open .header {
    inset: 0;
    height: 100%;
    height: 100dvh;
    background: var(--bg);
    backdrop-filter: none;
    border-bottom: none;
    overflow: hidden;
  }

  body.nav-open .header__inner {
    position: relative;
    z-index: 2;
    background: var(--header-scrolled);
    border-bottom: 1px solid var(--line);
  }

  .nav {
    position: absolute;
    top: calc(56px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
    background: var(--bg);
    border-top: none;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.nav-open .nav { transform: translateX(0); }

  .nav .nav__link {
    color: var(--fg);
    text-shadow: none;
    padding: 16px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .nav .nav__link:hover,
  .nav .nav__link--active {
    color: var(--gold-dark);
    background: var(--gold-soft);
    border-color: var(--line);
  }

  [data-theme="dark"] .nav .nav__link--active {
    color: var(--gold);
  }

  /* Меню открыто — шапка на весь экран */
  body.nav-open .header::before { display: none; }

  body.nav-open .header .logo {
    color: var(--gold);
    text-shadow: none;
  }

  body.nav-open .header .theme-toggle {
    color: var(--gold-dark);
  }

  [data-theme="dark"] body.nav-open .header .theme-toggle {
    color: var(--fg-muted);
  }

  body.nav-open .header .theme-toggle:hover {
    color: var(--gold);
  }

  body.nav-open .header .burger {
    border-color: var(--line);
  }

  body.nav-open .header .burger span {
    background: var(--fg);
  }

  .nav__link--active::after { display: none; }

  .nav__cta {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 20px;
  }

  .nav__cta .btn--full {
    width: 100%;
    justify-content: center;
  }

  .burger { display: flex; }
  .header__phone { display: none !important; }
  .header__account { display: none !important; }
  .header__actions .btn--gold { display: none; }

  body.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .burger span:nth-child(2) { opacity: 0; }
  body.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero {
    min-height: 88vh;
    min-height: 88dvh;
    padding: 100px 0 56px;
  }

  .hero--page {
    min-height: 62vh;
    min-height: 62dvh;
    padding-bottom: 48px;
  }

  .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section { padding: clamp(56px, 12vw, 80px) 0; }

  .section-head {
    margin-bottom: 32px;
    gap: 16px;
  }

  .taste__stats {
    gap: 28px;
    flex-wrap: wrap;
  }

  .taste__stat-value { font-size: 2.2rem; }

  .features-row { grid-template-columns: 1fr; }
  .feature-box { padding: 28px 24px; }

  .privileges__grid { grid-template-columns: 1fr; }
  .promo-banner { min-height: 260px; }

  .locations__grid { grid-template-columns: 1fr; }
  .menu__categories { grid-template-columns: 1fr; }

  .chef-banner {
    min-height: 360px;
    align-items: flex-end;
  }

  .chef-banner__overlay {
    background: linear-gradient(0deg, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 35%) 55%, transparent 100%);
  }

  .chef-banner__content {
    max-width: none;
    padding: 32px 0 40px;
  }

  .chef-banner h2 { font-size: 1.8rem; }

  .social__grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }

  .events-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .event-tile--large:first-child { grid-row: auto; }
  .event-tile--large:last-child { grid-column: auto; grid-row: auto; }
  .event-tile { min-height: 220px; }

  .restaurant-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    overflow: hidden;
  }

  .restaurant-row:last-child { border-bottom: 1px solid var(--line); }

  .restaurant-row:nth-child(even) .restaurant-row__image { order: 0; }

  .restaurant-row__image { aspect-ratio: 16/11; }

  .restaurant-row > div:not(.restaurant-row__image) { padding: 20px 20px 0; }

  .restaurant-row h3 { font-size: 1.5rem; }

  .restaurant-row__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 20px 20px;
  }

  .restaurant-row__links .btn {
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .restaurant-row__links .btn--ghost {
    border: 1px solid var(--line-strong);
    padding: 12px 10px;
  }

  .restaurant-row__links .btn--gold {
    border: 1px solid var(--gold);
  }

  .gallery__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gallery__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .gallery__track::-webkit-scrollbar { display: none; }

  .gallery__slide {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

  .form-grid { grid-template-columns: 1fr; }

  .cta-banner {
    min-height: 320px;
    align-items: flex-end;
  }

  .cta-banner h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }

  .cta-banner__content { padding: 32px 0 40px; }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner__actions .btn { width: 100%; }

  .newsletter { padding: 56px 0; }

  .newsletter h2 { font-size: 1.8rem; }

  .newsletter__form {
    flex-direction: column;
    gap: 12px;
    border-bottom: none;
    max-width: 100%;
  }

  .newsletter__form input {
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: var(--bg-input);
  }

  .newsletter__form button { width: 100%; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__brand p { margin-inline: auto; }

  .footer__social { justify-content: center; }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer__legal { justify-content: center; flex-wrap: wrap; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .section-head--center { align-items: center; }

  .inquiry__card { padding: 28px 20px; }

  .inquiry__card h2 { font-size: 1.6rem; }

  .delivery-address { flex-direction: column; }

  .delivery-address .btn { width: 100%; }

  .delivery-map__pin {
    font-size: 0.5rem;
    padding: 4px 8px;
  }

  .dish-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .venue-card__body { padding: 20px; }

  .bento-tile__title { font-size: 1.25rem; }

  .bento-tile--large .bento-tile__title { font-size: 1.5rem; }

  .toast {
    left: 12px;
    right: 12px;
    transform: translateY(120%);
    max-width: none;
    width: auto;
  }

  .toast--visible { transform: translateY(0); }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .newsletter__form input,
  .delivery-address input,
  .footer__newsletter input {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Menu page (Stitch) ─── */
.menu-page {
  background: var(--bg);
}

[data-theme="dark"] .menu-page {
  background-image: radial-gradient(rgb(157 224 195 / 4%) 1px, transparent 1px);
  background-size: 24px 24px;
}

.menu-page__hero {
  padding: 120px 0 32px;
  border-bottom: 1px solid var(--line);
}

.menu-page__hero-inner {
  max-width: 560px;
}

.menu-page__body { padding: 28px 0 64px; }

.menu-type-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu-type-tabs::-webkit-scrollbar { display: none; }

.menu-type-tabs__btn {
  flex-shrink: 0;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.menu-type-tabs__btn:hover { color: var(--fg); border-color: var(--line-strong); }

.menu-type-tabs__btn--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--fg-inverse);
}

.menu-type-tabs__label--short { display: none; }

.menu-page__controls,
.menu-page__content { display: block; }

.menu-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 28px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu-filters::-webkit-scrollbar { display: none; }

.menu-filters__btn {
  flex-shrink: 0;
  padding: 14px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--fg-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.menu-filters__btn:hover { color: var(--fg); }

.menu-filters__btn--active {
  color: var(--fg);
  border-bottom-color: var(--gold);
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.menu-toolbar .menu-search { margin: 0; max-width: 420px; flex: 1; min-width: 200px; }

.menu-pdf-btn { flex-shrink: 0; }

.menu-featured-wrap { margin-bottom: 32px; }

.menu-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
}

.menu-featured__image {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  background: var(--bg-muted);
}

.menu-featured__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--fg-inverse);
}

.menu-featured__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-featured__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.menu-featured__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

.menu-featured__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.menu-featured__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.menu-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.menu-featured__meta strong {
  display: block;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.menu-dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.menu-dish-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.menu-dish-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.menu-dish-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-muted);
}

.menu-dish-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-dish-card:hover .menu-dish-card__image img { transform: scale(1.05); }

.menu-dish-card__price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgb(11 17 33 / 82%);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgb(255 255 255 / 12%);
}

.menu-dish-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-dish-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-dish-card__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
  flex: 1;
}

.menu-dish-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-dish-card__desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--fg-subtle);
  margin-top: auto;
}

.menu-dish-card__weight {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-dish-card__order {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}

.menu-dish-card__order:hover { opacity: 0.75; }

.menu-dish-card__add {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}

.menu-dish-card__add:hover { opacity: 0.75; }

.menu-promo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #c45a1a;
}

.menu-promo-card__bg {
  position: absolute;
  inset: 0;
}

.menu-promo-card__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.55;
}

.menu-promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 85%) 0%, transparent 60%);
}

.menu-promo-card__body {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: #fff;
}

.menu-promo-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 70%);
  margin-bottom: 8px;
}

.menu-promo-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.menu-promo-card p {
  font-size: 0.82rem;
  color: rgb(255 255 255 / 75%);
  margin: 0 0 14px;
}

.menu-promo-card .link-arrow { color: #fff; }

.menu-stats {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin: 8px 0 0;
}

.menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--fg-muted);
  padding: 48px 24px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.menu-grill {
  padding: 80px 0;
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
}

.menu-grill__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.menu-grill__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--bg-muted);
}

.menu-grill__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.menu-grill__list {
  margin: 28px 0 32px;
}

.menu-grill__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-grill__item:last-child { border-bottom: none; }

.menu-grill__item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  grid-column: 1;
}

.menu-grill__item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-grill__item p {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.5;
}

.menu-grill__item-add {
  grid-column: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.menu-grill__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-featured__body .btn--gold,
.menu-featured__cta {
  align-self: flex-start;
}

/* ─── Menu page — mobile ─── */
@media (max-width: 768px) {
  .menu-page__hero {
    padding: 80px 0 16px;
    text-align: center;
    border-bottom: none;
  }

  .menu-page__hero-inner {
    max-width: none;
    margin-inline: auto;
  }

  .menu-page__hero .eyebrow {
    display: block;
    text-align: center;
  }

  .menu-page__hero .section-title {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    margin-inline: auto;
  }

  .menu-page__body {
    padding: 0 0 56px;
  }

  .menu-page__controls {
    position: sticky;
    top: calc(64px + env(safe-area-inset-top, 0px));
    z-index: 40;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 14px 0 12px;
    margin-bottom: 4px;
  }

  [data-theme="dark"] .menu-page__controls {
    background: rgb(11 17 33 / 96%);
    backdrop-filter: blur(12px);
  }

  [data-theme="light"] .menu-page__controls {
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(12px);
  }

  .menu-type-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    margin-bottom: 12px;
    padding-bottom: 0;
  }

  .menu-type-tabs__btn {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 12px 10px;
    font-size: 0.62rem;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    border-radius: 8px;
  }

  .menu-type-tabs__label--full { display: none; }

  .menu-type-tabs__label--short { display: inline; }

  .menu-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 2px;
    border-bottom: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-filters::-webkit-scrollbar { display: none; }

  .menu-filters__btn {
    flex-shrink: 0;
    padding: 9px 16px;
    margin-bottom: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    border-bottom: 1px solid var(--line);
    font-size: 0.62rem;
    background: var(--bg-card);
    scroll-snap-align: start;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .menu-filters__btn--active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--fg-inverse);
  }

  .menu-toolbar {
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 0;
    gap: 8px;
  }

  .menu-toolbar .menu-search {
    flex: 1;
    max-width: none;
    min-width: 0;
    margin-bottom: 0;
    margin-left: 0;
    border-radius: 10px;
    padding: 11px 14px;
  }

  .menu-pdf-btn {
    flex-shrink: 0;
    width: auto;
    min-width: 52px;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    justify-content: center;
  }

  .menu-page__content {
    padding-top: 20px;
  }

  .menu-featured-wrap {
    display: none;
  }

  .menu-dish-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-dish-card {
    flex-direction: row;
    align-items: stretch;
    border-radius: 12px;
    box-shadow: none;
  }

  .menu-dish-card:hover {
    transform: none;
  }

  .menu-dish-card__image {
    flex: 0 0 108px;
    width: 108px;
    min-height: 108px;
    aspect-ratio: 1;
  }

  .menu-dish-card__price-badge {
    display: none;
  }

  .menu-dish-card__body {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    justify-content: center;
  }

  .menu-dish-card__head {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
  }

  .menu-dish-card__body h3 {
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
  }

  .menu-dish-card__price {
    font-size: 1rem;
    white-space: nowrap;
  }

  .menu-dish-card__desc {
    font-size: 0.75rem;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
  }

  .menu-dish-card__footer {
    margin-top: 8px;
    padding-top: 0;
    border-top: none;
    gap: 8px;
  }

  .menu-dish-card__weight {
    font-size: 0.68rem;
  }

  .menu-dish-card__order {
    padding: 6px 12px;
    font-size: 0.58rem;
    background: var(--gold-soft);
    border-radius: 6px;
  }

  .menu-promo-card {
    min-height: 160px;
    border-radius: 12px;
    grid-column: 1 / -1;
  }

  .menu-promo-card__body {
    padding: 20px 18px;
    text-align: left;
  }

  .menu-promo-card h3 {
    font-size: 1.15rem;
  }

  .menu-promo-card p {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  .menu-stats {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .menu-grill {
    padding: 52px 0;
  }

  .menu-grill__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .menu-grill__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-grill__content .section-title {
    text-align: center;
  }

  .menu-grill__visual {
    order: -1;
    border-radius: 14px;
    overflow: hidden;
  }

  .menu-grill__list {
    width: 100%;
    margin: 24px 0 28px;
    text-align: left;
  }

  .menu-grill__item {
    padding: 16px 0;
  }

  .menu-grill__item h4 {
    font-size: 1.05rem;
    padding-right: 72px;
  }

  .menu-grill__actions {
    flex-direction: column;
    width: 100%;
  }

  .menu-grill__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner--menu {
    min-height: 360px;
  }

  .cta-banner--menu .cta-banner__content {
    text-align: center;
    align-items: center;
  }

  .cta-banner--menu h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .menu-page__hero {
    padding-top: 84px;
  }

  .menu-type-tabs__btn {
    padding: 11px 8px;
    font-size: 0.58rem;
  }

  .menu-featured__head h2 {
    font-size: 1.3rem;
  }

  .menu-dish-card__body h3 {
    font-size: 1.05rem;
  }
}

.cta-banner--menu .cta-banner__content .eyebrow {
  display: block;
  margin-bottom: 12px;
}

/* Legacy menu list (fallback) */
.menu-tabs,
.menu-cat-nav,
.menu-section,
.menu-list { /* kept for compatibility */ }

.menu-section { margin-bottom: 48px; scroll-margin-top: 100px; }

.menu-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.menu-list { display: flex; flex-direction: column; }

.menu-list__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list__item:last-child { border-bottom: none; }

.menu-list__info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.menu-list__desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}

.menu-list__weight {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.menu-list__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  position: relative;
}

.menu-list__price::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  width: 40px;
  margin-right: 12px;
  border-top: 1px dotted var(--line-strong);
  display: none;
}

@media (min-width: 600px) {
  .menu-list__price::before { display: block; width: min(80px, 15vw); }
}

.menu-empty {
  text-align: center;
  color: var(--fg-muted);
  padding: 48px 24px;
}

@media (max-width: 768px) {
  .menu-list__item { grid-template-columns: 1fr; gap: 8px; }
  .menu-list__price::before { display: none; }
}

/* ─── Delivery page ─── */
.hero--delivery .hero__content { max-width: 600px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.hero__meta-icon {
  font-size: 1.4rem;
  color: var(--gold);
}

.hero__meta-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.hero__meta-item span {
  font-size: 0.78rem;
  color: rgb(255 255 255 / 55%);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.delivery-shop__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.delivery-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.delivery-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.delivery-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--fg-muted);
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.delivery-sidebar__link:hover,
.delivery-sidebar__link--active {
  color: var(--fg);
  border-left-color: var(--gold);
  background: var(--gold-soft);
}

.delivery-sidebar__icon {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.delivery-mobile-cats { display: none; }

.delivery-section {
  margin-bottom: 56px;
  scroll-margin-top: 96px;
}

.delivery-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.delivery-section__desc {
  color: var(--fg-muted);
  margin: 0 0 24px;
  font-size: 0.9rem;
}

.delivery-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.delivery-cats::-webkit-scrollbar { display: none; }

.delivery-cats__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 96px;
  max-width: 120px;
  padding: 12px 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--fg-muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.25;
}

.delivery-cats__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.delivery-cats__btn:hover,
.delivery-cats__btn--active {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.dish-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.dish-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-muted);
}

.dish-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.5s;
}

.dish-card:hover .dish-card__image img { transform: scale(1.04); }

.dish-card__body { padding: 16px; }

.dish-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}

.dish-card__head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.dish-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.dish-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 4px 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--fg-inverse);
}

.dish-card__desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin: 0 0 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--fg-subtle);
}

.dish-card__add {
  padding: 8px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  color: var(--fg-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.dish-card__add:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.dish-card__rating { color: var(--gold); }

.delivery-info { background: var(--bg-muted); }

.delivery-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.delivery-features {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.delivery-features li {
  display: flex;
  gap: 16px;
}

.delivery-features__icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.delivery-features strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.delivery-features span {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.delivery-map__visual {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  overflow: hidden;
}

.delivery-map__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, var(--gold-soft) 0%, transparent 40%),
    radial-gradient(circle at 60% 60%, var(--gold-soft) 0%, transparent 35%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.delivery-map__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: 6px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--fg-inverse);
  white-space: nowrap;
}

.delivery-address {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.delivery-address input {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--line);
  outline: none;
}

.delivery-address input:focus { border-color: var(--gold); }

.delivery-map__link { font-size: 0.72rem; }

/* ─── Events page ─── */
.events-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}

.bento-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.3s;
}

.bento-tile:hover { border-color: var(--gold); }

.bento-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tile--medium { grid-column: span 2; }

.bento-tile__bg { position: absolute; inset: 0; }

.bento-tile__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bento-tile:hover .bento-tile__bg img { transform: scale(1.05); }

.bento-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 10%) 60%);
}

.events-atmosphere { background: var(--bg-muted); }

.events-atmosphere__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.events-features {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.events-features li {
  display: flex;
  gap: 16px;
}

.events-features__icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.events-features strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.events-features span {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.events-atmosphere__visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.events-atmosphere__img {
  overflow: hidden;
  border: 1px solid var(--line);
}

.events-atmosphere__img--accent { margin-top: 48px; }

.events-atmosphere__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.venue-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.venue-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.venue-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card__body { padding: 24px; }

.venue-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.venue-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0 0 6px;
}

.venue-card__link {
  display: inline-block;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .delivery-info__grid,
  .events-atmosphere__grid { grid-template-columns: 1fr; gap: 40px; }

  .delivery-shop__layout { grid-template-columns: 1fr; }
  .delivery-sidebar { display: none; }
  .delivery-mobile-cats { display: flex; }

  .events-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-tile--large { grid-column: span 2; grid-row: span 1; min-height: 280px; }
  .bento-tile--medium { grid-column: span 2; min-height: 200px; }
  .bento-tile--small { min-height: 180px; }

  .venues-grid { grid-template-columns: 1fr; }
  .events-atmosphere__visual { grid-template-columns: 1fr; }
  .events-atmosphere__img--accent { margin-top: 0; }
}

@media (max-width: 768px) {
  .hero__meta { gap: 16px; }
  .hero__meta-item { flex: 1 1 100%; }

  .hero--delivery {
    min-height: auto;
    padding: 88px 0 28px;
  }

  .hero--delivery .hero__meta {
    margin-bottom: 20px;
  }

  .delivery-shop__layout {
    gap: 12px;
  }

  .delivery-mobile-cats {
    position: sticky;
    top: calc(64px + env(safe-area-inset-top, 0px));
    z-index: 35;
    margin-bottom: 16px;
    padding: 8px 0 10px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  [data-theme="dark"] .delivery-mobile-cats {
    background: rgb(11 17 33 / 96%);
    backdrop-filter: blur(12px);
  }

  [data-theme="light"] .delivery-mobile-cats {
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(12px);
  }

  .delivery-section {
    margin-bottom: 32px;
    scroll-margin-top: 140px;
  }

  .delivery-section__title {
    font-size: 1.45rem;
    margin-bottom: 4px;
  }

  .delivery-section__desc {
    font-size: 0.82rem;
    margin-bottom: 16px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dish-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .dish-card:hover {
    transform: none;
  }

  .dish-card__image {
    flex: 0 0 108px;
    width: 108px;
    min-height: 108px;
    aspect-ratio: 1;
  }

  .dish-card__body {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .dish-card__head {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
  }

  .dish-card__head h3 {
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
  }

  .dish-card__price {
    font-size: 1rem;
  }

  .dish-card__desc {
    -webkit-line-clamp: 2;
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .dish-card__footer {
    font-size: 0.68rem;
    gap: 8px;
  }

  .dish-card__add {
    padding: 6px 10px;
    font-size: 0.58rem;
  }

  .events-bento { grid-template-columns: 1fr; }
  .bento-tile--large,
  .bento-tile--medium { grid-column: span 1; min-height: 200px; }
  .bento-tile--small { min-height: 160px; }
}

@media (max-width: 480px) {
  .container { width: min(1240px, 100% - 20px); }

  .social__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  .hero__title { font-size: clamp(1.85rem, 8.5vw, 2.4rem); }

  .section-title { font-size: clamp(1.75rem, 7vw, 2.2rem); }

  .taste__image { aspect-ratio: 4/5; }

  .loc-card__body { padding: 16px; }

  .promo-banner__content { padding: 24px 20px; }

  .promo-banner h3 { font-size: 1.5rem; }

  .delivery-cats__btn {
    min-width: 76px;
    padding: 12px 10px;
  }

  .delivery-map__visual { aspect-ratio: 4/3; }

  .delivery-map__pin:nth-child(n+4) { display: none; }

  .events-atmosphere__img img { aspect-ratio: 4/5; }

  .gallery__slide { flex-basis: 85vw; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .locations__grid { grid-template-columns: repeat(2, 1fr); }
  .social__grid { grid-template-columns: repeat(4, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-dish-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-featured { grid-template-columns: 1fr; }
  .menu-grill__grid { grid-template-columns: 1fr; }
  .menu-grill__visual { order: -1; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .venues-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-locations { grid-template-columns: repeat(2, 1fr); }
  .contact-delivery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Page hero (contacts, menu) ─── */
.page-hero {
  padding: 120px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: 640px;
}

/* ─── Contacts page ─── */
.contact-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.contact-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.contact-card:hover .contact-card__image img { transform: scale(1.04); }

.contact-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-card__meta {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card__meta li {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

.contact-card__meta a {
  color: var(--fg);
  transition: color 0.2s;
}

.contact-card__meta a:hover { color: var(--gold); }

.contact-card__icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card__hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex: 1;
}

.contact-card__hours-block {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.contact-card__hours-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.contact-card__actions .btn {
  justify-content: center;
  text-align: center;
}

.contact-delivery { background: var(--bg-muted); }

.contact-delivery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-delivery__item {
  padding: 32px 24px;
  background: var(--bg-card);
  text-align: center;
}

.contact-delivery__icon {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-delivery__item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-delivery__item p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}

.contact-feedback { background: var(--bg); }

.contact-feedback__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-list__icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 2px;
}

.contact-info-list__label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-list a {
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info-list a:hover { color: var(--gold); }

.contact-form {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form .form-grid { margin: 0; }

/* ─── Events enhancements ─── */
.bento-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px;
  color: #fff;
}

.bento-tile__title {
  position: static;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
}

.bento-tile--large .bento-tile__title { font-size: 2rem; }

.bento-tile__desc {
  font-size: 0.82rem;
  color: rgb(255 255 255 / 72%);
  margin: 0;
  line-height: 1.45;
  max-width: 36ch;
}

.bento-tile--small .bento-tile__desc { display: none; }

.venue-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.venue-card__actions .btn {
  justify-content: center;
  text-align: center;
}

@media (max-width: 1024px) {
  .contact-locations { grid-template-columns: repeat(2, 1fr); }
  .contact-delivery__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-feedback__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 96px 0 32px; }

  .contact-locations { grid-template-columns: 1fr; }

  .contact-card__actions { grid-template-columns: 1fr; }

  .contact-delivery__grid { grid-template-columns: 1fr; }

  .contact-form { padding: 28px 20px; }

  .venue-card__actions { grid-template-columns: 1fr; }
}
