/* ── Header ───────────────────────────────────────────────────────────────── */
#header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.5s, box-shadow 0.5s;
}
#header.scrolled { background: var(--color-dark-bg); box-shadow: 0 2px 8px rgba(0,0,0,0.4); }

.header-topbar {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: max-height 0.5s, opacity 0.5s;
  max-height: 40px;
  opacity: 1;
}
#header.scrolled .header-topbar { max-height: 0; opacity: 0; }

.header-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.header-topbar-inner span,
.header-topbar-inner a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-text-light);
}
.header-topbar-inner a:hover { color: var(--color-accent); }
.header-topbar-icon { color: var(--color-accent); }

.header-nav-bar {
  background: var(--color-dark-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.5s;
}
#header.scrolled .header-nav-bar { border-bottom-color: rgba(205,164,94,0.2); }

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: var(--max-content);
  margin: 0 auto;
}
@media (min-width: 1200px) { .header-nav-inner { padding: 1rem 1rem; } }

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-heading);
}
@media (min-width: 1200px) { .header-logo { font-size: 1.5rem; } }

.header-desktop-nav { display: none; align-items: center; }
@media (min-width: 1280px) { .header-desktop-nav { display: flex; } }

.header-desktop-nav ul { display: flex; align-items: center; }
.header-desktop-nav a,
.header-desktop-nav button {
  padding: 1rem;
  font-family: var(--font-nav);
  font-size: 0.875rem;
  color: #fff;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.header-desktop-nav a:hover,
.header-desktop-nav button:hover { color: var(--color-accent); }
.header-nav-menu-btn {
  font: inherit;
}

.header-reserve-btn {
  margin-left: 1.5rem;
  border: 2px solid var(--color-accent);
  border-radius: 9999px;
  padding: 0.375rem 1.5rem;
  font-family: var(--font-nav);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: background 0.2s, color 0.2s;
}
.header-reserve-btn:hover { background: var(--color-accent); color: #fff; }

.header-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
  color: #fff;
}
@media (min-width: 1280px) { .header-hamburger { display: none; } }

/* Mobile nav overlay */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h, 72px);
  z-index: 40;
  background: var(--color-dark-surface);
  padding: 1.5rem;
  flex-direction: column;
}
#mobile-nav.open { display: flex; }
#mobile-nav a,
#mobile-nav button {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-left: none;
  border-right: none;
  border-top: none;
  padding: 1rem 0;
  font-family: var(--font-nav);
  font-size: 1rem;
  color: #fff;
  text-align: left;
  transition: color 0.2s;
  background: none;
  cursor: pointer;
}
#mobile-nav a:hover, #mobile-nav button:hover { color: var(--color-accent); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--color-dark-hero);
  padding-top: 100px;
}
@media (min-width: 600px) { #hero { padding-top: 108px; } }
@media (min-width: 1200px) { #hero { align-items: center; padding-top: 120px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/photos/IMG_4914.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,11,9,0.92) 0%, rgba(12,11,9,0.65) 45%, rgba(12,11,9,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-content);
  padding: 1rem 1rem 2rem;
}
@media (min-width: 600px) { .hero-content { padding: 2rem 1rem; } }

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1200px) {
  .hero-layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 1200px) {
  .hero-inner {
    align-items: flex-start;
    max-width: 50%;
    flex: 1;
  }
}

.hero-payments {
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(205, 164, 94, 0.55);
  border-radius: 0.625rem;
  background: rgba(12, 11, 9, 0.72);
  backdrop-filter: blur(6px);
  padding: 1.125rem 1.25rem;
}
@media (min-width: 1200px) {
  .hero-payments {
    max-width: 320px;
    margin-top: 0.5rem;
    flex-shrink: 0;
  }
}
.hero-payments-title {
  font-family: var(--font-nav);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}
.hero-payments-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.hero-payments-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.hero-payments-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}
.hero-payments-list li span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-heading);
}
@media (min-width: 600px) { .hero-title { font-size: 2rem; } }
@media (min-width: 1200px) { .hero-title { text-align: left; font-size: 3rem; } }

.hero-title .accent { color: var(--color-terracotta); }

.hero-subtitle {
  margin-top: 0.375rem;
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-light);
}
@media (min-width: 600px) { .hero-subtitle { font-size: 1.125rem; } }
@media (min-width: 1200px) { .hero-subtitle { text-align: left; font-size: 1.5rem; } }

.hero-ctas {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  width: 100%;
  max-width: 420px;
}
@media (max-width: 400px) { .hero-ctas { flex-wrap: wrap; } }

.hero-cta-btn {
  flex: 1;
  border-radius: 9999px;
  border: 2px solid var(--color-accent);
  padding: 0.625rem 0.75rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  background: transparent;
  transition: background 0.2s;
  min-width: 0;
  display: block;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
}
.hero-cta-btn:hover { background: rgba(205,164,94,0.2); }

.hero-cta-btn.reserve {
  border-color: var(--color-green);
  background: var(--color-green);
  color: #fff;
}
.hero-cta-btn.reserve:hover { background: var(--color-green-hover); border-color: var(--color-green-hover); }
.hero-cta-btn.reserve:disabled,
.hero-cta-btn.reserve[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.hero-disabled-notice {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 1200px) { .hero-disabled-notice { text-align: left; } }

.hero-pricing-notice {
  margin-top: 0.75rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(255, 220, 140, 0.85);
  background: rgba(205, 164, 94, 0.1);
  border: 1px solid rgba(205, 164, 94, 0.45);
  border-radius: 0.375rem;
  padding: 0.3rem 0.75rem;
}
@media (min-width: 1200px) { .hero-pricing-notice { text-align: left; } }

.hero-traiteur-note {
  display: block;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  font-family: var(--font-nav);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 220, 140, 0.95);
  background: rgba(205, 164, 94, 0.14);
  border: 1px solid rgba(205, 164, 94, 0.55);
  border-radius: 0.375rem;
  padding: 0.5rem 0.875rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-traiteur-note:hover {
  background: rgba(205, 164, 94, 0.28);
  border-color: rgba(205, 164, 94, 0.8);
  color: #fff;
}
@media (min-width: 1200px) { .hero-traiteur-note { text-align: left; } }

/* ── Traiteur section ─────────────────────────────────────────────────────── */
#traiteur {
  position: relative;
  background: #1e1a13;
  border-top: 1px solid rgba(205, 164, 94, 0.35);
  padding: 3.5rem 0;
  scroll-margin-top: 5.5rem;
}
@media (min-width: 1200px) { #traiteur { padding: 5rem 0; } }

.traiteur-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1000px) {
  .traiteur-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.traiteur-eyebrow {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.traiteur-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 1200px) { .traiteur-heading { font-size: 2.75rem; } }

.traiteur-lead {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
}

.traiteur-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.traiteur-chips span {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
  border: 1px solid rgba(205, 164, 94, 0.4);
  border-radius: 9999px;
  padding: 0.3rem 0.75rem;
}

.traiteur-props {
  display: flex;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.traiteur-props > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.875rem 0.75rem;
  text-align: center;
}
.traiteur-props > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.traiteur-props strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}
.traiteur-props span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.traiteur-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-nav);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1208;
  background: var(--color-accent);
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.traiteur-cta-btn:hover {
  background: #dcb870;
  transform: translateY(-1px);
}
@media (min-width: 600px) {
  .traiteur-cta-btn { width: auto; }
}

.traiteur-photo-wrap {
  display: none;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
@media (min-width: 1000px) {
  .traiteur-photo-wrap { display: block; }
}
.traiteur-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Reviews Carousel ─────────────────────────────────────────────────────── */
#reviews {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 420px;
}
.reviews-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(205,164,94,0.6);
  border-radius: 9999px;
  padding: 0.2rem 0.75rem;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  color: var(--color-text-light);
}
.reviews-badge .star { color: var(--color-accent); }
.reviews-google-label {
  font-family: var(--font-nav);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(205, 164, 94, 0.5);
  border-radius: 9999px;
  padding: 0.15rem 0.55rem;
}
.reviews-card {
  border: 1px solid rgba(205,164,94,0.45);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.05);
  min-height: 90px;
  transition: opacity 0.4s;
}
.reviews-card.fade { opacity: 0; }
.reviews-card-header { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.375rem; }
.reviews-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--color-green);
  border: 1px solid rgba(205,164,94,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.reviews-author { font-family: var(--font-nav); font-size: 0.75rem; font-weight: 600; color: #fff; }
.reviews-time { font-size: 0.65rem; color: var(--color-text-muted); }
.reviews-stars { font-size: 0.7rem; margin-bottom: 0.25rem; }
.reviews-text { font-size: 0.75rem; color: var(--color-text-light); line-height: 1.5; font-style: italic; }
.reviews-dots { display: flex; gap: 0.375rem; margin-top: 0.625rem; justify-content: center; }
.reviews-dot { width: 6px; height: 6px; border-radius: 9999px; background: rgba(255,255,255,0.35); transition: background 0.3s; }
.reviews-dot.active { background: var(--color-accent); }

/* ── About ────────────────────────────────────────────────────────────────── */
#about {
  position: relative;
  background: var(--color-dark-bg);
  padding: 4rem 0;
}
@media (min-width: 1200px) { #about { padding: 5rem 0; } }

.about-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1200px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.about-col-text { order: 2; }
@media (min-width: 1200px) { .about-col-text { order: 1; } }
.about-col-gallery { order: 1; }
@media (min-width: 1200px) { .about-col-gallery { order: 2; } }

.about-h3 { font-size: 1.75rem; font-weight: 700; }
.about-lead { margin-top: 0.75rem; font-style: italic; color: rgba(255,255,255,0.7); }
.about-bullets { margin-top: 0.5rem; }
.about-bullets li { display: flex; align-items: flex-start; gap: 0.5rem; padding-top: 0.625rem; }
.about-bullets .check { font-size: 1.25rem; line-height: 1.2; color: var(--color-accent); }
.about-bullets span { color: var(--color-text-light); }

.about-photo-wrap {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 0.25rem;
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, #0c0b09 95%);
}
.about-photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.85;
  filter: sepia(0.08) saturate(1.05);
}

/* Gallery grid */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.375rem; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
}
.gallery-item:first-child { grid-row: span 2; aspect-ratio: unset; min-height: 200px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
#footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--color-dark-bg);
  padding: 3rem 0;
  font-size: 0.875rem;
  color: var(--color-text-light);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-heading);
}
.footer-address { margin-top: 1.5rem; }
.footer-address p + p { margin-top: 0.25rem; }
.footer-phone { margin-top: 0.5rem; }
.footer-phone a:hover { color: var(--color-accent); }

.footer-hours-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.75rem;
}

.footer-meta { font-size: 0.8125rem; font-style: italic; opacity: 0.7; }
.footer-meta + .footer-meta { margin-top: 0.5rem; }
.footer-heritage { font-size: 0.75rem; opacity: 0.5; margin-top: 0.5rem; }
.footer-admin-link { padding-top: 0.75rem; font-size: 0.6875rem; opacity: 0.35; }
.footer-admin-link a:hover { opacity: 0.6; }

.footer-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-social-link:hover { color: var(--color-accent); }
.footer-social-link svg { flex-shrink: 0; opacity: 0.8; }
.footer-platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
}

/* ── Scroll to top ────────────────────────────────────────────────────────── */
#scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 30;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--color-teal);
  color: #fff;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
#scroll-top-btn.visible { display: flex; }
#scroll-top-btn:hover { background: var(--color-teal-hover); }

/* ── Closed date notice ───────────────────────────────────────────────────── */
#closed-notice {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 40;
  max-width: 280px;
  background: #1a2e2a;
  border: 1px solid rgba(205,164,94,0.3);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
#closed-notice.visible { display: block; }
.closed-notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.375rem;
}
.closed-notice-title { font-weight: 600; font-size: 0.8125rem; color: var(--color-accent); }
.closed-notice-close {
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}
.closed-notice-item { padding: 0.125rem 0; }

/* ── Menu viewer ──────────────────────────────────────────────────────────── */
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(8, 6, 4, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.menu-backdrop.open {
  display: flex;
}

.menu-viewer {
  width: 100%;
  max-width: 720px;
  max-height: 96vh;
  background: #F7EFE6;
  border: 1px solid rgba(205, 164, 94, 0.35);
  border-radius: 1.125rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.menu-viewer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.125rem 0.75rem;
  flex-shrink: 0;
}
.menu-viewer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1008;
  margin: 0;
  line-height: 1.2;
}
.menu-page-label {
  margin: 0.2rem 0 0;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  color: rgba(26, 16, 8, 0.55);
}
.menu-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: none;
  background: rgba(26, 16, 8, 0.08);
  color: #1a1008;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.menu-close:hover { background: rgba(26, 16, 8, 0.14); }

.menu-stage {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.5rem;
  flex: 1;
  min-height: 0;
}

.menu-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #ebe0d4;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.menu-viewport:active { cursor: grabbing; }

.menu-track {
  display: flex;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.menu-page {
  flex: 0 0 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.menu-page img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(96vh - 9.5rem);
  object-fit: contain;
  border-radius: 0.35rem;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.menu-nav-btn {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(26, 16, 8, 0.18);
  background: #f0ebe2;
  color: #1a1008;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, opacity 0.15s;
}
.menu-nav-btn:hover:not(:disabled) { background: #e4d9cb; }
.menu-nav-btn:disabled { opacity: 0.28; cursor: not-allowed; }

.menu-viewer-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem 1rem;
  flex-shrink: 0;
}
.menu-dots {
  display: flex;
  gap: 0.4rem;
}
.menu-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  background: rgba(26, 16, 8, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.menu-dot.active {
  background: var(--color-terracotta, #C05A3E);
  transform: scale(1.2);
}
.menu-swipe-hint {
  margin: 0;
  font-size: 0.6875rem;
  color: rgba(26, 16, 8, 0.45);
  font-family: var(--font-nav);
}

@media (max-width: 520px) {
  .menu-viewer { max-width: 100%; border-radius: 0.875rem; }
  .menu-nav-btn { width: 1.875rem; height: 1.875rem; font-size: 1.125rem; }
  .menu-page img { max-height: calc(96vh - 10.5rem); }
  .menu-stage { gap: 0.15rem; padding: 0 0.25rem; }
}
