/* Central Baku — editorial single-page site */

:root {
  --ink: #020003;
  --ink-soft: #1a1612;
  --surface: #fbf8f4;
  --surface-2: #f3ede4;
  --sand: #c8b7a3;
  --taupe: #cbb9a3;
  --bronze: #9d8d7d;
  --hairline: rgba(2, 0, 3, 0.12);
  --hairline-soft: rgba(2, 0, 3, 0.06);
  --muted: #6f655a;
  --petrol: #3c878c;
  --petrol-deep: #2f6e72;
  --sky: #4992b6;

  --bg: var(--surface);
  --fg: var(--ink);
  --fg-muted: var(--muted);
  --card: var(--surface-2);
  --rule: var(--hairline);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

[data-theme="dark"] {
  --bg: #100e0c;
  --fg: #f3ede4;
  --fg-muted: #a59889;
  --card: #1a1714;
  --rule: rgba(243, 237, 228, 0.12);
  --hairline: rgba(243, 237, 228, 0.18);
  --hairline-soft: rgba(243, 237, 228, 0.06);
  --ink: #f3ede4;
  --ink-soft: #d8cdb8;
  --petrol: #4ba0a5;
  --petrol-deep: #6cb7bb;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
  text-rendering: optimizeLegibility;
  transition: background-color .35s ease, color .35s ease;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--petrol); color: #fff; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
.sans  { font-family: var(--sans); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: -0.01em; }
h1 { font-family: var(--serif); }
h2 { font-family: var(--serif); }

p { margin: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- HEADER ---------- */

.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  transition: background-color .35s ease, border-color .35s ease, padding .25s ease, color .35s ease;
  color: #fff;
}
.hdr.is-light-bg { color: var(--fg); }
.hdr.is-scrolled {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
  padding: 14px var(--gutter);
  color: var(--fg);
}
.hdr-wordmark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.hdr-wordmark .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--petrol);
  display: inline-block;
  margin: 0 4px 3px;
  transform: translateY(-3px);
}

.hdr-right { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  gap: 0;
}
.lang-switch button {
  background: none;
  border: 0;
  padding: 6px 8px;
  color: inherit;
  opacity: 0.55;
  transition: opacity .2s, color .2s;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lang-switch button.active { opacity: 1; }
.lang-switch button:hover { opacity: 1; }
.lang-switch .sep { opacity: 0.35; }

.theme-toggle {
  background: none;
  border: 1px solid currentColor;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.7;
  transition: opacity .2s;
  padding: 0;
}
.theme-toggle:hover { opacity: 1; }
.theme-toggle svg { width: 14px; height: 14px; }
.theme-toggle .i-sun { display: none; }
[data-theme="dark"] .theme-toggle .i-moon { display: none; }
[data-theme="dark"] .theme-toggle .i-sun { display: inline-block; }

.cta-wrap { position: relative; }
.cta {
  background: var(--petrol);
  color: #fff;
  border: 0;
  padding: 12px 20px 11px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color .25s, transform .25s;
  white-space: nowrap;
}
.cta:hover { background: var(--petrol-deep); }
.cta .chev { width: 10px; height: 10px; transition: transform .25s; }
.cta.is-open .chev { transform: rotate(180deg); }

.cta-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 8px;
  min-width: 280px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s, transform .22s;
  z-index: 60;
}
.cta-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cta-menu a {
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 10px;
  transition: background-color .2s;
  color: var(--fg);
}
.cta-menu a:hover { background: var(--hairline-soft); }
.cta-menu a .lbl { display: block; font-weight: 500; font-size: 14px; }
.cta-menu a .sub { display: block; font-size: 12px; color: var(--fg-muted); margin-top: 2px; letter-spacing: 0.02em; }
.cta-menu a .ico { width: 18px; height: 18px; margin-top: 2px; color: var(--petrol); flex: 0 0 18px; }
.cta-menu a .ico svg { width: 18px; height: 18px; }

/* ---------- HERO ---------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-color: #1a1714;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  will-change: transform;
  transition: filter .35s ease, transform .35s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background-color .35s ease;
  z-index: 1;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 35%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.hero-meta {
  position: absolute;
  top: calc(20px + 18px + 36px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  z-index: 2;
  padding-top: 24px;
}
.hero-meta-right { display: flex; align-items: center; }
.hero-meta .dot-sep { opacity: 0.5; padding: 0 10px; }

.hero-content {
  position: absolute;
  bottom: 8vh;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
}
.hero-headline .dim { opacity: 0.85; }
.hero-side {
  align-self: end;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  padding-bottom: 10px;
}
.hero-sub {
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.55;
  max-width: 38ch;
  color: rgba(255,255,255,0.85);
  text-align: right;
}
.hero-cta {
  background: var(--petrol);
  color: #fff;
  border: 0;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color .25s;
}
.hero-cta:hover { background: var(--petrol-deep); }

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll .line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.6);
  animation: drop 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drop {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- SECTIONS ---------- */

section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
.sec-divider {
  height: 1px;
  background: var(--rule);
  margin: 0 var(--gutter);
}
.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.sec-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--petrol);
  display: inline-block;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.sec-title em { font-style: italic; }
.sec-title-narrow { max-width: 16ch; }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ---------- STORY ---------- */

.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story-text .sec-title { max-width: 16ch; }
.story-body {
  margin-top: 28px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--fg);
  max-width: 38ch;
}
.story-body + .story-body { margin-top: 18px; color: var(--fg-muted); }

.cred-line {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.cred-line strong {
  color: var(--fg);
  font-weight: 600;
  margin-right: 6px;
  font-size: 13px;
}
.cred-line .star { color: var(--petrol); margin-right: 4px; }

.story-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.story-img-cap {
  position: absolute;
  bottom: -28px;
  left: 24px;
  background: var(--bg);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--rule);
}

/* ---------- MENU ---------- */

.menu { background: var(--card); }
.menu .menu-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.menu-head-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 44ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}

.menu-cats {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 5vw, 72px);
}
.menu-cat {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--rule);
}
.menu-cat-head .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--petrol);
  font-size: 14px;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}
.menu-cat-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.menu-cat-head .cat-az {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.menu-dishes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 36px;
}
.menu-dish {
  padding: 16px 0;
  border-bottom: 1px dashed var(--hairline-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-dish:last-child { border-bottom: 0; }
.menu-dish .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.005em;
}
.menu-dish .desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.menu-foot {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.menu-foot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--fg-muted);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--petrol);
  padding-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg);
  transition: gap .25s;
}
.link-arrow:hover { gap: 14px; }
.link-arrow svg { color: var(--petrol); }

/* ---------- BUSINESS LUNCH ---------- */

.bizlunch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  min-height: 64vh;
}
.bizlunch-img {
  background-size: cover;
  background-position: center;
  min-height: 480px;
  border-radius: 2px;
}
.bizlunch-text { padding: clamp(24px, 4vw, 64px) 0; display: flex; flex-direction: column; justify-content: center; }
.bizlunch-text .sec-title { max-width: 13ch; }
.bizlunch-meta {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--fg-muted);
}
.bizlunch-detail {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.65;
  max-width: 44ch;
  color: var(--fg);
}
.bizlunch-rows {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.bizlunch-rows .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  gap: 12px;
}
.bizlunch-rows .row .lbl {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  font-size: 11px;
  padding-top: 3px;
}
.bizlunch-rows .row .val { color: var(--fg); font-size: 15px; letter-spacing: 0; }

/* ---------- OCCASIONS ---------- */

.occasions { background: var(--card); }
.occ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.occ-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.occ-text .sec-title { max-width: 14ch; }
.occ-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
}
.occ-list .item {
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.occ-list .item:last-child { border-bottom: 1px solid var(--rule); }
.occ-list .item .it {
  font-style: italic;
  font-weight: 400;
}
.occ-list .item .meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.occ-call {
  margin-top: 36px;
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.occ-call a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--fg);
  border-bottom: 1px solid var(--petrol);
  padding-bottom: 2px;
}

/* ---------- GALLERY ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 70px;
  gap: 14px;
  margin-top: clamp(40px, 5vw, 72px);
}
.gallery-grid .tile {
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: transform .55s ease;
}
.gallery-grid .tile::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background-color .35s;
}
.gallery-grid .tile:hover { transform: translateY(-3px); }
.gallery-grid .tile:hover::after { background: rgba(0,0,0,0.06); }

.tile.t1 { grid-column: span 6; grid-row: span 6; }
.tile.t2 { grid-column: span 3; grid-row: span 4; }
.tile.t3 { grid-column: span 3; grid-row: span 4; }
.tile.t4 { grid-column: span 3; grid-row: span 4; }
.tile.t5 { grid-column: span 3; grid-row: span 4; }
.tile.t6 { grid-column: span 4; grid-row: span 5; }
.tile.t7 { grid-column: span 4; grid-row: span 5; }
.tile.t8 { grid-column: span 4; grid-row: span 5; }

/* ---------- VISIT ---------- */

.visit {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}
.visit-text .sec-title { max-width: 16ch; }
.visit-sub { max-width: 44ch; margin-top: 24px; }
.visit-rows { margin-top: 44px; font-family: var(--serif); }
.visit-row {
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: baseline;
}
.visit-row:last-child { border-bottom: 1px solid var(--rule); }
.visit-row .lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.visit-row .val {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.visit-row .val a {
  border-bottom: 1px solid var(--petrol);
  padding-bottom: 2px;
}
.visit-row .val .lt {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.visit-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-ghost {
  border: 1px solid var(--rule);
  color: var(--fg);
  background: transparent;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: background-color .25s, border-color .25s;
}
.btn-ghost:hover { background: var(--hairline-soft); border-color: var(--fg); }

.visit-map {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.visit-map .pin {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}
.visit-map svg.map-svg { width: 100%; height: 100%; display: block; }
.visit-map .marker {
  position: absolute;
  top: 48%; left: 52%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--petrol);
  border: 3px solid var(--bg);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(60,135,140,0.45);
  animation: ping 2.4s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(60,135,140,0.55); }
  100% { box-shadow: 0 0 0 24px rgba(60,135,140,0); }
}
.visit-map .map-cap {
  padding: 16px 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--bg);
}
.visit-map .map-cap .where {
  font-family: var(--serif);
  font-size: 16px;
}
.visit-map .map-cap a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--petrol);
}

/* ---------- FOOTER ---------- */

.foot {
  border-top: 1px solid var(--rule);
  padding: 28px var(--gutter);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.foot .sep { opacity: 0.45; padding: 0 8px; }
.foot a { color: inherit; }
.foot a:hover { color: var(--fg); }
.foot-right { display: flex; gap: 0; align-items: center; flex-wrap: wrap; }

/* ---------- MARQUEE ---------- */

.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.01em;
  animation: scroll 40s linear infinite;
  color: var(--fg);
  width: max-content;
}
.marquee-track .star {
  color: var(--petrol);
  font-style: normal;
  font-size: 0.7em;
  align-self: center;
  display: inline-block;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 28px; }
  .hero-side { text-align: left; align-items: flex-start; }
  .hero-sub { text-align: left; }
}

@media (max-width: 900px) {
  :root { --gutter: clamp(16px, 5vw, 28px); }
  section { padding: clamp(64px, 14vw, 120px) 0; }
  .story, .occ-grid, .visit, .menu .menu-head, .bizlunch { grid-template-columns: 1fr; gap: 36px; }
  .menu-cat { grid-template-columns: 1fr; gap: 18px; }
  .menu-dishes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 56px; gap: 10px; }
  .tile.t1 { grid-column: span 6; grid-row: span 5; }
  .tile.t2, .tile.t3, .tile.t4, .tile.t5 { grid-column: span 3; grid-row: span 3; }
  .tile.t6, .tile.t7, .tile.t8 { grid-column: span 3; grid-row: span 4; }
  .hdr-wordmark { font-size: 17px; }
  .lang-switch { display: none; }
  .hero-meta { font-size: 9px; padding-top: 12px; }
  .hero-meta .dot-sep { padding: 0 6px; }
  .visit-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .bizlunch { min-height: 0; }
  .bizlunch-img { min-height: 0; aspect-ratio: 4/5; width: 100%; }
  .occ-img { aspect-ratio: 1/1; }
  .story-img { aspect-ratio: 1/1; }
  .visit-map { aspect-ratio: 1/1; }
  .bizlunch-rows .row { grid-template-columns: 1fr; gap: 4px; }
  .occ-list .item { gap: 12px; }
  .menu-foot { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cred-line { gap: 12px 24px; font-size: 11px; }
  .marquee-track { font-size: clamp(22px, 6vw, 32px); gap: 40px; }
  .hero { min-height: 600px; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .hdr { padding: 14px 18px; gap: 8px; flex-wrap: nowrap; }
  .hdr.is-scrolled { padding: 12px 18px; }
  .hdr-wordmark { font-size: 15px; min-width: 0; flex-shrink: 1; overflow: hidden; }
  .hdr-wordmark .dot { margin: 0 2px 3px; width: 4px; height: 4px; }
  .hdr-right { gap: 8px; flex-shrink: 0; }
  .theme-toggle { width: 28px; height: 28px; flex-shrink: 0; }
  .cta {
    padding: 9px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
    gap: 5px;
    flex-shrink: 0;
  }
  .cta .chev { width: 9px; height: 9px; }
  .cta-menu { min-width: calc(100vw - 36px); right: -2px; }
  .hero { min-height: 560px; height: 100vh; }
  .hero-headline { font-size: clamp(34px, 9vw, 48px); line-height: 1.05; }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
  .hero-meta .dot-sep { display: none; }
  .hero-meta-right { flex-direction: column; align-items: flex-start; gap: 2px; }
  .hero-content { bottom: 6vh; gap: 18px; }
  .hero-cta { padding: 13px 22px; font-size: 12px; }
  .hero-sub { font-size: 13px; max-width: none; }
  .hero-scroll { display: none; }
  .sec-title { font-size: clamp(30px, 8vw, 42px); }
  .menu-cat-head { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: baseline; }
  .menu-cat-head h3 { font-size: 26px; }
  .menu-cat-head .num { margin-bottom: 0; }
  .menu-cat-head .cat-az { margin-top: 0; flex-basis: 100%; }
  .menu-dish .name { font-size: 18px; }
  .occ-list { font-size: 18px; }
  .occ-list .item { padding: 14px 0; flex-direction: column; align-items: flex-start; gap: 4px; }
  .occ-call { font-size: 13px; gap: 8px; }
  .occ-call a { font-size: 18px; }
  .visit-actions { width: 100%; }
  .visit-actions .hero-cta, .visit-actions .btn-ghost { flex: 1; justify-content: center; padding: 12px 16px; font-size: 11px; letter-spacing: 0.1em; }
  .visit-row .val { font-size: 18px; }
  .bizlunch-meta { font-size: 18px; }
  .foot { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 10px; padding: 22px 18px; }
  .foot-right { flex-wrap: wrap; }
  .marquee { padding: 16px 0; }
  .marquee-track { font-size: clamp(20px, 6vw, 26px); gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 64px; gap: 8px; }
  .tile.t1 { grid-column: span 4; grid-row: span 4; }
  .tile.t2, .tile.t3, .tile.t4, .tile.t5 { grid-column: span 2; grid-row: span 3; }
  .tile.t6, .tile.t7, .tile.t8 { grid-column: span 2; grid-row: span 3; }
  .story-img-cap { font-size: 9px; left: 14px; padding: 8px 12px; }
}
