/* ═══════════════════════════════════════════════════════
   PAGES.CSS — Shared styles for Gallery & Services pages
═══════════════════════════════════════════════════════ */

/* ── Active nav link ── */
.active-link {
  color: var(--gold) !important;
}

.active-link::after {
  transform: scaleX(1) !important;
}

/* ══════════════════ PAGE HERO ══════════════════ */
.page-hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 150px var(--sp-8) calc(var(--sp-16) * 1.3);
  background: linear-gradient(180deg, var(--teal-deep) 0%, var(--bg) 100%);
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: var(--sp-3) 0 var(--sp-6);
}

.page-title em {
  font-style: italic;
  color: var(--gold-light);
}

.page-subtitle {
  font-size: 1.0625rem;
  color: rgba(240, 237, 230, 0.6);
  line-height: 1.7;
}

.page-hero-deco {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, rgba(8, 14, 14, 0.45) 45%, var(--bg-2) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Radial glow behind page title */
.page-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════ GALLERY ══════════════════ */
.gallery-section {
  padding: var(--sp-12) 0 var(--sp-24);
  position: relative;
  background: linear-gradient(180deg, var(--bg-2) 0%, #071717 60%, var(--bg) 100%);
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 250px;
  background: radial-gradient(ellipse, rgba(13, 92, 90, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-bottom: var(--sp-10);
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-6);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  transition: all var(--dur-base) ease;
}

.filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 600;
}

/* Gallery grid: tall/wide masonry with perfectly equal gaps */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  padding: 0 var(--sp-8);
  max-width: 1440px;
  margin: 0 auto;
}

/* Skeleton Loading State */
@keyframes skeletonPulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.gallery-skeleton {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(90deg, #111d1d 25%, #182b2b 37%, #111d1d 63%);
  background-size: 400% 100%;
  animation: skeletonPulse 1.8s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.gallery-skeleton.tall {
  grid-row: span 2;
}

.gallery-skeleton.wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  /* no aspect-ratio — height is controlled by grid-auto-rows + span */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
}

.gallery-item.tall {
  grid-row: span 2;   /* 2 × 220px + 1 × gap = 452px */
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) ease;
  filter: brightness(0.92);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

/* Small square dish thumbnails: menu showcase card with intentional 50% image presentation */
.gallery-item.dish-thumb {
  background: linear-gradient(165deg, #162726 0%, #0d1a1a 50%, #081111 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 14px 18px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out), border-color var(--dur-slow) ease;
}

.gallery-item.dish-thumb::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
  transition: border-color var(--dur-base) ease;
}

.gallery-item.dish-thumb:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 168, 76, 0.15);
}

.gallery-item.dish-thumb:hover::before {
  border-color: rgba(201, 168, 76, 0.22);
}

.gallery-item.dish-thumb img {
  width: 110px;
  height: 110px;
  max-width: 110px;
  max-height: 110px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.75), 0 0 0 2px rgba(201, 168, 76, 0.35);
  transform: none;
  filter: brightness(0.96) contrast(1.05);
  transition: transform var(--dur-base) var(--ease-out), filter var(--dur-base) ease, box-shadow var(--dur-base) ease;
  margin-bottom: 6px;
}

.gallery-item.dish-thumb:hover img {
  transform: scale(1.08);
  filter: brightness(1.02) contrast(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85), 0 0 0 2px var(--gold-light), 0 0 18px rgba(201, 168, 76, 0.35);
}

.gallery-item.dish-thumb .gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(to top, rgba(7, 14, 14, 0.94) 0%, rgba(7, 14, 14, 0.6) 30%, transparent 65%);
  opacity: 1; /* Title always subtly visible */
  pointer-events: none;
}

.gallery-item.dish-thumb .gallery-tag {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-base) ease, transform var(--dur-base) ease;
  font-size: 0.62rem;
  padding: 2px 8px;
  margin-bottom: 3px;
}

.gallery-item.dish-thumb:hover .gallery-tag {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.dish-thumb .gallery-overlay p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  transition: color var(--dur-base) ease;
}

.gallery-item.dish-thumb:hover .gallery-overlay p {
  color: var(--gold-light);
}

/* Lightbox view for low-res dish thumbnails */
.lb-img-wrap img.lb-dish-thumb {
  max-width: 260px;
  max-height: 260px;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85);
  background: #0e1818;
  padding: 14px;
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--sp-6);
  background: linear-gradient(to top, rgba(8, 14, 14, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8, 14, 14, 0.7);
  padding: 4px var(--sp-3);
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 168, 76, 0.4);
  margin-bottom: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery-overlay p {
  font-size: 0.9rem;
  color: rgba(240, 237, 230, 0.85);
}

/* ── SPECIAL GUEST CARDS ── */
.gallery-item.guest-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out), border-color var(--dur-slow) ease;
}

.gallery-item.guest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 20%, transparent 40%, rgba(5, 10, 10, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

.gallery-item.guest-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.75);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(201, 168, 76, 0.22);
}

.gallery-item.guest-card img {
  filter: brightness(0.96) contrast(1.04);
}

.gallery-item.guest-card:hover img {
  filter: brightness(0.9) contrast(1.08);
}

.gallery-overlay.guest-overlay {
  z-index: 2;
  opacity: 1; /* Always visibly framed with refined details */
  background: linear-gradient(to top, rgba(7, 14, 14, 0.94) 0%, rgba(7, 14, 14, 0.6) 35%, transparent 70%);
  padding: var(--sp-6) var(--sp-5);
  gap: var(--sp-3);
}

.guest-tag {
  background: rgba(13, 92, 90, 0.75);
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.guest-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guest-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin: 0;
  transition: color var(--dur-base) ease;
}

.gallery-item.guest-card:hover .guest-name {
  color: var(--gold-light);
}

.guest-title {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(240, 237, 230, 0.88) !important;
  line-height: 1.4;
  margin: 0 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Hidden by filter */
.gallery-item.hidden {
  display: none;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(5, 8, 8, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lb-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lb-caption {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  margin-top: var(--sp-3);
  font-size: 1rem;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: color var(--dur-base), transform var(--dur-base);
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  color: var(--gold);
}

.lb-close {
  top: var(--sp-8);
  right: var(--sp-8);
  font-size: 1.6rem;
}

.lb-prev {
  left: var(--sp-8);
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lb-next {
  right: var(--sp-8);
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lb-prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.lb-next:hover {
  transform: translateY(-50%) translateX(4px);
}

/* Gallery CTA */
.gallery-cta-section {
  padding: var(--sp-20) 0;
  background: var(--teal-deep);
  border-top: 1px solid var(--border);
}

/* ── Gallery Responsive ── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
    padding: 0 var(--sp-4);
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .filter-tabs {
    gap: var(--sp-2);
    margin-bottom: var(--sp-6);
  }
  .filter-btn {
    padding: 7px var(--sp-4);
    font-size: 0.8rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 8px;
    padding: 0 var(--sp-3);
  }
  .gallery-item.dish-thumb {
    padding: 10px;
  }
  .gallery-item.dish-thumb img {
    max-width: 95px;
    max-height: 95px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
    padding: 0 var(--sp-2);
  }
  .gallery-item.dish-thumb {
    padding: 8px;
  }
  .gallery-item.dish-thumb img {
    max-width: 80px;
    max-height: 80px;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .gallery-item.tall {
    grid-row: span 2;
  }
}

/* ══════════════════ SERVICES PAGE ══════════════════ */

/* Intro */
.svc-intro {
  padding: var(--sp-16) 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-2) 0%, #071717 60%, var(--bg) 100%);
  /* border-bottom: 1px solid var(--border); */
}

.svc-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 250px;
  background: radial-gradient(ellipse, rgba(13, 92, 90, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.svc-intro-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.svc-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.intro-stat {
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color var(--dur-base), transform var(--dur-base);
}

.intro-stat:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

.intro-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.intro-num sup {
  font-size: 1rem;
}

.intro-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Services cards */
.services-section {
  padding: var(--sp-16) 0;
}

.services-section .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}


.svc-card.reverse {
  direction: rtl;
}

.svc-card.reverse>* {
  direction: ltr;
}

.svc-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-lg);
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.svc-card:hover .svc-img-wrap img {
  transform: scale(1.04);
}

.svc-number {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(201, 168, 76, 0.2);
  pointer-events: none;
  user-select: none;
}

.svc-text-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.svc-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.svc-title em {
  font-style: italic;
  color: var(--gold);
}

/* Feature list */
.svc-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  list-style: none;
}

.svc-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.svc-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}

.svc-check::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 2px;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* Pricing */
.svc-price {
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border);
}

.price-from {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-1);
}

.price-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
}

.price-val span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.svc-btn {
  align-self: flex-start;
}

/* CTA band */
.svc-cta-section {
  padding: var(--sp-16) 0;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.svc-cta-btns {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    padding: 0 var(--sp-6);
  }

  .svc-intro-grid {
    grid-template-columns: 1fr;
  }

  .svc-card,
  .svc-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .svc-img-wrap {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
    padding: 0 var(--sp-4);
  }

  .svc-intro-stats {
    grid-template-columns: 1fr 1fr;
  }

  .svc-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .svc-cta-btns {
    justify-content: center;
  }

  .page-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 10px;
    padding: 0 var(--sp-3);
  }

  /* On single-column, wide items don't need to span */
  .gallery-item.wide {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════════════════════════
   CURATED MENU PAGE — Luxury Redesign
   Matches the landing page obsidian + gold aesthetic
══════════════════════════════════════════════════════ */

/* ── Page Header (No Hero) ── */
.menu-page-header {
  padding: 120px var(--sp-8) var(--sp-16);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(13, 92, 90, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(13, 92, 90, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #071716 0%, #0b1f1f 35%, var(--bg) 100%);
  border-bottom: none;
}

.menu-page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, rgba(8, 14, 14, 0.4) 40%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ── Ambient Header Video Layer ── */
.menu-header-video-wrap,
.page-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.menu-header-video-wrap video,
.page-hero-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.82) contrast(1.05) saturate(1.1);
  transition: opacity 0.6s ease;
}

/* Scrim: gentle cinematic vignette allowing video highlights to shine through */
.menu-header-scrim,
.page-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 14, 0.45) 0%, rgba(8, 14, 14, 0.2) 45%, rgba(8, 14, 14, 0.85) 100%),
    radial-gradient(circle at center, transparent 40%, rgba(8, 14, 14, 0.55) 100%);
}

.menu-header-inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.menu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.menu-eyebrow .eyebrow-line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.menu-eyebrow .eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.menu-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-6);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(201, 168, 76, 0.06);
}

.menu-main-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.menu-main-desc {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  color: rgba(240, 237, 230, 0.6);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* Menu Top Filter Tabs Container — transparent over header video */
.menu-tabs-wrapper {
  position: relative;
  z-index: 10;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: var(--sp-6) var(--sp-4) 0;
  border-bottom: none;
  box-shadow: none;
  margin-top: var(--sp-4);
}

.menu-tabs-bar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.menu-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: rgba(240, 237, 230, 0.7);
  cursor: pointer;
  transition: all 250ms ease;
  position: relative;
}

.menu-tab-btn:hover {
  border-color: transparent;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: none;
}

.menu-tab-btn.active {
  background: transparent;
  border-color: transparent;
  color: var(--gold-light);
  font-weight: 700;
  box-shadow: none;
  transform: translateY(-1px);
  text-shadow: 0 0 16px rgba(201, 168, 76, 0.6);
}

.menu-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  border-radius: 2px;
}



/* ── Controls Toolbar (Search & Expand/Collapse) — Seamless over video ── */
.menu-controls-bar {
  width: 100%;
  max-width: 820px;
  margin: var(--sp-6) auto 0;
  padding: 0 var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.menu-search-box {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.menu-search-box svg.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  stroke: rgba(201, 168, 76, 0.7);
  pointer-events: none;
}

.menu-search-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  padding: 12px 44px 12px 48px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: all var(--dur-base) ease;
}

.menu-search-input:focus {
  border-color: rgba(201, 168, 76, 0.7);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.menu-search-input::placeholder {
  color: rgba(240, 237, 230, 0.65);
}

.search-clear-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  display: none;
  background: none;
  border: none;
  transition: color var(--dur-fast) ease;
}

.search-clear-btn:hover {
  color: var(--gold);
}

.menu-actions-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.btn-toggle-dropdowns {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(201, 168, 76, 0.95);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  padding: 11px 22px;
  cursor: pointer;
  transition: all var(--dur-base) ease;
}

.btn-toggle-dropdowns:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.65);
  color: #fff;
  transform: translateY(-1px);
}

.btn-toggle-dropdowns .toggle-icon {
  font-size: 0.85rem;
  transition: transform var(--dur-base) ease;
}

/* ══════════════════ MENU CONTENT SECTION ══════════════════ */
.menu-section {
  padding: var(--sp-8) 0 var(--sp-24);
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 14, 14, 0.6) 120px, var(--bg) 260px);
}

/* Ambient warm glow beneath the tabs */
.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 400px;
  background: radial-gradient(ellipse, rgba(13, 92, 90, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.menu-dropdowns-container {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* ── Individual Dropdown Card ── */
.menu-dropdown-card {
  background: rgba(11, 20, 20, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color 300ms ease, box-shadow 300ms ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.menu-dropdown-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.06);
}

.menu-dropdown-card.open {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.08);
}

/* Gold shimmer line at top when open */
.menu-dropdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.5) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 350ms ease;
}

.menu-dropdown-card.open::before {
  opacity: 1;
}

/* Dropdown Header Button */
.menu-dropdown-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  user-select: none;
  gap: var(--sp-6);
  min-height: 86px;
  transition: background 200ms ease;
}

.menu-dropdown-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.dropdown-header-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 0;
}

.dropdown-icon-pill {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(8, 14, 14, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color 300ms ease, background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.dropdown-icon-pill svg {
  width: 24px;
  height: 24px;
}

.menu-dropdown-card.open .dropdown-icon-pill {
  border-color: rgba(201, 168, 76, 0.7);
  background: rgba(201, 168, 76, 0.12);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.2);
}

.dropdown-header-titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  flex: 1;
}

.dropdown-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 300;
  color: #f0ede6;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
  word-break: normal;
  overflow-wrap: break-word;
}

.menu-dropdown-card.open .dropdown-title {
  color: #fff;
}

.dropdown-rule {
  font-size: 0.74rem;
  color: rgba(201, 168, 76, 0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  word-break: normal;
  overflow-wrap: break-word;
}

.dropdown-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.dropdown-header-right .dish-price {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 6px 14px;
  font-size: 0.95rem;
  margin: 0;
}

/* Category pills — gold/teal palette only */
.cat-pill {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

/* All variants use gold or teal — no external brand colors */
.cat-pill.veg {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.28);
}

.cat-pill.non-veg {
  background: rgba(13, 92, 90, 0.15);
  color: #6ab8b5;
  border: 1px solid rgba(13, 92, 90, 0.4);
}

.cat-pill.continental {
  background: rgba(201, 168, 76, 0.07);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.cat-pill.buffet {
  background: rgba(15, 74, 72, 0.2);
  color: #8ecfcc;
  border: 1px solid rgba(15, 74, 72, 0.45);
}

.dish-count-badge {
  font-size: 0.76rem;
  color: rgba(154, 173, 169, 0.8);
  background: rgba(8, 14, 14, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.dropdown-chevron {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.75);
  border-radius: 50%;
  background: rgba(8, 14, 14, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.22);
  margin-left: 6px;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms ease, color 300ms ease, border-color 300ms ease;
  flex-shrink: 0;
}

.dropdown-chevron svg {
  width: 20px;
  height: 20px;
}

.menu-dropdown-card.open .dropdown-chevron {
  transform: rotate(180deg);
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.55);
  color: var(--gold);
}

/* ── Accordion Body ── */
.menu-dropdown-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-dropdown-card.open .menu-dropdown-body {
  grid-template-rows: 1fr;
}

.menu-dropdown-inner {
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: border-color 300ms ease;
}

.menu-dropdown-card.open .menu-dropdown-inner {
  border-top-color: rgba(201, 168, 76, 0.12);
}

/* ── Dish Items Grid ── */
.dish-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  padding: var(--sp-8) var(--sp-10) var(--sp-10);
  list-style: none;
  margin: 0;
}

@media (max-width: 1100px) {
  .dish-items-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--sp-6) var(--sp-6) var(--sp-8);
  }
}

@media (max-width: 768px) {
  .menu-page-header {
    padding: 100px var(--sp-4) var(--sp-6);
    min-height: auto;
  }

  .menu-main-heading {
    font-size: 2.35rem;
    margin-bottom: 12px;
  }

  .menu-main-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    padding: 0 8px;
    margin-bottom: 8px;
  }

  .menu-tabs-wrapper {
    position: relative;
    top: auto;
    width: 100%;
    padding: 12px 0 6px;
    margin-top: 12px;
  }

  .menu-tabs-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 16px 8px;
    width: 100%;
  }

  .menu-tabs-bar::-webkit-scrollbar {
    display: none;
  }

  .menu-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 7px 16px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    background: rgba(14, 26, 26, 0.65);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-full);
  }

  .menu-tab-btn.active {
    background: rgba(201, 168, 76, 0.16);
    border-color: var(--gold);
    color: var(--gold-light);
  }

  .menu-controls-bar {
    margin: 14px auto 0;
    padding: 0 var(--sp-3);
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .menu-search-box {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  .menu-search-input {
    background: rgba(10, 18, 18, 0.85);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 11px 40px 11px 44px;
    font-size: 0.84rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .menu-actions-right {
    display: none;
  }

  .menu-count-badge {
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}

@media (max-width: 680px) {
  .dish-items-grid {
    grid-template-columns: 1fr;
    padding: 12px 14px 18px;
    gap: 8px;
  }

  .menu-dropdown-header {
    padding: 14px 16px;
    min-height: 64px;
    gap: 12px;
  }

  .dropdown-header-left {
    gap: 12px;
    min-width: 0;
    flex: 1;
  }

  .dropdown-icon-pill {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .dropdown-icon-pill svg {
    width: 18px;
    height: 18px;
  }

  .dropdown-header-titles {
    min-width: 0;
    flex: 1;
    gap: 3px;
  }

  .dropdown-title {
    font-size: 1.15rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .dropdown-rule {
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.05em;
    opacity: 0.85;
  }

  .dropdown-header-right {
    gap: 8px;
    flex-shrink: 0;
  }

  .dropdown-header-right .cat-pill {
    display: none;
  }

  .dish-count-badge {
    display: none;
  }

  .dropdown-chevron {
    width: 32px;
    height: 32px;
    margin-left: 0;
  }

  .dropdown-chevron svg {
    width: 16px;
    height: 16px;
  }

  .dish-item {
    padding: 8px 12px;
    gap: 10px;
  }

  .dish-thumb-frame {
    width: 64px;
    height: 64px;
  }

  .dish-name {
    font-size: 0.92rem;
  }

  .dish-price {
    font-size: 0.8rem;
    padding: 2px 8px;
  }

  .dropdown-header-right .dish-price {
    align-self: center;
    padding: 4px 10px;
    font-size: 0.82rem;
  }

  .menu-dropdowns-container {
    padding: 0;
    gap: var(--sp-3);
  }
}

@media (max-width: 420px) {
  .menu-tabs-bar {
    padding: 2px 12px 6px;
    gap: 6px;
  }

  .menu-tab-btn {
    padding: 6px 13px;
    font-size: 0.68rem;
  }

  .menu-dropdown-header {
    padding: 12px 12px;
    gap: 8px;
  }

  .dropdown-header-left {
    gap: 10px;
  }

  .dropdown-icon-pill {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .dropdown-icon-pill svg {
    width: 16px;
    height: 16px;
  }

  .dropdown-title {
    font-size: 1.05rem;
  }

  .dropdown-rule {
    font-size: 0.64rem;
  }

  .dropdown-chevron {
    width: 28px;
    height: 28px;
  }

  .dropdown-chevron svg {
    width: 14px;
    height: 14px;
  }
}

.dish-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(14, 24, 24, 0.45);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 180ms ease;
  position: relative;
}

.dish-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: height 200ms ease;
}

.dish-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.22);
  transform: translateX(3px);
}

.dish-item:hover::before {
  height: 60%;
}

.dish-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

/* Image on the left, name + price stacked on the right */
.dish-item-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.dish-thumb-frame {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  background: rgba(4, 18, 16, 0.6);
  transition: border-color 200ms ease;
}

.dish-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.18);
  transition: transform 250ms ease;
}

.dish-item:hover .dish-thumb-frame {
  border-color: rgba(201, 168, 76, 0.6);
}

.dish-item:hover .dish-thumb {
  transform: scale(1.28);
}

.dish-bullet {
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color 150ms ease, transform 150ms ease;
}

.dish-item:hover .dish-bullet {
  color: var(--gold-light);
  transform: scale(1.25);
}

/* Dietary icons (Veg green dot, Non-veg red triangle, Egg orange circle) */
.dish-diet-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 7px;
}

.dish-diet-icon.veg {
  border: 1.5px solid #2ecc71;
}

.dish-diet-icon.veg::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #2ecc71;
  border-radius: 50%;
}

.dish-diet-icon.non-veg {
  border: 1.5px solid #e74c3c;
}

.dish-diet-icon.non-veg::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-bottom: 6px solid #e74c3c;
}

.dish-diet-icon.egg {
  border: 1.5px solid #f39c12;
}

.dish-diet-icon.egg::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #f39c12;
  border-radius: 50%;
}

.dish-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #f0ede6;
  line-height: 1.4;
  font-weight: 450;
  letter-spacing: 0.01em;
  transition: color 150ms ease;
}

.dish-item:hover .dish-name {
  color: #ffffff;
}

.dish-tag-inline {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-style: italic;
  margin-left: 6px;
  opacity: 0.85;
}

.dish-price {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  align-self: flex-start;
  transition: all 180ms ease;
  white-space: nowrap;
}

.dish-item:hover .dish-price {
  background: var(--gold);
  color: #061111;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35);
}

.dish-group-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 6px;
  padding-bottom: 6px;
}

.dish-group-header:first-of-type {
  margin-top: 0;
}

.dish-group-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.dish-group-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.25), transparent);
}

/* Restaurant Policies Grid */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  padding: var(--sp-8) var(--sp-10) var(--sp-10);
}

@media (max-width: 768px) {
  .policies-grid {
    grid-template-columns: 1fr;
    padding: var(--sp-6);
  }
}

.policy-card {
  background: rgba(14, 26, 26, 0.65);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: border-color 200ms ease;
}

.policy-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.policy-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.policy-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(240, 237, 230, 0.85);
  margin: 0;
}

.dish-item.highlight-match {
  background: rgba(201, 168, 76, 0.16);
  border-color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.dish-item.highlight-match .dish-name {
  color: #fff;
  font-weight: 600;
}

/* ══════════════════ BUFFET PACKAGES ══════════════════ */
.buffet-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
}

@media (max-width: 1150px) {
  .buffet-packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
}

@media (max-width: 640px) {
  .buffet-packages-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-4) var(--sp-6);
  }

  .buffet-pkg-card {
    padding: 22px 18px 20px;
  }
}

.buffet-pkg-card {
  background: linear-gradient(145deg, rgba(14, 26, 26, 0.92) 0%, rgba(10, 18, 18, 0.96) 100%);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  overflow: hidden;
}

.buffet-pkg-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
}

.buffet-pkg-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 76, 0.06);
}

.buffet-pkg-card.featured-pkg {
  border-color: rgba(201, 168, 76, 0.38);
  background: linear-gradient(145deg, rgba(18, 32, 30, 0.95) 0%, rgba(12, 22, 22, 0.98) 100%);
}

.buffet-pkg-card.featured-pkg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #dfbf6c, #f0d080, #dfbf6c, transparent);
}

.buffet-pkg-header {
  margin-bottom: 24px;
}

.buffet-pkg-header .cat-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.buffet-pkg-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 300;
  color: #f0ede6;
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.buffet-pkg-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1;
}

.buffet-pkg-price span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  margin-top: 6px;
}

.buffet-inclusions-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.buffet-inclusions-list li {
  font-size: 0.98rem;
  color: #f0ede6;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.buffet-inclusions-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  top: 2px;
}

.buffet-package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 24px 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.buffet-pkg-price-note {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(240, 237, 230, 0.8);
}

.buffet-pkg-price-note strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-left: 4px;
}

.buffet-pkg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  transition: all 220ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.buffet-pkg-btn:hover {
  background: linear-gradient(135deg, #f0d080, #c9a84c);
  color: #080e0e;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .buffet-package-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px 20px;
    gap: 12px;
  }

  .buffet-pkg-btn {
    width: 100%;
    text-align: center;
  }
}

/* Live Stations */
.live-stations-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
  padding: 0 var(--sp-8) var(--sp-10);
}

.live-station-box {
  background: rgba(7, 14, 14, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
  position: relative;
  overflow: hidden;
}

.live-station-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.6), transparent);
}

.live-station-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: var(--sp-2);
}

.live-station-box p {
  font-size: 0.875rem;
  color: rgba(240, 237, 230, 0.75);
  line-height: 1.5;
}

/* Banquet Terms list */
.banquet-terms-list {
  padding: var(--sp-6) var(--sp-7) var(--sp-7);
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--sp-3) var(--sp-5);
}

.banquet-terms-list li {
  font-size: 0.85rem;
  color: rgba(240, 237, 230, 0.75);
  line-height: 1.6;
  background: rgba(8, 14, 14, 0.4);
  padding: var(--sp-3) var(--sp-4);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Empty search state */
.menu-empty-state {
  display: none;
  text-align: center;
  padding: var(--sp-16) var(--sp-4);
  color: var(--text-muted);
}

.menu-empty-state.show {
  display: block;
}

.menu-empty-state svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  margin-bottom: var(--sp-4);
  opacity: 0.6;
}

.menu-empty-state h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: var(--sp-2);
}

/* ══════════════════ CONTACT PAGE ══════════════════ */
.contact-reserve-section {
  padding-top: 140px;
  padding-bottom: var(--sp-16);
}

.contact-info-section {
  padding: var(--sp-8) 0 var(--sp-20);
  background: var(--bg);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  transition: border-color var(--dur-base), transform var(--dur-base), box-shadow var(--dur-base);
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base), transform var(--dur-base), color var(--dur-base);
}

.contact-card:hover .contact-card-icon {
  background: var(--gold);
  color: var(--bg);
  transform: scale(1.08);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.contact-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-base);
}

.contact-card-title a:hover {
  color: var(--gold-light);
}

.contact-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.contact-card-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--dur-base), transform var(--dur-base);
}

.contact-card-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

/* ══════════════════ CUSTOM SELECT DROPDOWNS ══════════════════ */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: #f0ede6;
  padding: 13px 16px;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base), background var(--dur-base);
}

.custom-select-trigger:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.custom-select-wrapper.open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.custom-select-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #f0ede6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-text.placeholder {
  color: var(--text-muted);
}

.custom-select-chevron {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 10px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select-wrapper.open .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #0b1414;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 24px rgba(201, 168, 76, 0.1);
  padding: 6px;
  max-height: 250px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  backdrop-filter: blur(14px);
}

.custom-select-menu::-webkit-scrollbar {
  width: 4px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.4);
  border-radius: 2px;
}

.custom-select-wrapper.open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-optgroup {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 8px 12px 4px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  margin-bottom: 4px;
}

.custom-select-optgroup:not(:first-child) {
  margin-top: 8px;
}

.custom-select-option {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: rgba(240, 237, 230, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.custom-select-option:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #ffffff;
}

.custom-select-option.selected {
  background: rgba(201, 168, 76, 0.22);
  color: var(--gold-light);
  font-weight: 500;
}

.custom-select-option .opt-check {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 150ms ease;
}

.custom-select-option.selected .opt-check {
  opacity: 1;
}

.hidden-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Reservation Action Button Group ── */
.reserve-btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}

.reserve-btn-group .submit-btn {
  margin-top: 0;
}

.btn-call-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  background: rgba(13, 92, 90, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--radius-full);
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: transform var(--dur-base) var(--ease-out),
              background var(--dur-base) ease,
              border-color var(--dur-base) ease,
              box-shadow var(--dur-base) ease,
              color var(--dur-base) ease;
}

.btn-call-now .call-icon {
  width: 17px;
  height: 17px;
  color: var(--gold);
  transition: transform var(--dur-base) ease;
}

.btn-call-now:hover {
  transform: translateY(-2px);
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-light);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 16px rgba(201, 168, 76, 0.25);
}

.btn-call-now:hover .call-icon {
  transform: rotate(12deg) scale(1.1);
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .reserve-btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .reserve-btn-group .submit-btn,
  .reserve-btn-group .btn-call-now {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════
   PACKAGE ROW (CONTACT FORM)
══════════════════════════════════════════════════ */
#packageRow[hidden] {
  display: none !important;
}

/* ══════════════════════════════════════════════════
   BIRTHDAY & BUFFET SUB-PAGES (.pkg-grid & CARDS)
══════════════════════════════════════════════════ */
/* Seamless video hero & section merge matching menu page */
.page-hero.page-hero-seamless {
  min-height: 52vh;
  padding: 130px var(--sp-8) var(--sp-12);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(13, 92, 90, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(13, 92, 90, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #071716 0%, #0b1f1f 35%, var(--bg) 100%);
}

.page-hero.page-hero-seamless .page-hero-content {
  position: relative;
  z-index: 3;
}

.page-hero.page-hero-seamless .page-hero-deco {
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, rgba(8, 14, 14, 0.4) 35%, rgba(8, 14, 14, 0.85) 70%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.pkg-section {
  padding: var(--sp-10) 0 var(--sp-24);
  position: relative;
  background:
    radial-gradient(ellipse 70% 280px at 50% 0%, rgba(13, 92, 90, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 200px at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 65%),
    var(--bg, #080e0e);
}

.pkg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.pkg-back-bar {
  margin-bottom: var(--sp-8);
  display: flex;
  align-items: center;
}

.pkg-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--gold, #c9a84c);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform var(--dur-base) ease, color var(--dur-base) ease;
}

.pkg-back-link:hover {
  transform: translateX(-4px);
  color: var(--gold-light, #dfc06e);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-8);
}

.pkg-card {
  position: relative;
  background: rgba(10, 28, 26, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--dur-base) ease, border-color var(--dur-base) ease, box-shadow var(--dur-base) ease;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 168, 76, 0.15);
}

.pkg-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: radial-gradient(circle at center, #132a26 0%, #080e0e 100%);
}

.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow, 0.6s) var(--ease-out);
}

.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.05);
}

.pkg-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #163833 0%, #0a1c1a 100%);
}

.pkg-num {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(8, 14, 14, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold, #c9a84c);
  font-family: var(--font-serif, serif);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.pkg-card-body {
  padding: var(--sp-6, 24px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-header {
  margin-bottom: var(--sp-4, 16px);
}

.pkg-title {
  font-family: var(--font-serif, serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: var(--sp-2, 8px);
}

.pkg-price-badge {
  display: inline-block;
  font-family: var(--font-serif, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold, #c9a84c);
}

.pkg-inclusions {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-4, 16px) 0;
  flex: 1;
}

.pkg-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin-bottom: 8px;
}

.pkg-inclusions li .svc-check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5L6.5 12L13 4' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

.pkg-note {
  font-size: 0.82rem;
  color: var(--gold-light, #dfc06e);
  margin-bottom: var(--sp-4, 16px);
  padding: 8px 12px;
  background: rgba(201, 168, 76, 0.08);
  border-left: 2px solid var(--gold, #c9a84c);
  border-radius: 0 var(--radius-sm, 6px) var(--radius-sm, 6px) 0;
}

.pkg-card-foot {
  margin-top: auto;
  padding-top: var(--sp-3, 12px);
}

.pkg-cta {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 12px 18px;
}

/* ── Buffet Package Cards ── */
.buffet-card {
  border-radius: var(--radius-lg, 16px);
  padding: var(--sp-2, 8px);
}

.buffet-card.featured {
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 168, 76, 0.2);
}

.pkg-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #c9a84c, #9d7c2a);
  color: #080e0e;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.buffet-header {
  padding-bottom: var(--sp-3, 12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: var(--sp-4, 16px);
}

.pkg-diet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 8px;
}

.pkg-diet-badge.veg {
  color: #52c488;
}

.pkg-diet-badge.non-veg {
  color: #ff6e6e;
}

.diet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.pkg-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.pkg-price-val {
  font-family: var(--font-serif, serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold, #c9a84c);
}

.pkg-price-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════════════════════════
   BUFFET SPREAD SECTIONS (.buf-menu, .buf-sec)
══════════════════════════════════════════════════ */
.buf-sec {
  padding: var(--sp-16, 64px) 0;
  position: relative;
}

.buf-sec-alt {
  background: rgba(10, 28, 26, 0.35);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.buf-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-6, 24px);
  margin-top: var(--sp-8, 32px);
}

.buf-cat-card {
  background: rgba(8, 14, 14, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-md, 12px);
  padding: var(--sp-6, 24px);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-base) ease, transform var(--dur-base) ease;
}

.buf-cat-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

.buf-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: var(--sp-3, 12px);
}

.buf-cat-title {
  font-family: var(--font-serif, serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.buf-pick-tag {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold, #c9a84c);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.buf-cat-note {
  font-size: 0.8rem;
  color: var(--gold-light, #dfc06e);
  margin-bottom: var(--sp-3, 12px);
  font-style: italic;
}

.buf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buf-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: 999px;
  transition: all var(--dur-base) ease;
}

.buf-cat-card:hover .buf-chip {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.06);
}

/* ── Live Counters Section ── */
.buf-counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--sp-6, 24px);
  margin-top: var(--sp-8, 32px);
}

.buf-counter-card {
  background: rgba(8, 14, 14, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md, 12px);
  padding: var(--sp-6, 24px);
  display: flex;
  flex-direction: column;
}

.buf-counter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: var(--sp-3, 12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: var(--sp-4, 16px);
}

.buf-counter-title {
  font-family: var(--font-serif, serif);
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
}

.buf-counter-price {
  font-family: var(--font-serif, serif);
  color: var(--gold, #c9a84c);
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  white-space: nowrap;
}

.buf-counter-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-4, 16px) 0;
}

.buf-counter-lines li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.buf-cgroup-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold, #c9a84c);
  font-weight: 600;
  margin-bottom: 8px;
}

.buf-footer-note {
  text-align: center;
  margin-top: var(--sp-8, 32px);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ── Cross-link strip to Menu ── */
.buf-menu-crosslink {
  padding: var(--sp-12, 48px) 0;
  background: radial-gradient(ellipse at center, rgba(20, 50, 45, 0.5) 0%, #080e0e 70%);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.buf-menu-crosslink p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: var(--sp-4, 16px);
}

/* ══════════════════════════════════════════════════
   BOOKING TERMS BAND (.terms-band)
══════════════════════════════════════════════════ */
.terms-band {
  padding: var(--sp-16, 64px) 0 var(--sp-20, 80px);
  background: #050a0a;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6, 24px);
  margin-top: var(--sp-8, 32px);
}

.terms-card-wide {
  grid-column: 1 / -1;
}

.terms-card {
  background: rgba(10, 20, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 12px);
  padding: var(--sp-6, 24px);
}

.terms-card-title {
  font-family: var(--font-serif, serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: var(--sp-4, 16px);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-numbered-list {
  padding-left: 20px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px 24px;
}

.terms-numbered-list li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.terms-numbered-list li::marker {
  color: var(--gold, #c9a84c);
  font-weight: 600;
}

.terms-ledger {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-row {
  display: flex;
  align-items: baseline;
  font-size: 0.88rem;
}

.terms-lbl {
  color: rgba(255, 255, 255, 0.8);
}

.terms-sep {
  flex: 1;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  margin: 0 10px;
}

.terms-val {
  color: var(--gold, #c9a84c);
  font-weight: 500;
}

.terms-note {
  margin-top: var(--sp-3, 12px);
  padding-top: var(--sp-3, 12px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.terms-notice {
  text-align: center;
  margin-top: var(--sp-12, 48px);
  padding-top: var(--sp-8, 32px);
}

.terms-notice-rule {
  width: 80px;
  height: 1px;
  background: var(--gold, #c9a84c);
  margin: 0 auto var(--sp-4, 16px);
  opacity: 0.5;
}

.terms-notice-head {
  font-family: var(--font-serif, serif);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
}

.terms-notice-sub {
  font-size: 0.88rem;
  color: var(--gold, #c9a84c);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .terms-numbered-list {
    grid-template-columns: 1fr;
  }
}