:root {
  --bg: #ebe6dc;
  --bg-soft: #f4efe6;
  --ink: #141414;
  --muted: #5c5852;
  --line: rgba(20, 20, 20, 0.12);
  --lacquer: #6b1218;
  --lacquer-deep: #4d0c11;
  --gold: #c8a35f;
  --gold-soft: #d4b87a;
  --jade: #1f2e2a;
  --jade-soft: #33554d;
  --paper: #f7f2e8;
  --parchment: #f3eee3;
  --shadow: 0 24px 60px rgba(18, 20, 26, 0.14);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(200, 163, 95, 0.08), transparent 55%),
    linear-gradient(180deg, #efe9de 0%, var(--bg) 45%, #e5dfd3 100%);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  font-size: 1.05rem;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(3.2rem, 8vw, 6.2rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
p { margin: 0 0 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 1rem; z-index: 9999;
  background: var(--paper); padding: 0.7rem 1rem;
}
.skip-link:focus { left: 1rem; }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 720px); margin-inline: auto; }

/* Brand lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  line-height: 1.1;
  color: var(--gold);
}
.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 0.4rem rgba(200, 163, 95, 0.25));
}
.brand-text { display: flex; flex-direction: column; gap: 0.2rem; }
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.9;
}
.site-header .brand-mark-frame {
  width: 5rem;
  height: 5rem;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.site-header .brand-mark {
  position: absolute;
  top: 0;
  left: 50%;
  width: 220%;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
}
.site-footer .brand-mark-frame {
  width: 5rem;
  height: 5rem;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.site-footer .brand-mark {
  position: absolute;
  top: 0;
  left: 50%;
  width: 220%;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
}
.site-footer .brand-text {
  align-items: center;
}
.site-footer .brand-name,
.site-footer .brand-tag {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.site-header .brand-text {
  align-items: center;
}
.site-header .brand-name,
.site-header .brand-tag {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.brand-footer { margin-bottom: 1rem; }
.lotus-inline {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: -0.15em;
}
.lotus-divider {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0.85rem 0 1.25rem;
  opacity: 0.95;
}
.lotus-divider-light { margin: 0 auto 1.25rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 163, 95, 0.18);
}
.nav {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 5.5rem; gap: 1.5rem;
}
.nav-links {
  display: flex; align-items: center; gap: 1.6rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.78);
  transition: color 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  background: var(--lacquer) !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 0.7rem 1.2rem !important;
  letter-spacing: 0.14em !important;
}
.nav-cta:hover {
  background: var(--lacquer-deep) !important;
  color: var(--gold-soft) !important;
}
.nav-toggle {
  display: none; background: none; border: 0; width: 2.2rem; height: 2.2rem;
  padding: 0; cursor: pointer; position: relative;
}
.nav-toggle span {
  display: block; height: 1.5px; background: #f7f3ec; margin: 7px 0;
  transition: transform 0.3s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; border: 1px solid transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  padding: 0.95rem 1.6rem; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--lacquer); color: #fff; border-color: var(--lacquer); }
.btn-primary:hover { background: var(--lacquer-deep); border-color: var(--lacquer-deep); color: #fff; }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--jade); border-color: var(--jade); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }
.btn-reserve {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
  padding: 0.7rem 1.25rem;
  min-width: 7.5rem;
}
.btn-reserve:hover {
  background: var(--ink);
  color: var(--paper);
  transform: none;
}
.btn-reserve-evening {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--lacquer);
  color: #f7f1e6;
  border: 1px solid var(--gold);
  padding: 1.05rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 0 0 1px rgba(200, 163, 95, 0.15);
}
.btn-reserve-evening:hover {
  background: var(--lacquer-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(107, 18, 24, 0.35);
}
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--lacquer); margin: 0 0 1rem;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 36rem; }
.gold-em, .hero-lead em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gold);
}
.accent { color: var(--lacquer); }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-dark { background: var(--jade); color: #f3efe7; }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .lead, .section-dark p { color: rgba(243, 239, 231, 0.78); }
.section-soft { background: rgba(255, 252, 247, 0.55); }
.section-parchment {
  position: relative;
  background:
    linear-gradient(180deg, rgba(243, 238, 227, 0.96), rgba(247, 242, 232, 0.98)),
    var(--parchment);
  overflow: hidden;
}
.section-parchment::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -8%;
  width: min(42vw, 420px);
  height: min(58vw, 520px);
  background: url("../images/bamboo-wash.svg") right bottom / contain no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
.section-head {
  display: flex; justify-content: space-between; gap: 2rem; align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head p { max-width: 28rem; color: var(--muted); margin: 0; }
.section-more { margin-top: 1.5rem; }
.section-more a { color: var(--lacquer); text-decoration: none; letter-spacing: 0.04em; }
.section-more a:hover { text-decoration: underline; }
.shared-menu-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin: -1rem 0 2.25rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(20, 19, 17, 0.18);
  border-bottom: 1px solid rgba(20, 19, 17, 0.18);
}
.shared-menu-rule > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.45rem 1.5rem;
}
.shared-menu-rule em {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-style: normal;
  line-height: 1;
  color: var(--lacquer);
}
.shared-menu-rule strong,
.shared-menu-rule small { display: block; }
.shared-menu-rule strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.shared-menu-rule small { margin-top: 0.2rem; color: var(--muted); }
.shared-menu-plus {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(540px, 68vh, 720px);
  display: grid;
  align-items: center;
  background: #080808;
  color: #f7f3ec;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0 0 0 45%; z-index: 0;
  background: #080808;
  transform: scale(1.015);
  animation: heroDrift 20s var(--ease) infinite alternate;
}
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.78) 12%, rgba(8, 8, 8, 0.08) 45%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.18) 0%, rgba(8, 8, 10, 0.05) 55%, rgba(8, 8, 10, 0.42) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8,8,8,.99) 0%, rgba(8,8,8,.96) 32%, rgba(8,8,8,.58) 46%, transparent 62%);
}
.hero-content {
  position: relative; z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  animation: rise 0.9s var(--ease) 0.12s both;
}
.hero-kicker span::before {
  content: "— ";
  letter-spacing: 0.08em;
}
.hero h1 {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(4.1rem, 6vw, 5.8rem);
  color: #fff;
  margin-bottom: 1.35rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(200, 163, 95, .72);
  animation: rise 1s var(--ease) 0.24s both;
}
.hero-lead {
  color: rgba(247, 243, 236, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  max-width: 34rem;
  margin-bottom: 2.2rem;
  animation: rise 1s var(--ease) 0.36s both;
}
.hero .btn-reserve-evening {
  min-width: 22rem;
  animation: rise 1s var(--ease) 0.48s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroDrift {
  from { transform: scale(1.03) translateY(0); }
  to { transform: scale(1.07) translateY(-1.2%); }
}

/* What happens */
.happens { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.happens-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.05fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.happens-visual {
  position: relative;
  margin: 0;
  padding: .75rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #efe6d6;
  border: 1px solid rgba(169, 133, 77, .58);
}
.happens-visual::after {
  content: "";
  position: absolute;
  inset: 1.05rem;
  border: 1px solid rgba(246, 220, 165, .72);
  pointer-events: none;
}
.happens-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.happens-visual .happens-slide {
  position: absolute;
  inset: .75rem;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1s ease, transform 5s ease;
}
.happens-visual .happens-slide.is-active { opacity: 1; transform: scale(1); }
.happens-slide-caption {
  position: absolute;
  z-index: 3;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 3.5rem 1rem .85rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(9, 12, 11, .78));
  text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
}
.happens-slide-caption span { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.05; }
@media (prefers-reduced-motion: reduce) {
  .happens-visual .happens-slide { transition: none; transform: none; }
}
.happens-copy h2 { max-width: 14ch; margin-bottom: 0; }
.happens-heading {
  max-width: none !important;
  font-size: clamp(2.2rem, 3.5vw, 3.15rem);
}
.happens-heading > span { display: block; }
.happens-heading > .accent {
  margin-top: .35rem;
  font-size: .6em;
  line-height: 1.2;
  letter-spacing: .01em;
}
.happens-copy p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.55;
  color: #3a3834;
}
.soft-rule {
  border: 0;
  border-top: 1px solid rgba(20, 20, 20, 0.14);
  margin: 1.35rem 0;
}
.script-signoff {
  margin: 1.75rem 0 0 !important;
  font-family: var(--font-script) !important;
  font-size: clamp(1.85rem, 3.5vw, 2.45rem) !important;
  color: var(--gold) !important;
  line-height: 1.2 !important;
}

/* Experience grid */
.promise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); margin-top: 2.5rem;
}
.promise-grid article {
  background: var(--bg-soft); padding: clamp(1.6rem, 3vw, 2.4rem);
}
.promise-grid h3 { margin-bottom: 0.5rem; }
.promise-grid p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* Legacy story (menus etc.) */
.story {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story-visual {
  position: relative; min-height: 480px;
  background:
    linear-gradient(145deg, rgba(18, 20, 26, 0.08), rgba(18, 20, 26, 0.28)),
    url("../images/bunbo.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.story-visual::after {
  content: "";
  position: absolute; inset: 1.1rem;
  border: 1px solid rgba(255, 252, 247, 0.35);
  pointer-events: none;
}
.story .lead { margin-bottom: 1.5rem; }

/* Dish showcase */
.dish-rail {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.dish-card {
  position: relative; overflow: hidden; background: #1a1c22; min-height: 320px;
  color: #fff;
}
.dish-card img {
  width: 100%; height: 100%; object-fit: cover; min-height: 320px;
  transition: transform 0.8s var(--ease);
}
.dish-card:hover img { transform: scale(1.05); }
.dish-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 3.5rem 1.3rem 1.3rem;
  background: linear-gradient(transparent, rgba(10, 12, 16, 0.88));
  font-family: var(--font-display); font-size: 1.45rem;
}
.dish-card .course {
  display: block; font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; margin-bottom: 0.35rem;
}
.dish-slideshow { position: relative; }
.dish-slideshow-viewport { overflow: hidden; }
.dish-slideshow-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.dish-slideshow-track .dish-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  margin: 0;
  aspect-ratio: 1 / 1.06;
}
.dish-slideshow-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.55rem;
  margin: -0.75rem 0 1rem;
}
.dish-slideshow-controls span {
  margin-right: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dish-slideshow-controls button {
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(20, 19, 17, 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.dish-slideshow-controls button:hover:not(:disabled),
.dish-slideshow-controls button:focus-visible {
  border-color: var(--lacquer);
  background: var(--lacquer);
  color: #fff;
}
.dish-slideshow-controls button:disabled { opacity: 0.3; cursor: default; }

/* How it works */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.steps li {
  border-top: 1px solid rgba(243, 239, 231, 0.22); padding-top: 1.4rem;
}
.section-dark .steps li { border-top-color: rgba(243, 239, 231, 0.22); }
.steps em {
  display: block; font-style: normal; font-family: var(--font-display);
  font-size: 1.8rem; color: var(--gold); margin-bottom: 1.2rem;
}
.steps p { color: var(--muted); margin: 0; }
.section-dark .steps p { color: rgba(243, 239, 231, 0.72); }

/* Menus */
.menu-list { display: grid; gap: 2.5rem; }
.menu-panel {
  display: grid; grid-template-columns: minmax(240px, 0.85fr) 1.15fr; gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--paper); border: 1px solid var(--line); padding: clamp(1.2rem, 3vw, 2rem);
}
.menu-panel img {
  width: 100%; height: 100%; min-height: 280px; object-fit: cover;
}
.menu-meta { color: var(--muted); font-size: 0.95rem; }
.course-block { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.course-block span {
  display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lacquer); margin-bottom: 0.4rem;
}
.course-block ul { margin: 0; padding: 0; list-style: none; }
.course-block li { padding: 0.25rem 0; }
.veg-note {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  color: var(--jade-soft);
}
.veg-option-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.veg-course-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.85rem;
}
.veg-course-grid label { display: block; font-size: 0.88rem; margin-bottom: 0.3rem; }

/* Dates */
.date-board { border-top: 1px solid var(--line); }
.date-row {
  display: grid; grid-template-columns: 1.25fr 1.5fr 0.65fr 0.65fr auto;
  gap: 1rem 1.25rem; align-items: center;
  padding: 1.5rem clamp(1rem, 2.5vw, 1.75rem);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}
.date-row:hover { background: rgba(255, 252, 247, 0.55); }
.date-row time strong, .date-row time span { display: block; }
.date-row time strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.date-row time span { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }
.date-menu-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lacquer);
  margin-bottom: 0.35rem;
}
.date-menu-links { display: flex; flex-direction: column; gap: 0.25rem; align-items: flex-start; }
.date-menu-links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 20, 26, 0.28);
  padding-bottom: 0.05rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.date-menu-links a:hover {
  color: var(--lacquer);
  border-bottom-color: var(--lacquer);
}
.date-menu-pending { color: var(--muted); }
.date-guests { color: var(--muted); font-size: 0.92rem; }
.date-action { justify-self: end; }
.date-taken {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border: 1px solid currentColor;
}
.badge-free { color: var(--jade-soft); }
.badge-booked { color: var(--lacquer); }
.badge::before {
  content: ""; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: currentColor;
}
.empty-state {
  text-align: center; padding: clamp(3rem, 7vw, 5rem);
  border: 1px solid var(--line); background: var(--paper);
}

/* CTA band */
.cta-band {
  background: #0c0c0e; color: #f3efe7; text-align: center;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.cta-band .eyebrow { color: var(--gold); }
.cta-band p { color: rgba(243, 239, 231, 0.75); max-width: 34rem; margin: 0 auto 2rem; }

/* Page intro */
.page-intro {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-intro h1 { max-width: 14ch; }
.page-intro .lead { margin-top: 1rem; }
.page-intro-dark {
  background: #0c0c0e;
  color: #f7f3ec;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-intro-dark .lead { color: rgba(247, 243, 236, 0.82); }

/* Booking */
.booking-shell { width: min(100% - 2.5rem, 1040px); margin: 0 auto; padding-bottom: 5rem; }
.booking-form fieldset {
  border: 1px solid var(--line); background: var(--paper);
  padding: clamp(1.4rem, 3vw, 2rem); margin: 0 0 1.25rem;
  min-inline-size: 0;
}
.booking-form .booking-step-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
  padding: 0;
}
.booking-form .booking-step-title span {
  display: inline-grid; place-items: center;
  width: 1.8rem; height: 1.8rem; flex: 0 0 auto;
  background: var(--jade); color: #fff; font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
}
.booking-form fieldset > .hint:first-of-type { margin-top: 0; }
.booking-form fieldset > .booking-step-title + .hint { margin-top: 0; }
.booking-form fieldset > .booking-step-title + label { margin-top: 0.85rem; }
.booking-form fieldset > .booking-step-title + .grid-2 > div:first-child > label,
.booking-form fieldset > .booking-step-title + .payment-note { margin-top: 0.85rem; }
.selected-date-full {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold-dark);
  background: rgba(200, 163, 95, 0.1);
}
.selected-date-full[hidden] { display: none !important; }
.selected-date-full span {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.selected-date-full strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}
.booking-calendar {
  max-width: 620px;
  margin: 0.55rem auto 0;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #fff;
}
.booking-calendar-head {
  display: grid;
  grid-template-columns: 2.4rem 1fr 2.4rem;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.booking-calendar-head strong {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}
.booking-calendar-head button {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.booking-calendar-head button:hover:not(:disabled) { border-color: var(--lacquer); background: var(--lacquer); color: #fff; }
.booking-calendar-head button:disabled { opacity: 0.25; cursor: default; }
.booking-calendar-weekdays,
.booking-calendar-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0.35rem; }
.booking-calendar-weekdays { margin-bottom: 0.4rem; }
.booking-calendar-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-calendar-days button,
.booking-calendar-empty { aspect-ratio: 1; }
.booking-calendar-days button {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.booking-calendar-days button.is-available:hover,
.booking-calendar-days button.is-available:focus-visible { border-color: var(--gold-dark); background: rgba(200, 163, 95, 0.12); }
.booking-calendar-days button.is-selected { border-color: var(--lacquer); background: var(--lacquer); color: #fff; font-weight: 600; }
.booking-calendar-days button.is-unavailable,
.booking-calendar-days button.is-too-soon {
  color: rgba(107, 18, 24, 0.5);
  background: rgba(107, 18, 24, 0.06);
  text-decoration: line-through;
  cursor: not-allowed;
}
.booking-calendar-legend { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--line); }
.booking-calendar-legend span { display: flex; align-items: center; gap: 0.35rem; color: var(--muted); font-size: 0.72rem; }
.booking-calendar-legend i { width: 0.65rem; height: 0.65rem; border: 1px solid var(--line); background: transparent; }
.booking-calendar-legend span:nth-child(2) i { border-color: rgba(107, 18, 24, 0.35); background: rgba(107, 18, 24, 0.1); }
.booking-calendar-legend span:nth-child(3) i { border-color: var(--lacquer); background: var(--lacquer); }
.booking-form label {
  display: block; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; margin: 1rem 0 0.35rem;
}
.booking-form small, .hint { display: block; color: var(--muted); font-size: 0.88rem; margin-top: 0.35rem; }
.form-control, .form-select, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], select, textarea {
  width: 100%; border: 1px solid var(--line); background: #fff;
  padding: 0.75rem 0.9rem; font: inherit; color: var(--ink);
}
.form-control:focus, .form-select:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(107, 18, 24, 0.25); border-color: var(--lacquer);
}
.menu-picks { display: grid; gap: 1rem; margin-top: 0.75rem; }
.menu-pick {
  border: 1px solid var(--line);
  padding: 1rem 1.1rem 1.15rem;
  background: #fff;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.menu-pick:has(input[type="radio"]:checked) {
  border-color: var(--lacquer); background: rgba(107, 18, 24, 0.03);
}
.booking-form .menu-pick,
.booking-form .menu-pick:has(input[type="radio"]:checked) { border: 0; padding: 0; background: transparent; }
.menu-pick-select {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
}
.menu-pick-select input { margin-top: 0.4rem; }
.menu-pick-select strong {
  display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
}
.menu-pick-meta { display: block; margin: 0.2rem 0 0; color: var(--muted); font-size: 0.9rem; }
.menu-pick-desc { display: block; margin: 0.45rem 0 0; color: var(--muted); font-size: 0.95rem; line-height: 1.45; }
.menu-pick-courses { margin-top: 1.15rem; display: grid; gap: 1.1rem; }
.menu-pick-course .course-kicker {
  display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lacquer); margin-bottom: 0.4rem;
}
.menu-pick-course { padding: 1.75rem 0 2rem; border-top: 1px solid var(--line); }
.menu-pick-course:first-child { border-top: 0; padding-top: 0.5rem; }
.menu-course-heading { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.menu-course-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold-dark);
}
.menu-course-heading .course-kicker { margin: 0; font-size: 0.76rem; }
.menu-course-heading small { margin-top: 0.2rem; }
.menu-pick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.booking-form .dish-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(20, 19, 17, 0.16);
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.booking-form .dish-choice:hover { transform: translateY(-3px); border-color: rgba(169, 133, 77, 0.7); box-shadow: 0 14px 34px rgba(20, 19, 17, 0.1); }
.booking-form .dish-choice:has(input:checked) {
  border-color: var(--gold-dark);
  box-shadow: 0 16px 38px rgba(68, 48, 25, 0.17), inset 0 0 0 1px var(--gold-dark);
}
.booking-form .dish-choice > input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.booking-form .dish-choice:has(input:focus-visible) { outline: 3px solid rgba(107, 18, 24, 0.3); outline-offset: 3px; }
.dish-choice-photo { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #e8e1d5; }
.dish-choice-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 9, 9, 0.24));
  pointer-events: none;
}
.dish-choice-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.65s var(--ease); }
.dish-choice:hover .dish-choice-photo img { transform: scale(1.045); }
.dish-selected-mark {
  position: absolute;
  z-index: 1;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: transparent;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.dish-choice:has(input:checked) .dish-selected-mark { background: var(--lacquer); color: #fff; }
.dish-choice-content { display: flex; flex: 1; flex-direction: column; padding: 1rem; }
.dish-choice-title { display: flex; align-items: start; justify-content: space-between; gap: 0.75rem; }
.dish-choice-title strong { font-family: var(--font-display); font-size: 1.18rem; font-weight: 500; line-height: 1.15; }
.dish-choice-title em { color: var(--lacquer); font-style: normal; font-size: 0.8rem; white-space: nowrap; }
.booking-form .dish-choice-description { margin: 0.45rem 0 0; line-height: 1.45; }
.dish-vegetarian-option {
  display: block;
  margin-top: auto;
  padding-top: 0.85rem;
  color: var(--jade);
}
.dish-vegetarian-option > span { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }
.booking-form .dish-vegetarian-option small { margin-top: 0.2rem; color: var(--jade); line-height: 1.35; }
.menu-pick-course > p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.menu-pick-course .dish-name {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
}
.course-guest-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(31, 46, 42, 0.22);
  background: rgba(31, 46, 42, 0.06);
}
.course-guest-row[hidden] { display: none !important; }
.course-guest-row:first-of-type { margin-top: 0; }
.booking-form .course-guest-row label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  white-space: nowrap;
}
.course-guest-row .form-select,
.course-guest-row select.course-count {
  width: 4.5rem;
  padding: 0.55rem 0.45rem;
  text-align: center;
}
.booking-form .course-guest-row .dish-name { margin: 0; font-weight: 400; letter-spacing: 0; font-size: 0.98rem; }
.veg-pill {
  display: inline-block;
  vertical-align: 0.12em;
  margin-right: 0.35rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(31, 46, 42, 0.12);
  color: var(--jade);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.wine-pairing-option {
  display: flex !important;
  align-items: flex-start;
  gap: .85rem;
  margin: 1.4rem 0 0 !important;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(200, 163, 95, .08);
  cursor: pointer;
}
.menu-requirement-callout {
  margin: 0.2rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--lacquer);
  background: rgba(125, 29, 28, 0.07);
}
.menu-requirement-callout strong,
.menu-requirement-callout span { display: block; }
.menu-requirement-callout span { margin-top: 0.3rem; color: var(--muted); line-height: 1.5; }
.wine-pairing-option input { margin-top: .35rem; }
.wine-pairing-option strong,
.wine-pairing-option small { display: block; }
.wine-pairing-option small {
  margin-top: .2rem;
  color: var(--muted);
  font-weight: 400;
}
.booking-form fieldset.wine-pairing-pane {
  position: relative;
  overflow: hidden;
  border-color: rgba(200, 163, 95, 0.55);
  background:
    radial-gradient(circle at 92% 15%, rgba(200, 163, 95, 0.16), transparent 32%),
    linear-gradient(135deg, #171b19, #24211d);
  color: #f7f2e8;
}
.wine-pairing-pane::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(200, 163, 95, 0.14);
  border-radius: 50%;
  pointer-events: none;
}
.wine-pairing-pane .booking-step-title { color: #f7f2e8; }
.wine-pairing-pane .booking-step-title span { background: var(--gold-dark); color: #fff; }
.booking-form .wine-pairing-option {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 0 !important;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(200, 163, 95, 0.48);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.wine-pairing-option:hover,
.wine-pairing-option:has(input:checked) { border-color: var(--gold); background: rgba(200, 163, 95, 0.12); }
.booking-form .wine-pairing-option input { width: 1.15rem; height: 1.15rem; margin: 0; accent-color: var(--gold-dark); }
.wine-pairing-copy > strong { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; }
.wine-pairing-option .wine-pairing-kicker { margin: 0 0 0.25rem; color: var(--gold); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; }
.wine-pairing-option .wine-pairing-copy small { color: rgba(247, 242, 232, 0.7); }
.wine-pairing-price { padding-left: 1.25rem; border-left: 1px solid rgba(200, 163, 95, 0.35); text-align: right; }
.wine-pairing-price strong { color: var(--gold); font-family: var(--font-display); font-size: 2rem; font-weight: 500; line-height: 1; }
.wine-pairing-option .wine-pairing-price small { color: rgba(247, 242, 232, 0.7); white-space: nowrap; }
.booking-total-summary {
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.booking-total-heading {
  margin: 0 0 .65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}
.check-line { display: flex; gap: 0.65rem; align-items: flex-start; margin: 0.75rem 0; font-weight: 400; }
.check-line input { margin-top: 0.3rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.location-picker {
  grid-column: 1 / -1;
  margin-top: 1rem;
}
.location-picker-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.65rem;
}
.location-picker-heading label { margin: 0; }
.location-picker-heading small { margin-top: 0.25rem; }
.location-status {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.location-status.is-pinned { color: var(--jade); font-weight: 600; }
.service-location-map {
  display: block;
  width: 100%;
  height: 22rem;
  border: 1px solid var(--line);
  background: #e8e5dd;
}
.map-configuration-note {
  margin-top: 0.5rem;
  color: var(--muted);
}
.alert, .field-validation-error, .validation-summary-errors {
  color: var(--lacquer-deep); font-size: 0.9rem;
}
.validation-summary-errors ul { margin: 0; padding-left: 1.1rem; }
.payment-note {
  background: rgba(36, 61, 56, 0.08); border-left: 3px solid var(--jade);
  padding: 1rem 1.15rem; margin: 1rem 0;
}
.summary-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow);
}
.summary-card dl {
  display: grid; grid-template-columns: 8rem 1fr; gap: 0.55rem 1rem; margin: 0 0 1.5rem;
}
.summary-card dt { color: var(--muted); }
.bank-details {
  margin: 1.75rem 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  color: #f3efe7;
  background: var(--jade);
  border: 1px solid rgba(196, 155, 72, 0.45);
}
.bank-details .eyebrow { margin: 0 0 0.45rem; color: var(--gold); }
.bank-details h2 {
  margin: 0 0 1.25rem;
  color: #fffaf1;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}
.bank-details dl {
  grid-template-columns: 9rem 1fr;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.bank-details dt { color: rgba(243, 239, 231, 0.68); }
.bank-details dd { margin: 0; }
.bank-details dd span { color: rgba(243, 239, 231, 0.72); }
.bank-details dd strong { color: var(--gold); letter-spacing: 0.08em; }
.price-line, .price-total {
  display: flex; justify-content: space-between; padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}
.price-total {
  border-bottom: 0; border-top: 2px solid var(--ink);
  font-size: 1.25rem; margin-top: 0.75rem; padding-top: 1rem;
}
.yappy-payment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 17rem);
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.yappy-payment-copy .eyebrow { margin-bottom: 0.4rem; }
.yappy-payment-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 500;
}
.yappy-payment-copy p:last-child { margin: 0.75rem 0 0; color: var(--muted); }
.yappy-qr {
  display: block;
  width: 100%;
  max-width: 17rem;
  margin-inline: auto;
  border: 1px solid var(--line);
  background: #fff;
}
.yappy-amount {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(36, 61, 56, 0.08);
  border-left: 3px solid var(--jade);
}
.yappy-amount span { color: var(--muted); }
.yappy-amount strong { font-size: 1.35rem; }
.payment-confirmation {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.payment-confirmation .check-line { margin: 0; cursor: pointer; }
.payment-confirmation input { flex: 0 0 auto; }
.payment-alternative {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.payment-alternative > span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--muted);
}
.payment-alternative small {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

/* Contact / legal */
.note-card, .form-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
.faq details {
  border-bottom: 1px solid var(--line); padding: 1.1rem 0;
}
.faq summary {
  font-family: var(--font-display); font-size: 1.35rem; cursor: pointer;
}
.faq p { color: var(--muted); margin: 0.75rem 0 0; }
.legal-copy { line-height: 1.75; }
.legal-copy h2 { margin: 2.25rem 0 0.6rem; font-size: clamp(1.45rem, 3vw, 2rem); }
.legal-copy p { margin: 0.65rem 0; }
.legal-copy ul { margin: 0.75rem 0; padding-left: 1.25rem; }
.legal-copy li + li { margin-top: 0.45rem; }

/* Footer */
.site-footer {
  background: #0c0c0e; color: #d8d2c6; padding: 4rem 0 2rem;
}
.footer-inner {
  width: min(100% - 2.5rem, var(--max)); margin: 0 auto 2.5rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem;
}
.footer-tag { color: #a9a296; margin: 0; }
.footer-label {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1rem;
}
.site-footer a {
  display: block; color: #d8d2c6; text-decoration: none; margin: 0.35rem 0;
  font-size: 0.95rem;
}
.site-footer a.brand { display: inline-flex; margin: 0 0 1rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  width: min(100% - 2.5rem, var(--max)); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.4rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8e877c;
}
.admin-mark {
  display: inline !important; color: inherit !important; text-decoration: none !important;
}
.admin-mark:hover { color: var(--gold) !important; }

@media (max-width: 980px) {
  .promise-grid, .dish-rail, .steps, .story, .menu-panel, .contact-grid, .happens-grid { grid-template-columns: 1fr; }
  .shared-menu-rule { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .shared-menu-plus { display: none; }
  .shared-menu-rule > div { justify-content: flex-start; padding: 1rem 0.35rem; }
  .shared-menu-rule > div:not(:first-child) { border-top: 1px solid rgba(20, 19, 17, 0.12); }
  .dish-slideshow-track .dish-card { flex-basis: calc((100% - 1.25rem) / 2); }
  .menu-pick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .happens-visual { aspect-ratio: 1.22; }
  .steps { gap: 1rem; }
  .date-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: start; }
  .hero-content { max-width: 100%; }
  .hero h1 { max-width: 60%; }
}
@media (max-width: 760px) {
  .dish-slideshow-track .dish-card { flex-basis: 100%; }
  .menu-pick-grid { grid-template-columns: 1fr; }
  .booking-form .wine-pairing-option { grid-template-columns: auto minmax(0, 1fr); align-items: start; }
  .wine-pairing-price { grid-column: 2; padding: 0.8rem 0 0; border-left: 0; border-top: 1px solid rgba(200, 163, 95, 0.28); text-align: left; }
  .site-header .brand-mark-frame { width: 4.25rem; height: 4.25rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0c0c0e; border-bottom: 1px solid rgba(200, 163, 95, 0.18); padding: 0.5rem 1.25rem 1.25rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { text-align: center; margin-top: 0.75rem; justify-content: center; }
  .grid-2, .date-row, .footer-inner, .summary-card dl, .yappy-payment { grid-template-columns: 1fr; }
  .yappy-amount { grid-column: auto; }
  .location-picker-heading { align-items: start; flex-direction: column; }
  .service-location-map { height: 18rem; }
  .footer-bottom { flex-direction: column; }
  .hero { min-height: 82svh; align-items: end; }
  .hero-media { inset: 0; }
  .hero-media img {
    height: calc(100% + 20rem);
    object-position: 40% center;
    transform: translateY(-16rem);
  }
  .hero::after { background: linear-gradient(180deg, rgba(8,8,8,.15) 0%, rgba(8,8,8,.28) 35%, rgba(8,8,8,.96) 82%, #080808 100%); }
  .hero-content { padding: 16rem 0 3.5rem; }
  .hero-kicker { display: none; }
  .hero h1 { width: auto; max-width: none; white-space: normal; font-size: clamp(3.8rem, 16vw, 5.4rem); }
  .hero-title-second { display: block; text-align: right; }
  .hero-lead { max-width: 32rem; }
  .hero .btn-reserve-evening { display: flex; min-width: 0; width: 100%; max-width: 24rem; margin-inline: auto; }
  .brand-tag { letter-spacing: 0.12em; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important; transition: none !important; scroll-behavior: auto !important;
  }
  .hero-kicker, .hero h1, .hero-lead, .hero .btn-reserve-evening { opacity: 1; transform: none; }
  .hero-media { transform: none; }
}
