/* ВКУС — dark premium (LUMIÈRE-inspired) */

:root {
  --bg: #020202;
  --bg-elevated: #080808;
  --bg-card: #0c0c0c;
  --border: rgba(184, 149, 106, 0.14);
  --border-strong: rgba(184, 149, 106, 0.28);
  --gold: #b8956a;
  --gold-light: #d4bc94;
  --gold-dim: rgba(184, 149, 106, 0.12);
  --text: #f4f0eb;
  --text-muted: rgba(244, 240, 235, 0.58);
  --text-dim: rgba(244, 240, 235, 0.35);
  --red: #e57373;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --header-h: 88px;
  --bar-offset: var(--arsovia-bar-h, 0px);
  --page-x: clamp(28px, 5vw, 72px);
  --space-block: clamp(32px, 5vw, 56px);
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  background: var(--bg);
  overflow-x: clip;
}

::selection {
  background: rgba(184, 149, 106, 0.35);
  color: var(--text);
}

.page-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

ul { list-style: none; }

[id] { scroll-margin-top: calc(var(--bar-offset, 0px) + var(--header-h) + 20px); }

.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--page-x);
}

/* Typography */
.brand {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-decoration: none;
}

.brand--footer {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow--center { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 500;
  line-height: 1.28;
  color: var(--text);
  margin-bottom: 24px;
}

.section-title--center { text-align: center; }

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-desc {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.section-head { margin-bottom: 56px; }

.section { padding: clamp(88px, 14vw, 128px) 0; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}

.text-link:hover {
  gap: 14px;
  color: var(--gold-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-strong);
}

.btn--outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.btn--gold {
  background: var(--gold);
  color: #0a0806;
  font-weight: 700;
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--full { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.92) 0%, transparent 100%);
  transition: background var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(2, 2, 2, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  min-height: var(--header-h);
  padding-block: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  row-gap: 10px;
  grid-column: 2;
  grid-row: 1;
}

.site-nav__link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
  padding: 6px 0;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link.active {
  color: var(--gold-light);
}

.site-nav__link--cta {
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  color: var(--gold) !important;
}

.site-nav__link--cta:hover {
  background: var(--gold-dim);
}

.site-nav__phone-mobile {
  display: none;
  margin-top: 24px;
  padding: 14px 18px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  border: 1px solid var(--border);
  background: rgba(184, 149, 106, 0.06);
}

.hero__body .eyebrow {
  margin-bottom: 0;
}

.site-header .brand {
  position: static;
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
  padding-left: 0.15em;
  line-height: 1;
  flex-shrink: 0;
}

.site-header__phone {
  position: static;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  transition: color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--gold-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-header__phone:hover {
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--bar-offset, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--bar-offset, 0px) + var(--header-h) + 24px);
  padding-bottom: 48px;
  overflow: hidden;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-block);
  align-items: center;
  width: 100%;
  padding: clamp(32px, 6vw, 64px) 0 clamp(48px, 8vw, 80px);
}

.hero__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4.5vw, 44px);
  max-width: 760px;
  width: 100%;
  text-align: center;
  margin-inline: auto;
  padding-inline: clamp(8px, 2vw, 24px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
  transform-origin: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.42) 0%, rgba(2, 2, 2, 0.68) 42%, rgba(2, 2, 2, 0.96) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(2, 2, 2, 0.55) 100%),
    radial-gradient(circle at 50% 0%, rgba(184, 149, 106, 0.08), transparent 45%);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  font-weight: 500;
  line-height: 1.28;
  color: var(--text);
  margin: 0;
}

.hero__lead {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0;
  line-height: 1.85;
}

.hero__scroll {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 1;
}

@media (min-width: 769px) {
  .hero__scroll { display: none; }
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* Philosophy */
.philosophy {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.philosophy__media {
  position: relative;
}

.philosophy__media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.philosophy__badge {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: 88px;
  height: 88px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--border-strong);
  background: rgba(2, 2, 2, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.philosophy__badge span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.philosophy__badge strong {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}

.frame {
  position: relative;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.frame--gold::before,
.frame--gold::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
}

.frame--gold::before {
  top: 8px;
  left: 8px;
  border-width: 1px 0 0 1px;
}

.frame--gold::after {
  right: 8px;
  bottom: 8px;
  border-width: 0 1px 1px 0;
}

.frame--portrait {
  display: inline-block;
  width: 100%;
}

.frame img {
  width: 100%;
  display: block;
}

.philosophy__text p {
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.philosophy__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}

.philosophy__stats li {
  padding: 16px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.philosophy__stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.philosophy__stats span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Signature dishes */
.signature {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.signature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dish-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.dish-card--featured {
  border-color: var(--border-strong);
  background:
    radial-gradient(circle at top right, rgba(184, 149, 106, 0.1), transparent 50%),
    var(--bg-card);
}

.dish-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.dish-card__num {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(244, 240, 235, 0.12);
  pointer-events: none;
}

.dish-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 2, 2, 0.72);
  backdrop-filter: blur(8px);
}

.dish-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.dish-card__price {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
}

.dish-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dish-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 2, 2, 0.55) 100%);
  pointer-events: none;
}

.dish-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover .dish-card__img img {
  transform: scale(1.05);
}

.dish-card__body {
  padding: 24px 22px 28px;
}

.dish-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-light);
}

.dish-card__body p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.dish-card .text-link { margin-top: 12px; }

/* Menu */
.menu-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tab {
  padding: 10px 22px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.tab:hover { color: var(--gold); border-color: var(--border-strong); }

.tab.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}

.menu-grid.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  min-height: 148px;
  background: var(--bg-card);
  transition: background var(--transition);
}

.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
}

.menu-item__head::after {
  content: '';
  flex: 1;
  min-width: 24px;
  border-bottom: 1px dotted rgba(184, 149, 106, 0.35);
  transform: translateY(-5px);
}

.menu-item__body { flex: 1; min-width: 0; width: 100%; }

.menu-item:hover { background: var(--bg-elevated); }

.menu-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0;
  flex-shrink: 0;
}

.menu-item p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.menu-item__price {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item__badge {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  color: var(--gold);
}

.menu-item--feature {
  grid-column: 1 / -1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background:
    linear-gradient(145deg, rgba(184, 149, 106, 0.1) 0%, rgba(184, 149, 106, 0.02) 55%, var(--bg-card) 100%);
  border: none;
  outline: 1px solid rgba(184, 149, 106, 0.28);
  outline-offset: -1px;
  position: relative;
  overflow: hidden;
}

.menu-item--feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
}

.menu-item--feature:hover {
  background:
    linear-gradient(145deg, rgba(184, 149, 106, 0.16) 0%, rgba(184, 149, 106, 0.04) 55%, var(--bg-elevated) 100%);
}

.menu-item__feature-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-item--feature h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.menu-item--feature p {
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 28ch;
}

.menu-item__feature-cta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing var(--transition);
}

.menu-item--feature:hover .menu-item__feature-cta {
  letter-spacing: 0.18em;
}

/* Chef */
.chef {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.chef__grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.chef__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  filter: brightness(0.92) contrast(1.06) saturate(0.95);
}

.chef__role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.chef__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--text);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.chef__bio {
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.chef__awards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chef__awards li {
  padding: 12px 16px;
  font-size: 0.82rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

/* Reserve */
.reserve {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.reserve__panel {
  padding: clamp(32px, 5vw, 56px);
  background: var(--bg-card);
}

.reserve__lead {
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.reserve__visual {
  position: relative;
  min-height: 400px;
}

.reserve__visual img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.book-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  transition: border-color var(--transition);
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.book-form input.invalid,
.book-form select.invalid {
  border-color: var(--red);
}

.form-error {
  display: block;
  min-height: 1.1em;
  font-size: 0.72rem;
  color: var(--red);
  margin-top: 4px;
}

.form-msg {
  margin-top: 12px;
  font-size: 0.85rem;
  text-align: center;
}

.form-msg--success { color: #81c784; }
.form-msg--error { color: var(--red); }

/* Footer */
.footer {
  padding: 64px 0 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--gold);
  transition: border-color var(--transition), background var(--transition);
}

.footer__social a:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__col li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}

.footer__col li span:first-child { color: var(--text-dim); }

.footer__contact li {
  display: block;
  border: none;
  padding: 4px 0;
}

.footer__contact a:hover { color: var(--gold-light); }

.footer__news-text {
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.newsletter {
  display: flex;
  border: 1px solid var(--border);
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: var(--bg);
  border: none;
  color: var(--text);
  font-size: 0.85rem;
}

.newsletter input:focus { outline: none; }

.newsletter button {
  width: 48px;
  background: var(--gold-dim);
  border: none;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter button:hover { background: rgba(184, 149, 106, 0.22); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a:hover { color: var(--gold); }

.section--highlight {
  animation: glow 1.2s ease;
}

@keyframes glow {
  30% { box-shadow: inset 0 0 0 1px var(--border-strong); }
}

/* Mobile */
@media (max-width: 960px) {
  .signature__grid,
  .philosophy__grid,
  .chef__grid,
  .reserve__grid {
    grid-template-columns: 1fr;
  }

  .reserve__visual { min-height: 280px; }
  .reserve__visual img { min-height: 280px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.nav-overlay {
  display: none;
}

@media (max-width: 1100px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: flex; }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__phone { display: none; }

  .nav-toggle {
    grid-column: 2;
  }

  .site-nav {
    grid-column: auto;
    grid-row: auto;
    position: fixed;
    top: calc(var(--bar-offset, 0px) + var(--header-h));
    right: 0;
    width: min(320px, 90vw);
    height: calc(100dvh - var(--bar-offset, 0px) - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px var(--page-x) 40px;
    background: rgba(2, 2, 2, 0.98);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .site-nav.open { transform: translateX(0); }

  .site-nav__link {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.74rem;
  }

  .site-nav__link--cta {
    margin-top: 20px;
    padding: 14px 18px;
    text-align: center;
    border: 1px solid var(--border-strong);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__phone-mobile {
    display: block;
  }
}

@media (max-width: 960px) and (min-width: 769px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ===== Professional premium additions ===== */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0;
}

.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #080604;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(184, 149, 106, 0.26);
}

.hero__proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  width: 100%;
  max-width: none;
  margin: clamp(16px, 3vw, 28px) 0 0;
  padding: clamp(28px, 4vw, 40px) 0 0;
  border-top: 1px solid rgba(184, 149, 106, 0.16);
}

.hero__proof li {
  padding: clamp(22px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(14px);
  text-align: center;
}

.hero__proof strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero__proof span {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.prestige {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: clamp(48px, 8vw, 72px) 0 clamp(32px, 5vw, 48px);
}

.prestige__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.prestige__card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at top right, rgba(184, 149, 106, 0.14), transparent 42%),
    rgba(8, 8, 8, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.prestige__card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.prestige__card strong {
  display: block;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.22;
}

.chef-table {
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 149, 106, 0.13), transparent 34%),
    linear-gradient(180deg, var(--bg), #050403);
}

.chef-table__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.chef-table__copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.chef-table__list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
}

.chef-table__list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.chef-table__list li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.chef-table__media {
  position: relative;
}

.chef-table__media img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  filter: saturate(0.92) contrast(1.05);
}

.chef-table__price {
  position: absolute;
  right: 26px;
  bottom: 26px;
  min-width: 180px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 2, 2, 0.82);
  backdrop-filter: blur(14px);
  text-align: center;
}

.chef-table__price span,
.chef-table__price em {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chef-table__price strong {
  display: block;
  margin: 4px 0;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .prestige__grid,
  .chef-table__grid {
    grid-template-columns: 1fr;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__proof li {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .hero__proof strong {
    flex-shrink: 0;
    min-width: 52px;
    margin-bottom: 0;
  }

  .prestige {
    margin-top: 0;
    padding-top: clamp(48px, 8vw, 72px);
  }

  .chef-table__media img {
    min-height: 360px;
  }
}

/* ===== WOW upgrade ===== */
.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
}

.hero__ornament-line {
  display: block;
  width: clamp(48px, 12vw, 110px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero__ornament-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__ornament-star {
  color: var(--gold);
  font-size: 0.85rem;
  animation: starPulse 3.4s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

.hero__shimmer {
  background: linear-gradient(100deg, var(--gold) 0%, #f6ecd6 25%, var(--gold-light) 45%, var(--gold) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 5.5s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

/* Ambience gallery */
.ambience {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.ambience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.ambience__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.ambience__item--tall { grid-row: span 2; }
.ambience__item--wide { grid-column: span 2; }

.ambience__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0, 0.1, 1), filter var(--transition);
  filter: brightness(0.82) saturate(0.95);
}

.ambience__item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.05);
}

.ambience__item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.ambience__item figcaption span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: var(--font-sans);
}

/* Reviews */
.reviews {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.reviews__carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  min-height: 240px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 44px 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(184, 149, 106, 0.1), transparent 55%),
    var(--bg-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

.review-card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.review-card__stars {
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 0.9rem;
}

.review-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  max-width: 620px;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card footer strong {
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.review-card footer span {
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.reviews__dot {
  width: 9px;
  height: 9px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.reviews__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

/* Reveal animation */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0, 0.1, 1), transform 0.8s cubic-bezier(0.2, 0, 0.1, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.95);
  padding: 18px 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.marquee__dot {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.7;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* Section ornament */
.section-head::after {
  content: '✦';
  display: block;
  margin: 28px auto 0;
  width: fit-content;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.55;
  letter-spacing: 0;
}

.section-head:has(.section-desc)::after {
  margin-top: 20px;
}

/* Tabs premium */
.tab {
  position: relative;
  overflow: hidden;
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--gold);
}

/* Reserve visual overlay */
.reserve__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 149, 106, 0.12), transparent 55%);
  pointer-events: none;
}

/* Footer refinement */
.footer {
  background:
    radial-gradient(ellipse at top, rgba(184, 149, 106, 0.06), transparent 50%),
    var(--bg-elevated);
}

/* Wine section */
.wine {
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 149, 106, 0.1), transparent 40%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.wine__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.wine__lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 48ch;
}

.wine__list {
  display: grid;
  gap: 10px;
}

.wine__list li {
  position: relative;
  padding: 12px 16px 12px 36px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.9rem;
}

.wine__list li::before {
  content: '◆';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.45rem;
}

.wine__visual {
  position: relative;
}

.wine__visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  filter: saturate(0.9) contrast(1.04);
}

.wine__label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 2, 2, 0.85);
  backdrop-filter: blur(12px);
}

.wine__label span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.wine__label strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

/* Reviews rating */
.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: -24px auto 36px;
  text-align: center;
}

.reviews__rating strong {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-light);
}

.reviews__rating span {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.reviews__rating em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Reserve notes */
.reserve__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.reserve__notes li {
  padding: 8px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

/* CTA banner */
.cta-banner {
  border-top: 1px solid var(--border);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(56px, 8vw, 88px) 0;
  background:
    linear-gradient(135deg, rgba(184, 149, 106, 0.1), transparent 50%),
    url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1400&q=85') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.94) 0%, rgba(2, 2, 2, 0.72) 50%, rgba(2, 2, 2, 0.55) 100%);
}

.cta-banner__copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.cta-banner__copy p:not(.eyebrow) {
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 42ch;
}

.cta-banner__inner .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.74rem;
}

@media (max-width: 960px) {
  .wine__grid,
  .philosophy__stats {
    grid-template-columns: 1fr;
  }

  .wine__visual img { min-height: 300px; }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 24px;
  }

  .site-header__phone { display: none; }
}

/* ===== Mobile polish ===== */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --page-x: max(20px, env(safe-area-inset-left, 20px));
    --space-block: 28px;
  }

  body {
    font-size: 0.9rem;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .wrap {
    padding-inline: max(20px, env(safe-area-inset-left, 20px)) max(20px, env(safe-area-inset-right, 20px));
  }

  .section {
    padding: clamp(56px, 14vw, 72px) 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
    line-height: 1.22;
    margin-bottom: 16px;
  }

  .section-desc {
    font-size: 0.88rem;
    padding-inline: 4px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
  }

  .brand {
    font-size: 1.35rem;
    letter-spacing: 0.14em;
  }

  .site-header__inner {
    min-height: var(--header-h);
    padding-block: 10px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: calc(var(--bar-offset, 0px) + var(--header-h) + 16px);
    padding-bottom: 32px;
  }

  .hero__layout {
    gap: 28px;
    padding: 20px 0 32px;
  }

  .hero__body {
    gap: 22px;
    padding-inline: 0;
  }

  .hero__ornament-line {
    width: clamp(32px, 10vw, 64px);
  }

  .hero__title {
    font-size: clamp(1.9rem, 8.5vw, 2.65rem);
    line-height: 1.2;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 20px;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 8px;
    padding-top: 24px;
  }

  .hero__proof li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    text-align: left;
  }

  .hero__proof strong {
    flex-shrink: 0;
    min-width: 52px;
    font-size: 1.4rem;
    margin-bottom: 0;
    text-align: center;
  }

  .hero__proof span {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero__scroll {
    display: none;
  }

  /* Prestige */
  .prestige {
    padding: 40px 0 32px;
  }

  .prestige__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prestige__card {
    padding: 20px 22px;
  }

  .prestige__card strong {
    font-size: 1.15rem;
  }

  /* Philosophy */
  .philosophy__grid {
    gap: 32px;
  }

  .philosophy__badge {
    right: 8px;
    bottom: 12px;
    width: 68px;
    height: 68px;
  }

  .philosophy__badge strong {
    font-size: 1.2rem;
  }

  .philosophy__stats li {
    padding: 14px 16px;
  }

  .philosophy__stats strong {
    font-size: 1.4rem;
  }

  /* Experience */
  .experience__step {
    padding: 24px 20px 22px;
  }

  .experience__num {
    font-size: 2.2rem;
    margin-bottom: 4px;
  }

  .experience__step h3 {
    font-size: 1.2rem;
  }

  /* Ambience */
  .ambience__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: min(220px, 52vw);
    gap: 12px;
  }

  .ambience__item--wide,
  .ambience__item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .ambience__item figcaption {
    font-size: 1rem;
    left: 14px;
    bottom: 12px;
  }

  /* Chef table */
  .chef-table__grid {
    gap: 28px;
  }

  .chef-table__media img {
    min-height: 280px;
  }

  .chef-table__price {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
    padding: 14px 16px;
  }

  .chef-table__price strong {
    font-size: 1.65rem;
  }

  /* Signature dishes */
  .signature__grid {
    gap: 16px;
  }

  .dish-card__body {
    padding: 20px 18px 24px;
  }

  .dish-card__body h3 {
    font-size: 1.2rem;
  }

  .dish-card__head {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Wine */
  .wine__grid {
    gap: 28px;
  }

  .wine__visual img {
    min-height: 240px;
  }

  .wine__label {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .book-form .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .philosophy__stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Menu tabs — horizontal scroll */
  .tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-inline: calc(-1 * max(20px, env(safe-area-inset-left, 20px)));
    padding-inline: max(20px, env(safe-area-inset-left, 20px));
    padding-bottom: 4px;
    margin-bottom: 24px;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex-shrink: 0;
    padding: 12px 18px;
    min-height: 44px;
  }

  .menu-item {
    padding: 22px 18px;
    min-height: auto;
  }

  .menu-item__head {
    flex-wrap: wrap;
    gap: 6px;
  }

  .menu-item__head::after {
    display: none;
  }

  .menu-item h4 {
    font-size: 1.1rem;
    flex: 1 1 100%;
  }

  .menu-item__price {
    font-size: 1.05rem;
  }

  .menu-item--feature {
    padding: 24px 18px;
  }

  /* Chef */
  .chef__grid {
    gap: 28px;
  }

  .chef__portrait {
    max-width: 320px;
    margin-inline: auto;
  }

  .chef__quote {
    font-size: 1.1rem;
    padding-left: 16px;
  }

  /* Reviews */
  .reviews__carousel {
    min-height: 280px;
  }

  .review-card {
    padding: 28px 20px;
    gap: 14px;
  }

  .review-card blockquote {
    font-size: 1.15rem;
    line-height: 1.45;
  }

  .reviews__rating {
    margin: -16px auto 28px;
  }

  .reviews__rating strong {
    font-size: 2.4rem;
  }

  /* Reserve */
  .reserve__grid {
    border: none;
    gap: 0;
  }

  .reserve__panel {
    padding: 28px 20px;
    border: 1px solid var(--border);
  }

  .reserve__visual {
    min-height: 220px;
    order: -1;
  }

  .reserve__visual img {
    min-height: 220px;
  }

  .reserve__notes {
    flex-direction: column;
    gap: 8px;
  }

  .reserve__notes li {
    width: 100%;
    text-align: center;
  }

  .book-form input,
  .book-form select,
  .book-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .book-form .btn {
    min-height: 52px;
  }

  /* CTA */
  .cta-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 40px 20px;
    margin-inline: calc(-1 * max(20px, env(safe-area-inset-left, 20px)));
    border-left: none;
    border-right: none;
  }

  .cta-banner__inner .btn {
    width: 100%;
    min-height: 52px;
  }

  /* Footer */
  .footer {
    padding-top: 48px;
  }

  .footer__grid {
    gap: 32px;
  }

  .footer__bottom {
    padding-bottom: max(28px, env(safe-area-inset-bottom, 28px));
  }

  .newsletter input {
    font-size: 16px;
    min-height: 48px;
  }

  .newsletter button {
    min-width: 52px;
  }

  /* Buttons touch */
  .btn {
    min-height: 48px;
  }

  .text-link {
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 60px;
    --page-x: max(16px, env(safe-area-inset-left, 16px));
  }

  .wrap {
    padding-inline: max(16px, env(safe-area-inset-left, 16px)) max(16px, env(safe-area-inset-right, 16px));
  }

  .hero__title {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }

  .hero__ornament {
    gap: 10px;
  }

  .section-title br,
  .hero__title br {
    display: none;
  }

  .marquee {
    padding: 14px 0;
  }

  .marquee__track {
    font-size: 0.6rem;
    gap: 24px;
  }

  .chef-table__list li {
    padding: 12px 14px 12px 36px;
    font-size: 0.88rem;
  }

  .chef-table__list li::before {
    left: 14px;
    width: 6px;
    height: 6px;
  }

  .dish-card__num {
    font-size: 2rem;
    top: 12px;
    left: 14px;
  }

  .frame {
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
  .hero__visual-float { animation: none; }
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), rgba(184, 149, 106, 0.4));
  border-radius: 3px;
}

.page-vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #010101;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.preloader__brand {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  color: var(--gold-light);
  animation: preloaderBrand 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader__line {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloaderLine 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.preloader__tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  animation: preloaderTag 0.8s ease 0.9s forwards;
}

@keyframes preloaderBrand {
  from { opacity: 0; transform: translateY(12px); letter-spacing: 0.5em; }
  to { opacity: 1; transform: none; letter-spacing: 0.32em; }
}

@keyframes preloaderLine {
  to { width: 120px; }
}

@keyframes preloaderTag {
  to { opacity: 1; }
}

/* Hero split — only on very wide screens, content stays centered */
@media (min-width: 1320px) {
  .hero__layout {
    grid-template-columns: 1fr 0.75fr;
    gap: clamp(48px, 5vw, 72px);
  }

  .hero__visual {
    display: block;
    position: relative;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(2, 2, 2, 0.55) 0%, rgba(2, 2, 2, 0.75) 50%, rgba(2, 2, 2, 0.92) 100%),
      radial-gradient(ellipse 70% 60% at 50% 40%, transparent 0%, rgba(2, 2, 2, 0.45) 100%);
  }
}

.hero__visual {
  display: none;
}

.hero__visual-frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.hero__visual-frame::before,
.hero__visual-frame::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
}

.hero__visual-frame::before {
  top: 6px;
  left: 6px;
  border-width: 1px 0 0 1px;
}

.hero__visual-frame::after {
  right: 6px;
  bottom: 6px;
  border-width: 0 1px 1px 0;
}

.hero__visual-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero__visual-badge {
  position: absolute;
  left: -22px;
  bottom: 36px;
  min-width: 130px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 2, 2, 0.88);
  backdrop-filter: blur(14px);
  text-align: center;
}

.hero__visual-badge span,
.hero__visual-badge em {
  display: block;
  font-size: 0.6rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__visual-badge strong {
  display: block;
  margin: 4px 0;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-light);
}

.hero__visual-float {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  background: rgba(2, 2, 2, 0.82);
  backdrop-filter: blur(12px);
  animation: floatCard 5s ease-in-out infinite;
}

.hero__visual-float span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero__visual-float strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}

.hero__visual-float--1 {
  top: 8%;
  right: -18px;
  animation-delay: 0s;
}

.hero__visual-float--2 {
  bottom: 12%;
  right: -28px;
  animation-delay: 1.2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Experience section */
.experience {
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 149, 106, 0.08), transparent 45%),
    var(--bg);
  border-top: 1px solid var(--border);
}

.experience__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience__step {
  position: relative;
  padding: 32px 24px 28px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
    var(--bg-card);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.experience__step:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.experience__step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -9px;
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.4;
}

.experience__step:last-child::after { display: none; }

.experience__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(244, 240, 235, 0.08);
  margin-bottom: 8px;
}

.experience__icon {
  color: var(--gold);
  font-size: 0.65rem;
  margin-bottom: 14px;
  opacity: 0.7;
}

.experience__step h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.experience__step p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-dim);
}

/* Enhanced buttons */
.btn--outline {
  position: relative;
  overflow: hidden;
}

.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 149, 106, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn--outline:hover::before { opacity: 1; }

/* Signature dish hover glow */
.dish-card--featured {
  box-shadow: 0 0 0 1px rgba(184, 149, 106, 0.2), 0 20px 60px rgba(0, 0, 0, 0.25);
}

.dish-card--featured:hover {
  box-shadow: 0 0 40px rgba(184, 149, 106, 0.12), 0 28px 70px rgba(0, 0, 0, 0.4);
}

/* Menu grid polish */
.menu-section .section-head { margin-bottom: 56px; }

.menu-item {
  position: relative;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}

.menu-item:hover::before { width: calc(100% - 52px); }

@media (max-width: 1024px) {
  .experience__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience__step:nth-child(2)::after { display: none; }
}

@media (max-width: 600px) {
  .experience__steps {
    grid-template-columns: 1fr;
  }

  .experience__step::after { display: none; }
}
