/* ==========================================================================
   NISARG GARDEN RESTAURANT - LUXURY DARK & GOLD DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette matching Target Design */
  --bg-black: #060907;
  --bg-dark-1: #090e0b;
  --bg-dark-2: #0f1511;
  --bg-card: rgba(14, 20, 16, 0.8);
  --bg-card-hover: rgba(20, 30, 24, 0.95);
  
  /* Gold Luxury Accents */
  --gold-primary: #e5a024;
  --gold-light: #f5ba42;
  --gold-dark: #b87b0b;
  --gold-border: rgba(229, 160, 36, 0.35);
  --gold-border-glow: rgba(229, 160, 36, 0.6);
  
  /* Botanical Accents */
  --green-botanical: #6f9c6c;
  
  /* Typography & Neutral Colors */
  --text-white: #ffffff;
  --text-cream: #f4eedb;
  --text-muted: #ced5cd;
  --text-dim: #7a8679;
  
  /* Fonts: Modern Bold Geometric Sans */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --max-width: 1240px;
  --header-height: 110px;
  --radius-sm: 7px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-cream);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--bg-black);
  min-height: 100vh;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
}

p {
  color: var(--text-muted);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
}

.gold-accent-text {
  color: var(--gold-primary);
  display: inline-block;
}

/* Botanical Sub-Badge (Clean transparent line matching Image 1) */
.botanical-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-botanical);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.botanical-badge .lotus-icon {
  width: 18px;
  height: 18px;
}

/* Sub-badge for other sections */
.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(35, 67, 47, 0.4);
  border: 1px solid rgba(111, 156, 108, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--green-botanical);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

.sub-badge.center {
  margin-left: auto;
  margin-right: auto;
}

.sub-badge .leaf-icon {
  width: 14px;
  height: 14px;
}

/* Standard Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn-gold {
  background: var(--gold-primary);
  color: #120e04;
  box-shadow: 0 4px 20px rgba(229, 160, 36, 0.38);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(229, 160, 36, 0.55);
}

.btn-outline-gold {
  background: rgba(12, 17, 13, 0.45);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(6px);
}

.btn-outline-gold:hover {
  background: rgba(229, 160, 36, 0.15);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.arrow-icon {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.btn-outline-gold:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding-top: 16px;
  transition: var(--transition);
}

.site-header.scrolled {
  position: fixed;
  padding-top: 0;
  background: rgba(6, 9, 7, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 160, 36, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.header-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #d2d8d0;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--gold-primary);
}

.nav-link.active {
  color: var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(8, 12, 9, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
  padding-left: 6px;
}

/* ==========================================================================
   HERO SECTION (MATCHING TARGET IMAGE 1)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.88) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(6, 9, 7, 0.35) 0%, rgba(6, 9, 7, 0.06) 40%, rgba(6, 9, 7, 0.7) 100%),
    linear-gradient(90deg, rgba(6, 9, 7, 0.7) 0%, rgba(6, 9, 7, 0.25) 55%, transparent 100%);
}

.hero-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.14;
  color: var(--text-white);
  margin-bottom: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Gold Accent Line under Headline */
.headline-gold-line {
  width: 56px;
  height: 3.5px;
  background: var(--gold-primary);
  border-radius: 2px;
  margin-top: 16px;
  margin-bottom: 22px;
}

.hero-description {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Google Review Badge */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 21, 16, 0.7);
  border: 1px solid rgba(229, 160, 36, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-top: 20px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-rating-badge:hover {
  background: rgba(22, 34, 26, 0.9);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 160, 36, 0.25);
}

.google-logo-icon {
  display: flex;
  align-items: center;
}

.rating-stars-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars-gold {
  color: #fbbc04;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.star-half {
  color: #fbbc04;
  opacity: 0.65;
  font-size: 0.95rem;
}

.rating-score {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.88rem;
}

.rating-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}

.rating-count {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.rating-arrow {
  color: var(--gold-primary);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.hero-rating-badge:hover .rating-arrow {
  transform: translate(2px, -2px);
}

/* Footer Maps & Rating */
.footer-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-top: 6px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-maps-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-rating-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(229, 160, 36, 0.2);
}

.footer-rating-text {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.footer-rating-text strong {
  color: var(--text-white);
}

/* ==========================================================================
   6 PILLARS / HIGHLIGHTS BAR
   ========================================================================== */

.pillars-section {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  padding-bottom: 80px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(13, 19, 15, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.pillar-item {
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(229, 169, 60, 0.15);
  transition: var(--transition);
}

.pillar-item:last-child {
  border-right: none;
}

.pillar-item:hover {
  background: rgba(229, 169, 60, 0.08);
  transform: translateY(-3px);
}

.pillar-icon-wrap {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.pillar-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.pillar-item:hover .pillar-icon-wrap {
  transform: scale(1.15);
}

.pillar-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-cream);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   OUR SPECIALTY MENU SECTION (TABLE + SHOWCASE LAYOUT)
   ========================================================================== */

.menu-section {
  padding: 85px 0 100px;
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(229, 160, 36, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 85% 60%, rgba(20, 83, 45, 0.15) 0%, transparent 50%),
              linear-gradient(180deg, #070b08 0%, #0c120e 50%, #070b08 100%);
  border-top: 1px solid rgba(229, 160, 36, 0.15);
  border-bottom: 1px solid rgba(229, 160, 36, 0.15);
}

/* Toolbar: Search + Category & Diet Filters */
.menu-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.menu-search-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.menu-search-wrap .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  pointer-events: none;
}

.menu-search-input {
  width: 100%;
  background: rgba(14, 21, 16, 0.85);
  border: 1px solid rgba(229, 160, 36, 0.35);
  border-radius: var(--radius-pill);
  padding: 13px 44px 13px 48px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(18, 27, 21, 0.95);
  box-shadow: 0 0 20px rgba(229, 160, 36, 0.25), 0 4px 25px rgba(0, 0, 0, 0.6);
}

.menu-search-input::placeholder {
  color: #7b887e;
  font-size: 0.88rem;
}

.menu-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(229, 160, 36, 0.15);
  border: none;
  color: var(--gold-light);
  font-size: 1.2rem;
  line-height: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.menu-search-clear:hover {
  background: var(--gold-primary);
  color: #0c120e;
}

.menu-filters-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Category Tabs */
.menu-category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(13, 19, 15, 0.9);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.menu-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  white-space: nowrap;
}

.menu-tab-btn:hover {
  color: var(--gold-light);
  background: rgba(229, 160, 36, 0.1);
}

.menu-tab-btn.active {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #d48e1b 100%);
  color: #0c120e;
  font-weight: 700;
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(229, 160, 36, 0.35);
}

/* Diet Filter Pills */
.menu-diet-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 19, 15, 0.7);
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(229, 160, 36, 0.2);
}

.diet-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}

.diet-filter-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.diet-filter-btn.active {
  border-color: var(--gold-light);
  background: rgba(229, 160, 36, 0.2);
  color: var(--text-white);
}

.diet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.diet-dot.veg {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.diet-dot.non-veg {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

/* Official Indian Veg / Non-Veg Standard Square Indicator */
.diet-indicator {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.diet-indicator::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.diet-indicator.veg {
  border: 1.8px solid #10b981;
}
.diet-indicator.veg::after {
  background: #10b981;
}

.diet-indicator.non-veg {
  border: 1.8px solid #ef4444;
}
.diet-indicator.non-veg::after {
  background: #ef4444;
}

/* ==========================================================================
   TWO-COLUMN MENU LAYOUT GRID
   ========================================================================== */
.menu-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: start;
}

/* Left Pane: Table Items */
.menu-table-pane {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-table-header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
}

.menu-items-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu-note-badge {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-style: italic;
}

.menu-table-wrap {
  background: rgba(14, 21, 16, 0.8);
  border: 1px solid rgba(229, 160, 36, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 660px;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) rgba(10, 16, 12, 0.8);
  -webkit-overflow-scrolling: touch;
}

/* Custom Luxury Webkit Scrollbar */
.menu-table-wrap::-webkit-scrollbar {
  width: 7px;
}

.menu-table-wrap::-webkit-scrollbar-track {
  background: rgba(10, 16, 12, 0.7);
  border-radius: 8px;
  margin: 6px 0;
}

.menu-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-primary) 0%, #b87b16 100%);
  border-radius: 8px;
  border: 1px solid rgba(229, 160, 36, 0.4);
}

.menu-table-wrap::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  box-shadow: 0 0 10px rgba(229, 160, 36, 0.5);
}

.menu-scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--gold-light);
  background: rgba(229, 160, 36, 0.12);
  border: 1px solid rgba(229, 160, 36, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.menu-scroll-indicator svg {
  animation: scrollBounce 1.8s infinite ease-in-out;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* Menu Row Item */
.menu-row-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(229, 160, 36, 0.1);
  transition: all 0.25s ease;
  position: relative;
  background: transparent;
}

.menu-row-item:last-child {
  border-bottom: none;
}

.menu-row-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-primary);
  opacity: 0;
  transform: scaleY(0.4);
  transition: all 0.25s ease;
}

.menu-row-item:hover {
  background: rgba(229, 160, 36, 0.04);
}

.menu-row-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.menu-row-item.hidden {
  display: none !important;
}

.menu-row-indicator {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 2px;
}

.menu-row-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-row-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-row-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin: 0;
  transition: color 0.2s ease;
}

.menu-row-item:hover .menu-row-title {
  color: var(--gold-light);
}

.menu-row-badges {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-badge-pill {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(229, 160, 36, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(229, 160, 36, 0.25);
  text-transform: uppercase;
}

.menu-badge-pill.gold {
  background: linear-gradient(135deg, var(--gold-primary), #bd7e0b);
  color: #0c120e;
  border: none;
  font-weight: 700;
}

.menu-row-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.menu-row-action {
  flex-shrink: 0;
}

.menu-row-reserve-btn {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  font-family: var(--font-main);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.menu-row-reserve-btn:hover {
  background: var(--gold-primary);
  color: #0c120e;
  box-shadow: 0 0 12px rgba(229, 160, 36, 0.4);
}

/* Empty State */
.menu-empty-state {
  text-align: center;
  padding: 48px 24px;
  background: rgba(14, 21, 16, 0.7);
  border: 1px dashed rgba(229, 160, 36, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.empty-icon {
  width: 42px;
  height: 42px;
  color: var(--gold-light);
  opacity: 0.7;
}

.empty-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-white);
  margin: 0;
}

.empty-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 380px;
  margin: 0;
}

/* ==========================================================================
   RIGHT COLUMN: STICKY SHOWCASE SIDEBAR & CAROUSEL
   ========================================================================== */
.menu-showcase-sidebar {
  position: sticky;
  top: 95px;
}

.menu-showcase-card {
  background: linear-gradient(180deg, rgba(17, 26, 20, 0.95) 0%, rgba(11, 17, 13, 0.95) 100%);
  border: 1px solid rgba(229, 160, 36, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(229, 160, 36, 0.1);
  backdrop-filter: blur(12px);
}

.showcase-card-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(229, 160, 36, 0.15);
  background: rgba(7, 11, 8, 0.5);
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.showcase-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

/* Carousel Container */
.showcase-carousel {
  position: relative;
  overflow: hidden;
}

.showcase-slide {
  display: none;
  animation: fadeInSlide 0.45s ease forwards;
}

.showcase-slide.active {
  display: block;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  background: #080c09;
  overflow: hidden;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-slide:hover .showcase-img {
  transform: scale(1.05);
}

.showcase-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 17, 13, 0.95) 100%);
  pointer-events: none;
}

.showcase-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(8, 12, 9, 0.85);
  backdrop-filter: blur(6px);
  color: var(--text-cream);
  border: 1px solid rgba(229, 160, 36, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.showcase-tag.gold {
  background: linear-gradient(135deg, var(--gold-primary), #bd7e0b);
  color: #0c120e;
  border: none;
  font-weight: 800;
}

.showcase-slide-info {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-slide-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showcase-dish-name {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  line-height: 1.3;
}

.showcase-dish-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.showcase-reserve-btn {
  margin-top: 6px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, #c48214 100%);
  color: #0c120e;
  border: 1px solid var(--gold-light);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(229, 160, 36, 0.3);
}

.showcase-reserve-btn:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  box-shadow: 0 0 18px rgba(229, 160, 36, 0.5);
  transform: translateY(-1px);
}

/* Carousel Navigation Controls */
.showcase-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 14px;
  border-top: 1px solid rgba(229, 160, 36, 0.12);
  background: rgba(7, 11, 8, 0.35);
}

.carousel-btn {
  background: rgba(229, 160, 36, 0.12);
  border: 1px solid rgba(229, 160, 36, 0.25);
  color: var(--gold-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn svg {
  width: 14px;
  height: 14px;
}

.carousel-btn:hover {
  background: var(--gold-primary);
  color: #0c120e;
  border-color: var(--gold-light);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--gold-primary);
  box-shadow: 0 0 8px rgba(229, 160, 36, 0.5);
}

/* Sidebar Feature Badges */
.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(229, 160, 36, 0.15);
  background: rgba(7, 11, 8, 0.45);
}

.showcase-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-cream);
}

.feature-icon {
  font-size: 1rem;
}

/* Menu Bottom CTA */
.menu-bottom-cta {
  margin-top: 45px;
  text-align: center;
  background: rgba(14, 21, 16, 0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.menu-bottom-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-cream);
  max-width: 600px;
}

/* ==========================================================================
   SOMETHING FOR EVERY MOOD (EXPERIENCES)
   ========================================================================== */

.experiences-section {
  padding: 80px 0 100px;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 14px;
}

.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.decorative-divider .line {
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.decorative-divider .right-line {
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.decorative-divider .divider-leaf {
  width: 14px;
  height: 14px;
  color: #639c6e;
}

/* Experience Cards Grid (4x2 on desktop) */
.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.experience-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  cursor: pointer;
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(229, 169, 60, 0.2);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 14, 11, 0.95) 100%);
}

.card-body {
  padding: 0 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: -24px;
  z-index: 2;
}

.card-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111a14;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.card-circle-icon svg {
  width: 22px;
  height: 22px;
}

.experience-card:hover .card-circle-icon {
  transform: scale(1.1) rotate(6deg);
  background: var(--gold-primary);
  color: #111a14;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   THE NISARG AMBIENCE & BENTO GALLERY
   ========================================================================== */

.ambience-section {
  padding: 80px 0 100px;
}

.ambience-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: center;
}

.ambience-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ambience-headline {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 20px;
}

.ambience-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 400px;
}

/* Asymmetrical Bento Gallery */
.ambience-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 170px 170px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(229, 169, 60, 0.2);
}

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

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

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

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 11, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

/* ==========================================================================
   PLAN YOUR VISIT BANNER
   ========================================================================== */

.plan-visit-section {
  padding: 30px 0 70px;
}

.plan-visit-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  gap: 28px;
}

.plan-visit-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.plan-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.plan-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 9, 7, 0.94) 0%, rgba(6, 9, 7, 0.75) 50%, rgba(6, 9, 7, 0.9) 100%);
}

.plan-visit-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.plan-visit-content .sub-badge {
  margin-bottom: 12px;
}

.plan-headline {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 0;
}

.plan-cta-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #040705;
  border-top: 1px solid rgba(229, 169, 60, 0.15);
  padding: 60px 0 30px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  color: var(--gold-primary);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col-desc {
  font-size: 0.88rem;
  color: #a8b3a7;
  line-height: 1.5;
}

.footer-phone-link {
  color: #a8b3a7;
  font-weight: 500;
}

.footer-phone-link:hover {
  color: var(--gold-primary);
}

.hours-highlight {
  color: #cfd8cd;
  font-weight: 500;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.social-btn:hover {
  background: var(--gold-primary);
  color: #060907;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 169, 60, 0.4);
}

/* Botanical Footer Divider */
.footer-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-leaf-emblem {
  width: 30px;
  height: 30px;
  color: #436d4e;
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   RESERVATION MODAL & LIGHTBOX
   ========================================================================== */

.modal-overlay,
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 7, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active,
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0d1410;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(229, 169, 60, 0.15);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--gold-primary);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #080c09;
  border: 1px solid rgba(229, 169, 60, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-white);
  color-scheme: dark;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input[type="date"] {
  cursor: pointer;
  position: relative;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.8) sepia(100%) saturate(350%) hue-rotate(5deg);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(229, 169, 60, 0.25);
}

.form-submit-wrap {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-instant-notice {
  font-size: 0.72rem;
  color: #7fa886;
  text-align: center;
}

/* Lightbox Image Container */
.lightbox-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
}

.lightbox-img {
  max-height: 80vh;
  margin: 0 auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--text-white);
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MATCHING MOBILE VIEWPORT IN SCREENSHOT)
   ========================================================================== */

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillar-item:nth-child(3) {
    border-right: none;
  }
  .pillar-item:nth-child(1),
  .pillar-item:nth-child(2),
  .pillar-item:nth-child(3) {
    border-bottom: 1px solid rgba(229, 169, 60, 0.15);
  }

  .experience-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .ambience-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .brand-logo-img {
    height: 48px;
    max-width: 145px;
  }

  .desktop-nav,
  .header-cta-wrap {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hero Mobile */
  .hero-section {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-description {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* 6 Pillars Mobile: 2x3 Grid */
  .pillars-section {
    margin-top: 10px;
    padding-bottom: 50px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-item {
    padding: 20px 10px;
    border-right: 1px solid rgba(229, 169, 60, 0.15);
    border-bottom: 1px solid rgba(229, 169, 60, 0.15);
  }

  .pillar-item:nth-child(2n) {
    border-right: none;
  }

  .pillar-item:nth-child(5),
  .pillar-item:nth-child(6) {
    border-bottom: none;
  }

  .pillar-icon-wrap {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .pillar-icon-wrap svg {
    width: 26px;
    height: 26px;
  }

  .pillar-label {
    font-size: 0.72rem;
  }

  /* Menu Section Mobile */
  .menu-section {
    padding: 55px 0 70px;
  }

  .menu-layout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-showcase-sidebar {
    position: static;
    order: -1; /* Display signature showcase prominently on mobile */
  }

  .showcase-img-wrap {
    height: 220px;
  }

  .menu-category-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
    flex-shrink: 0;
  }

  .menu-diet-filters {
    overflow-x: auto;
    flex-shrink: 0;
  }

  .diet-filter-btn {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .menu-table-wrap {
    max-height: 520px;
  }

  .menu-row-item {
    padding: 14px 16px;
    gap: 12px;
  }

  .menu-row-title {
    font-size: 1.04rem;
  }

  .menu-row-desc {
    font-size: 0.78rem;
  }

  /* Experiences Mobile: Stacked Vertical Cards */
  .experiences-section {
    padding: 50px 0 60px;
  }

  .section-headline {
    font-size: 2.1rem;
  }

  .experience-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .experience-card {
    flex-direction: row;
    align-items: center;
    padding: 10px;
    height: auto;
  }

  .card-img-wrap {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .card-body {
    margin-top: 0;
    padding: 0 0 0 16px;
    align-items: flex-start;
    text-align: left;
  }

  .card-circle-icon {
    display: none;
  }

  .card-title {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .card-desc {
    font-size: 0.75rem;
  }

  /* Ambience Mobile */
  .ambience-section {
    padding: 50px 0;
  }

  .ambience-headline {
    font-size: 2.1rem;
  }

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

  .gallery-item.item-tall {
    grid-row: auto;
    grid-column: span 2;
    height: 200px;
  }

  .gallery-item.item-small {
    height: 130px;
  }

  .explore-gallery-trigger {
    width: 100%;
    margin-bottom: 24px;
  }

  /* Plan Visit Banner Mobile */
  .plan-visit-section {
    padding: 30px 0 60px;
  }

  .plan-visit-content {
    padding: 30px 20px;
    text-align: center;
    align-items: center;
  }

  .plan-headline {
    font-size: 1.65rem;
    margin-bottom: 20px;
  }

  .plan-cta-wrap {
    position: static;
    width: 100%;
  }

  .plan-cta-wrap .btn {
    width: 100%;
  }

  /* Footer Mobile */
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

@media (max-width: 480px) {
  .menu-row-item {
    flex-wrap: wrap;
    padding: 12px;
  }

  .menu-row-action {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
  }

  .menu-row-reserve-btn {
    width: 100%;
    text-align: center;
  }

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

  .footer-col-header {
    justify-content: center;
  }

  .social-icons-row {
    justify-content: center;
  }
}

/* Floating AI Review Button */
.floating-ai-review-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #111a14 0%, #16241b 100%);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(229, 169, 60, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: var(--transition);
}

.floating-ai-review-btn:hover {
  background: var(--gold-primary);
  color: #090e0b;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(229, 169, 60, 0.4);
}

.nav-highlight-gold {
  color: var(--gold-primary) !important;
  font-weight: 600;
}
