/* ─── Le Pub Central — dark editorial ─────────────────────────── */
:root {
  --ink: #020202;
  --ink-2: #0A0908;
  --petrol-deep: #013630;
  --petrol-2: #0A302B;
  --whisky: #8E5A2B;
  --oak: #75482C;
  --mahogany: #3E1F1B;
  --cocoa-deep: #1B0901;
  --parchment: #E5DDD0;
  --parchment-dim: rgba(229, 221, 208, 0.62);
  --parchment-faint: rgba(229, 221, 208, 0.32);
  --hair: rgba(229, 221, 208, 0.14);
  --hair-strong: rgba(229, 221, 208, 0.28);

  --serif: "Fraunces", "Tiempos Headline", "GT Sectra", "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Söhne", "GT America", "Inter", -apple-system, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle film grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.92 0 0 0 0 0.85 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s cubic-bezier(.2,.6,.2,1), transform 1.1s cubic-bezier(.2,.6,.2,1);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ─── Typography helpers ────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--whisky);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--whisky);
  opacity: 0.7;
}
.show-wood .eyebrow { color: var(--whisky); }
:not(.show-wood) .eyebrow { color: var(--parchment-dim); }
:not(.show-wood) .eyebrow::before { background: var(--parchment-dim); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--parchment);
  margin: 18px 0 0;
  text-wrap: balance;
}

.kicker {
  font-size: 17px;
  line-height: 1.55;
  color: var(--parchment-dim);
  max-width: 56ch;
  margin: 22px 0 0;
  text-wrap: pretty;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  user-select: none;
}
.btn-primary {
  background: var(--petrol-deep);
  color: var(--parchment);
  border: 1px solid var(--petrol-deep);
}
.btn-primary:hover {
  background: var(--whisky);
  border-color: var(--whisky);
}
.btn-primary-lg {
  background: var(--petrol-deep);
  color: var(--parchment);
  border: 1px solid var(--petrol-deep);
  padding: 18px 32px;
  font-size: 13px;
}
.btn-primary-lg:hover { background: var(--whisky); border-color: var(--whisky); }
.btn-ghost {
  background: transparent;
  color: var(--parchment);
  border: 1px solid var(--hair-strong);
}
.btn-ghost:hover { border-color: var(--whisky); color: var(--whisky); }

/* ─── Reserve dropdown ──────────────────────────────────────── */
.reserve-wrap { position: relative; }
.reserve-pop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: var(--ink-2);
  border: 1px solid var(--hair-strong);
  padding: 18px;
  z-index: 90;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  text-align: left;
  animation: pop 0.18s ease-out;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.reserve-pop-eyebrow {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--parchment-faint);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 8px;
}
.reserve-pop-item {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair);
  transition: color 0.2s ease;
}
.reserve-pop-item:hover { color: var(--whisky); }
.reserve-pop-item:last-of-type { border-bottom: 0; }
.reserve-pop-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment-faint);
  margin-bottom: 6px;
}
.reserve-pop-value {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.005em;
}
.reserve-pop-foot {
  font-size: 12px;
  color: var(--parchment-faint);
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
  line-height: 1.45;
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.3s ease;
  background: linear-gradient(to bottom, rgba(2,2,2,0.65), rgba(2,2,2,0));
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(2, 2, 2, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}
.header-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.site-header.scrolled .header-inner { padding-top: 14px; padding-bottom: 14px; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--parchment);
}
.wm-le { font-weight: 500; }
.wm-rule {
  width: 18px;
  height: 1px;
  background: var(--whisky);
}
.wm-central {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  font-weight: 500;
}

.header-nav {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.header-nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.header-nav a:hover { color: var(--parchment); border-bottom-color: var(--whisky); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--hair);
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: var(--parchment-dim);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding: 6px 10px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-switch button:hover { color: var(--parchment); }
.lang-switch button.active { color: var(--ink); background: var(--parchment); }

@media (max-width: 980px) {
  .header-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; padding: 14px 18px; gap: 12px; }
}
@media (max-width: 540px) {
  .header-inner { padding: 12px 14px; gap: 8px; }
  .wordmark { font-size: 16px; gap: 8px; }
  .wm-rule { width: 12px; }
  .wm-central { font-size: 9px; letter-spacing: 0.26em; }
  .header-right { gap: 8px; }
  .lang-switch button { padding: 5px 7px; font-size: 9.5px; letter-spacing: 0.16em; }
  .btn { padding: 10px 14px; font-size: 11px; letter-spacing: 0.14em; }
  .reserve-pop { width: min(280px, calc(100vw - 28px)); right: 0; }
}
@media (max-width: 380px) {
  .lang-switch { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  min-height: 760px;
  width: 100%;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  filter: saturate(1.04) brightness(0.85) blur(1.2px);
  transform: scale(1.06);
  animation: heroDrift 14s ease-out forwards;
}
@keyframes heroDrift {
  to { transform: scale(1.02); }
}
.hero-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,2,2,0.55) 0%, rgba(2,2,2,0.05) 28%, rgba(2,2,2,0.05) 55%, rgba(2,2,2,0.85) 100%),
    radial-gradient(ellipse at 70% 35%, transparent 0%, rgba(2,2,2,0.45) 90%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 220px 40px rgba(0,0,0,0.75);
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  display: flex;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.4em;
  font-weight: 500;
  color: var(--parchment-faint);
}
.hero-tag .dot { color: var(--whisky); }

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1480px;
  margin: 0 auto;
  padding: 180px 40px 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  align-self: flex-start;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--whisky);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.6vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
  color: var(--parchment);
}
.hero-title span { display: block; }
.hero-title span:nth-child(2) { font-style: italic; color: var(--parchment); padding-left: 0.6em; }
.hero-sub {
  margin-top: 28px;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--parchment-dim);
  max-width: 40ch;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-call {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 24px;
  border-left: 1px solid var(--hair-strong);
  transition: border-color 0.2s ease;
}
.hero-call:hover { border-color: var(--whisky); }
.hero-call-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--parchment-faint);
}
.hero-call-num {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--parchment);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--parchment-faint);
}
.hero-scroll-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--parchment-faint), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--whisky), transparent);
  transform: translateY(-100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
}

@media (max-width: 720px) {
  .hero-tag { display: none; }
  .hero-inner { padding: 140px 22px 100px; }
  .hero-actions { gap: 18px; }
  .hero-call { padding-left: 0; border-left: 0; }
}

/* ─── Tonight ────────────────────────────────────────────────── */
.tonight {
  background: var(--ink);
  border-top: 1px solid var(--hair);
  position: relative;
}
.tonight-grid {
  max-width: 1480px;
  margin: 0 auto;
  padding: 140px 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.tonight-left .display { max-width: 14ch; }
.tonight-copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--parchment-dim);
  margin: 0;
  max-width: 56ch;
}

.hours-block {
  margin-top: 56px;
  padding: 36px 0;
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
}
.hours-line {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
}
.hours-day {
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--parchment-faint);
  font-weight: 500;
}
.hours-rule {
  flex: 1;
  height: 1px;
  background: var(--hair);
}
.hours-time {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.01em;
  color: var(--parchment);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.hours-meta {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment-faint);
}

.tonight-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .tonight-grid { grid-template-columns: 1fr; gap: 40px; padding: 90px 22px; }
}

/* ─── Text link ─────────────────────────────────────────────── */
.text-link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hair-strong);
  color: var(--parchment);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.text-link:hover { color: var(--whisky); border-bottom-color: var(--whisky); }
.text-link.muted { color: var(--parchment-dim); border-bottom: 0; }
.text-link.muted:hover { color: var(--whisky); }
.text-link.tight { font-size: 11px; padding-bottom: 2px; }
.phone-quiet {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: -0.005em;
  text-transform: none;
  margin-left: 6px;
  color: var(--parchment);
}

/* ─── Section heads ─────────────────────────────────────────── */
.section-head {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Drinks ─────────────────────────────────────────────────── */
.drinks {
  background: var(--petrol-deep);
  padding: 140px 0 110px;
  border-top: 1px solid rgba(0,0,0,0.4);
  position: relative;
}
.drinks::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(229,221,208,0.06), transparent 50%);
  pointer-events: none;
}
.drinks .eyebrow { color: var(--whisky); }
.drinks .display { color: var(--parchment); max-width: 18ch; }
.drinks .kicker { color: rgba(229, 221, 208, 0.7); }

.drinks-grid {
  max-width: 1480px;
  margin: 80px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
.drinks-col-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(229,221,208,0.18);
  margin-bottom: 6px;
}
.drinks-col-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--whisky);
  letter-spacing: 0.04em;
  font-feature-settings: "tnum";
}
.drinks-col-label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--parchment);
  font-weight: 500;
}
.drinks-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drinks-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(229,221,208,0.1);
}
.drinks-item:last-child { border-bottom: 0; }
.drinks-item-name {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--parchment);
  margin-bottom: 8px;
}
.drinks-item-note {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(229, 221, 208, 0.62);
  max-width: 36ch;
}
.compact-drinks .drinks-item { padding: 14px 0; }
.compact-drinks .drinks-item-name { font-size: 21px; }
.compact-drinks .drinks-item-note { font-size: 13.5px; }

.drinks-foot {
  max-width: 1480px;
  margin: 70px auto 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .drinks-grid { grid-template-columns: 1fr; gap: 32px; }
  .drinks { padding: 80px 0; }
  .section-head { padding: 0 22px; }
  .drinks-grid { padding: 0 22px; }
  .drinks-foot { padding: 0 22px; }
}

/* ─── Bites ──────────────────────────────────────────────────── */
.bites {
  background: var(--ink);
  padding: 140px 0 110px;
}
.bites-grid {
  max-width: 1480px;
  margin: 80px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 48px;
}
.bite { display: flex; flex-direction: column; }
.bite-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-2);
}
.bite-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.bite:hover .bite-img img { transform: scale(1.04); }
.bite-row {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 10px;
}
.bite-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.005em;
  color: var(--parchment);
  margin: 0;
}
.bite-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--whisky);
  font-feature-settings: "tnum";
}
.bite-note {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--parchment-dim);
  max-width: 38ch;
}

.bites-grid .bite:nth-child(2) .bite-img { aspect-ratio: 4 / 5; }
.bites-grid .bite:nth-child(4) .bite-img { aspect-ratio: 4 / 5; }

@media (max-width: 980px) {
  .bites-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding: 0 22px; }
  .bites { padding: 80px 0; }
}
@media (max-width: 540px) {
  .bites-grid { grid-template-columns: 1fr; }
}

/* ─── Room (gallery) ────────────────────────────────────────── */
.room {
  background: var(--ink);
  padding: 60px 0 140px;
}
.room-head {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}
.room-mosaic {
  max-width: 1480px;
  margin: 70px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
}
.mosaic-cell {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1), filter 0.6s ease;
  filter: saturate(0.96) brightness(0.92);
}
.mosaic-cell:hover img { transform: scale(1.05); filter: saturate(1.06) brightness(1); }

.mc-0 { grid-column: span 5; grid-row: span 5; }
.mc-1 { grid-column: span 4; grid-row: span 3; }
.mc-2 { grid-column: span 3; grid-row: span 4; }
.mc-3 { grid-column: span 4; grid-row: span 4; }
.mc-4 { grid-column: span 3; grid-row: span 3; }
.mc-5 { grid-column: span 5; grid-row: span 4; }
.mc-6 { grid-column: span 4; grid-row: span 3; }
.mc-7 { grid-column: span 3; grid-row: span 3; }

@media (max-width: 980px) {
  .room-mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; padding: 0 22px; }
  .mc-0 { grid-column: span 6; grid-row: span 4; }
  .mc-1 { grid-column: span 3; grid-row: span 3; }
  .mc-2 { grid-column: span 3; grid-row: span 3; }
  .mc-3 { grid-column: span 4; grid-row: span 3; }
  .mc-4 { grid-column: span 2; grid-row: span 3; }
  .mc-5 { grid-column: span 6; grid-row: span 4; }
  .mc-6 { grid-column: span 3; grid-row: span 3; }
  .mc-7 { grid-column: span 3; grid-row: span 3; }
}

/* ─── Visit ──────────────────────────────────────────────────── */
.visit {
  background: var(--petrol-deep);
  padding: 140px 0;
  position: relative;
}
.visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 100%, rgba(125,74,21,0.16), transparent 60%);
  pointer-events: none;
}
.visit-grid {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.visit-head { position: sticky; top: 100px; }
.visit-rows { display: flex; flex-direction: column; }
.visit-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(229,221,208,0.18);
}
.visit-row:last-child { border-bottom: 1px solid rgba(229,221,208,0.18); }
.visit-label {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--whisky);
  font-weight: 500;
  padding-top: 6px;
}
.visit-value > div { margin-bottom: 4px; font-size: 17px; line-height: 1.5; color: var(--parchment); }
.visit-quiet {
  font-size: 13px !important;
  color: rgba(229, 221, 208, 0.55) !important;
  font-style: italic;
  margin-top: 8px !important;
}
.visit-phone {
  display: inline-block;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.005em;
  color: var(--parchment);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.visit-phone:hover { color: var(--whisky); border-color: var(--whisky); }

.visit-cta {
  grid-column: 1 / -1;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(229,221,208,0.18);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.visit-cta-note {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: rgba(229, 221, 208, 0.7);
  max-width: 28ch;
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 36px; padding: 0 22px; }
  .visit { padding: 80px 0; }
  .visit-head { position: static; }
  .visit-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .visit-phone { font-size: 26px; }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 60px 0 50px;
  border-top: 1px solid var(--hair);
}
.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--parchment);
  letter-spacing: 0.04em;
}
.footer-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--parchment-dim);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.footer-line a { color: var(--parchment); border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.footer-line a:hover { color: var(--whisky); border-bottom-color: var(--whisky); }
.footer-dot { color: var(--whisky); }
.footer-meta {
  font-size: 11px;
  color: var(--parchment-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .footer-inner { padding: 0 22px; }
}

/* ─── Premium polish ─────────────────────────────────────── */

/* Body type refinement (Manrope / Fraunces) */
body {
  font-feature-settings: "ss01", "ss02", "kern";
}
.display { font-optical-sizing: auto; }

/* Page curtain (load entrance) */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s cubic-bezier(.4, 0, .2, 1) 0.1s;
}
.page-curtain.lifted { opacity: 0; }

/* Wordmark monogram glyph */
.monogram {
  display: inline-block;
  color: var(--whisky);
  flex-shrink: 0;
  transition: transform 0.7s cubic-bezier(.2, .7, .1, 1), color 0.3s ease;
}
.wordmark { gap: 14px; }
.wordmark:hover .monogram { transform: rotate(8deg); }
.footer-brand { gap: 12px; }

/* ─── Hero title word stagger ─────────────────────────── */
.hero-title { line-height: 1; }
.hero-title span { display: inline; }
.hero-title .line { display: block; line-height: 0.96; }
.hero-title .line.italic { font-style: italic; padding-left: 0.6em; }
.hero-title .line + .line { margin-top: 0.04em; }
.hero-title [data-i18n] { display: contents; }
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
  margin-right: 0.16em;
}
.hero-title .word:last-child { margin-right: 0; }
.hero-title .word > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1.1s cubic-bezier(.2, .7, .1, 1);
  transition-delay: var(--d, 0ms);
  will-change: transform;
}
.hero-title.in .word > span { transform: translateY(0); }
.hero-title.no-anim .word > span { transition: none; }
/* Override existing italic-on-second-child rule (now the .line wrapper carries italic) */
.hero-title span:nth-child(2) { font-style: inherit; color: inherit; padding-left: 0; }
.hero-title .line.italic { font-style: italic; padding-left: 0.6em; }

/* ─── Sticky vertical section rail (desktop only) ────── */
.section-rail {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.section-rail.visible {
  opacity: 1;
  pointer-events: auto;
}
.section-rail a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--parchment-faint);
  position: relative;
  transition: color 0.3s ease;
}
.section-rail .rail-num {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  width: 22px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  text-align: center;
  transition: border-color 0.3s ease, width 0.4s cubic-bezier(.2, .7, .1, 1);
}
.section-rail .rail-name {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(.2, .7, .1, 1);
  white-space: nowrap;
}
.section-rail a:hover { color: var(--parchment); }
.section-rail a:hover .rail-name,
.section-rail a.active .rail-name {
  opacity: 1;
  transform: none;
}
.section-rail a.active { color: var(--whisky); }
.section-rail a.active .rail-num {
  width: 38px;
  border-color: var(--whisky);
}
@media (max-width: 1180px) {
  .section-rail { display: none; }
}

/* ─── Editorial marquee strip ─────────────────────────── */
.marquee {
  background: var(--ink);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 48s linear infinite;
}
.marquee-group {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--parchment-faint);
  font-weight: 500;
  white-space: nowrap;
  padding-right: 56px;
}
.marquee-group em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--parchment-dim);
  font-weight: 400;
}
.marquee-group .m-dot {
  color: var(--whisky);
  font-size: 6px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Drop caps (editorial) ──────────────────────────── */
.tonight-copy::first-letter,
.room-head .kicker::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 4em;
  line-height: 0.86;
  float: left;
  padding: 0.06em 0.16em 0 0;
  color: var(--whisky);
}

/* ─── Animated underline on text-links ───────────────── */
.text-link {
  border-bottom: 0 !important;
  position: relative;
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}
.text-link::before,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  transition: transform 0.55s cubic-bezier(.7, 0, .2, 1);
}
.text-link::before { background: var(--hair-strong); }
.text-link::after {
  background: var(--whisky);
  transform: translateX(-101%);
}
.text-link:hover::before { transform: translateX(101%); }
.text-link:hover::after {
  transform: translateX(0);
  transition-delay: 0.05s;
}
.text-link.muted::before, .text-link.muted::after { display: none; }

/* ─── Header-nav animated underline ──────────────────── */
.header-nav a {
  border-bottom: 0 !important;
  position: relative;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--whisky);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(.2, .7, .1, 1);
}
.header-nav a:hover::after { transform: scaleX(1); }

/* ─── Magnetic button base (set transition shape) ────── */
.btn {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.5s cubic-bezier(.2, .7, .1, 1);
}
.btn.magnetizing {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.16s cubic-bezier(.2, .7, .1, 1);
}

/* ─── Unified image grading (cohesion across photos) ── */
.bite-img,
.mosaic-cell { isolation: isolate; }
.bite-img img,
.mosaic-cell img {
  filter: saturate(0.86) contrast(1.06) brightness(0.94);
}
.bite-img::after,
.mosaic-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(125, 74, 21, 0.10), transparent 65%),
    linear-gradient(180deg, transparent 55%, rgba(2, 2, 2, 0.20));
  mix-blend-mode: multiply;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.bite:hover .bite-img img,
.mosaic-cell:hover img {
  filter: saturate(1) contrast(1.06) brightness(1);
}

/* ─── Drink item hover (subtle shift + whisky tick) ──── */
.drinks-item {
  position: relative;
  transition: padding-left 0.5s cubic-bezier(.2, .7, .1, 1);
}
.drinks-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 36px;
  width: 0;
  height: 1px;
  background: var(--whisky);
  transition: width 0.5s cubic-bezier(.2, .7, .1, 1);
}
.drinks-item:hover { padding-left: 28px; }
.drinks-item:hover::before { width: 18px; }

/* ─── Hero: tuned full-bleed atmosphere ─────────────── */
/* Source photo is 1080×1919 — too small for crisp full-bleed on
   wide displays, so we tune the treatment so the image reads as
   *atmosphere* rather than primary content. No blur (blur on a
   soft source looks softer); deeper darken; richer gradient that
   pushes the type forward. The film grain (body::before) handles
   the rest of the texture. */
.hero-image {
  filter: saturate(1.08) contrast(1.10) brightness(0.58);
  background-position: center 38%;
  image-rendering: -webkit-optimize-contrast;
}
.hero-grade {
  background:
    linear-gradient(180deg,
      rgba(2, 2, 2, 0.55) 0%,
      rgba(2, 2, 2, 0.18) 22%,
      rgba(2, 2, 2, 0.18) 50%,
      rgba(2, 2, 2, 0.92) 100%),
    radial-gradient(ellipse at 65% 30%, transparent 0%, rgba(2, 2, 2, 0.55) 80%),
    linear-gradient(90deg, rgba(2, 2, 2, 0.40) 0%, transparent 50%);
}
.hero-vignette {
  box-shadow: inset 0 0 260px 60px rgba(0, 0, 0, 0.85);
}
/* Subtle warm color cast unifying the photo with the petrol/whisky palette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(125, 74, 21, 0.10), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(1, 54, 48, 0.18), transparent 55%);
  mix-blend-mode: overlay;
}

/* ─── Responsive hardening ──────────────────────────── */

/* Page-level overflow safety. `clip` doesn't break position:sticky
   the way `hidden` would. */
html { overflow-x: clip; }

/* Header — let the wordmark shrink instead of forcing horizontal
   overflow. Grid items default to min-width:auto which prevents
   shrinking below content size; min-width:0 unlocks that. */
.wordmark { min-width: 0; }
.header-inner { min-width: 0; }
.header-right { flex-shrink: 0; }

/* Long words shouldn't break narrow layouts. */
.hero-title,
.display,
.kicker,
.tonight-copy,
.drinks-item-name,
.drinks-item-note,
.bite-name,
.bite-note,
.visit-phone,
.visit-value,
.footer-line,
.reserve-pop-value {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Mobile header progression: tighten, then drop the monogram, then
   drop the rule + CENTRAL line as a last resort. Keeps the
   language switcher visible at 380px (overrides the original hide
   so users can still toggle locale on a narrow phone). */
@media (max-width: 540px) {
  .wordmark .monogram { width: 22px; height: 22px; }
  .wordmark { gap: 10px; }
  .header-inner { gap: 10px; }
  .marquee::before,
  .marquee::after { width: 44px; }
  .hero-scroll { right: 22px; bottom: 24px; }
  .tonight-copy::first-letter,
  .room-head .kicker::first-letter { font-size: 3.4em; }
}
@media (max-width: 460px) {
  .wordmark .monogram { display: none; }
  .wordmark { gap: 6px; }
  .wm-le { font-size: 14px; }
  .wm-rule { width: 10px; }
  .wm-central { font-size: 8.5px; letter-spacing: 0.22em; }
  .header-right { gap: 6px; }
  .btn { padding: 9px 11px; font-size: 10.5px; letter-spacing: 0.10em; }
  .lang-switch button { padding: 5px 6px; font-size: 9px; letter-spacing: 0.14em; }
  .visit-phone { font-size: 24px; }
}
/* Override the original 380px lang-switch hide — keep it visible
   down to ~340px since it's a primary navigation control. */
@media (max-width: 380px) {
  .lang-switch { display: flex; }
  .reserve-pop {
    width: min(260px, calc(100vw - 24px));
    padding: 14px;
  }
  .reserve-pop-value { font-size: 18px; }
}
@media (max-width: 340px) {
  .lang-switch { display: none; }
  .wm-rule { display: none; }
  .wm-central { display: none; }
}

/* ─── Reduce motion respect ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-title .word > span { transition-duration: 0.4s; transition-delay: 0ms; }
  .marquee-track { animation: none; }
  .hero-image { animation: none; transform: scale(1.02); }
  [data-reveal] { transition-duration: 0.4s; }
  .page-curtain { transition-duration: 0.3s; }
}
