/* ====================================================================
   Mahalla 90' — Restaurant website styles
   Visual system: Uzbek heritage × premium editorial
==================================================================== */

:root {
  /* Cream theme (default) */
  --bg: #f5efe2;
  --bg-2: #ede3cf;
  --bg-3: #e3d6ba;
  --paper: #fbf6ea;
  --ink: #1a1612;
  --ink-2: #443628;
  --ink-3: #7a6650;
  --rule: rgba(26, 22, 18, 0.14);
  --rule-soft: rgba(26, 22, 18, 0.08);

  /* Brand */
  --cobalt: #1f3f8a;        /* mosaic deep blue */
  --cobalt-2: #2a55b3;      /* mosaic mid blue */
  --turquoise: #2a8caa;     /* mosaic teal accent */
  --gold: #a87a36;          /* warm script gold */
  --gold-2: #c9a35b;        /* lighter gold */
  --terracotta: #a44a2c;    /* pottery clay */
  --leaf: #4a6b3a;          /* mosaic leaf green */

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-script: "Italianno", "Cormorant Garamond", serif;
  --font-body: "DM Sans", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1360px;
  --gutter: 48px;
  --section-pad: 80px;
  --radius: 4px;
}

/* Dark / night theme */
[data-theme="night"] {
  --bg: #0d1230;
  --bg-2: #161c3f;
  --bg-3: #1f2750;
  --paper: #0a0e26;
  --ink: #f3e8d0;
  --ink-2: #c9bfa5;
  --ink-3: #8c8470;
  --rule: rgba(243, 232, 208, 0.16);
  --rule-soft: rgba(243, 232, 208, 0.08);
  --cobalt: #6088e8;
  --cobalt-2: #8ba8f0;
  --gold: #d8a657;
  --gold-2: #e8c887;
  --terracotta: #d97056;
}

/* Cobalt theme (blue-dominant) */
[data-theme="cobalt"] {
  --bg: #14275e;
  --bg-2: #1c3475;
  --bg-3: #264291;
  --paper: #0e1e4a;
  --ink: #f7ecd2;
  --ink-2: #e0d4b8;
  --ink-3: #b3a684;
  --rule: rgba(247, 236, 210, 0.18);
  --rule-soft: rgba(247, 236, 210, 0.08);
  --gold: #e6b964;
  --gold-2: #f3d28a;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  transition: background 0.4s ease, color 0.4s ease;
}

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

/* ---------- Typography utilities ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.display-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 0.9;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-3);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 10px 3px 0;
}

/* ---------- Layout ---------- */
.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 760px) {
  :root { --gutter: 24px; --section-pad: 48px; }
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease, border 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  padding: 12px var(--gutter);
  border-bottom: 1px solid var(--rule);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand .bird-mini {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper) url('assets/logo.jpg') no-repeat;
  background-size: 130px auto;
  background-position: -49px 1px;
  box-shadow: 0 1px 0 var(--rule), 0 8px 24px -10px rgba(31, 63, 138, 0.35);
}
.nav-brand .apostrophe { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-2);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav-cta .arrow { transition: transform 0.25s ease; }
.nav-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 1080px) {
  .nav-links { display: none; }
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 1080px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column;
  padding: 16px 24px 24px;
  gap: 0;
  z-index: 100;
}
.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-reserve {
  margin-top: 8px;
  color: var(--ink) !important;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.btn-large { padding: 18px 48px; font-size: 16px; }
.btn-gold {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--ink); border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.hero-eyebrow .line {
  width: 64px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(60px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 .ital {
  font-style: italic;
  color: var(--cobalt);
}
[data-theme="night"] .hero h1 .ital,
[data-theme="cobalt"] .hero h1 .ital { color: var(--gold-2); }
.hero h1 .script {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-size: 1.4em;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink-2);
  max-width: 460px;
  line-height: 1.4;
  margin-bottom: 44px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.hero-meta b { color: var(--ink); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; }
.hero-meta .sep { width: 1px; height: 18px; background: var(--rule); }

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin: 44px 0;
  flex-wrap: wrap;
}

/* Right: visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 30px 80px -30px rgba(31, 63, 138, 0.35);
}
.hero-visual .frame { display: none; }
.hero-visual .caption {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  color: #fbf6ea;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
}
.hero-visual .caption .sm {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(251, 246, 234, 0.7);
}

/* Hero ornament dome */
.hero-dome {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  pointer-events: none;
  opacity: 0.18;
}

/* Hero ticker */
.hero-ticker {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  gap: 60px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1px solid var(--rule);
  padding: 24px 0 0;
}
.hero-ticker .star { color: var(--gold); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 28px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--ink);
  align-items: center;
}
.marquee-track .star {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 18px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about {
  background: var(--paper);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; gap: 60px; } }

.about h2, .menu h2, .banquets h2, .gallery h2, .location h2, .reserve h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 84px);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 18px 0 32px;
}
h2 .ital { font-style: italic; color: var(--cobalt); }
[data-theme="night"] h2 .ital, [data-theme="cobalt"] h2 .ital { color: var(--gold-2); }

.about-body {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
}
.about-body p + p { margin-top: 22px; }
.about-body .dropcap::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 84px;
  line-height: 0.85;
  float: left;
  margin: 6px 14px -6px 0;
  color: var(--cobalt);
}
[data-theme="night"] .about-body .dropcap::first-letter,
[data-theme="cobalt"] .about-body .dropcap::first-letter { color: var(--gold-2); }

.about-stat-row {
  display: flex;
  gap: 56px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .about-stat-row { gap: 16px; }
  .about-stat .n { font-size: 38px; }
}
.about-stat .n {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
}
.about-stat .n .sm { font-size: 30px; vertical-align: super; }
.about-stat .l {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

.about-image-stack {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-image-stack .img {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 25px 60px -25px rgba(31, 63, 138, 0.35);
}
.about-image-stack .img.big {
  aspect-ratio: 9/16;
  max-height: 600px;
  width: 75%;
}
.about-image-stack .badge {
  position: absolute;
  bottom: 10%;
  right: 0;
  background: var(--paper);
  border-radius: 50%;
  width: 150px; height: 150px;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.18);
  z-index: 2;
  border: 1px solid var(--rule);
  animation: spin 30s linear infinite;
}
.about-image-stack .badge .core {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
}
.about-image-stack .badge svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Menu ---------- */
.menu { background: var(--bg); }
.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.menu-head .lede {
  max-width: 420px;
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
}
.menu-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--ink-3);
  transition: all 0.2s ease;
  font-weight: 500;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.active {
  background: var(--ink);
  color: var(--bg);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 4px;
}
@media (max-width: 760px) { .menu-grid { grid-template-columns: 1fr; column-gap: 0; } }

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  cursor: pointer;
  transition: padding 0.25s ease;
}
.menu-item:hover { padding-left: 8px; }
.menu-item .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.menu-item .body { min-width: 0; }
.menu-item .name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.menu-item .name .badge {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
  background: color-mix(in oklab, var(--cobalt) 12%, transparent);
  padding: 3px 7px;
  border-radius: 4px;
  font-weight: 500;
}
[data-theme="night"] .menu-item .name .badge,
[data-theme="cobalt"] .menu-item .name .badge {
  color: var(--gold-2);
  background: color-mix(in oklab, var(--gold) 18%, transparent);
}
.menu-item .desc {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.5;
  max-width: 90%;
  font-style: italic;
  font-family: var(--font-display);
}
.menu-item .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}

/* Chef's recommendation card */
.chef-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 60px 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  border-radius: 6px;
}
@media (max-width: 760px) { .chef-card { grid-column: span 1; grid-template-columns: 1fr; } }
.chef-card .img {
  background: var(--bg-3);
  min-height: 360px;
}
.chef-card .body {
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.chef-card .signature {
  font-family: var(--font-script);
  font-size: 56px;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 6px;
}
.chef-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin: 14px 0;
  line-height: 1.05;
}
.chef-card p {
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}
.chef-card .meta {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 20px;
  align-items: center;
}
.chef-card .meta .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  text-transform: none;
  color: var(--gold);
  letter-spacing: normal;
}

/* ---------- Banquets ---------- */
.banquets {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
[data-theme="night"] .banquets,
[data-theme="cobalt"] .banquets {
  background: var(--cobalt);
  color: #f7ecd2;
}
.banquets h2 { color: var(--bg); }
.banquets h2 .ital { color: var(--gold-2); }
[data-theme="night"] .banquets h2, [data-theme="cobalt"] .banquets h2 { color: var(--paper); }

.banquets-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .banquets-grid { grid-template-columns: 1fr; }
  .banquets-video { width: 75%; margin: 0 auto; position: static; }
}
.banquets-left { display: flex; flex-direction: column; }
.banquets-left .eyebrow { color: var(--gold-2); }
.banquets-left .banquet-types { margin-top: 48px; flex-direction: column; gap: 0; }
.banquets-left .banquet-type {
  border-right: none;
  border-bottom: 1px solid rgba(245, 239, 226, 0.12);
  padding: 24px 0;
}
.banquets-left .banquet-type:first-child { padding-top: 0; }
.banquets-left .banquet-type:last-child { border-bottom: none; }
.banquets-left .reveal-cta { margin-top: 40px; }
.banquets-video {
  aspect-ratio: 9/16;
  max-height: 600px;
  width: 75%;
  margin-left: auto;
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.banquets .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(245, 239, 226, 0.8);
  max-width: 520px;
}

.banquet-types {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(245, 239, 226, 0.18);
}
@media (max-width: 760px) { .banquet-types { grid-template-columns: 1fr; } }
.banquet-type {
  padding: 36px 28px 36px 0;
  border-right: 1px solid rgba(245, 239, 226, 0.12);
  padding-left: 28px;
}
.banquet-type:first-child { padding-left: 0; }
.banquet-type:last-child { border-right: none; padding-right: 0; }
.banquet-type .n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-2);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.banquet-type h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.banquet-type h3 .ital { font-style: italic; color: var(--gold-2); }
.banquet-type p {
  font-size: 14px;
  color: rgba(245, 239, 226, 0.7);
  line-height: 1.55;
  margin-bottom: 18px;
}
.banquet-type .cap {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: flex;
  gap: 18px;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 18px;
}
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
.gallery-cell {
  background: var(--bg-2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-cell:hover { transform: scale(0.985); }
.gallery-cell .label {
  position: absolute;
  bottom: 18px; left: 20px;
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.gallery-cell .tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 246, 234, 0.85);
  padding: 4px 8px;
  background: rgba(0,0,0,0.3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 3px;
}
.gallery-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55));
  pointer-events: none;
}

/* gallery layout positions */
.g1 { grid-column: span 5; grid-row: span 4; }
.g2 { grid-column: span 4; grid-row: span 3; }
.g3 { grid-column: span 3; grid-row: span 3; }
.g4 { grid-column: span 3; grid-row: span 3; }
.g5 { grid-column: span 4; grid-row: span 4; }
.g6 { grid-column: span 5; grid-row: span 3; }
@media (max-width: 760px) {
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Location ---------- */
.location {
  background: var(--bg);
  position: relative;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}
@media (max-width: 960px) { .location-grid { grid-template-columns: 1fr; } }
.location-info .addr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--ink);
  max-width: 420px;
  margin: 24px 0 40px;
}
.location-info .row {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--rule-soft);
  align-items: flex-start;
}
.location-info .row .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  width: 130px;
  flex-shrink: 0;
  padding-top: 4px;
}
.location-info .row .value {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.4;
}
.location-info .row .value .phone {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  transition: color 0.2s ease;
  line-height: 1.4;
  white-space: nowrap;
}
.location-info .row .value .phone:hover { color: var(--cobalt); }
[data-theme="night"] .location-info .row .value .phone:hover,
[data-theme="cobalt"] .location-info .row .value .phone:hover { color: var(--gold-2); }

.map-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
  min-height: 540px;
  border: 1px solid var(--rule);
}
.map-card .pin {
  position: absolute;
  left: 52%; top: 48%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.map-card .pin .dot {
  width: 18px; height: 18px;
  background: var(--terracotta);
  border-radius: 50%;
  border: 3px solid var(--paper);
  box-shadow: 0 4px 12px rgba(164, 74, 44, 0.5);
}
.map-card .pin .pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-card .pin-card {
  position: absolute;
  left: 52%; top: 32%;
  transform: translateX(-50%);
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 6px;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border: 1px solid var(--rule);
  z-index: 4;
}
.map-card .pin-card .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}
.map-card .pin-card .r {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ---------- Reservation ---------- */
.reserve {
  background: var(--paper);
  position: relative;
}
.reserve-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -40px rgba(31, 63, 138, 0.35);
}
@media (max-width: 900px) { .reserve-card { grid-template-columns: 1fr; } }
.reserve-side {
  background: var(--cobalt);
  color: var(--paper);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.reserve-side h2 {
  color: var(--paper);
  font-size: clamp(40px, 5vw, 64px);
}
.reserve-side h2 .ital { color: var(--gold-2); }
.reserve-side p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(251, 246, 234, 0.85);
  max-width: 320px;
  margin-top: 22px;
}
.reserve-side .hour-list {
  margin-top: 48px;
  border-top: 1px solid rgba(251, 246, 234, 0.2);
}
.reserve-side .hour-list .row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(251, 246, 234, 0.12);
  font-size: 14px;
}
.reserve-side .hour-list .row .d {
  color: rgba(251, 246, 234, 0.7);
  letter-spacing: 0.06em;
}
.reserve-side .hour-list .row .v {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-2);
  font-size: 17px;
}

.reserve-form {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.reserve-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .reserve-form .grid { grid-template-columns: 1fr; }
  .reserve-form { padding: 40px 28px; align-items: center; text-align: center; }
  .reserve-form label { text-align: left; }
  .reserve-form .grid, .reserve-form > div { width: 100%; }
  .reserve-form .submit-row { justify-content: center; }
  .reserve-side { padding: 48px 28px; text-align: center; }
  .reserve-side p { margin-left: auto; margin-right: auto; }
  .reserve-side .hour-list .row { justify-content: center; gap: 24px; }
  .reserve-side .call-cta { text-align: center; }
}
.reserve-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
  font-weight: 500;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
  color: var(--ink-3);
  font-style: italic;
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus { border-color: var(--gold); }
.reserve-form .guest-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.guest-select { display: none; }
@media (max-width: 600px) {
  .reserve-form .guest-picker { display: none; }
  .guest-select { display: block; }
}
.reserve-form .guest-picker button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  transition: all 0.2s ease;
}
.reserve-form .guest-picker button:hover { border-color: var(--gold); }
.reserve-form .guest-picker button.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.reserve-form .submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reserve-form .submit-row .note {
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--font-display);
  max-width: 260px;
}

.reserve-success {
  text-align: center;
  padding: 80px 40px;
}
.reserve-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--paper);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 32px;
}
.reserve-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 14px;
}
.reserve-success p {
  color: var(--ink-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  max-width: 420px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 52px var(--gutter) 32px;
}
[data-theme="night"] .footer { background: #050720; }
.footer .shell { padding: 0; }
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245, 239, 226, 0.14);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.footer-brand h3 .gold { color: var(--gold-2); font-family: var(--font-script); font-size: 1.3em; }
.footer-brand p {
  color: rgba(245, 239, 226, 0.7);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  max-width: 360px;
  line-height: 1.45;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--gold-2);
}
.footer ul { list-style: none; }
.footer ul li {
  padding: 6px 0;
  font-family: var(--font-display);
  font-size: 17px;
  color: rgba(245, 239, 226, 0.85);
  cursor: pointer;
  transition: color 0.2s ease;
}
.footer ul li:hover { color: var(--gold-2); }

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  color: rgba(245, 239, 226, 0.55);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-base .socials {
  display: flex;
  gap: 18px;
}
.footer-base .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 226, 0.2);
  display: grid; place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
  color: rgba(245, 239, 226, 0.7);
}
.footer-base .socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
a.phone-number { font-size: 13px; letter-spacing: 0.03em; color: rgba(245,239,226,0.7); white-space: nowrap; transition: color 0.2s ease; }
a.phone-number:hover { color: var(--gold); }

/* ---------- Reveal animations (no-op: keep selectors for layout, no opacity tricks) ---------- */
.reveal { /* intentionally empty — content visible by default */ }
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3 { /* no-op */ }

/* ---------- Ornament tiles ---------- */
.ornament-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.ornament-corner-tl { top: 0; left: 0; width: 280px; }
.ornament-corner-br { bottom: 0; right: 0; width: 280px; }

/* selection */
::selection { background: var(--gold); color: var(--paper); }


/* ============================================================
   v2 additions — i18n + photography + new menu layouts
   ============================================================ */

/* ---------- Nav right (lang + CTA together) ---------- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---------- Language switch ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lang-switch button {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active {
  background: var(--ink);
  color: var(--bg);
}
.lang-switch.compact button { padding: 4px 8px; font-size: 9.5px; letter-spacing: 0.15em; }

@media (max-width: 540px) {
  .nav-right .nav-cta span:first-child { display: none; }
  .nav-right .nav-cta .arrow { margin: 0; }
}

/* ---------- About: real photo styling ---------- */
.about-image-stack .img.big,
.about-image-stack .img.small {
  overflow: hidden;
}
.about-image-stack .img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.img-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.img-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  color: #fbf6ea;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  z-index: 2;
}
.about-image-stack .img.small .img-caption { font-size: 16px; bottom: 20px; left: 20px; }
.img-caption-eyebrow {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,246,234,0.85);
  margin-bottom: 8px;
}

/* ---------- Menu redesign ---------- */
.menu-signature-label {
  margin-bottom: 28px;
}

/* GRID layout (default): cards with photos */
.menu-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .menu-grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid-cards { grid-template-columns: 1fr; } }

.menu-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(31,63,138,0.45);
}
.menu-card.featured {
  grid-column: span 1;
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--paper) 0%, color-mix(in oklab, var(--gold) 8%, var(--paper)) 100%);
}
.menu-card-img {
  aspect-ratio: 4/3;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.menu-card:hover .menu-card-img img { transform: scale(1.04); }
.menu-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.menu-card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.menu-card-body p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.45;
  flex: 1;
}
.menu-card-price {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

/* LIST layout */
.menu-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule-soft);
}
.menu-list-row {
  display: grid;
  grid-template-columns: auto 1fr 96px auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: padding-left 0.25s ease;
}
.menu-list-row:hover { padding-left: 8px; }
.menu-list-row .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.menu-list-row .name {
  font-family: var(--font-display);
  font-size: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.menu-list-row .badge {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: color-mix(in oklab, var(--gold) 14%, transparent);
  padding: 3px 7px;
  border-radius: 4px;
  font-weight: 600;
}
.menu-list-row .desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 4px;
  line-height: 1.5;
}
.menu-list-row .img-thumb {
  width: 96px; height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-3);
}
.menu-list-row .img-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.menu-list-row .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .menu-list-row { grid-template-columns: auto 1fr auto; }
  .menu-list-row .img-thumb { display: none; }
}

/* EDITORIAL layout */
.menu-editorial {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menu-ed-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 24px 0;
}
.menu-ed-row.flip { grid-template-columns: 1fr 1.1fr; }
.menu-ed-row.flip .menu-ed-img { order: 2; }
.menu-ed-row.flip .menu-ed-body { order: 1; }
@media (max-width: 760px) {
  .menu-ed-row, .menu-ed-row.flip { grid-template-columns: 1fr; gap: 24px; }
  .menu-ed-row.flip .menu-ed-img { order: 1; }
  .menu-ed-row.flip .menu-ed-body { order: 2; }
}
.menu-ed-img {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-3);
}
.menu-ed-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.menu-ed-row:hover .menu-ed-img img { transform: scale(1.03); }
.menu-ed-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}
.menu-ed-body .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.menu-ed-body h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 18px;
}
.menu-ed-body p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 440px;
  margin-bottom: 22px;
}
.menu-ed-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
}

/* ---------- Menu CTA card (open full PDF) ---------- */
.menu-cta-card {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 44px 48px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
[data-theme="night"] .menu-cta-card,
[data-theme="cobalt"] .menu-cta-card {
  background: var(--cobalt);
  color: var(--paper);
}
.menu-cta-card::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--gold) 40%, transparent), transparent 70%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .menu-cta-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }
}
.menu-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
  font-weight: 500;
}
.menu-cta-h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--bg);
}
[data-theme="night"] .menu-cta-h3,
[data-theme="cobalt"] .menu-cta-h3 { color: var(--paper); }
.menu-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
@media (max-width: 760px) { .menu-cta-right { align-items: flex-start; } }
.menu-cta-right .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.menu-cta-right .btn-primary:hover {
  background: var(--paper);
  border-color: var(--paper);
}
.btn-link {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-link:hover { color: var(--paper); }

/* ---------- Gallery: real photo support ---------- */
.gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-cell { background: var(--bg-2); }
