/* ============================================================
   Tuscany Ristorante – Design System & Styles
   Rustic-elegant Italian: terracotta brick, olive sage, cream,
   deep wood-brown, warm gold — inspired by the restaurant interior
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Palette — restaurant-inspired */
  --cream:         #f4ebe0;
  --cream-dark:    #e6d9c8;
  --ivory:         #faf4ec;
  --terracotta:    #b54a35;
  --terracotta-deep: #8c3728;
  --terracotta-soft: #c96a52;
  /* Aliases keep existing class names working */
  --burgundy:      var(--terracotta);
  --burgundy-deep: var(--terracotta-deep);
  --burgundy-soft: var(--terracotta-soft);
  --gold:          #c9a05a;
  --gold-light:    #dbb76e;
  --gold-dark:     #a67f3a;
  --olive:         #5c6b47;
  --olive-soft:    #7d8f62;
  --olive-muted:   #9aab82;
  --wood:          #5c4030;
  --wood-light:    #7a5843;
  --espresso:      #1c1510;
  --charcoal:      #2e241c;
  --warm-gray:     #6e6256;
  --muted:         #8f8274;
  --white:         #fffdf9;
  --black:         #120e0b;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* Spacing & layout */
  --container:    1180px;
  --header-h:     96px;
  --radius:       4px;
  --radius-lg:    12px;
  --shadow-soft:  0 8px 32px rgba(28, 21, 16, 0.08);
  --shadow-card:  0 14px 42px rgba(28, 21, 16, 0.14);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Gradients — warm brick / wood / gold */
  --gradient-dark: linear-gradient(165deg, #1c1510 0%, #3a241c 42%, #2a1a14 100%);
  --gradient-gold: linear-gradient(135deg, #a67f3a 0%, #c9a05a 45%, #dbb76e 70%, #a67f3a 100%);
  --gradient-brick: linear-gradient(145deg, #8c3728 0%, #b54a35 50%, #6e2c20 100%);
  --gradient-wood: linear-gradient(180deg, #3d2a1f 0%, #2a1c14 100%);
  --texture-cream:
    linear-gradient(180deg, rgba(250, 244, 236, 0.97), rgba(244, 235, 224, 0.98)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(92, 64, 48, 0.015) 11px,
      rgba(92, 64, 48, 0.015) 12px
    );
  --texture-brick:
    linear-gradient(rgba(28, 21, 16, 0.82), rgba(28, 21, 16, 0.88)),
    repeating-linear-gradient(
      0deg,
      #6e2c20 0 14px,
      #5a241a 14px 15px
    ),
    repeating-linear-gradient(
      90deg,
      #8c3728 0 48px,
      #5a241a 48px 50px,
      #7a3224 50px 98px,
      #5a241a 98px 100px
    );
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--ivory);
  background-image: var(--texture-cream);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--cream);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(201, 160, 90, 0.15) 13px 14px),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(0, 0, 0, 0.12) 46px 48px);
  mix-blend-mode: soft-light;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-cream {
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(244, 235, 224, 0.5), rgba(230, 217, 200, 0.35)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 24px,
      rgba(92, 64, 48, 0.03) 24px,
      rgba(92, 64, 48, 0.03) 25px
    );
  border-block: 1px solid rgba(92, 64, 48, 0.06);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header.center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.85rem;
}

.section-eyebrow.light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

.section-title.light {
  color: var(--cream);
}

.section-title em {
  color: var(--terracotta);
  font-weight: 500;
}

.section-title.light em {
  color: var(--gold-light);
}

.section-lead {
  margin-top: 1rem;
  color: var(--warm-gray);
  font-size: 1.05rem;
}

.section-lead.light {
  color: rgba(247, 241, 232, 0.75);
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 1.25rem 0 1.5rem;
  border-radius: 2px;
}

.gold-rule.center {
  margin-inline: auto;
}

.center-actions {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.7rem 1.25rem;
  font-size: 0.8rem;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--espresso);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(196, 163, 90, 0.35);
}

.btn-gold:hover {
  color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.45);
  filter: brightness(1.05);
}

/* Secondary CTA — olive sage (pairs with gold “Reserve”) */
.btn-olive {
  background: linear-gradient(145deg, #6d7f55 0%, var(--olive) 48%, #4a5738 100%);
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(92, 107, 71, 0.32);
}

.btn-olive:hover {
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(92, 107, 71, 0.42);
  filter: brightness(1.06);
}

/* Hero: olive outline on dark photo backdrop */
.btn-olive-light {
  background: rgba(92, 107, 71, 0.22);
  color: #eef2e6;
  border-color: rgba(154, 171, 130, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(18, 12, 10, 0.2);
}

.btn-olive-light:hover {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(92, 107, 71, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 241, 232, 0.55);
}

.btn-outline-light:hover {
  background: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(247, 241, 232, 0.9);
  border-color: transparent;
  padding-inline: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(196, 163, 90, 0.6);
}

.btn-ghost-light:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ---------- Header / chrome ---------- */
:root {
  --topbar-h: 32px;
  --chrome-h: calc(var(--topbar-h) + var(--header-h));
}

.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /*
   * ~60% opaque cream, same before/after scroll.
   * Strong blur so hero details don’t read as sharp lines through the bar.
   */
  background: rgba(250, 246, 239, 0.6);
  backdrop-filter: blur(22px) saturate(1.05);
  -webkit-backdrop-filter: blur(22px) saturate(1.05);
  box-shadow: 0 4px 18px rgba(28, 21, 16, 0.1);
  border: none;
  border-bottom: 1px solid rgba(92, 64, 48, 0.1);
  transition: box-shadow 0.3s ease;
}

.site-chrome.is-scrolled {
  background: rgba(250, 246, 239, 0.6);
  box-shadow: 0 6px 22px rgba(28, 21, 16, 0.12);
}

.site-header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 1;
  height: var(--header-h);
  background: transparent;
  border: none;
  box-shadow: none;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
  gap: 1rem;
}

/* Logo — color grapevine mark on light chrome */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--espresso);
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}

.logo:hover {
  opacity: 0.9;
}

.logo-img {
  display: block;
  height: 82px;
  width: auto;
  max-width: min(320px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.logo-img--footer {
  height: 80px;
  max-width: 240px;
}

.logo-footer {
  display: inline-flex;
  padding: 0.65rem 0.85rem;
  background: #faf6ef;
  border-radius: 10px;
  border: 1px solid rgba(201, 160, 90, 0.25);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.65);
}

/* Nav — dark text on light header */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-list > li > a {
  display: block;
  padding: 0.45rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-cta .btn-sm {
  padding: 0.55rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--terracotta-deep);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: #fffdf9;
  border: 1px solid rgba(92, 64, 48, 0.14);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.dropdown a:hover {
  color: var(--terracotta-deep);
  background: rgba(181, 74, 53, 0.06);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--espresso);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* Full adaptive viewport — About starts only after scrolling past this */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--cream);
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  /* Full hero box (under fixed header) */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(125deg, rgba(28, 21, 16, 0.68) 0%, rgba(140, 55, 40, 0.32) 48%, rgba(28, 21, 16, 0.58) 100%),
    url('../images/hero-backdrop.jpg') center 18% / cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(201, 160, 90, 0.16) 0%, transparent 42%),
    radial-gradient(ellipse at 30% 55%, transparent 0%, rgba(28, 21, 16, 0.5) 100%),
    linear-gradient(to top, rgba(28, 21, 16, 0.88) 0%, rgba(28, 21, 16, 0.35) 28%, transparent 48%);
}

.hero-main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--chrome-h) + 0.75rem) 0 1.25rem;
  min-height: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 21, 16, 0.18);
  /* subtle warm vignette / brick edge feel */
  box-shadow: inset 0 0 120px rgba(140, 55, 40, 0.15);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

/* Highlight tiles inside the full-viewport hero */
.hero-tiles {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  width: min(100% - 1.5rem, var(--container));
  /* Desktop only lift — mobile must NOT overlap hero address/phone */
  margin: 0 auto 1.75rem;
  padding: 0;
  transform: translateY(-28px);
}

.hero-tile {
  text-align: center;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(250, 246, 239, 0.14);
  border: 1px solid rgba(247, 241, 232, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(18, 14, 11, 0.2);
}

.hero-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
  line-height: 1.2;
  text-align: center;
}

.hero-tile span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(247, 241, 232, 0.82);
  font-weight: 300;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title-line {
  display: block;
}

.hero-title-line.italic {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247, 241, 232, 0.85);
  max-width: 560px;
  margin: 0 auto 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(247, 241, 232, 0.7);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-phone:hover {
  color: var(--gold-light);
}

.hero-divider {
  width: 1px;
  height: 14px;
  background: rgba(247, 241, 232, 0.3);
}

.hero-address {
  font-weight: 300;
  color: rgba(247, 241, 232, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 160, 90, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.hero-address:hover,
.hero-address:focus-visible {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.hero-address:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- About Teaser ---------- */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-frame {
  position: relative;
}

/* About interior slider */
.about-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #ebe4d8;
}

.about-slider-track {
  position: relative;
  aspect-ratio: 4 / 5;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  z-index: 0;
}

.about-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.about-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  background-color: #ebe4d8;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  box-shadow: none;
}

.about-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 248, 238, 0.35);
  border-radius: 999px;
  background: rgba(26, 18, 16, 0.45);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.about-slider-btn:hover,
.about-slider-btn:focus-visible {
  background: rgba(166, 74, 45, 0.9);
  border-color: rgba(201, 160, 90, 0.65);
  outline: none;
}

.about-slider-btn--prev { left: 0.7rem; }
.about-slider-btn--next { right: 0.7rem; }

.about-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  pointer-events: none;
}

.about-slider-dot {
  pointer-events: auto;
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.about-slider-dot.is-active {
  width: 1.35rem;
  background: var(--gold);
}

.about-slider-dot:hover,
.about-slider-dot:focus-visible {
  background: var(--cream);
  outline: none;
}

.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  z-index: 4;
  background: var(--gradient-brick);
  color: var(--cream);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  max-width: 180px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 160, 90, 0.4);
}

.accent-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.accent-label {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  opacity: 0.9;
}

.about-teaser-copy p {
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.feature-list {
  margin: 1.5rem 0 2rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive-soft);
  box-shadow: 0 0 0 3px rgba(92, 107, 71, 0.2);
}

/* ---------- Menus full-viewport section ---------- */
/* Full-viewport band: header + menu cards + food marquee share one screen */
.menus-section--viewport {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Extra bottom padding biases the block slightly higher in the viewport */
  padding: clamp(0.85rem, 2.5vh, 1.75rem) 0 clamp(2.75rem, 8vh, 5rem);
  box-sizing: border-box;
  overflow-x: clip;
}

.menus-section--viewport .menus-section-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  flex: 0 0 auto;
  /* Nudge Our Menus + cards a touch higher above the marquee */
  transform: translateY(-1.25vh);
}

.menus-section--viewport .section-header {
  margin-bottom: clamp(0.9rem, 2vw, 1.4rem);
}

.menus-section--viewport .section-lead {
  max-width: 36rem;
  margin-inline: auto;
}

/* Food marquee sits in the remaining field under the cards */
.menus-section--viewport .menus-food-tracks {
  flex: 0 0 auto;
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.35rem;
  min-height: 0;
  transform: translateY(-0.5vh);
}

.menus-section--viewport .menus-food-hint {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.45);
  margin: 0.35rem 0 0;
  padding: 0 1rem;
}

/* Dish tiles in the menus marquee — slightly larger */
.menus-section--viewport .food-card {
  width: clamp(245px, 24vw, 330px);
  height: clamp(175px, 22vh, 240px);
  min-height: 0;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.menus-section--viewport .food-card-photo {
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.menus-section--viewport .food-card-name {
  font-size: 1.05rem;
  padding: 2.25rem 0.85rem 1rem;
  font-weight: 500;
}

/* Bigger, clearer dish name on hover in the menus marquee */
.menus-section--viewport .food-card:hover .food-card-name,
.menus-section--viewport .food-card:focus-within .food-card-name {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 2.5rem 0.9rem 1.1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    font-size 0.3s ease,
    padding 0.3s ease;
}

.menus-section--viewport .food-track {
  min-height: 0;
  gap: 1rem;
}

.menus-section--viewport .food-track + .food-track {
  margin-top: 0.9rem;
}

.menus-section--viewport .track-wrapper {
  min-height: 0;
  width: min(94vw, 1180px);
  max-width: 94vw;
  padding-top: 0.35rem;
  padding-bottom: 0.5rem;
}

/* ---------- Menu Cards ---------- */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

@media (min-width: 900px) {
  .menu-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}

/* Keep the four menu cards as a tight group (not stretched edge-to-edge) */
.menus-section--viewport .menu-cards {
  max-width: 1040px;
  margin-inline: auto;
  gap: 48px;
}

/* Natural luxe card size inside the full-viewport field (not squashed) */
.menus-section--viewport .menu-card--luxe {
  min-height: 320px;
  max-height: 400px;
  height: auto;
  aspect-ratio: 3 / 4;
}

@media (max-width: 899px) {
  .menus-section--viewport .menu-card--luxe {
    min-height: 260px;
    max-height: none;
  }

  .menus-section--viewport .food-card {
    width: clamp(200px, 46vw, 260px);
    height: clamp(145px, 19vh, 185px);
  }

  .menus-section--viewport .menu-cards {
    gap: 28px;
  }
}

@media (max-height: 800px) and (min-width: 900px) {
  .menus-section--viewport .menu-card--luxe {
    min-height: 280px;
    max-height: 340px;
  }

  .menus-section--viewport .food-card {
    width: clamp(220px, 22vw, 290px);
    height: clamp(158px, 20vh, 205px);
  }
}

.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 360px;
  aspect-ratio: 3 / 4;
  max-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--cream);
  text-decoration: none;
  text-align: center;
  isolation: isolate;
  border: 1px solid rgba(201, 160, 90, 0.22);
  box-shadow: 0 14px 34px rgba(18, 12, 10, 0.22);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.menu-card-wide {
  grid-column: span 2;
  min-height: 280px;
  aspect-ratio: auto;
  max-height: none;
}

.menu-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2a1c16;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-bg,
.menu-card:focus-visible .menu-card-bg {
  transform: scale(1.08);
}

/* Centered text needs a balanced veil (not bottom-only) */
.menu-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(26, 18, 16, 0.2) 0%, rgba(26, 18, 16, 0.55) 70%, rgba(26, 18, 16, 0.78) 100%),
    linear-gradient(180deg, rgba(26, 18, 16, 0.45) 0%, rgba(26, 18, 16, 0.52) 45%, rgba(26, 18, 16, 0.78) 100%);
  transition: background 0.35s ease, opacity 0.35s ease;
}

.menu-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 238, 0.06);
  background: linear-gradient(
    135deg,
    rgba(201, 160, 90, 0.12) 0%,
    transparent 35%,
    transparent 65%,
    rgba(140, 55, 40, 0.18) 100%
  );
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

.menu-card:hover .menu-card-bg::before,
.menu-card:focus-visible .menu-card-bg::before {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(74, 18, 25, 0.18) 0%, rgba(40, 16, 14, 0.58) 70%, rgba(26, 12, 12, 0.82) 100%),
    linear-gradient(180deg, rgba(40, 16, 14, 0.5) 0%, rgba(40, 16, 14, 0.55) 45%, rgba(26, 12, 12, 0.84) 100%);
}

/* Fallback class backgrounds (if used elsewhere) */
.menu-bg-lunch {
  background-image: url('https://images.unsplash.com/photo-1621996346565-e3dbc646d9a9?auto=format&fit=crop&w=800&q=80');
}

.menu-bg-dinner {
  background-image: url('https://images.unsplash.com/photo-1551183053-bf91a1d81141?auto=format&fit=crop&w=800&q=80');
}

.menu-bg-dessert {
  background-image: url('https://images.unsplash.com/photo-1571877227200-a0d98ea607e9?auto=format&fit=crop&w=800&q=80');
}

.menu-bg-wine {
  background-image: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=800&q=80');
}

.menu-bg-beer {
  background-image: url('https://images.unsplash.com/photo-1436076863939-06870fe779c2?auto=format&fit=crop&w=800&q=80');
}

.menu-bg-cocktails {
  background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=800&q=80');
}

.menu-bg-catering {
  background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1200&q=80');
}

.menu-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.15rem) 1.35rem;
  box-sizing: border-box;
}

.menu-card-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.55rem;
}

.menu-card-title,
.menu-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.6vw, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--cream);
  text-wrap: balance;
}

.menu-card-rule {
  display: block;
  width: 2.75rem;
  height: 1px;
  margin: 0.85rem auto 0.95rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.9;
}

.menu-card-desc,
.menu-card p {
  font-size: 0.88rem;
  color: rgba(247, 241, 232, 0.78);
  margin: 0 0 0.85rem;
  line-height: 1.55;
  max-width: 16.5rem;
  text-wrap: pretty;
}

.menu-card-meta {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.55);
  margin-bottom: 1rem;
}

.menu-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(201, 160, 90, 0.55);
  border-radius: 100px;
  background: rgba(26, 18, 16, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    letter-spacing 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.menu-card:hover .menu-card-link,
.menu-card:focus-visible .menu-card-link {
  letter-spacing: 0.16em;
  background: rgba(201, 160, 90, 0.22);
  border-color: var(--gold);
  color: var(--gold-light);
}

.menu-card:hover,
.menu-card:focus-visible {
  color: var(--cream);
  transform: translateY(-4px);
  border-color: rgba(201, 160, 90, 0.55);
  box-shadow: 0 20px 42px rgba(18, 12, 10, 0.32);
  outline: none;
}

.menu-card:focus-visible {
  box-shadow:
    0 20px 42px rgba(18, 12, 10, 0.32),
    0 0 0 3px rgba(201, 160, 90, 0.35);
}

/* ----- Luxe hotel variant: darker veil, large title, minimal copy ----- */
.menu-card--luxe {
  min-height: 400px;
  max-height: 480px;
  aspect-ratio: 3 / 4.15;
  border-radius: 10px;
  border-color: rgba(201, 160, 90, 0.28);
  box-shadow:
    0 18px 40px rgba(12, 8, 6, 0.38),
    inset 0 0 0 1px rgba(255, 248, 238, 0.04);
}

.menu-card--luxe .menu-card-bg {
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.05);
}

.menu-card--luxe:hover .menu-card-bg,
.menu-card--luxe:focus-visible .menu-card-bg {
  transform: scale(1.1);
  filter: saturate(1) contrast(1.08);
}

.menu-card--luxe .menu-card-bg::before {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(18, 10, 8, 0.28) 0%, rgba(18, 10, 8, 0.62) 58%, rgba(10, 6, 5, 0.88) 100%),
    linear-gradient(180deg, rgba(18, 10, 8, 0.55) 0%, rgba(18, 10, 8, 0.48) 38%, rgba(8, 5, 4, 0.9) 100%);
}

.menu-card--luxe:hover .menu-card-bg::before,
.menu-card--luxe:focus-visible .menu-card-bg::before {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(48, 14, 16, 0.3) 0%, rgba(28, 10, 12, 0.68) 58%, rgba(12, 6, 6, 0.92) 100%),
    linear-gradient(180deg, rgba(36, 12, 14, 0.58) 0%, rgba(28, 10, 12, 0.55) 40%, rgba(10, 5, 5, 0.93) 100%);
}

.menu-card--luxe .menu-card-bg::after {
  background:
    linear-gradient(180deg, rgba(201, 160, 90, 0.1) 0%, transparent 28%, transparent 72%, rgba(201, 160, 90, 0.08) 100%),
    linear-gradient(135deg, rgba(201, 160, 90, 0.08) 0%, transparent 40%, transparent 70%, rgba(120, 40, 30, 0.12) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(201, 160, 90, 0.14),
    inset 0 0 80px rgba(0, 0, 0, 0.25);
  opacity: 1;
}

.menu-card--luxe .menu-card-content {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 1.25rem;
  justify-content: center;
  gap: 0;
}

.menu-card--luxe .menu-card-label {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(219, 183, 110, 0.92);
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.menu-card--luxe .menu-card-title,
.menu-card--luxe h3 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.4vw, 2.85rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #fff8ee;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.menu-card--luxe .menu-card-rule {
  width: 1.75rem;
  height: 1px;
  margin: 1.15rem auto 1.35rem;
  background: var(--gold);
  opacity: 0.75;
  box-shadow: 0 0 12px rgba(201, 160, 90, 0.35);
}

/* Minimal CTA — text + gold underline, not a pill */
.menu-card--luxe .menu-card-link {
  padding: 0 0 0.2rem;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.88);
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(201, 160, 90, 0.55);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    letter-spacing 0.3s ease,
    opacity 0.3s ease;
}

.menu-card--luxe:hover .menu-card-link,
.menu-card--luxe:focus-visible .menu-card-link {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
  letter-spacing: 0.32em;
  background: transparent;
}

.menu-card--luxe:hover,
.menu-card--luxe:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(201, 160, 90, 0.5);
  box-shadow:
    0 26px 50px rgba(10, 6, 5, 0.45),
    inset 0 0 0 1px rgba(201, 160, 90, 0.2);
}

.menu-card--luxe:focus-visible {
  box-shadow:
    0 26px 50px rgba(10, 6, 5, 0.45),
    0 0 0 3px rgba(201, 160, 90, 0.4);
}

@media (max-width: 600px) {
  .menu-card {
    min-height: 280px;
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .menu-card-title,
  .menu-card h3 {
    font-size: 1.55rem;
  }

  .menu-card-desc,
  .menu-card p {
    font-size: 0.82rem;
  }

  .menu-card--luxe {
    min-height: 300px;
    max-height: none;
  }

  .menu-card--luxe .menu-card-title,
  .menu-card--luxe h3 {
    font-size: 2rem;
  }
}

/* ---------- Happy Hour ---------- */
.happy-hour {
  background:
    linear-gradient(135deg, rgba(140, 55, 40, 0.9) 0%, rgba(28, 21, 16, 0.92) 55%, rgba(61, 42, 31, 0.9) 100%),
    url('https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
  color: var(--cream);
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.happy-hour::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(0, 0, 0, 0.2) 12px 13px),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(0, 0, 0, 0.15) 40px 42px);
}

.happy-hour-inner {
  max-width: 640px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.happy-hour-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.happy-hour-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.happy-hour-title em {
  color: var(--gold);
}

.happy-hour-text {
  font-size: 1.05rem;
  color: rgba(247, 241, 232, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.happy-hour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: linear-gradient(180deg, #fffdf9 0%, #f5ebe0 100%);
  border: 1px solid rgba(92, 64, 48, 0.1);
  border-left: 3px solid var(--olive-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  flex: 1;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 0.85rem;
  color: var(--warm-gray);
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

.review-author cite {
  font-style: normal;
  font-weight: 600;
  color: var(--espresso);
}

.review-source {
  color: var(--muted);
}

.review-date {
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Google rating summary (avg stars + total count + link) */
.google-rating-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
  padding: 1rem 1.35rem;
  background: linear-gradient(180deg, #fffdf9 0%, #f5ebe0 100%);
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.google-rating-bar--page {
  margin-bottom: 2.25rem;
}

.google-rating-bar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(92, 64, 48, 0.14);
  color: #4285f4;
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--font-body, system-ui, sans-serif);
  flex-shrink: 0;
}

.google-rating-bar-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  justify-content: center;
}

.google-rating-bar-score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1;
}

.google-rating-stars {
  position: relative;
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.google-rating-stars-bg {
  color: rgba(92, 64, 48, 0.18);
}

.google-rating-stars-fg {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
}

.google-rating-bar-count {
  font-size: 0.95rem;
  color: var(--warm-gray);
  font-weight: 500;
}

.google-rating-bar-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta, #a85a3a);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  white-space: nowrap;
}

.google-rating-bar-link:hover {
  color: var(--espresso);
}

@media (max-width: 560px) {
  .google-rating-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
  }
}

/* ---------- Reviews section (OpenTable + Google) ---------- */
.reviews-section.section-cream {
  /* Less air above “Guest Love” */
  padding-top: clamp(2.75rem, 5vw, 4rem);
}

.reviews-section .section-header.center {
  /* Less empty space under the lead, before OpenTable cards */
  margin-bottom: 1.15rem;
}

.reviews-section .section-header .gold-rule {
  margin: 1rem auto 0.85rem;
}

.reviews-section .section-header .section-lead {
  margin-top: 0.65rem;
  margin-bottom: 0;
}

/* ---------- OpenTable reviews (Jotform widget) ---------- */
/* Wider host so Jotform’s own responsive layout can show 3 cards */
.jotform-ot-widget-outer {
  width: 100%;
  max-width: min(100% - 1.5rem, 1240px);
  margin: 0.35rem auto 0.25rem;
  padding: 0;
  box-sizing: border-box;
}

.jotform-ot-widget-wrap {
  min-height: 420px;
  width: 100%;
  background: transparent;
  padding: 0.15rem 0 0.5rem;
  margin: 0;
  /* Critical: no transform/opacity — .reveal breaks 3-card layout */
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
}

#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f {
  min-height: 400px;
  width: 100%;
  max-width: 100%;
  background: transparent;
  display: block;
}

/* Title shell — keep CTA alone */
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .sc-jgrJph,
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .ibtQzH {
  background: transparent !important;
  box-shadow: none !important;
}

/* Hide “Guest reviews from OpenTable” title line only (not the CTA) */
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .ot-hide-widget-title {
  display: none !important;
}

/*
 * Spacing between cards without fighting carousel widths:
 * pad the slide shell; card fills the inner area.
 */
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .sc-iwjdpV,
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .cWMdQR {
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  padding: 0 14px !important;
}

/* Review cards */
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .sc-cxpSdN,
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .hwYBXD {
  background: linear-gradient(180deg, #fffdf9 0%, #f5ebe0 100%) !important;
  background-color: #f5ebe0 !important;
  border: 1px solid rgba(92, 64, 48, 0.12) !important;
  border-left: 3px solid var(--olive-soft) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-soft) !important;
  color: var(--charcoal) !important;
  height: 100%;
  box-sizing: border-box !important;
}

@media (min-width: 960px) {
  #JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .sc-iwjdpV,
  #JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .cWMdQR {
    padding: 0 18px !important;
  }
}

#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .sc-iJKOTD,
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .jAqcxP,
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .sc-iJKOTD span {
  color: var(--charcoal) !important;
  font-family: var(--font-display), "Cormorant Garamond", Georgia, serif !important;
  font-style: italic !important;
}

#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .sc-hGPBjI,
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .cbmWCa {
  color: var(--espresso) !important;
  font-family: var(--font-display), "Cormorant Garamond", Georgia, serif !important;
  font-weight: 600 !important;
}

#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f button.readMore {
  color: var(--terracotta) !important;
  background: transparent !important;
}

#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .circular-avatar,
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .sc-bkkeKt {
  background: var(--cream-dark) !important;
  color: var(--wood) !important;
}

/* Hidden 1–3★ OpenTable slides (set by JS only when rating is clear) */
#JFWebsiteWidget-019f75853cf070008a41028e5f7c2322233f .ot-hide-low-rating {
  display: none !important;
}

/* ---------- Sliding food tracks (fitsinsight-style) ---------- */
.gallery-preview {
  position: relative;
  overflow-x: clip;
}

/*
 * Marquee at ~75% viewport width, centered, with soft side cuts.
 * Images fade at the edges so they appear/disappear into the cream section.
 */
.track-wrapper {
  position: relative;
  overflow: hidden;
  width: 75vw;
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  padding: 0.85rem 0 1.6rem;
  min-height: 430px;
  /* Soft dissolve on both sides — wider than before for a true "from nowhere" feel */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    transparent 1%,
    #000 9%,
    #000 91%,
    transparent 99%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    transparent 1%,
    #000 9%,
    #000 91%,
    transparent 99%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Extra cream edge veils (helps browsers where mask is weak; matches section-cream) */
.track-wrapper::before,
.track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(56px, 9vw, 140px);
  z-index: 4;
  pointer-events: none;
}

.track-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(244, 235, 224, 1) 0%,
    rgba(244, 235, 224, 0.92) 28%,
    rgba(244, 235, 224, 0.45) 62%,
    rgba(244, 235, 224, 0) 100%
  );
}

.track-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(244, 235, 224, 1) 0%,
    rgba(244, 235, 224, 0.92) 28%,
    rgba(244, 235, 224, 0.45) 62%,
    rgba(244, 235, 224, 0) 100%
  );
}

/*
 * Dark menus marquee: MUST come after cream rules above.
 * Soft, long fades — less “hard edge” so the dissolve is barely noticeable.
 * Colors match --gradient-dark: #1c1510, #3a241c, #2a1a14
 */
.menus-section--viewport .track-wrapper--on-dark,
.track-wrapper.track-wrapper--on-dark {
  /* Long, gentle mask — slow ramp so the cut feels almost invisible */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 6%,
    rgba(0, 0, 0, 0.55) 12%,
    #000 22%,
    #000 78%,
    rgba(0, 0, 0, 0.55) 88%,
    rgba(0, 0, 0, 0.15) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 6%,
    rgba(0, 0, 0, 0.55) 12%,
    #000 22%,
    #000 78%,
    rgba(0, 0, 0, 0.55) 88%,
    rgba(0, 0, 0, 0.15) 94%,
    transparent 100%
  );
}

.menus-section--viewport .track-wrapper--on-dark::before,
.menus-section--viewport .track-wrapper--on-dark::after,
.track-wrapper.track-wrapper--on-dark::before,
.track-wrapper.track-wrapper--on-dark::after {
  /* Wider, softer veil */
  width: clamp(100px, 16vw, 220px);
  background: none;
}

.menus-section--viewport .track-wrapper--on-dark::before,
.track-wrapper.track-wrapper--on-dark::before {
  left: 0;
  background: linear-gradient(
    to right,
    #1c1510 0%,
    rgba(28, 21, 16, 0.75) 18%,
    rgba(42, 26, 20, 0.45) 40%,
    rgba(42, 26, 20, 0.18) 65%,
    rgba(42, 26, 20, 0) 100%
  );
}

.menus-section--viewport .track-wrapper--on-dark::after,
.track-wrapper.track-wrapper--on-dark::after {
  right: 0;
  background: linear-gradient(
    to left,
    #1c1510 0%,
    rgba(28, 21, 16, 0.75) 18%,
    rgba(42, 26, 20, 0.45) 40%,
    rgba(42, 26, 20, 0.18) 65%,
    rgba(42, 26, 20, 0) 100%
  );
}

.food-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  min-height: 200px;
  animation: food-slide-left 50s linear infinite;
  will-change: transform;
}

/* Pause the whole row while the cursor is over it */
.food-track:hover {
  animation-play-state: paused;
}

.food-track + .food-track {
  margin-top: 1rem;
}

/*
 * Second row drifts the opposite way, slightly slower for depth.
 * Use longhand props only — the `animation` shorthand would reset
 * animation-play-state and break the .food-track:hover pause.
 */
.food-track.food-track-rev {
  animation-name: food-slide-right;
  animation-duration: 65s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes food-slide-left {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes food-slide-right {
  0%   { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.food-card {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  height: 200px;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--charcoal);
  cursor: default;
}

.food-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.food-card-name {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2rem 1rem 0.9rem;
  background: linear-gradient(
    to top,
    rgba(28, 21, 16, 0.92) 0%,
    rgba(28, 21, 16, 0.55) 55%,
    transparent 100%
  );
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

/* Hover a card: reveal dish name + gentle zoom */
.food-card:hover .food-card-photo {
  transform: scale(1.06);
  filter: brightness(0.88);
}

.food-card:hover .food-card-name,
.food-card:focus-within .food-card-name {
  opacity: 1;
  transform: translateY(0);
}

/* Keyboard / reduced-motion: always show names if animation is off */
@media (prefers-reduced-motion: reduce) {
  .food-track,
  .food-track.food-track-rev {
    animation: none !important;
    flex-wrap: wrap;
    width: auto;
    max-width: var(--container);
    margin-inline: auto;
    justify-content: center;
    padding-inline: 1rem;
  }

  .track-wrapper {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
    min-height: 0;
    width: 75vw;
    max-width: 75vw;
    margin-left: auto;
    margin-right: auto;
  }

  .track-wrapper::before,
  .track-wrapper::after {
    display: none;
  }

  .food-card-name {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .track-wrapper {
    min-height: 350px;
  }

  .track-wrapper::before,
  .track-wrapper::after {
    width: clamp(40px, 12vw, 88px);
  }

  .food-card {
    width: 220px;
    height: 160px;
  }

  .food-track {
    min-height: 160px;
  }

  .food-card-name {
    font-size: 1.05rem;
    padding: 1.5rem 0.75rem 0.7rem;
  }

  .food-track {
    animation-duration: 42s;
    gap: 0.75rem;
  }

  .food-track.food-track-rev {
    animation-duration: 54s;
  }
}

@media (max-width: 600px) {
  .track-wrapper {
    min-height: 290px;
  }

  .food-card {
    width: 180px;
    height: 132px;
  }

  .food-track {
    min-height: 132px;
  }

  .food-card-name {
    font-size: 0.95rem;
    opacity: 1;
    transform: none;
    padding: 1.25rem 0.55rem 0.55rem;
  }

  .food-track {
    animation-duration: 36s;
    gap: 0.65rem;
  }

  .food-track.food-track-rev {
    animation-duration: 46s;
  }
}

/* ---------- Gallery Preview ---------- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(26, 18, 16, 0.85), transparent);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-img-1 {
  background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?auto=format&fit=crop&w=700&q=80');
}

.gallery-img-2 {
  background-image: url('https://images.unsplash.com/photo-1587740908075-9e245070dfaa?auto=format&fit=crop&w=600&q=80');
}

.gallery-img-3 {
  background-image: url('https://images.unsplash.com/photo-1571877227200-a0d98ea607e9?auto=format&fit=crop&w=600&q=80');
}

.gallery-img-4 {
  background-image: url('https://images.unsplash.com/photo-1476124369491-e7addf5db371?auto=format&fit=crop&w=900&q=80');
}

.gallery-img-5 {
  background-image: url('https://images.unsplash.com/photo-1546833998-877b37c2e5c6?auto=format&fit=crop&w=600&q=80');
}

.gallery-img-6 {
  background-image: url('https://images.unsplash.com/photo-1467003909585-2f8a72700288?auto=format&fit=crop&w=600&q=80');
}

/* ---------- Dual CTA ---------- */
.dual-cta {
  padding: 0;
  background: var(--espresso);
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
  padding: 0;
}

.cta-panel {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 5vw, 4rem);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
  transition: opacity var(--transition), transform 0.6s ease;
  z-index: 0;
}

.cta-panel:hover::before {
  opacity: 0.25;
  transform: scale(1.04);
}

.cta-parties {
  background: linear-gradient(160deg, #8c3728 0%, #3a2218 100%);
  border-right: 1px solid rgba(201, 160, 90, 0.18);
}

.cta-parties::before {
  background-image: url('https://images.unsplash.com/photo-1519167758481-83f29da8c2b0?auto=format&fit=crop&w=900&q=80');
}

.cta-catering {
  background: linear-gradient(160deg, #3d2a1f 0%, #1c1510 100%);
}

.cta-catering::before {
  background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=900&q=80');
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-panel p {
  color: rgba(247, 241, 232, 0.75);
  margin-bottom: 1.75rem;
  max-width: 400px;
  line-height: 1.7;
}

.cta-phone {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}

.cta-phone a {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.cta-phone a:hover {
  color: var(--gold-light);
}

/* ---------- Location / Visit Tuscany ---------- */
.location-intro {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.location-intro .section-title {
  margin-bottom: 0.35rem;
}

.location-intro-meta {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: end;
  margin-top: 1.25rem;
}

.location-intro-block {
  margin-bottom: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: center;
}

/* Hours + map row: side-by-side, vertically centered to each other */
.location-grid--hours-map {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.location-hours {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.location-hours .hours-schedule {
  margin: 0;
  width: 100%;
}

.location-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.35rem;
}

.info-block p {
  color: var(--charcoal);
  line-height: 1.6;
}

.info-block .muted,
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.info-block a {
  color: var(--charcoal);
  font-weight: 500;
}

.info-block a:hover {
  color: var(--burgundy);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0;
  align-items: center;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-dark);
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
  width: 100%;
}

/* Map sized to sit level with the hours card */
.map-frame--location {
  aspect-ratio: 5 / 4;
  width: 100%;
  min-height: 320px;
  max-height: 480px;
}

.location-map .map-frame--location {
  height: auto;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.hours-footnote strong {
  color: var(--espresso);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    linear-gradient(180deg, #241810 0%, #1c1510 40%, #15100c 100%);
  color: rgba(250, 244, 236, 0.75);
  padding-top: 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(201, 160, 90, 0.25) 3px 4px);
}

.footer-ornament {
  height: 4px;
  background: var(--gradient-gold);
  box-shadow: 0 0 16px rgba(201, 160, 90, 0.35);
  position: relative;
  z-index: 1;
}

.site-footer > .container,
.site-footer > .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.logo-footer .logo-name {
  color: var(--cream);
}

.logo-footer {
  display: inline-flex;
}

.footer-tagline {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(247, 241, 232, 0.65);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(196, 163, 90, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-address {
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer-hours {
  font-size: 0.9rem;
  color: rgba(247, 241, 232, 0.55);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: rgba(247, 241, 232, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.4);
  margin-bottom: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 241, 232, 0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(247, 241, 232, 0.45);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------- Placeholder dish SVG (used as fallback) ---------- */
/* (served from assets/images/dish-placeholder.svg) */

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-card-wide {
    grid-column: span 2;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .about-teaser-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-intro-meta {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .location-intro-meta .location-actions {
    grid-column: 1 / -1;
  }

  .location-grid--hours-map {
    align-items: stretch;
    gap: 1.5rem;
  }

  .location-map .map-frame--location {
    min-height: 260px;
    max-height: none;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .about-accent-card {
    right: 1rem;
    bottom: -1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .dual-cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-parties {
    border-right: none;
    border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  }
}

@media (max-width: 560px) {
  .location-intro-meta {
    grid-template-columns: 1fr;
  }
}

/* Collapse desktop nav earlier so items never overflow */
@media (max-width: 1100px) {
  :root {
    --header-h: 84px;
  }

  .logo-img {
    height: 66px;
    max-width: min(250px, 56vw);
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: #faf6ef;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--chrome-h) + 1rem) 1.5rem 2rem;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 32px rgba(28, 21, 16, 0.2);
    overflow-y: auto;
    z-index: 1100;
    flex: none;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list > li > a {
    padding: 0.9rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(92, 64, 48, 0.1);
    color: var(--charcoal);
  }

  .has-dropdown > a::after {
    float: right;
    margin-top: 0.5rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    display: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 0.6rem 0;
    border-bottom: none;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-top: auto;
    flex-direction: column;
    width: 100%;
    gap: 0.55rem;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero {
    /* Allow hero to grow past one screen so nothing stacks on top of text */
    min-height: 100dvh;
    height: auto;
    overflow: visible;
  }

  .hero-main {
    /* Stack from top under chrome — avoid vertical centering that collides with tiles */
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--chrome-h) + 0.85rem) 0 0.75rem;
    flex: 0 1 auto;
  }

  .hero-content {
    max-width: 100%;
    padding-inline: 0.15rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.1rem;
  }

  .hero-actions .btn {
    width: 75%;
    max-width: 75vw;
  }

  .hero-divider {
    display: none;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
    padding-bottom: 0.35rem;
  }

  .hero-phone {
    font-size: 0.95rem;
  }

  .hero-address {
    display: block;
    max-width: 18.5rem;
    margin-inline: auto;
    line-height: 1.45;
    font-size: 0.85rem;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    width: min(100% - 1.25rem, var(--container));
    margin: 1rem auto 1.25rem;
    /* Critical: no upward pull over the address */
    transform: none;
    z-index: 1;
  }

  .hero-tile {
    padding: 0.7rem 0.65rem;
  }

  .hero-tile strong {
    font-size: 1rem;
  }

  .hero-tile span {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-title {
    font-size: clamp(2.15rem, 8vw, 3.1rem);
    margin-bottom: 0.85rem;
  }

  .hero-lead {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-eyebrow {
    margin-bottom: 0.85rem;
  }

  .menu-cards {
    grid-template-columns: 1fr;
  }

  .menu-card-wide {
    grid-column: span 1;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-slider-track,
  .about-image {
    aspect-ratio: 16 / 12;
  }

  .about-slider-btn {
    width: 2.1rem;
    height: 2.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-scroll {
    display: none;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Inner pages – hero, menu, contact, gallery
   ============================================================ */
.page-hero {
  background:
    linear-gradient(160deg, rgba(28, 21, 16, 0.94) 0%, rgba(140, 55, 40, 0.55) 55%, rgba(28, 21, 16, 0.95) 100%),
    var(--texture-brick);
  color: var(--cream);
  padding: calc(var(--chrome-h, calc(var(--header-h) + 32px)) + 3rem) 0 3rem;
  text-align: center;
  position: relative;
  box-shadow: inset 0 -40px 60px rgba(28, 21, 16, 0.35);
}

.page-hero-inner { max-width: 720px; }

.page-hero .section-title {
  color: var(--cream);
}

.page-hero .section-title em {
  color: var(--gold);
}

.page-hero-lead {
  margin-top: 1rem;
  color: rgba(247, 241, 232, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Menu tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-tab {
  padding: 0.65rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  background: var(--white);
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--burgundy);
}

.menu-tab.active {
  background: var(--terracotta);
  border-color: var(--terracotta-deep);
  color: var(--cream);
}

/* Drink menu: Wine / Beer / Cocktails sub-tabs */
.menu-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: -0.5rem 0 1.75rem;
}

.menu-subtab {
  appearance: none;
  cursor: pointer;
  padding: 0.7rem 1.35rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  border: 1.5px solid rgba(92, 64, 48, 0.18);
  border-radius: 100px;
  background: #fffdf9;
  transition: all var(--transition);
}

.menu-subtab:hover {
  border-color: var(--gold);
  color: var(--burgundy);
}

.menu-subtab.is-active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(28, 21, 16, 0.18);
}

.menu-subtab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.menu-drink-panel {
  display: none;
}

.menu-drink-panel.is-active {
  display: block;
}

.menu-drink-panel[hidden] {
  display: none !important;
}

.menu-drink-empty {
  text-align: center;
  max-width: 34rem;
  margin: 1.5rem auto 2.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.menu-drink-empty h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.65rem;
}

.menu-drink-empty p {
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.menu-drink-empty p:last-child {
  margin-bottom: 0;
}

/* Sticky section jump bar — sits under fixed site chrome while scrolling */
.menu-cat-nav-wrap {
  position: sticky;
  top: var(--chrome-h, 128px);
  z-index: 90;
  margin: 0 0 2.25rem;
  /* Break out of container slightly for a full-width bar feel */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: max(0.75rem, calc(50vw - (var(--container) / 2)));
  box-sizing: border-box;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.menu-page {
  overflow-x: clip;
}

.menu-cat-nav-wrap.is-stuck {
  background: rgba(250, 246, 239, 0.98);
  border-bottom-color: rgba(92, 64, 48, 0.12);
  box-shadow: 0 8px 22px rgba(28, 21, 16, 0.1);
}

.menu-cat-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem 0.55rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.7rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(92, 64, 48, 0.25) transparent;
}

.menu-cat-nav::-webkit-scrollbar {
  height: 4px;
}

.menu-cat-nav::-webkit-scrollbar-thumb {
  background: rgba(92, 64, 48, 0.25);
  border-radius: 100px;
}

.menu-cat-link {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(92, 64, 48, 0.12);
  background: rgba(255, 253, 249, 0.85);
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.menu-cat-link:hover {
  color: var(--burgundy);
  border-color: rgba(181, 74, 53, 0.35);
  background: #fff;
}

.menu-cat-link.is-active {
  color: var(--cream);
  background: var(--terracotta);
  border-color: var(--terracotta-deep);
  box-shadow: 0 2px 10px rgba(140, 55, 40, 0.22);
}

.menu-category {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  /* Header chrome + sticky cat bar clearance */
  scroll-margin-top: calc(var(--chrome-h, 128px) + var(--menu-cat-nav-h, 58px) + 0.75rem);
}

@media (min-width: 900px) {
  .menu-cat-nav {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}

.menu-category-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--espresso);
}

.menu-category-header .gold-rule {
  margin-inline: auto;
}

.menu-category-desc {
  color: var(--warm-gray);
  max-width: 34rem;
  margin: 0.65rem auto 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* Dinner: add protein to any salad / pasta */
.menu-protein-addons {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  padding: 0 0.15rem;
}

.menu-protein-addons-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.1rem;
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(140, 55, 40, 0.06) 48%, rgba(255, 252, 247, 0.95) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 6px 22px rgba(61, 40, 23, 0.06);
}

.menu-protein-addons-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--espresso);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.menu-protein-addons-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(140, 55, 40, 0.1);
  color: var(--terracotta-deep, #8c3728);
  flex-shrink: 0;
}

.menu-protein-addons-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-protein-addon {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.38rem 0.75rem 0.4rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(92, 64, 48, 0.12);
  box-shadow: 0 1px 3px rgba(61, 40, 23, 0.05);
  font-size: 0.92rem;
  line-height: 1.2;
}

.menu-protein-addon-name {
  font-weight: 500;
  color: var(--espresso);
}

.menu-protein-addon-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--terracotta-deep, #8c3728);
  letter-spacing: 0.02em;
}

/* Pizza toppings card (wider, multi-row) */
.menu-pizza-toppings {
  max-width: 820px;
}

.menu-pizza-toppings-inner {
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem 1rem;
}

.menu-pizza-toppings-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 1rem;
}

.menu-pizza-toppings-rate {
  margin: 0;
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.menu-pizza-toppings-rate strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--terracotta-deep, #8c3728);
}

.menu-pizza-toppings-list {
  justify-content: center;
}

.menu-pizza-topping .menu-protein-addon-name {
  font-weight: 500;
}

.menu-protein-addon--premium {
  border-color: rgba(201, 162, 39, 0.45);
  background: linear-gradient(180deg, #fffef9 0%, #fff 100%);
}

/* Inline separator after standard toppings (e.g. after Bacon) */
.menu-pizza-toppings-also {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 0.15rem 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
  list-style: none;
}

.menu-pizza-toppings-note {
  margin: 0.15rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--warm-gray);
  font-style: italic;
}

.menu-pizza-toppings-note strong {
  font-style: normal;
  font-weight: 600;
  color: var(--espresso);
}

@media (max-width: 540px) {
  .menu-protein-addons-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0.9rem 0.95rem;
  }

  .menu-protein-addons-label {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .menu-protein-addons:not(.menu-pizza-toppings) .menu-protein-addons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .menu-protein-addons:not(.menu-pizza-toppings) .menu-protein-addon {
    justify-content: space-between;
    width: 100%;
  }

  .menu-pizza-toppings-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
  }
}

/* Photo-ready menu grid — large thumbs + zoom */
.menu-items {
  --dish-thumb: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.75rem;
  max-width: 1180px;
  margin-inline: auto;
  align-items: stretch;
}

/* Text-only menus (Kids, Sides) + items without a photo in photo grids */
.menu-items--text {
  grid-template-columns: 1fr;
  max-width: 720px;
  gap: 0;
}

.menu-items--text .menu-item,
.menu-items--photos .menu-item.is-text-only {
  display: block;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(92, 64, 48, 0.1);
  min-height: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

.menu-items--photos .menu-item.is-text-only {
  grid-column: 1 / -1;
  max-width: 720px;
  margin-inline: auto;
  width: 100%;
  padding: 0.95rem 0.25rem;
}

.menu-items--text .menu-item:last-child,
.menu-items--photos .menu-item.is-text-only:last-child {
  border-bottom: none;
}

.menu-items--text .menu-item-body,
.menu-items--photos .menu-item.is-text-only .menu-item-body {
  width: 100%;
}

.menu-items--text .menu-item-top,
.menu-items--photos .menu-item.is-text-only .menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  width: 100%;
}

.menu-items--text .menu-item-name,
.menu-items--photos .menu-item.is-text-only .menu-item-name {
  flex: 0 1 auto;
  margin: 0;
  font-size: 1.2rem;
}

.menu-items--text .menu-item-dots,
.menu-items--photos .menu-item.is-text-only .menu-item-dots {
  flex: 1 1 auto;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(92, 64, 48, 0.35);
  transform: translateY(-0.35em);
  height: 0;
}

.menu-items--text .menu-item-price,
.menu-items--photos .menu-item.is-text-only .menu-item-price {
  flex: 0 0 auto;
  font-size: 1.1rem;
}

.menu-items--text .menu-item-desc,
.menu-items--photos .menu-item.is-text-only .menu-item-desc {
  max-width: none;
  margin-top: 0.25rem;
}

.menu-items--photos .menu-item {
  align-items: stretch;
  gap: 1.35rem;
  padding: 1.15rem;
  min-height: calc(var(--dish-thumb) + 2.3rem);
  border: 1px solid rgba(92, 64, 48, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffdf9 0%, #f6eee3 100%);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  box-sizing: border-box;
}

.menu-items--photos .menu-item:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(181, 74, 53, 0.3);
}

.menu-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* Media column: main photo + optional protein/sauce variants */
.menu-item-media {
  flex-shrink: 0;
  width: var(--dish-thumb, 250px);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.menu-item-image {
  position: relative;
  flex-shrink: 0;
  width: var(--dish-thumb, 250px);
  height: var(--dish-thumb, 250px);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #2c2420 0%, #1a1210 100%);
  border: 1px solid rgba(196, 163, 90, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  display: block;
}

.menu-item-media .menu-item-image {
  width: 100%;
}

/* Active variant badge on main photo */
.menu-item-variant-label {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  max-width: calc(100% - 3.4rem);
  padding: 0.32rem 0.7rem 0.3rem;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  color: #faf4ec;
  background: linear-gradient(135deg, rgba(28, 21, 16, 0.88), rgba(44, 28, 20, 0.82));
  border: none;
  border-left: 2px solid var(--gold);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Variant strip (protein / sauce options) */
.menu-item-variants {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(201, 160, 90, 0.22);
}

.menu-item-variants-hint {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  line-height: 1;
}

.menu-item-variants-hint::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 160, 90, 0.45), transparent);
}

.menu-item-variant-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0.4rem;
  width: 100%;
}

.menu-item-variant {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  min-width: 0; /* prevent long captions from blowing out grid */
  cursor: pointer;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  transition: transform 0.25s ease;
}

.menu-item-variant img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 7px;
  box-shadow:
    0 0 0 1px rgba(92, 64, 48, 0.12),
    0 3px 10px rgba(28, 21, 16, 0.08);
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
  filter: saturate(0.92) brightness(0.97);
}

.menu-item-variant-caption {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.15em; /* reserve space so rows stay even */
  padding: 0 0.1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: var(--warm-gray);
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
  transition: color 0.25s ease;
}

.menu-item-variant:hover {
  transform: none;
}

.menu-item-variant:hover img {
  filter: saturate(1) brightness(1);
  box-shadow:
    0 0 0 1px rgba(201, 160, 90, 0.45),
    0 6px 16px rgba(28, 21, 16, 0.14);
  transform: translateY(-1px);
}

.menu-item-variant:hover .menu-item-variant-caption {
  color: var(--espresso);
}

.menu-item-variant:focus-visible {
  outline: none;
}

.menu-item-variant:focus-visible img {
  box-shadow:
    0 0 0 2px var(--ivory),
    0 0 0 4px var(--gold);
}

.menu-item-variant.is-active img {
  filter: none;
  box-shadow:
    0 0 0 1.5px var(--gold),
    0 0 0 3px rgba(201, 160, 90, 0.22),
    0 8px 18px rgba(28, 21, 16, 0.16);
  transform: none;
}

.menu-item-variant.is-active .menu-item-variant-caption {
  color: var(--espresso);
  position: relative;
}

/* Elegant underline under active caption */
.menu-item-variant.is-active .menu-item-variant-caption::after {
  content: '';
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.28rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

button.menu-item-image--zoom {
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
}

button.menu-item-image--zoom:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-item-image img.dish-photo {
  transition: transform 0.45s ease;
}

.menu-item.has-image:hover .menu-item-image img.dish-photo {
  transform: scale(1.06);
}

.menu-item-zoom-hint {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(28, 21, 16, 0.72);
  color: var(--gold-light);
  border: 1px solid rgba(201, 160, 90, 0.45);
  opacity: 0.92;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.menu-item.has-image:hover .menu-item-zoom-hint {
  opacity: 1;
  transform: scale(1.06);
}

/* Placeholder until staff uploads a real photo */
.menu-item-image--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 40% 35%, rgba(196, 163, 90, 0.12), transparent 55%),
    linear-gradient(160deg, #2c2420 0%, #1a1210 100%);
}

.menu-item-image--placeholder img.dish-photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.menu-item-image-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(247, 241, 232, 0.75);
  background: linear-gradient(to top, rgba(26, 18, 16, 0.92), transparent);
  pointer-events: none;
}

.menu-item-body {
  flex: 1;
  min-width: 0;
  padding: 0.35rem 0.15rem 0.15rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.menu-item-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.menu-item-name .dish-tag {
  vertical-align: middle;
  margin-left: 0.25rem;
  position: relative;
  top: -0.1em;
}

.menu-item-price {
  font-weight: 600;
  color: var(--espresso);
  white-space: nowrap;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}

.menu-item-desc {
  margin-top: 0.15rem;
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 36ch;
}

.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.menu-footnote-note {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* Lightbox: larger dish zoom */
.lightbox.is-open #menu-lightbox-img,
#menu-lightbox.lightbox.is-open img {
  max-width: min(92vw, 920px);
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

@media (max-width: 1100px) {
  .menu-items {
    --dish-thumb: 200px;
  }

  .menu-item-desc {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .menu-items {
    --dish-thumb: 180px;
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .menu-item-name {
    font-size: 1.45rem;
  }
}

@media (max-width: 600px) {
  .menu-items {
    --dish-thumb: 120px;
    grid-template-columns: 1fr;
  }

  .menu-items--photos .menu-item {
    padding: 0.9rem;
    min-height: 0;
    gap: 1rem;
  }

  .menu-item.has-variants {
    flex-wrap: wrap;
  }

  .menu-item.has-variants .menu-item-media {
    width: 100%;
    max-width: 100%;
  }

  .menu-item.has-variants .menu-item-image {
    width: min(42vw, 148px);
    height: min(42vw, 148px);
  }

  .menu-item-variants {
    max-width: min(100%, 220px);
  }

  .menu-item-variants-hint {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .menu-item-variant-caption {
    font-size: 0.68rem;
    min-height: 2em;
  }

  .menu-item-variant-label {
    font-size: 0.7rem;
    padding: 0.25rem 0.55rem 0.22rem;
    max-width: calc(100% - 2.8rem);
  }

  .menu-item-name {
    font-size: 1.3rem;
  }

  .menu-item-price {
    font-size: 1.1rem;
  }

  .menu-item-desc {
    font-size: 0.95rem;
  }
}

.dish-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
  vertical-align: middle;
}

.dish-tag.popular {
  background: #f5ecd0;
  color: #8a6d1f;
}

.dish-tag.special {
  background: #fde8ea;
  color: #8b1e2a;
}

.dish-tag.dietary {
  background: #e8f0e4;
  color: #3d5a2f;
}

.menu-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.menu-notice {
  text-align: center;
  max-width: 520px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  color: var(--warm-gray);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-soft);
}

.contact-form .form-row {
  margin-bottom: 1.1rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font: inherit;
  background: var(--ivory);
  color: var(--charcoal);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.form-alert.success {
  background: #d8f3dc;
  color: #2d6a4f;
}

.form-alert.error {
  background: #fde8ea;
  color: #8b1e2a;
}

/* Gallery lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-grid-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-dark);
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
}

.gallery-grid-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 0.85rem 0.75rem;
  background: linear-gradient(to top, rgba(26,18,16,0.85), transparent);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 10, 9, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1000px);
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: 1px solid rgba(247,241,232,0.4);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Top bar (inside site-chrome) ---------- */
.top-bar {
  /* Flat full-bleed solid (no gradient = no vertical edge bands) */
  background-color: #7a3428;
  background-image: none;
  color: rgba(250, 244, 236, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  height: var(--topbar-h);
  width: 100%;
  display: flex;
  align-items: center;
  border: none;
  border-bottom: none;
  box-shadow: none;
  outline: none;
}

.top-bar-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.65rem;
  text-align: center;
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-bar-link {
  color: var(--gold-light);
  font-weight: 500;
  flex-shrink: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar-link:hover { color: #fff; }

.top-bar-sep { opacity: 0.45; flex-shrink: 0; }

.top-bar-text {
  color: rgba(250, 244, 236, 0.82);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Address → maps / directions (especially useful on mobile) */
.top-bar-address {
  color: rgba(250, 244, 236, 0.88);
  font-weight: 400;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: rgba(201, 160, 90, 0.45);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  -webkit-tap-highlight-color: rgba(201, 160, 90, 0.25);
}

.top-bar-address:hover,
.top-bar-address:focus-visible {
  color: #fff;
  text-decoration-color: var(--gold-light);
}

.top-bar-address:focus-visible {
  outline: 1px solid var(--gold-light);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Quick facts (legacy class kept if used elsewhere) ---------- */
.quick-facts {
  background:
    linear-gradient(180deg, #efe4d4 0%, #e6d9c8 100%);
  border-bottom: 1px solid rgba(92, 64, 48, 0.12);
  border-top: 3px solid var(--olive);
  padding: 1.75rem 0;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-fact {
  text-align: center;
  padding: 0.5rem;
}

.quick-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--terracotta-deep);
  margin-bottom: 0.25rem;
}

.quick-fact span {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.45;
}

/* ---------- About atmosphere photos ---------- */
.about-atmosphere {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: center;
}

.about-atmosphere-copy {
  max-width: 38rem;
}

/* Compact mosaic: one tall image + two stacked (not three huge squares) */
.about-atmosphere-photos {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: minmax(120px, 11.5rem) minmax(120px, 11.5rem);
  gap: 0.6rem;
  width: 100%;
  max-width: 26rem;
  margin-left: auto;
}

.about-photo {
  margin: 0;
  min-height: 0;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(92, 64, 48, 0.1);
  background: #ebe4d8;
}

.about-photo--large {
  grid-column: 1;
  grid-row: 1 / -1;
}

.about-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.about-photo--large img {
  object-position: center 42%;
}

/* Crossfade stacks inside About mosaic frames */
.about-fade {
  position: relative;
}

.about-fade-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.about-fade-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}

.about-fade-stack img.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .about-fade-stack img {
    transition: none;
  }
}

/* Private parties photo strip */
.parties-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
  margin-bottom: 0.5rem;
}

.parties-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.parties-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(92, 64, 48, 0.1);
  background: #ebe4d8;
}

.parties-photo--main {
  grid-column: 1 / -1;
}

.parties-photo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 1 / 1;
}

.parties-photo--main img {
  aspect-ratio: 1 / 1;
  object-position: center 40%;
}

@media (max-width: 900px) {
  .about-atmosphere,
  .parties-intro {
    grid-template-columns: 1fr;
  }

  .about-atmosphere-photos {
    max-width: 22rem;
    margin: 0.25rem auto 0;
    grid-template-rows: minmax(110px, 10rem) minmax(110px, 10rem);
  }
}

@media (max-width: 560px) {
  .about-atmosphere-photos {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(150px, 42vw) minmax(120px, 32vw);
  }

  .about-photo--large {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .about-photo {
    height: 100%;
    min-height: 0;
  }

  .about-fade-stack {
    min-height: 100%;
  }
}

/* ---------- Featured dishes ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.featured-card {
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--olive-soft);
}

.featured-card.has-photo {
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-top-color: var(--terracotta);
}

.featured-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.featured-card-link:hover {
  color: inherit;
}

.featured-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.featured-card:hover .featured-card-photo {
  transform: scale(1.04);
}

.featured-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.45rem;
}

.featured-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.25;
}

.featured-price {
  font-weight: 600;
  color: var(--espresso);
  white-space: nowrap;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.featured-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ---------- Reserve band ---------- */
.reserve-band {
  background:
    linear-gradient(135deg, rgba(244, 235, 224, 0.95), rgba(230, 217, 200, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(92, 107, 71, 0.04) 40px 41px);
  border-top: 1px solid rgba(92, 64, 48, 0.1);
  border-bottom: 1px solid rgba(92, 64, 48, 0.1);
  box-shadow: inset 0 0 60px rgba(181, 74, 53, 0.04);
}

.reserve-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.reserve-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Content pages ---------- */
.content-prose {
  max-width: 760px;
}

.content-prose p {
  color: var(--warm-gray);
  margin-bottom: 1.15rem;
  line-height: 1.75;
}

.lead-text {
  font-size: 1.1rem !important;
  color: var(--charcoal) !important;
  line-height: 1.7 !important;
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.owner-card p {
  color: var(--warm-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin: 2rem 0;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.info-card p {
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

/* ---------- Reservations layout ---------- */
.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.reserve-widget-panel {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  min-height: 320px;
}

.widget-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.35rem;
  color: var(--espresso);
}

.opentable-widget {
  display: flex;
  justify-content: center;
  min-height: 280px;
}

.opentable-widget--page {
  display: block;
  width: 100%;
  min-height: 640px;
}

.reserve-page-ot-frame {
  display: block;
  width: 100%;
  min-height: 640px;
  height: min(78vh, 780px);
  border: 0;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .opentable-widget--page,
  .reserve-page-ot-frame {
    min-height: 520px;
    height: min(70vh, 640px);
  }
}

/* ---------- OpenTable reserve modal ---------- */
body.reserve-modal-open {
  overflow: hidden;
}

.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.reserve-modal[hidden] {
  display: none !important;
}

.reserve-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.reserve-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
  border: 1px solid rgba(201, 160, 90, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10, 6, 5, 0.45);
  padding: 1.5rem 1.25rem 1.25rem;
  outline: none;
  -webkit-overflow-scrolling: touch;
  transition: width 0.25s ease, max-height 0.25s ease;
}

/* Booking UI (restref iframe) — larger same-tab panel, Safari-friendly */
.reserve-modal-dialog.is-booking {
  width: min(100%, 780px);
  max-height: min(96vh, 900px);
}

.reserve-modal-dialog.is-booking .reserve-modal-header {
  margin-bottom: 0.5rem;
}

.reserve-modal-dialog.is-booking .reserve-party-note {
  margin-top: 0.5rem;
  padding: 0.65rem 0.75rem;
}

.reserve-modal-dialog.is-booking .reserve-party-note p {
  font-size: 0.8rem;
}

.reserve-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  border-radius: 999px;
  background: rgba(28, 21, 16, 0.06);
  color: var(--espresso);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.reserve-modal-close:hover,
.reserve-modal-close:focus-visible {
  background: var(--terracotta);
  color: var(--cream);
  outline: none;
}

.reserve-modal-header {
  text-align: center;
  margin-bottom: 0.85rem;
  padding-right: 1.5rem;
}

.reserve-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  font-weight: 500;
  color: var(--espresso);
  margin: 0.15rem 0 0.25rem;
}

.reserve-modal-powered {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.reserve-modal-lead {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.5;
  margin: 0.65rem 0 0;
}

.reserve-modal-lead a {
  color: var(--terracotta-deep);
}

/* Party-size policy notice (modal + reservations page) */
.reserve-party-note {
  text-align: center;
  margin: 0.9rem 0 0;
  padding: 0.85rem 0.95rem;
  background: rgba(181, 74, 53, 0.08);
  border: 1px solid rgba(181, 74, 53, 0.22);
  border-left: 3px solid var(--terracotta);
  border-radius: var(--radius);
  color: var(--espresso);
}

.reserve-party-note p {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--charcoal);
}

.reserve-party-note p:last-child {
  margin-bottom: 0;
}

.reserve-party-note a {
  color: var(--terracotta-deep);
  font-weight: 600;
}

.reserve-party-note--page {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
}

.reserve-party-note--page p {
  font-size: 0.95rem;
}

.reserve-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.opentable-widget--modal {
  position: relative;
  width: 100%;
  min-height: 420px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* OpenTable injects iframe — keep it tidy in the modal */
.opentable-widget--modal iframe,
.opentable-widget--modal > * {
  max-width: 100%;
}

/* Same-window OT booking frame (restref client — full flow in this tab) */
.reserve-modal-ot-frame {
  display: none;
  width: 100%;
  min-height: 520px;
  height: min(70vh, 720px);
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(92, 64, 48, 0.08);
}

.reserve-modal-dialog.is-booking .reserve-modal-ot-frame {
  display: block;
  min-height: 560px;
  height: min(74vh, 760px);
}

@media (max-width: 640px) {
  .reserve-modal-dialog.is-booking {
    width: 100%;
    max-height: 96vh;
    border-radius: 14px 14px 10px 10px;
  }

  .reserve-modal-dialog.is-booking .reserve-modal-ot-frame {
    min-height: 420px;
    height: min(62vh, 560px);
  }
}

/* OT may inject its own overlay on the page — keep it above our chrome */
.ot-dtp-picker,
.ot-dtp-picker-overlay,
div[class*='ot-'],
iframe[src*='opentable.com'] {
  z-index: 5000;
}

.reserve-modal-fallback {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
  line-height: 1.5;
}

.reserve-modal-fallback a {
  color: var(--terracotta-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  .reserve-modal {
    padding: 0.5rem;
    align-items: flex-end;
  }

  .reserve-modal-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 14px 14px 10px 10px;
    padding: 1.25rem 0.85rem 1rem;
  }

  .nav-cta .btn-sm {
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }
}

/* About image from live site */
.about-image {
  background-size: cover;
  background-position: center;
}

/* ---------- Hours of Operation (card UI) ---------- */
.hours-schedule {
  margin: 1rem 0 1.75rem;
}

.hours-schedule-heading {
  margin-bottom: 0.65rem;
}

.hours-schedule-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--espresso);
  margin: 0;
}

.hours-schedule-header {
  margin-bottom: 1rem;
}

.hours-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(92, 64, 48, 0.12);
  background: linear-gradient(165deg, #fffdf9 0%, #f8f1e6 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* Live open/closed banner */
.hours-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(92, 64, 48, 0.08);
}

.hours-status.is-open {
  background: linear-gradient(90deg, rgba(92, 107, 71, 0.14), rgba(92, 107, 71, 0.05));
}

.hours-status.is-closed {
  background: linear-gradient(90deg, rgba(92, 64, 48, 0.08), transparent);
}

.hours-status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.hours-status.is-open .hours-status-dot {
  background: #5c6b47;
  box-shadow: 0 0 0 4px rgba(92, 107, 71, 0.2);
  animation: hours-pulse 2s ease-in-out infinite;
}

.hours-status.is-closed .hours-status-dot {
  background: #a09080;
}

@keyframes hours-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(92, 107, 71, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(92, 107, 71, 0.08); }
}

.hours-status-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.hours-status-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--espresso);
  letter-spacing: 0.01em;
}

.hours-status.is-open .hours-status-label {
  color: #3d4a2e;
}

.hours-status-detail {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

/* Day list */
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.hours-day {
  display: grid;
  grid-template-columns: minmax(7.5rem, 1.05fr) 1.2fr;
  gap: 0.65rem 0.85rem;
  align-items: center;
  padding: 0.8rem 1.1rem;
  border-top: 1px solid rgba(92, 64, 48, 0.06);
  transition: background 0.2s ease;
}

.hours-day:first-child {
  border-top: none;
}

.hours-day.is-today {
  background: rgba(201, 160, 90, 0.14);
  box-shadow: inset 3px 0 0 var(--gold);
}

.hours-day.is-closed:not(.is-today) {
  opacity: 0.7;
}

.hours-day-name {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--espresso);
}

.hours-today-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 0.18rem 0.5rem;
  border-radius: 100px;
  line-height: 1.2;
}

.hours-day-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.hours-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  min-width: 6.75rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(92, 64, 48, 0.1);
  box-shadow: 0 1px 2px rgba(28, 21, 16, 0.04);
}

.hours-pill-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.hours-pill-time {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--espresso);
  white-space: nowrap;
}

.hours-pill--lunch .hours-pill-label {
  color: var(--olive);
}

.hours-pill--dinner .hours-pill-label {
  color: var(--terracotta-deep);
}

.hours-pill.is-active {
  border-color: rgba(201, 160, 90, 0.55);
  background: rgba(201, 160, 90, 0.16);
  box-shadow: 0 0 0 1px rgba(201, 160, 90, 0.2);
}

.hours-pill--closed {
  min-width: auto;
  flex-direction: row;
  align-items: center;
  background: rgba(92, 64, 48, 0.06);
  color: var(--muted);
  font-style: italic;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
}

.hours-pill--muted {
  opacity: 0.72;
}

.hours-pill--muted .hours-pill-time {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}

.hours-footnote {
  margin: 0;
  padding: 0.7rem 1.1rem 0.9rem;
  font-size: 0.78rem;
  line-height: 1.4;
  border-top: 1px solid rgba(92, 64, 48, 0.08);
  background: rgba(255, 253, 249, 0.5);
}

.hours-schedule--home {
  margin: 0.35rem 0 1.5rem;
}

.hours-schedule--contact {
  margin: 0.15rem 0 1.5rem;
}

.hours-schedule-heading {
  margin-bottom: 0.55rem;
}

.hours-schedule-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--espresso);
  margin: 0;
}

.hours-schedule-header {
  margin-bottom: 1rem;
}

@media (max-width: 560px) {
  .hours-day {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
  }

  .hours-day-times {
    justify-content: flex-start;
  }

  .hours-pill {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
  }

  .hours-pill--closed {
    flex: 0 0 auto;
  }
}

/* ---------- After-hours call modal (mobile-first) ---------- */
body.closed-call-open {
  overflow: hidden;
}

.closed-call-modal {
  position: fixed;
  inset: 0;
  z-index: 4200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.closed-call-modal[hidden] {
  display: none !important;
}

.closed-call-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.closed-call-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(92vh, 640px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, #fffdf9 0%, #f4ebe0 100%);
  border-radius: 18px 18px 0 0;
  border: 1px solid rgba(201, 160, 90, 0.35);
  border-bottom: none;
  box-shadow: 0 -12px 40px rgba(10, 6, 5, 0.35);
  padding: 1.35rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  outline: none;
  text-align: center;
}

.closed-call-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgba(28, 21, 16, 0.07);
  color: var(--espresso);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.closed-call-close:hover,
.closed-call-close:focus-visible {
  background: var(--terracotta);
  color: var(--cream);
  outline: none;
}

.closed-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0.25rem auto 0.85rem;
  border-radius: 50%;
  color: var(--terracotta-deep);
  background: rgba(181, 74, 53, 0.1);
  border: 1px solid rgba(181, 74, 53, 0.18);
}

.closed-call-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5vw, 1.95rem);
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 0.65rem;
  padding: 0 1.5rem;
  line-height: 1.2;
}

.closed-call-lead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--warm-gray);
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  padding: 0 0.25rem;
}

.closed-call-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 1rem;
  transition: opacity 0.2s ease;
}

/* While arming after open — buttons visible but not tappable (stops accidental hits) */
.closed-call-modal:not(.actions-ready) .closed-call-actions {
  pointer-events: none;
  opacity: 0.55;
}

.closed-call-modal.actions-ready .closed-call-actions {
  pointer-events: auto;
  opacity: 1;
}

.closed-call-btn {
  width: 100%;
  min-height: 3rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.closed-call-note {
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0.25rem 0 0;
  padding: 0 0.5rem;
}

/* Tablet / desktop: centered card instead of bottom sheet */
@media (min-width: 640px) {
  .closed-call-modal {
    align-items: center;
    padding: 1.25rem;
  }

  .closed-call-dialog {
    width: min(100%, 420px);
    max-height: min(90vh, 560px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 160, 90, 0.35);
    box-shadow: 0 24px 60px rgba(10, 6, 5, 0.4);
    padding: 1.75rem 1.5rem 1.5rem;
  }
}

/* ---------- FAQ page ---------- */
.faq-layout {
  max-width: 720px;
}

.faq-topic-tabs {
  margin-top: 0.5rem;
  margin-bottom: 1.75rem;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.faq-topic-pill {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(181, 74, 53, 0.08);
  border: 1px solid rgba(181, 74, 53, 0.15);
  border-radius: 100px;
  padding: 0.2rem 0.55rem;
}

.faq-item[hidden] {
  display: none !important;
}

.faq-intro {
  margin-bottom: 1.75rem;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--terracotta);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(92, 64, 48, 0.08);
}

.faq-answer {
  padding: 0.85rem 1.15rem 1.15rem;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0 0 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer .hours-schedule {
  margin: 0.5rem 0 0;
}

.hours-schedule--faq .hours-schedule-heading {
  display: none;
}

/* Contact map centered */
.contact-map-section {
  padding-top: 0;
}

.contact-map-wrap {
  display: flex;
  justify-content: center;
}

.contact-map-frame {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  aspect-ratio: 21 / 9;
  max-height: 360px;
}

.contact-reserve-note {
  background: rgba(181, 74, 53, 0.06);
  border: 1px solid rgba(181, 74, 53, 0.15);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
}

.contact-reserve-note p {
  margin-bottom: 0.65rem;
}

.contact-reserve-note p:last-child {
  margin-bottom: 0;
}

/* Reservations note inside contact form (above Send Message) */
.contact-form-reserve-note {
  margin: 0.35rem 0 1.15rem;
  padding: 0.9rem 1rem;
  background: rgba(245, 236, 220, 0.9);
  border: 1px solid rgba(181, 74, 53, 0.18);
  border-left: 3px solid var(--terracotta);
  border-radius: 8px;
}

.contact-form-reserve-note h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--terracotta-deep);
}

.contact-form-reserve-note p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--warm-gray);
}

.contact-form-reserve-note p:last-child {
  margin-bottom: 0;
}

.contact-form-reserve-note a {
  color: var(--terracotta-deep);
  font-weight: 600;
}

/* Gallery mosaic real images */
.gallery-img {
  background-size: cover;
  background-position: center;
}

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-facts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .owners-grid,
  .reserve-layout { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr; }
  .quick-facts-grid { grid-template-columns: 1fr; }
  .hide-mobile { display: none !important; }
  .top-bar { font-size: 0.72rem; }

  .hero-tiles {
    grid-template-columns: 1fr 1fr;
    transform: none;
    margin-top: 1.1rem;
  }

  /* Keep address fully readable above tiles */
  .hero-meta {
    padding-bottom: 0.15rem;
  }

  .hero-address {
    max-width: 16.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-bottom: 0.25rem;
  }

  .hero-main {
    padding-top: calc(var(--chrome-h) + 0.65rem);
  }

  .hero-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 0.85rem auto 1rem;
    transform: none;
  }

  .hero-tile {
    padding: 0.6rem 0.5rem;
    min-height: 0;
  }

  .hero-tile strong {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .hero-tile span {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .hero-actions .btn {
    width: 75%;
    max-width: 75vw;
  }

  .hero-lead {
    margin-bottom: 1rem;
    padding-inline: 0.15rem;
  }
}

/* Very short phones: tighten further so CTAs + address + tiles fit without overlap */
@media (max-width: 480px) and (max-height: 740px) {
  .hero-lead {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.85rem;
  }

  .hero-actions {
    margin-bottom: 0.85rem;
    gap: 0.55rem;
  }

  .hero-actions .btn {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .hero-tile span {
    /* One line on short screens */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ---------- Specials page ---------- */
.specials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.specials-menu-frame {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.specials-menu-frame img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius);
}

.specials-menu-frame figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.specials-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.special-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}

.special-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 0.35rem;
}

.special-item p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- Catering page ---------- */
.catering-page .container {
  max-width: 1100px;
}

.catering-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  margin: 0.25rem 0 1.75rem;
}

.catering-cta-row--bottom {
  margin: 2rem 0 0.5rem;
  padding-top: 0.5rem;
}

/* legacy banner class (unused) kept safe if referenced elsewhere */
.catering-order-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  background: linear-gradient(180deg, #fffdf9 0%, #f6eee3 100%);
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.75rem;
}

.catering-order-banner p {
  color: var(--warm-gray);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.catering-order-banner p:last-child {
  margin-bottom: 0;
}

.catering-order-banner-aside {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.catering-order-banner-aside .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.catering-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.catering-jump-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  border: 1px solid rgba(92, 64, 48, 0.15);
  background: #fff;
  color: var(--burgundy);
  text-decoration: none;
}

.catering-jump-link:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-deep);
}

.catering-block {
  margin-bottom: clamp(2.75rem, 6vw, 4rem);
  scroll-margin-top: calc(var(--chrome-h, 128px) + 1rem);
}

.catering-block-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.catering-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.catering-package-card {
  position: relative;
  background: #fffdf9;
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.catering-package-card.is-featured {
  border-color: rgba(181, 74, 53, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.catering-package-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

.catering-package-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--espresso);
  margin: 0 0 0.35rem;
}

.catering-package-price {
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--terracotta-deep);
  margin: 0 0 1rem;
}

.catering-package-price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.catering-package-choices {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.catering-package-choices li {
  padding: 0.4rem 0;
  border-top: 1px solid rgba(92, 64, 48, 0.08);
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.catering-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 1.75rem;
  line-height: 1.55;
}

.catering-choice-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.catering-choice-col,
.catering-contorni-block {
  background: #fff;
  border: 1px solid rgba(92, 64, 48, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem 1.25rem;
}

.catering-contorni-block {
  margin-top: 1.25rem;
}

.catering-choice-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--terracotta-deep);
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0 0 0.25rem;
}

.catering-choice-lead {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.catering-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catering-item-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(92, 64, 48, 0.07);
}

.catering-item-list li:last-child {
  border-bottom: none;
}

.catering-item-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.15rem;
}

.catering-item-list span,
.catering-item-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.45;
}

.catering-item-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.15rem;
}

.catering-item-row strong {
  margin-bottom: 0;
}

.catering-item-dots {
  flex: 1 1 auto;
  min-width: 1rem;
  border-bottom: 1px dotted rgba(92, 64, 48, 0.3);
  transform: translateY(-0.3em);
  height: 0;
}

.catering-item-price {
  flex: 0 0 auto;
  font-weight: 600;
  color: var(--espresso);
  font-size: 0.95rem;
}

.catering-chafing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(92, 64, 48, 0.12);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.catering-chafing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.catering-chafing-table th,
.catering-chafing-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(92, 64, 48, 0.08);
}

.catering-chafing-table thead th {
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.catering-chafing-table thead th span {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.75;
  margin-top: 0.15rem;
}

.catering-chafing-table tbody tr:last-child td {
  border-bottom: none;
}

.catering-chafing-table tbody tr:hover {
  background: rgba(244, 235, 224, 0.45);
}

.catering-chafing-table td strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}

.catering-chafing-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.45;
}

.catering-chafing-price {
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--espresso);
  width: 6.5rem;
}

/* Chafing optional add-ons (garlic knots / salads) */
.catering-chafing-addons {
  max-width: 720px;
  margin: 1.35rem auto 0.85rem;
  padding: 0 0.15rem;
}

.catering-chafing-addons-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 1.25rem 1.05rem;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(140, 55, 40, 0.06) 48%, rgba(255, 252, 247, 0.95) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 6px 22px rgba(61, 40, 23, 0.06);
  text-align: center;
}

.catering-chafing-addons-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--espresso);
}

.catering-chafing-addons-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(140, 55, 40, 0.1);
  color: var(--terracotta-deep, #8c3728);
  flex-shrink: 0;
}

.catering-chafing-addons-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--warm-gray);
}

.catering-chafing-addons-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem 0.6rem;
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
  width: 100%;
}

.catering-chafing-addon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 9.5rem;
  padding: 0.65rem 0.95rem 0.7rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(92, 64, 48, 0.12);
  box-shadow: 0 1px 3px rgba(61, 40, 23, 0.05);
}

.catering-chafing-addon-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--espresso);
}

.catering-chafing-addon-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--terracotta-deep, #8c3728);
  line-height: 1.25;
}

.catering-chafing-addon-unit {
  display: block;
  font-family: var(--font-body, inherit);
  font-size: 0.78rem;
  font-weight: 500;
  font-style: normal;
  color: var(--warm-gray);
  letter-spacing: 0.01em;
}

@media (max-width: 540px) {
  .catering-chafing-addons-list {
    flex-direction: column;
  }

  .catering-chafing-addon {
    min-width: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
    gap: 0.75rem;
  }

  .catering-chafing-addon-price {
    text-align: right;
  }

  .catering-chafing-addon-unit {
    display: inline;
    margin-left: 0.2rem;
  }
}

.catering-policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

.catering-policies-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .catering-policies-grid--three {
    grid-template-columns: 1fr;
  }
}

.catering-policy-card {
  background: #fff;
  border: 1px solid rgba(92, 64, 48, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
}

.catering-policy-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--terracotta-deep);
  margin: 0 0 0.55rem;
}

.catering-policy-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.55;
  font-size: 0.92rem;
}

.catering-policy-card li {
  margin-bottom: 0.35rem;
}

.catering-policy-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--warm-gray);
}

.catering-policy-note a {
  color: var(--terracotta-deep);
  font-weight: 600;
}

.catering-delivery-check {
  margin-top: 0.5rem;
}

.catering-delivery-form {
  max-width: 42rem;
  margin: 1rem auto 0;
  background: linear-gradient(180deg, #fffefb 0%, #fff 55%);
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3.5vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.catering-delivery-form .form-row {
  margin-bottom: 1.05rem;
}

.catering-delivery-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.15rem;
  margin-bottom: 0;
}

.catering-delivery-form .form-row-2 .form-row {
  margin-bottom: 1.05rem;
}

.catering-delivery-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.catering-delivery-form label .muted,
.catering-delivery-form label .req-note {
  display: inline;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0;
  color: var(--warm-gray);
}

.catering-delivery-form input[type="text"],
.catering-delivery-form input[type="email"],
.catering-delivery-form input[type="tel"],
.catering-delivery-form input[type="number"],
.catering-delivery-form input[type="date"] {
  width: 100%;
  box-sizing: border-box;
  min-height: 2.85rem;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid rgba(92, 64, 48, 0.16);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--espresso);
  background: #faf6f0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.catering-delivery-form input[type="date"] {
  min-height: 2.85rem;
}

.catering-delivery-form input::placeholder {
  color: rgba(92, 64, 48, 0.42);
}

.catering-delivery-form input:hover {
  border-color: rgba(181, 74, 53, 0.35);
  background: #fffdf9;
}

.catering-delivery-form input:focus {
  outline: none;
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181, 74, 53, 0.14);
}

.catering-delivery-form input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(181, 74, 53, 0.45);
}

.catering-delivery-form .builder-hint {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--warm-gray);
}

.catering-delivery-form .builder-hint.is-error {
  margin-top: 0.45rem;
  padding: 0.55rem 0.75rem;
  color: var(--terracotta-deep);
  font-weight: 500;
  background: rgba(181, 74, 53, 0.08);
  border-radius: 6px;
  border-left: 3px solid var(--terracotta);
}

.catering-delivery-form .delivery-form-foot {
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(92, 64, 48, 0.1);
}

.catering-delivery-form .delivery-form-foot .builder-hint {
  margin-bottom: 1rem;
}

.catering-delivery-form .builder-submit-row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.catering-delivery-form .builder-submit-row .btn {
  min-width: 12rem;
}

.catering-delivery-check .form-alert {
  max-width: 42rem;
  margin: 0 auto 1rem;
}

@media (max-width: 640px) {
  .catering-delivery-form .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catering-delivery-form .builder-submit-row .btn {
    width: 100%;
  }
}

/* Catering request builder + modal */
body.catering-modal-open {
  overflow: hidden;
}

.catering-jump-btn {
  cursor: pointer;
  font: inherit;
  appearance: none;
  background: #fff;
}

.catering-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.catering-modal[hidden] {
  display: none !important;
}

.catering-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 21, 16, 0.62);
  backdrop-filter: blur(3px);
}

.catering-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  background: #faf6ef;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border: 1px solid rgba(92, 64, 48, 0.15);
}

.catering-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #fffdf9, #f3ebe0);
  border-bottom: 1px solid rgba(92, 64, 48, 0.1);
  flex-shrink: 0;
}

.catering-modal-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--espresso);
  margin: 0;
}

.catering-modal-close {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(28, 21, 16, 0.08);
  color: var(--espresso);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.catering-modal-close:hover {
  background: rgba(181, 74, 53, 0.15);
  color: var(--terracotta-deep);
}

.catering-modal-body {
  overflow-y: auto;
  padding: 1rem 1.15rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.builder-request-explainer {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--espresso);
  background: rgba(245, 236, 220, 0.85);
  border: 1px solid rgba(181, 74, 53, 0.18);
  border-left: 3px solid var(--terracotta);
  border-radius: 8px;
}

.builder-family-suggest {
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #fffdf9 0%, #f3ebe0 100%);
  border: 1px solid rgba(181, 74, 53, 0.22);
  border-left: 3px solid var(--gold, #c4a35a);
  border-radius: 8px;
}

.builder-family-suggest-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--terracotta-deep);
}

.builder-family-suggest-text {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--espresso);
}

.builder-family-suggest-text a {
  color: var(--terracotta-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.builder-family-suggest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.builder-family-suggest-actions .btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
}

.builder-request-explainer strong {
  color: var(--terracotta-deep);
  font-weight: 600;
}

.catering-builder {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.builder-check-card.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.builder-choice-item.is-locked {
  opacity: 0.45;
  cursor: not-allowed;
}

.builder-count.is-ok {
  color: var(--olive);
  font-weight: 600;
}

.builder-foot-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}

/* Chafing add-ons (garlic knots + salad) */
.builder-addon-card {
  background: #fff;
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  margin-bottom: 0.85rem;
}

.builder-addon-card:last-child {
  margin-bottom: 0;
}

.builder-addon-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--espresso);
  margin: 0 0 0.25rem;
}

.builder-addon-price {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--terracotta-deep);
  font-weight: 600;
}

.builder-addon-qty-row {
  max-width: 14rem;
  margin-bottom: 0.35rem;
}

.builder-addon-qty-row input[type="number"] {
  width: 100%;
}

.builder-addon-est {
  margin: 0.35rem 0 0;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: var(--warm-gray);
}

.builder-addon-salad-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 700px) {
  .builder-addon-salad-choices {
    grid-template-columns: 1fr;
  }
}

.builder-addon-salad-opt {
  margin: 0;
}

/* Compact chafing list — dual qty (half + full) per dish */
.builder-chafing-table {
  display: grid;
  gap: 0;
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.builder-chafing-table > .builder-chafing-head {
  display: grid;
  grid-template-columns: 1fr 5.75rem 5.75rem;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  background: var(--espresso);
  color: rgba(247, 241, 232, 0.75);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  align-items: center;
}

.builder-chafing-table > .builder-chafing-row {
  display: grid;
  grid-template-columns: 1fr 5.75rem 5.75rem;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.65rem;
  border: none;
  border-top: 1px solid rgba(92, 64, 48, 0.08);
  border-radius: 0;
  background: #fff;
}

.builder-chafing-table > .builder-chafing-row.is-active {
  background: rgba(244, 235, 224, 0.55);
}

.builder-chafing-table .builder-chafing-name {
  display: block;
  min-width: 0;
  cursor: default;
}

.builder-chafing-table .builder-chafing-name strong {
  display: block;
  font-size: 0.92rem;
  color: var(--espresso);
  line-height: 1.25;
}

.builder-chafing-meta {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.builder-chafing-qty-cell {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  min-width: 0;
}

.builder-chafing-qty-label {
  display: none;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.builder-chafing-qty {
  width: 100%;
  padding: 0.4rem 0.35rem;
  border: 1px solid rgba(92, 64, 48, 0.18);
  border-radius: 4px;
  font: inherit;
  font-size: 0.9rem;
  text-align: center;
  color: var(--espresso);
  background: #fff;
}

.builder-chafing-qty-cell--na {
  align-items: center;
  justify-content: center;
}

.builder-chafing-na {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.4rem 0;
}

@media (max-width: 600px) {
  .builder-chafing-table > .builder-chafing-head {
    display: none;
  }

  .builder-chafing-table > .builder-chafing-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .builder-chafing-table .builder-chafing-name {
    grid-column: 1 / -1;
  }

  .builder-chafing-qty-label {
    display: block;
  }
}

.builder-step {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0 0 1.35rem;
  border-bottom: 1px solid rgba(92, 64, 48, 0.1);
}

.builder-step:last-of-type {
  border-bottom: none;
}

.builder-step legend {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.85rem;
  padding: 0;
}

.builder-mode-row,
.builder-package-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.builder-package-picks {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1rem;
}

.builder-check-card,
.builder-radio-card {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(92, 64, 48, 0.14);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.builder-check-card:has(input:checked),
.builder-radio-card:has(input:checked) {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 1px rgba(181, 74, 53, 0.2);
  background: rgba(244, 235, 224, 0.45);
}

.builder-check-card input,
.builder-radio-card input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.builder-check-card strong,
.builder-radio-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--espresso);
}

.builder-radio-card b {
  display: block;
  color: var(--terracotta-deep);
  font-size: 0.95rem;
  margin: 0.15rem 0;
}

.builder-check-card em,
.builder-radio-card em,
.builder-choice-item em,
.builder-chafing-toggle em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.4;
  margin-top: 0.15rem;
}

.builder-hint {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 1rem;
}

.builder-panel {
  margin-bottom: 0.5rem;
}

.builder-choice-group {
  margin-bottom: 1.25rem;
}

.builder-choice-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.builder-choice-head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--terracotta-deep);
  margin: 0;
}

.builder-count {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.builder-count.is-over {
  color: var(--terracotta-deep);
  font-weight: 600;
}

.builder-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.builder-choice-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(92, 64, 48, 0.1);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.builder-choice-item:has(input:checked) {
  border-color: rgba(181, 74, 53, 0.4);
  background: rgba(244, 235, 224, 0.5);
}

.builder-choice-item input {
  margin-top: 0.2rem;
}

.builder-choice-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--espresso);
}

.builder-choice-item b {
  display: block;
  font-size: 0.8rem;
  color: var(--terracotta-deep);
  margin-top: 0.15rem;
}

/* legacy unused chafing list styles removed — dual half/full qty table is canonical */

.builder-summary {
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
}

.builder-summary h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.builder-summary pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(247, 241, 232, 0.9);
}

.builder-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.builder-submit-row .muted {
  flex: 1 1 220px;
  margin: 0;
  font-size: 0.88rem;
}

.catering-builder .form-row,
.catering-builder .form-row-2 {
  margin-bottom: 0.85rem;
}

.catering-builder .form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  margin-bottom: 0.3rem;
}

.catering-builder .form-row input,
.catering-builder .form-row select,
.catering-builder .form-row textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(92, 64, 48, 0.18);
  border-radius: var(--radius);
  font: inherit;
  color: var(--espresso);
  background: #fff;
}

.catering-builder .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.catering-builder .form-alert {
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .catering-order-banner {
    grid-template-columns: 1fr;
  }

  .catering-package-grid {
    grid-template-columns: 1fr;
  }

  .catering-package-card.is-featured {
    transform: none;
  }

  .catering-choice-sections,
  .catering-policies-grid {
    grid-template-columns: 1fr;
  }

  .builder-mode-row,
  .builder-package-picks,
  .builder-choice-grid,
  .catering-builder .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Family Dinner Specials (HTML menu) ---------- */
.page-family-specials .page-hero {
  padding-bottom: 1.5rem;
}

.page-family-specials .page-hero-lead {
  margin-top: 0.65rem;
}

.family-specials-section.section {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.family-specials-page {
  max-width: 760px;
  margin-inline: auto;
}

.family-specials-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.family-menu-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(247, 239, 228, 0.95) 100%);
  border: 1px solid rgba(92, 64, 48, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.family-menu-card-header {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(92, 64, 48, 0.1);
}

.family-menu-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--olive);
  margin: 0 0 0.35rem;
}

.family-menu-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.family-menu-serves {
  margin: 0;
  font-size: 0.95rem;
  color: var(--warm-gray);
  font-style: italic;
}

.family-menu-section {
  margin-bottom: 1.75rem;
}

.family-menu-section:last-of-type {
  margin-bottom: 1.25rem;
}

.family-menu-section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
  color: var(--terracotta-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.family-menu-section-note {
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 1rem;
}

.family-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.family-menu-item {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(92, 64, 48, 0.08);
}

.family-menu-item:last-child {
  border-bottom: none;
}

.family-menu-item-main,
.family-menu-item:not(.has-note) {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  width: 100%;
}

.family-menu-item-name {
  flex: 0 1 auto;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.family-menu-item-dots {
  flex: 1 1 auto;
  min-width: 1.25rem;
  border-bottom: 1px dotted rgba(92, 64, 48, 0.35);
  transform: translateY(-0.35em);
  height: 0;
}

.family-menu-item-price {
  flex: 0 0 auto;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--espresso);
  letter-spacing: 0.02em;
}

.family-menu-item-note {
  margin: 0.2rem 0 0;
  padding-left: 0.1rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.family-menu-card-foot {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(92, 64, 48, 0.1);
}

.family-menu-card-foot p {
  margin: 0.25rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.5;
}

.family-specials-cta {
  margin-top: 0.5rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  grid-template-columns: repeat(2, 1fr);
}

.review-featured {
  border-color: rgba(196, 163, 90, 0.45);
  box-shadow: 0 8px 28px rgba(196, 163, 90, 0.12);
}

.review-card .review-text {
  font-size: 1.05rem;
}

/* Nav: Events dropdown on desktop; expanded items on mobile */
.show-narrow { display: none; }

@media (max-width: 900px) {
  .specials-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hide-narrow { display: none !important; }
  .show-narrow { display: list-item !important; }
}
