/* =====================================================
   The Bangkok Thai Cooking & Bar — styles.css
   ===================================================== */

/* ── Variables ── */
:root {
  --gold:        #C9A84C;
  --gold-dark:   #8B6914;
  --gold-light:  #E8C97A;
  --crimson:     #9B2335;
  --crimson-dk:  #6E1824;
  --ivory:       #FAF7F0;
  --ivory-dk:    #F0EBE1;
  --charcoal:    #1C1C1C;
  --charcoal-lt: #2C2C2C;
  --charcoal-md: #3D3830;
  --white:       #FFFFFF;
  --text:        #2C2A27;
  --text-muted:  #6B6560;
  --emerald:     #2E7D32;
  --nav-h:       76px;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.18);
  --radius:      6px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Lato', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-header h2.light { color: var(--ivory); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header p.light { color: rgba(250,247,240,0.75); }

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  display: block;
  width: 70px;
  height: 1px;
  background: var(--gold);
}
.gold-divider .lotus-icon {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-crimson {
  background: var(--crimson);
  color: var(--white);
}
.btn-crimson:hover {
  background: var(--crimson-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155,35,53,0.3);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
#main-nav.scrolled {
  background: var(--charcoal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.75);
  line-height: 1;
}

/* Nav Links */
.nav-links-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 3px;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-order-btn {
  margin-left: 10px;
  padding: 9px 20px;
  font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 880px) {
  .hamburger { display: flex; }
  #nav-links {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1050;
  }
  #nav-links.open { transform: translateX(0); }
  .nav-links-list {
    flex-direction: column;
    gap: 4px;
    width: 100%;
    text-align: center;
  }
  .nav-links-list li { width: 100%; }
  .nav-link {
    display: block;
    font-size: 1.1rem;
    padding: 14px 24px;
    color: var(--ivory);
  }
  .nav-order-btn { margin: 16px 0 0; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../Photos/Location/Interior/Hero Image.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,10,0.55) 0%,
    rgba(20,15,10,0.42) 50%,
    rgba(20,15,10,0.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  margin-top: 24vh;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.8);
  margin-top: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: rgba(250,247,240,0.88);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
  z-index: 1;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--crimson), var(--gold), var(--crimson));
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.about-text p:last-of-type { margin-bottom: 28px; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.about-highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlight-icon svg { width: 16px; height: 16px; fill: var(--charcoal); }
.about-highlight-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.about-highlight-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  padding: 12px;
}
.about-image-badge .badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.about-image-badge .badge-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 360px; }
  .about-image-badge { bottom: -16px; left: 16px; width: 100px; height: 100px; }
  .about-image-badge .badge-num { font-size: 1.6rem; }
}


/* ============================================================
   INTERIOR GALLERY
   ============================================================ */
#interior-gallery {
  background: var(--charcoal);
  padding: 80px 0;
  overflow: hidden;
}
#interior-gallery .section-header { padding: 0 24px; }

.interior-swiper {
  width: 100%;
  padding: 16px 0 56px !important;
  overflow: visible !important;
}
.interior-swiper .swiper-wrapper { align-items: center; }
.interior-swiper .swiper-slide {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.interior-swiper .swiper-slide-active {
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.interior-swiper .swiper-slide:hover .gallery-img { transform: scale(1.06); }

.interior-swiper .swiper-button-next,
.interior-swiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(28,28,28,0.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  --swiper-navigation-size: 18px;
  border: 1px solid rgba(201,168,76,0.3);
}
.interior-swiper .swiper-button-next:hover,
.interior-swiper .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.interior-swiper .swiper-pagination-bullet { background: rgba(201,168,76,0.5); }
.interior-swiper .swiper-pagination-bullet-active { background: var(--gold); }


/* ============================================================
   FOOD GALLERY
   ============================================================ */
#food-gallery {
  background: var(--charcoal-md);
  padding: 0;
  position: relative;
}
.food-swiper {
  width: 100%;
  height: clamp(380px, 60vw, 680px);
}
.food-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.food-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.food-swiper .swiper-slide-active img { transform: scale(1.06); }
.food-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,0.65) 0%, transparent 55%);
}
.food-slide-label {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  pointer-events: none;
}
.food-swiper .swiper-button-next,
.food-swiper .swiper-button-prev {
  color: var(--gold);
  --swiper-navigation-size: 22px;
  background: rgba(28,28,28,0.5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
}
.food-swiper .swiper-button-next:hover,
.food-swiper .swiper-button-prev:hover { background: var(--gold); color: var(--charcoal); }
.food-swiper .swiper-pagination { bottom: 20px; }
.food-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); }
.food-swiper .swiper-pagination-bullet-active { background: var(--gold); }


/* ============================================================
   SPICE GUIDE
   ============================================================ */
#spice-guide {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-md) 100%);
  position: relative;
  overflow: hidden;
}
#spice-guide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 20 L50 20 L38 30 L43 45 L30 37 L17 45 L22 30 L10 20 L25 20Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.spice-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.spice-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.spice-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.spice-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.spice-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.spice-card:hover::before { transform: scaleX(1); }
.spice-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.spice-chilies {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.spice-chilies .chili { color: var(--gold); }
.spice-chilies .chili.inactive { color: rgba(201,168,76,0.2); }
.spice-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--ivory);
  margin-bottom: 8px;
}
.spice-desc {
  font-size: 0.8rem;
  color: rgba(250,247,240,0.6);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .spice-levels { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  .spice-levels { grid-template-columns: repeat(2, 1fr); }
  .spice-levels .spice-card:last-child { grid-column: 1 / -1; max-width: 200px; margin: 0 auto; }
}


/* ============================================================
   MENU
   ============================================================ */
#menu {
  background: var(--charcoal);
  padding: 80px 0 90px;
  position: relative;
}
#menu .section-header { padding: 0 24px; margin-bottom: 40px; }

/* Tab Navigation */
.menu-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}
.tab-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 2;
}
.tab-arrow:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.menu-tabs-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.menu-tabs-wrapper::before,
.menu-tabs-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 30px;
  z-index: 1;
  pointer-events: none;
}
.menu-tabs-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--charcoal), transparent);
}
.menu-tabs-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--charcoal), transparent);
}
.menu-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 16px;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab-btn {
  flex-shrink: 0;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.5);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.menu-tab-btn:hover { color: var(--gold); }
.menu-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Mobile tab label */
.menu-tab-mobile-label {
  display: none;
  text-align: center;
  padding: 12px 0 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
}
@media (max-width: 600px) {
  .menu-tab-mobile-label { display: block; }
}

.menu-divider {
  height: 1px;
  background: rgba(201,168,76,0.2);
  margin: 0 0 40px;
}

/* Menu Panel */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* Lunch specials header */
.lunch-header {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
}
.lunch-header .lunch-hours {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-style: italic;
}
.lunch-header h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.6);
  margin-bottom: 8px;
}
.lunch-header ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 16px;
}
.lunch-header ul li {
  font-size: 0.9rem;
  color: rgba(250,247,240,0.8);
  margin-bottom: 4px;
}
.lunch-pricing {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.lunch-pricing span {
  font-size: 0.9rem;
  color: rgba(250,247,240,0.75);
}
.lunch-pricing span strong {
  color: var(--gold-light);
  font-size: 1rem;
}
.lunch-addons {
  font-size: 0.82rem;
  color: rgba(250,247,240,0.5);
  font-style: italic;
}

/* Menu category heading */
.menu-category { margin-bottom: 40px; }
.category-heading {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  font-style: italic;
}

/* Menu item grid: two columns on desktop */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 32px;
}
@media (max-width: 800px) {
  .menu-items-grid { grid-template-columns: 1fr; }
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.2s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.menu-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.menu-item-name {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.chili-svg {
  display: inline;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-right: 3px;
  position: relative;
  top: -1px;
}
.spicy-icon {
  display: inline-flex;
  align-items: center;
}
.spicy-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--crimson);
}
.menu-item-price {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: rgba(250,247,240,0.55);
  line-height: 1.55;
}
.menu-item-tags {
  display: flex;
  gap: 6px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}
.tag-gf { background: rgba(46,125,50,0.2); color: #81C784; border: 1px solid rgba(46,125,50,0.3); }
.tag-veg { background: rgba(46,125,50,0.2); color: #81C784; border: 1px solid rgba(46,125,50,0.3); }

/* Note row */
.menu-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(250,247,240,0.45);
  padding: 8px 0;
  text-align: center;
}


/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  background: var(--ivory-dk);
  padding: 80px 0 90px;
}
.reviews-swiper { padding-bottom: 52px !important; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
  user-select: none;
}
.review-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.review-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
  color: var(--gold);
  --swiper-navigation-size: 18px;
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  top: auto;
  bottom: 0;
}
.reviews-swiper .swiper-button-prev { left: calc(50% - 52px); }
.reviews-swiper .swiper-button-next { right: calc(50% - 52px); }
.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover { background: var(--gold); color: var(--charcoal); }
.reviews-swiper .swiper-pagination { display: none; }


/* ============================================================
   CATERING
   ============================================================ */
#catering {
  background: var(--crimson);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
#catering::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.catering-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.catering-inner .eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.catering-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 18px;
}
.catering-inner p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.catering-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 28px;
  font-style: italic;
}
.catering-phone svg { width: 22px; height: 22px; fill: var(--gold-light); }


/* ============================================================
   LOCATION
   ============================================================ */
#location {
  background: var(--ivory);
  padding: 90px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.location-details { padding-top: 8px; }
.location-details h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.location-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.location-info-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-info-icon svg { width: 18px; height: 18px; fill: var(--charcoal); }
.location-info-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.location-info-text p, .location-info-text a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.location-info-text a:hover { color: var(--crimson); }

.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--ivory-dk);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text); font-weight: 600; }
.hours-time { color: var(--text-muted); text-align: right; }
.hours-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; gap: 36px; }
  .map-wrap iframe { height: 300px; }
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 60px 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--crimson), var(--gold), var(--crimson));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(250,247,240,0.55);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.88rem;
  color: rgba(250,247,240,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,247,240,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250,247,240,0.35);
}
.footer-bottom a { color: rgba(201,168,76,0.7); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.open {
  opacity: 1;
  pointer-events: all;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 1;
}
#lightbox-close:hover { color: var(--gold); }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-prev:hover, #lightbox-next:hover { background: var(--gold); color: var(--charcoal); }


/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }


/* ============================================================
   ONLINE ORDER FLOATING BUTTON (mobile)
   ============================================================ */
.order-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 800;
  background: var(--gold);
  color: var(--charcoal);
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
  transition: var(--transition);
  align-items: center;
  gap: 8px;
}
.order-fab:hover { background: var(--gold-light); transform: translateY(-2px); }
@media (max-width: 640px) { .order-fab { display: flex; } }


/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }
  .section-header { margin-bottom: 36px; }
  .about-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas .btn { padding: 12px 22px; font-size: 0.82rem; }
  .lunch-pricing { flex-direction: column; gap: 8px; }
}
