:root {
  --ink: #0f0a07;
  --coal: #1b100c;
  --charcoal: #2a1b15;
  --paper: #f4e7d4;
  --porcelain: #fff9ee;
  --cream: #ead7b7;
  --gold: #d8b56a;
  --gold-dark: #a7782d;
  --vermilion: #7e211c;
  --jade: #073f35;
  --sage: #cdd9cf;
  --plum: #3c131b;
  --line: rgba(37, 25, 18, 0.16);
  --shadow: 0 28px 90px rgba(10, 6, 3, 0.22);
  --soft-shadow: 0 16px 48px rgba(10, 6, 3, 0.12);
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}
body.no-scroll { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { font-size: 5.35rem; }
h2 { font-size: 3.55rem; }
h3 { font-size: 1.62rem; }
.kicker {
  margin: 0 0 0.8rem;
  color: var(--vermilion);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 4vw;
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header.is-solid {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background: rgba(19, 15, 11, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 700;
}
.brand img { width: 54px; height: 54px; object-fit: contain; }
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  font-size: 0.88rem;
  font-weight: 800;
}
.desktop-nav a,
.mobile-nav a {
  padding: 0.45rem 0.2rem;
  border-bottom: 1px solid transparent;
}
.desktop-nav a[aria-current="page"],
.desktop-nav a:hover {
  border-color: var(--gold);
}
.header-actions,
.hero-actions,
.button-row,
.center-row,
.footer-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.header-actions { justify-content: end; }
.button,
button.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.78rem 1.1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--vermilion); color: #fff8ea; border-color: rgba(216,181,106,0.58); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05); }
.button.primary:hover { background: #942b23; border-color: rgba(216,181,106,0.82); }
.button.secondary { background: rgba(255,249,238,0.84); border-color: rgba(37,25,18,0.18); color: var(--ink); }
.button.ghost { background: rgba(255, 255, 255, 0.07); border-color: rgba(255,255,255,0.28); color: #fff; }
.button.light { background: rgba(255, 253, 248, 0.12); border-color: rgba(255,253,248,0.42); color: #fff; }
.button.light:hover,
.button.ghost:hover { border-color: rgba(216,181,106,0.76); }
.button.green { background: #0f6b4f; color: #fff; border-color: rgba(216,181,106,0.28); }
.button.red { background: #963128; color: #fff; border-color: rgba(216,181,106,0.28); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.language-toggle {
  min-width: 58px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 4px;
  padding: 0 0.72rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}
.language-toggle:hover { border-color: var(--gold); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}
.mobile-nav {
  position: fixed;
  z-index: 39;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 6rem 8vw;
  color: #fff;
  background: rgba(21,18,15,0.98);
  font-size: 1.6rem;
}
.mobile-nav[hidden] { display: none; }
.home-hero,
.page-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 8.5rem 4vw 5.4rem;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.home-hero video,
.page-hero-media,
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero video,
.page-hero-media img {
  object-fit: cover;
}
.home-hero video {
  filter: saturate(1.12) contrast(1.04) brightness(1.05);
}
.home-hero-overlay,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19,15,11,0.06), rgba(19,15,11,0.82)),
    linear-gradient(90deg, rgba(19,15,11,0.68), rgba(19,15,11,0.1));
}
.home-hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 930px;
}
.home-hero-content img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.34));
}
.home-hero-content p,
.page-hero-content p {
  max-width: 690px;
  color: rgba(255,253,248,0.86);
  font-size: 1.1rem;
}
.home-hero-content h1,
.page-hero-content h1 {
  text-shadow: 0 20px 54px rgba(0,0,0,0.38);
}
.restaurant-title span {
  display: block;
  white-space: nowrap;
}
.page-hero { min-height: 60vh; }
.signal-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  color: #fff;
}
.signal-band div {
  padding: 1.55rem 4vw;
  background: #1d1711;
}
.signal-band strong,
.signal-band span {
  display: block;
}
.signal-band strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}
.signal-band span { color: rgba(255,253,248,0.72); font-size: 0.92rem; }
.section {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6.4rem 4vw;
}
.section.compact { padding-top: 3rem; }
.section.dark,
.drinks-band,
.gallery-preview,
.final-cta {
  max-width: none;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
}
.section.dark {
  color: #fff;
  background: linear-gradient(135deg, #0f0a07, #24100d 52%, #3c131b);
}
.drinks-band {
  color: #fff;
  background: linear-gradient(135deg, #120908, #351417 55%, #073f35);
}
.drinks-band .section-head p,
.drinks-band .drink-card p { color: rgba(255,253,248,0.72); }
.drinks-band .section-head .kicker { color: var(--gold); }
.gallery-preview { background: #eadbc5; }
.final-cta {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #0f0a07, #073f35 58%, #3c131b);
}
.final-cta .hero-actions,
.center-row {
  justify-content: center;
  margin-top: 1.5rem;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 2.6rem;
  text-align: center;
}
.section-head p { color: rgba(19,15,11,0.68); }
.home-hero .kicker,
.page-hero .kicker,
.dark .kicker,
.location-panel .kicker,
.final-cta .kicker {
  color: var(--gold);
}
.dark .section-head p,
.final-cta p { color: rgba(255,255,255,0.75); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.split.reverse .split-copy { order: 2; }
.split-media img,
.panel img,
.poster img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.poster img { background: #fff; }
.split-copy p { color: rgba(19,15,11,0.68); }
.drink-menu-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 3.2rem;
  align-items: center;
}
.drink-menu-copy {
  max-width: 620px;
}
.drink-menu-copy p {
  color: rgba(255,248,234,0.78);
}
.drink-menu-preview,
.pdf-menu-frame {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(216,181,106,0.5);
  border-radius: 6px;
  background: #120b08;
  box-shadow: 0 34px 95px rgba(0,0,0,0.34);
}
.drink-menu-preview img,
.pdf-menu-frame img {
  width: 100%;
  background: #fff;
}
.drink-menu-preview span {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--gold);
  font-weight: 800;
  text-align: center;
}
.pdf-menu-section {
  max-width: 980px;
}
.pdf-menu-frame {
  max-width: 760px;
  margin: 0 auto;
}
.drink-menu-landing {
  max-width: none;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.7fr);
  gap: 3.6rem;
  align-items: center;
  padding-top: 8.6rem;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  color: #fff;
  background: linear-gradient(135deg, #0f0a07, #351417 52%, #073f35);
}
.drink-menu-landing-copy {
  max-width: 650px;
}
.drink-menu-landing-copy p {
  max-width: 560px;
  color: rgba(255,248,234,0.78);
  font-size: 1.1rem;
}
.drink-menu-landing .pdf-menu-frame {
  max-height: 76vh;
  overflow-y: auto;
}
.feature-grid,
.drink-grid,
.menu-card-grid,
.stat-grid,
.set-grid,
.two-col {
  display: grid;
  gap: 1.2rem;
}
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.drink-grid { grid-template-columns: repeat(4, 1fr); }
.menu-card-grid { grid-template-columns: repeat(4, 1fr); }
.menu-card-grid.all { grid-template-columns: repeat(3, 1fr); }
.two-col { grid-template-columns: repeat(2, 1fr); }
.feature-card,
.drink-card,
.menu-card,
.panel,
.set-card,
.order-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--porcelain);
  box-shadow: var(--soft-shadow);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.feature-card:hover,
.drink-card:hover,
.menu-card:hover,
.order-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197,154,74,0.42);
  box-shadow: 0 22px 58px rgba(18,12,6,0.16);
}
.feature-card img,
.drink-card img,
.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-card div,
.drink-card div,
.menu-card div,
.panel,
.set-card,
.order-card {
  padding: 1.28rem;
}
.feature-card h3,
.drink-card h3,
.menu-card h3 { margin-bottom: 0.4rem; }
.feature-card p,
.drink-card p,
.menu-card p { color: rgba(19,15,11,0.64); }
.stat-grid { grid-template-columns: repeat(4, 1fr); }
.stat-grid div {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  background: rgba(255,253,248,0.04);
}
.stat-grid strong {
  display: block;
  color: var(--gold);
  font-size: 2.4rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.location-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  padding: 0;
  background: var(--coal);
}
.location-band.interior { margin-top: 0; }
.location-panel {
  padding: 5rem 4vw;
  color: #fff;
  background: linear-gradient(180deg, #18110d, #102a24);
}
.location-panel p,
.location-panel .hours-list strong { color: rgba(255,255,255,0.78); }
.location-band iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(0.25);
}
.hours-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.46rem 0;
  border-bottom: 1px solid currentColor;
  border-color: rgba(127, 104, 72, 0.22);
}
.hours-list strong {
  font-weight: 700;
  color: rgba(19,15,11,0.68);
}
.hours-list .is-closed strong { color: var(--vermilion); }
.masonry {
  columns: 4 230px;
  column-gap: 1rem;
}
.gallery-tile {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--porcelain);
  cursor: pointer;
  break-inside: avoid;
  box-shadow: 0 10px 30px rgba(18,12,6,0.08);
}
.gallery-tile img {
  width: 100%;
  transition: transform 0.3s ease;
}
.gallery-tile:hover img { transform: scale(1.04); }
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.jump-nav a,
.pill-grid span {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.55rem 0.85rem;
  background: var(--porcelain);
  font-weight: 800;
}
.menu-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.menu-page {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--porcelain);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.menu-page img { width: 100%; }
.menu-page figcaption {
  padding: 0.75rem 1rem;
  font-weight: 700;
}
.menu-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0;
}
.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.menu-row strong,
.menu-row span { display: block; }
.menu-row span { color: rgba(21,18,15,0.62); font-size: 0.93rem; }
.menu-row b { color: var(--gold-dark); }
.set-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}
.set-card b {
  color: var(--gold-dark);
  font-size: 1.5rem;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.booking-form {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
}
.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem;
  font: inherit;
  background: #fbf8f0;
}
.booking-picker {
  position: relative;
  margin: 0.2rem 0 0.4rem;
}
.booking-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.booking-select {
  min-height: 76px;
  display: grid;
  gap: 0.12rem;
  align-content: center;
  width: 100%;
  border: 1px solid rgba(37,25,18,0.12);
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  background: linear-gradient(180deg, #fffefa, #f8f2e8);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(22,16,10,0.12);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.booking-select:hover,
.booking-select[aria-expanded="true"] {
  border-color: rgba(216,181,106,0.85);
  box-shadow: 0 18px 48px rgba(22,16,10,0.18);
  transform: translateY(-1px);
}
.booking-select span {
  color: rgba(21,18,15,0.58);
  font-size: 0.82rem;
  font-weight: 800;
}
.booking-select strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #24201c;
  font-size: 1.05rem;
  line-height: 1.15;
}
.booking-popover {
  position: absolute;
  z-index: 25;
  top: calc(100% + 0.75rem);
  left: 0;
  width: 100%;
  max-height: min(74vh, 620px);
  overflow: auto;
  border: 1px solid rgba(37,25,18,0.14);
  border-radius: 20px;
  padding: 1.15rem;
  background: rgba(255,253,248,0.98);
  box-shadow: 0 26px 80px rgba(19,15,11,0.24);
}
.booking-popover[hidden] { display: none; }
.booking-option-list {
  display: grid;
  gap: 0.38rem;
}
.booking-option-list button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #24201c;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
}
.booking-option-list button:hover,
.booking-option-list button.is-selected {
  background: #2278ee;
  color: #fff;
}
.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-toolbar button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(37,25,18,0.12);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.calendar-month h3 {
  margin-bottom: 1.2rem;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  text-align: center;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.36rem;
  text-align: center;
}
.calendar-weekday {
  color: rgba(21,18,15,0.55);
  font-size: 0.8rem;
  font-weight: 900;
}
.calendar-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #14110f;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
}
.calendar-day:hover:not(:disabled),
.calendar-day.is-selected {
  background: #2278ee;
  color: #fff;
}
.calendar-day.is-muted {
  color: rgba(21,18,15,0.32);
}
.calendar-day:disabled {
  cursor: not-allowed;
  color: rgba(21,18,15,0.26);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--jade);
  font-weight: 700;
}
.form-status.is-error {
  color: var(--vermilion);
}
input.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.order-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.order-card span {
  font-weight: 800;
}
.green-card { border-color: rgba(19, 179, 107, 0.42); }
.red-card { border-color: rgba(220, 59, 39, 0.42); }
.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 4vw;
  color: #fff;
  background: rgba(0,0,0,0.88);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-height: 78vh;
  width: auto;
  border-radius: 6px;
}
.lightbox button {
  justify-self: end;
  min-height: 42px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.6rem 0.9rem;
}
.site-footer {
  padding: 4rem 4vw 6rem;
  color: #fff;
  background: #0d0907;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-logo { width: 70px; height: 70px; object-fit: contain; }
.site-footer h2 { font-size: 1.8rem; }
.site-footer h3 {
  font-family: inherit;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 800;
}
.site-footer p,
.site-footer .hours-list strong {
  color: rgba(255,255,255,0.72);
}
.legal {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
}
.sticky-actions {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.sticky-actions a {
  padding: 0.85rem 0.4rem;
  text-align: center;
  color: #fff;
  background: var(--ink);
  border-right: 1px solid rgba(255,255,255,0.12);
  font-weight: 800;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.not-found {
  min-height: 70vh;
  display: grid;
  align-content: center;
  text-align: center;
}
@media (max-width: 1080px) {
  h1 { font-size: 3.8rem; }
  h2 { font-size: 2.5rem; }
  .feature-grid,
  .drink-grid,
  .menu-card-grid,
  .menu-card-grid.all,
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .desktop-nav,
  .header-actions { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; grid-column: 3; }
}
@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 4.2rem; }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.05rem; }
  .home-hero,
  .page-hero {
    min-height: 76vh;
    padding: 6.5rem 1.2rem 3rem;
  }
  .home-hero-content img { width: 88px; height: 88px; }
  .signal-band,
  .split,
  .drink-menu-focus,
  .drink-menu-landing,
  .two-col,
  .location-band,
  .footer-grid { grid-template-columns: 1fr; }
  .section,
  .section.dark,
  .drink-menu-landing,
  .drinks-band,
  .gallery-preview,
  .final-cta { padding: 4rem 1.2rem; }
  .drink-menu-landing { padding-top: 7rem; }
  .feature-grid,
  .drink-grid,
  .menu-card-grid,
  .menu-card-grid.all,
  .stat-grid,
  .set-grid,
  .menu-pages { grid-template-columns: 1fr; }
  .split.reverse .split-copy { order: 0; }
  .location-panel { padding: 4rem 1.2rem; }
  .location-band iframe { min-height: 420px; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-picker-grid,
  .calendar-months { grid-template-columns: 1fr; }
  .booking-popover {
    position: static;
    max-height: none;
    margin-top: 0.75rem;
  }
  .button { width: 100%; }
  .hero-actions .button,
  .button-row .button { width: auto; }
  .sticky-actions { display: grid; }
}

/* Minimal public-site finish */
body { background: #f3f1ec; }
.site-header { padding-left: max(1.2rem, 4vw); padding-right: max(1.2rem, 4vw); }
.site-header.is-solid { background: rgba(14, 13, 12, 0.94); }
.desktop-nav { gap: 1.8rem; font-size: 0.84rem; }
.home-hero { min-height: 92vh; }
.home-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8,8,7,0.02) 20%, rgba(8,8,7,0.58) 100%),
    linear-gradient(90deg, rgba(8,8,7,0.38), rgba(8,8,7,0.02) 70%);
}
.home-hero-content { max-width: 860px; }
.home-hero-content p { color: rgba(255,255,255,0.92); }
.button { min-height: 48px; padding: 0.8rem 1.25rem; border-radius: 3px; }
.button.primary { background: #8b241f; border-color: #b58b45; }
.button.primary:hover { background: #6f1714; }
.button.secondary { background: #f8f6f1; border-color: rgba(18,17,15,0.22); }
.section { padding-top: 6rem; padding-bottom: 6rem; }
.menu-intro { max-width: 1100px; }
.menu-card-grid.minimal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
  gap: 1.5rem;
}
.menu-card-grid.minimal .menu-card { background: #fff; box-shadow: 0 18px 52px rgba(20,17,13,0.1); }
.menu-card-grid.minimal .menu-card img { aspect-ratio: 16 / 10; }
.menu-card-grid.minimal .menu-card div { padding: 1.5rem; }
.menu-card-grid.minimal .menu-card h3 { font-size: 2rem; }
.online-order-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  color: #fff;
  background: #351916;
}
.online-order-media { min-height: 540px; }
.online-order-media img { width: 100%; height: 100%; object-fit: cover; }
.online-order-copy { display: grid; align-content: center; padding: clamp(3rem, 7vw, 7rem); }
.online-order-copy .kicker { color: var(--gold); }
.online-order-copy p { max-width: 560px; color: rgba(255,255,255,0.78); }
.contact-form-section { background: #f3f1ec; }
.contact-message-form {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 18px 52px rgba(20,17,13,0.1);
}
.kitchen-section { max-width: none; padding-left: max(4vw, calc((100vw - var(--max)) / 2 + 4vw)); padding-right: max(4vw, calc((100vw - var(--max)) / 2 + 4vw)); background: #121211; color: #fff; }
.kitchen-section .kicker { color: var(--gold); }
.kitchen-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; max-width: 1120px; margin: 0 auto; }
.kitchen-clip { position: relative; margin: 0; overflow: hidden; border-radius: 5px; background: #090908; }
.kitchen-clip video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.kitchen-clip figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 3rem 1rem 1rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.78)); font-size: 0.88rem; font-weight: 700; }
.menu-choice-section { min-height: 48vh; display: grid; align-items: center; }
.menu-document-page {
  max-width: none;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-top: 9rem;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  color: #fff;
  background: #281714;
}
.drinks-document-page { background: #32191b; }
.lunch-special-page { background: #442019; }
.menu-document-copy { max-width: 660px; }
.menu-document-copy .kicker { color: var(--gold); }
.menu-document-copy p { max-width: 590px; color: rgba(255,255,255,0.78); font-size: 1.08rem; }
.menu-document-preview { display: block; overflow: hidden; border: 1px solid rgba(216,181,106,0.5); border-radius: 5px; background: #fff; box-shadow: 0 32px 90px rgba(0,0,0,0.32); }
.menu-document-preview img { width: 100%; max-height: 72vh; object-fit: cover; object-position: top; }
.menu-document-preview.poster-preview img { object-fit: contain; background: #f8f4ed; }
.menu-document-preview span { display: block; padding: 1rem; color: #171512; text-align: center; font-weight: 800; }
.signature-special {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  color: #fff;
  background: #241713;
}
.signature-special-media { min-height: 640px; }
.signature-special-media img { width: 100%; height: 100%; object-fit: cover; }
.signature-special-copy { display: grid; align-content: center; padding: clamp(3rem, 7vw, 7rem); }
.signature-special-copy p { max-width: 560px; color: rgba(255,255,255,0.76); }
.signature-special-copy .kicker { color: var(--gold); }
.special-price { display: block; margin: 0.2rem 0 1.5rem; color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 3rem; }
.footer-grid { grid-template-columns: 1.25fr 1fr 1fr 1fr; max-width: 1160px; }
.site-footer { background: #11110f; }
.final-cta { background: #171612; }
.location-panel { background: #211511; }
.drinks-band { background: #32191b; }
html[lang="zh-Hant"] body { font-family: "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", sans-serif; }
html[lang="zh-Hant"] h1,
html[lang="zh-Hant"] h2,
html[lang="zh-Hant"] h3,
html[lang="zh-Hant"] .brand,
html[lang="zh-Hant"] .special-price { font-family: "Songti TC", "Noto Serif TC", "PMingLiU", serif; }
html[lang="zh-Hant"] .kicker { font-size: 0.88rem; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .language-toggle { grid-column: 3; }
  .menu-toggle { grid-column: 4; }
  .menu-card-grid.minimal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .restaurant-title span { white-space: normal; }
  .home-hero { min-height: 84vh; }
  .menu-card-grid.minimal,
  .kitchen-grid,
  .menu-document-page,
  .signature-special,
  .online-order-band { grid-template-columns: 1fr; }
  .menu-document-page { padding: 7.5rem 1.2rem 4rem; }
  .menu-document-preview img { max-height: none; }
  .kitchen-grid { gap: 0.75rem; }
  .kitchen-clip video { aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr; }
  .signature-special-media { min-height: 0; }
  .signature-special-media img { aspect-ratio: 4 / 3; }
  .signature-special-copy { padding: 3.5rem 1.2rem; }
  .online-order-media { min-height: 0; }
  .online-order-media img { aspect-ratio: 4 / 3; }
  .online-order-copy { padding: 3.5rem 1.2rem; }
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .language-toggle { grid-column: 3; }
  .menu-toggle { grid-column: 4; }
}
