/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Defaults — overwritten by JS from config.colors */
  --primary: #1B2A3B;
  --accent:  #C9A96E;
  --bg:      #0D0D0D;
  --text:    #F5F0E8;
  --surface: #1A1A1A;

  --max-w:       1400px;
  --pad:         clamp(24px, 5vw, 80px);
  --section-pad: clamp(80px, 10vw, 140px);
}

html { scroll-behavior: auto; } /* Lenis handles smooth scroll */

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

body.curtain-active { overflow: hidden; }

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ============================================================
   LOADING CURTAIN
   ============================================================ */
#curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#curtain-left,
#curtain-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
}

#curtain-left  { left: 0;  background: var(--primary); }
#curtain-right { right: 0; background: var(--accent);  }

#curtain-name {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 7vw, 96px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  text-align: center;
  padding: 0 var(--pad);
  white-space: nowrap;
}

/* ============================================================
   STICKY NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 28px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

#nav.scrolled {
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px var(--pad);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 0.55; }

.nav-reserve {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 10px 26px !important;
  border-radius: 40px;
  font-weight: 500 !important;
  transition: opacity 0.3s !important;
}
.nav-reserve:hover { opacity: 0.82 !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 9vw, 64px);
  letter-spacing: 0.06em;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad);
  max-width: var(--max-w);
  width: 100%;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 10vw, 136px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(11px, 1.4vw, 15px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.72;
  margin-bottom: 52px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.btn-primary:hover { opacity: 0.82; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 40px;
  border: 1px solid rgba(245, 240, 232, 0.38);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(245, 240, 232, 0.72);
  background: rgba(245, 240, 232, 0.05);
}

.btn-inverted {
  display: inline-block;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-inverted:hover { opacity: 0.82; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--text) 45%, transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  45%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   ABOUT / PHILOSOPHY
   ============================================================ */
#about {
  background: var(--bg);
  padding: var(--section-pad) var(--pad);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 4vw, 60px);
  color: var(--text);
  line-height: 1.35;
  margin-bottom: clamp(56px, 8vw, 100px);
  max-width: 1080px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.about-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3/4;
  position: relative;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap img:hover { transform: scale(1.03); }

.about-text-col { padding-top: 12px; }

.section-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
  margin-bottom: 28px;
}

.about-text-col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 44px);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.9;
  color: var(--text);
  opacity: 0.75;
  margin-bottom: 52px;
}

.about-established {
  border-top: 1px solid rgba(245, 240, 232, 0.14);
  padding-top: 24px;
}
.established-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   MENU
   ============================================================ */
#menu {
  background: var(--surface);
  padding: var(--section-pad) 0;
}

.menu-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.menu-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
}

.menu-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 var(--pad) 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}
.menu-track::-webkit-scrollbar { display: none; }
.menu-track.grabbing { cursor: grabbing; }

.menu-card {
  flex: 0 0 340px;
  border-radius: 2px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
}

.card-top {
  position: relative;
  background: var(--surface);
  padding: 40px 28px 32px;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.card-number {
  position: absolute;
  bottom: -18px;
  right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.card-dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--text);
  position: relative;
  z-index: 1;
  line-height: 1.25;
}
.card-dish-name::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--accent);
  margin-top: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.menu-card:hover .card-dish-name::after { transform: scaleX(1); }

.card-bottom {
  background: #f7f4ef;
  padding: 26px 28px 34px;
}
.card-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: #2a2a2a;
  margin-bottom: 20px;
}
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--primary);
}

.menu-footer {
  max-width: var(--max-w);
  margin: 44px auto 0;
  padding: 0 var(--pad);
  text-align: center;
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
#experience {
  background: var(--bg);
  overflow: hidden;
}

.experience-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 640px;
}

.experience-img-wrap {
  overflow: hidden;
  position: relative;
}
.experience-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.experience-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.experience-img-wrap img:hover { transform: scale(1.03); }

.experience-content {
  background: var(--primary);
  padding: clamp(48px, 7vw, 96px) clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 44px);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 48px;
}

.stats-list { list-style: none; }

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  align-items: center;
}
.stat-row:first-child { border-top: 1px solid rgba(245, 240, 232, 0.1); }

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--accent);
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0.55;
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  background: var(--surface);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.reviews-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.reviews-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 64px);
}

.marquee-outer { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-outer:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 360px;
  padding: 34px 30px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 2px;
  background: var(--bg);
}
.review-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.review-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.82;
  margin-bottom: 22px;
}
.review-author {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   HOURS & LOCATION
   ============================================================ */
#hours {
  background: var(--bg);
  padding: var(--section-pad) var(--pad);
}

.hours-inner { max-width: var(--max-w); margin: 0 auto; }

.hours-inner > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}

.hours-table { list-style: none; }

.hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.07);
}
.hours-row:first-child { border-top: 1px solid rgba(245, 240, 232, 0.07); }
.hours-row:nth-child(even) { background: rgba(245, 240, 232, 0.025); }

.hours-day {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.hours-time {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text);
  opacity: 0.75;
}
.hours-row.closed .hours-day,
.hours-row.closed .hours-time {
  opacity: 0.32;
  font-style: italic;
}

.map-col { display: flex; flex-direction: column; gap: 24px; }

.map-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 2px;
  min-height: 280px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  filter: grayscale(40%) brightness(0.85);
  display: block;
}

.location-details { display: flex; flex-direction: column; gap: 6px; }
.location-details p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text);
  opacity: 0.62;
  line-height: 1.6;
}

/* ============================================================
   RESERVATION CTA
   ============================================================ */
#reservation {
  background: var(--accent);
  padding: clamp(80px, 11vw, 152px) var(--pad);
  text-align: center;
}

.reservation-inner { max-width: 760px; margin: 0 auto; }

.reservation-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  color: var(--bg);
  line-height: 1.1;
  margin-bottom: 20px;
}
.reservation-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--bg);
  opacity: 0.68;
  margin-bottom: 44px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg);
  border-top: 1px solid rgba(245, 240, 232, 0.07);
  padding: clamp(64px, 8vw, 108px) var(--pad) 0;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.07);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-brand-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text);
  opacity: 0.45;
  line-height: 1.65;
}

.footer-col-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.footer-nav-links a:hover { opacity: 1; }

.footer-contact-line {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text);
  opacity: 0.55;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-socials {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-socials a {
  color: var(--accent);
  opacity: 0.72;
  transition: opacity 0.3s;
}
.footer-socials a:hover { opacity: 1; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy,
.footer-credit {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text);
  opacity: 0.3;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.line-wrapper { overflow: hidden; display: block; }
.reveal-line  { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .experience-inner { grid-template-columns: 1fr; }
  .experience-img-wrap { height: 420px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .menu-card { flex: 0 0 290px; }
}

@media (max-width: 600px) {
  .menu-track {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
    padding: 0 var(--pad) 24px;
  }
  .menu-card { flex: 0 0 auto; width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  #curtain-name { white-space: normal; }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
body.bm-body-lock { overflow: hidden; }

.bm-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bm-overlay.bm-open {
  opacity: 1;
  pointer-events: all;
}

.bm-panel {
  background: var(--bg);
  width: min(640px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,240,232,0.15) transparent;
}
.bm-panel::-webkit-scrollbar        { width: 4px; }
.bm-panel::-webkit-scrollbar-track  { background: transparent; }
.bm-panel::-webkit-scrollbar-thumb  { background: rgba(245,240,232,0.15); border-radius: 2px; }

/* Close button */
.bm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 4px 8px;
  z-index: 1;
}
.bm-close:hover { opacity: 1; }

/* Header */
.bm-header {
  padding: 40px 40px 28px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.bm-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.bm-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text);
  margin-bottom: 24px;
}

/* Progress indicator */
.bm-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.4s;
}
.bm-prog-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.28;
  transition: opacity 0.3s;
}
.bm-prog-item.active { opacity: 1; }
.bm-prog-item.bm-done { opacity: 0.55; }
.bm-prog-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text);
  transition: background 0.3s;
  flex-shrink: 0;
}
.bm-prog-item.active .bm-prog-dot,
.bm-prog-item.bm-done  .bm-prog-dot { background: var(--accent); }
.bm-prog-item span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.bm-prog-line {
  flex: 1;
  height: 1px;
  background: rgba(245,240,232,0.14);
  min-width: 16px;
}

/* Steps container */
.bm-steps-wrap { position: relative; }
.bm-step-pane  { padding: 32px 40px 40px; }

/* ── Calendar ── */
.bm-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bm-cal-arrow {
  background: none;
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.bm-cal-arrow:hover {
  border-color: var(--accent);
  background: rgba(201,169,110,0.08);
}
.bm-cal-month-lbl {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.bm-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}
.bm-cal-dh {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.38;
  padding: 8px 0 6px;
}
.bm-cal-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.bm-cal-cell:not(.bm-disabled):not(.bm-cal-empty):hover {
  background: rgba(201,169,110,0.14);
}
.bm-cal-cell.bm-selected {
  background: var(--accent) !important;
  color: var(--bg) !important;
  font-weight: 400;
}
.bm-cal-cell.bm-disabled {
  opacity: 0.22;
  cursor: default;
  pointer-events: none;
}
.bm-cal-cell.bm-cal-empty { cursor: default; }

/* "Closed" tooltip on hover */
.bm-cal-cell.bm-closed-day::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid rgba(245,240,232,0.1);
  color: var(--text);
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
}
.bm-cal-cell.bm-closed-day:hover::after { opacity: 1; }

/* ── Step shared ── */
.bm-step-label {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.bm-step-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--text);
  margin: 28px 0 14px;
}
.bm-step-heading:first-of-type { margin-top: 0; }

/* ── Time slots ── */
.bm-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bm-slot {
  background: transparent;
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.bm-slot:hover { border-color: var(--accent); background: rgba(201,169,110,0.08); }
.bm-slot.bm-sel { background: var(--accent); border-color: var(--accent); color: var(--bg); }

.bm-no-slots {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text);
  opacity: 0.45;
}

/* ── Party size ── */
.bm-party-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bm-party-btn {
  background: transparent;
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  width: 44px; height: 44px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.bm-party-btn:hover { border-color: var(--accent); background: rgba(201,169,110,0.08); }
.bm-party-btn.bm-sel { background: var(--accent); border-color: var(--accent); color: var(--bg); }

.bm-large-note {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text);
  opacity: 0.55;
  margin-top: 10px;
  line-height: 1.6;
}

/* ── Step footer (Back / Next) ── */
.bm-step-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.bm-btn-back {
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
  padding: 0;
}
.bm-btn-back:hover { opacity: 1; }
.bm-btn-next {
  background: var(--accent);
  border: none;
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.bm-btn-next:hover { opacity: 0.84; }
.bm-btn-next:disabled { opacity: 0.28; cursor: default; }
.bm-btn-confirm {
  background: var(--accent);
  border: none;
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.bm-btn-confirm:hover { opacity: 0.84; }

/* ── Contact form ── */
.bm-form { display: flex; flex-direction: column; gap: 20px; }
.bm-field { display: flex; flex-direction: column; gap: 8px; }
.bm-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
}
.bm-req { color: var(--accent); opacity: 1; }
.bm-opt {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
  opacity: 0.55;
}
.bm-input {
  background: var(--surface);
  border: 1px solid rgba(245,240,232,0.1);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 2px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.bm-input::placeholder { color: var(--text); opacity: 0.25; }
.bm-input:focus { border-color: var(--accent); }
.bm-textarea { resize: vertical; min-height: 80px; }
.bm-error {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #d97070;
  margin-top: -8px;
}

/* ── Confirmation ── */
.bm-confirm {
  text-align: center;
  padding: 16px 0 8px;
}
.bm-confirm-check {
  width: 52px; height: 52px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 22px;
  margin: 0 auto 28px;
}
.bm-confirm-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 30px);
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 16px;
}
.bm-confirm-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  opacity: 0.6;
  margin-bottom: 36px;
}

/* ── Modal responsive ── */
@media (max-width: 640px) {
  .bm-panel {
    width: 100vw;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    border: none;
  }
  .bm-header   { padding: 28px 24px 20px; }
  .bm-step-pane { padding: 24px 24px 36px; }
}

/* ============================================================
   MENU PAGE  (menu.html)
   ============================================================ */

/* Hero */
.mp-hero {
  min-height: 40vh;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) clamp(40px, 6vw, 72px);
  position: relative;
}
.mp-hero-back {
  position: absolute;
  top: calc(88px + 16px);
  left: var(--pad);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0.5;
  transition: opacity 0.25s;
}
.mp-hero-back:hover { opacity: 1; }
.mp-hero-content {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.mp-hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 8vw, 108px);
  color: var(--text);
  line-height: 1;
  margin-bottom: 16px;
}
.mp-hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.5;
}

/* Menu body — JS sets background-color from BUSINESS.colors.text */
.mp-body {
  padding: var(--section-pad) var(--pad);
}
.mp-body-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Menu section */
.mp-section { margin-bottom: clamp(64px, 8vw, 100px); }
.mp-section:last-child { margin-bottom: 0; }

.mp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--primary);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(27,42,59,0.28);
  margin-bottom: 0;
}

/* Menu item row */
.mp-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 20px 12px;
  border-bottom: 1px solid rgba(13,13,13,0.09);
  transition: background 0.22s ease;
  cursor: default;
}
.mp-item:hover { background: rgba(201,169,110,0.045); }

.mp-item-info { flex: 1; min-width: 0; }
.mp-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1.2;
}
.mp-item-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.65;
  color: var(--primary);
  opacity: 0.52;
}
.mp-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Sticky reserve button — mobile only */
.mp-sticky-reserve {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  display: none;
}
@media (max-width: 768px) {
  .mp-sticky-reserve { display: block; }
  .mp-hero-back { top: calc(72px + 12px); }
}
@media (max-width: 480px) {
  .mp-item { flex-direction: column; gap: 8px; }
  .mp-item-price { font-size: 20px; }
}
