/* ===========================================
   BUKKA — Premium Nigerian Cuisine
   Shared Stylesheet
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Anton&family=Outfit:wght@200;300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
  --black: #0A0908;
  --charcoal: #131110;
  --charcoal-2: #1C1916;
  --charcoal-3: #25211C;
  --gold: #D4A53A;
  --gold-light: #E8C547;
  --gold-bright: #F4D14A;
  --gold-dim: #8B7355;
  --gold-faint: rgba(212, 165, 58, 0.15);
  --cream: #F5E6D3;
  --spice: #C73E1D;
  --spice-glow: #FF6B35;
  --palm-red: #B33B17;
  --leaf-green: #4A6B3A;
  --white: #FFFFFF;
  --text-muted: #9A8F84;
  --border: rgba(212, 165, 58, 0.18);
  --shadow-gold: 0 20px 60px -20px rgba(212, 165, 58, 0.3);
  --shadow-deep: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

.display { font-family: 'Italiana', serif; font-weight: 400; letter-spacing: 0.04em; line-height: 1; }
.heavy { font-family: 'Anton', sans-serif; letter-spacing: 0.02em; text-transform: uppercase; }
.script { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 5vw;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.85) 0%, rgba(10, 9, 8, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(10, 9, 8, 0.95);
  padding: 14px 5vw;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: block;
  height: 56px;
  transition: height 0.4s ease;
  flex-shrink: 0;
}

.header.scrolled .logo { height: 46px; }

.logo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 0 30px rgba(212, 165, 58, 0.4));
  transition: filter 0.4s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 40px rgba(212, 165, 58, 0.7));
}

.nav {
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s ease;
}

.nav a:hover { color: var(--gold-light); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--gold-light); }
.nav a.active::after { width: 100%; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px -5px rgba(212, 165, 58, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px -5px rgba(212, 165, 58, 0.6);
}

.cta-btn:hover::before { left: 100%; }
.cta-btn .icon { width: 16px; height: 16px; }

.cta-btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}

.cta-btn-outline:hover { background: var(--gold); color: var(--black); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.menu-toggle svg { width: 28px; height: 28px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 5vw 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(199, 62, 29, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(212, 165, 58, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 165, 58, 0.08) 0%, transparent 12%),
    radial-gradient(circle at 85% 70%, rgba(199, 62, 29, 0.1) 0%, transparent 14%),
    radial-gradient(circle at 50% 40%, rgba(212, 165, 58, 0.04) 0%, transparent 20%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='%23D4A53A' opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3Ccircle cx='160' cy='80' r='1'/%3E%3Ccircle cx='100' cy='160' r='1.2'/%3E%3Ccircle cx='180' cy='180' r='0.8'/%3E%3Ccircle cx='20' cy='120' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-spice-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-spice-decor.spice-1 {
  top: 18%;
  left: 6%;
  width: 100px;
  height: 100px;
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.hero-spice-decor.spice-2 {
  bottom: 15%;
  left: 40%;
  width: 70px;
  height: 70px;
  opacity: 0.3;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-spice-decor.spice-3 {
  top: 30%;
  right: 8%;
  width: 80px;
  height: 80px;
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-inner {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s ease forwards;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Italiana', serif;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 30px;
  letter-spacing: 0.01em;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 0.9s ease forwards;
}

.hero-title .word.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .word.italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

.hero-title .word:nth-child(1) { animation-delay: 0.4s; }
.hero-title .word:nth-child(2) { animation-delay: 0.55s; }
.hero-title .word:nth-child(3) { animation-delay: 0.7s; }
.hero-title .word:nth-child(4) { animation-delay: 0.85s; }
.hero-title .word:nth-child(5) { animation-delay: 1.0s; }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeInUp 0.8s 1.3s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 1.5s ease forwards;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 0 12px rgba(212, 165, 58, 0.06),
    0 0 0 13px rgba(212, 165, 58, 0.4),
    0 0 0 24px rgba(212, 165, 58, 0.04),
    0 50px 120px -20px rgba(199, 62, 29, 0.45),
    var(--shadow-deep);
  animation: heroImageEnter 1.4s 0.3s ease backwards;
}

/* Rotating slides inside the hero circle */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlideRotate 24s infinite ease-in-out, heroKenBurns 24s infinite ease-in-out;
}

/* 4 slides, each shown for ~6s, with smooth crossfade */
.hero-slide:nth-child(1) { animation-delay: 0s, 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s, 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s, 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s, 18s; }

@keyframes heroSlideRotate {
  0%   { opacity: 0; }
  2%   { opacity: 1; }
  23%  { opacity: 1; }
  27%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes heroKenBurns {
  0%, 27%   { transform: scale(1) translate(0, 0); }
  13%       { transform: scale(1.08) translate(-1%, -1%); }
  100%      { transform: scale(1) translate(0, 0); }
}

/* Slide caption */
.hero-slide-captions {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: heroSlideRotate 24s infinite ease-in-out;
}

.hero-caption:nth-child(1) { animation-delay: 0s; }
.hero-caption:nth-child(2) { animation-delay: 6s; }
.hero-caption:nth-child(3) { animation-delay: 12s; }
.hero-caption:nth-child(4) { animation-delay: 18s; }

/* Slide indicators (dots) */
.hero-slide-dots {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-dot {
  width: 24px;
  height: 3px;
  background: rgba(212, 165, 58, 0.25);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.hero-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  animation: dotFill 24s infinite linear;
}

.hero-dot:nth-child(1)::after { animation-delay: 0s; }
.hero-dot:nth-child(2)::after { animation-delay: 6s; }
.hero-dot:nth-child(3)::after { animation-delay: 12s; }
.hero-dot:nth-child(4)::after { animation-delay: 18s; }

@keyframes dotFill {
  0%   { transform: translateX(-100%); }
  2%   { transform: translateX(-100%); }
  25%  { transform: translateX(0); }
  27%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.hero-decor { position: absolute; pointer-events: none; }

.hero-badge {
  position: absolute;
  bottom: 8%;
  right: -5%;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--black);
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  box-shadow: 0 20px 40px -10px rgba(212, 165, 58, 0.5);
  z-index: 3;
}

.hero-badge .num { font-size: 38px; line-height: 1; }
.hero-badge .label {
  font-size: 10px;
  letter-spacing: 0.15em;
  margin-top: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gold-dim);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Marquee */
.marquee {
  background: var(--gold);
  color: var(--black);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 50px;
}

.marquee-track .dot {
  width: 8px;
  height: 8px;
  background: var(--spice);
  border-radius: 50%;
  display: inline-block;
}

/* ===== SECTIONS ===== */
section { padding: 100px 5vw; position: relative; }
.container { max-width: 1500px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.section-title .gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

/* ===== CATEGORIES ===== */
.categories { background: var(--black); position: relative; }

.categories::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 165, 58, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(199, 62, 29, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal-2);
  transition: transform 0.5s ease;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 9, 8, 0.5) 60%, var(--black) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

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

.category-card:hover img { transform: scale(1.1); }
.category-card:hover { transform: translateY(-8px); }
.category-card:hover::after { border-color: var(--gold); }

.category-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 4;
}

.category-card .count {
  font-family: 'Italiana', serif;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: block;
}

.category-card .name {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

/* ===== FEATURED DISHES ===== */
.featured { background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%); }

.featured-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.tab {
  padding: 14px 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab.active { color: var(--gold-light); }
.tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.tab:hover { color: var(--cream); }

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

.dish-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.dish-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.dish-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dish-card:hover .dish-image img { transform: scale(1.08); }

.dish-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--spice);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
}

.dish-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dish-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.1;
}

.dish-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.dish-price {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  line-height: 1;
}

.dish-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dish-order:hover { background: var(--gold); color: var(--black); }
.dish-order svg { width: 14px; height: 14px; }

/* ===== ABOUT TEASER ===== */
.about-teaser { background: var(--black); position: relative; overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

.about-img-main {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  border: 8px solid var(--black);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-stat {
  position: absolute;
  top: -30px; left: -30px;
  background: var(--gold);
  color: var(--black);
  padding: 24px 30px;
  border-radius: 4px;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(212, 165, 58, 0.5);
}

.about-stat .num {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  line-height: 1;
}

.about-stat .label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-text p {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-text p strong { color: var(--cream); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  position: relative;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 60px; left: 5vw;
  font-family: 'Italiana', serif;
  font-size: 400px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--black);
}

.testimonial-name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== TRUCK SECTION ===== */
.truck {
  background:
    linear-gradient(135deg, rgba(10, 9, 8, 0.85) 0%, rgba(10, 9, 8, 0.65) 100%),
    var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.truck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.truck-image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}

.truck-image img { width: 100%; height: 100%; object-fit: cover; }

.truck-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 36px;
}

.truck-feature {
  background: rgba(212, 165, 58, 0.08);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.truck-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.truck-feature-text {
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ===== PILLARS ===== */
.pillars { background: var(--black); border-top: 1px solid var(--border); }

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

.pillar {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--charcoal-2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.5s ease;
}

.pillar:hover::before { width: 100%; }
.pillar:hover { transform: translateY(-8px); border-color: var(--gold); }

.pillar-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

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

.pillar-title {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 5vw;
  background: linear-gradient(135deg, var(--spice) 0%, var(--palm-red) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.05'%3E%3Cpath d='M50 5L60 35h32L67 55l10 32-27-20-27 20 10-32L8 35h32z' fill='%23000'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.cta-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: 'Italiana', serif;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.cta-banner h2 .italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

.cta-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-top: 12px;
}

.cta-banner .cta-btn {
  background: var(--white);
  color: var(--spice);
  font-size: 14px;
  padding: 18px 36px;
}

.cta-banner .cta-btn:hover { background: var(--black); color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 80px 5vw 30px;
  border-top: 1px solid var(--border);
}

.footer-inner { max-width: 1500px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img { height: 70px; margin-bottom: 24px; }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-social {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

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

.footer-heading {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--gold);
  transform: translateX(-4px);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-links a:hover::before { transform: translateX(0); opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; color: var(--white); }

/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
  padding: 180px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(212, 165, 58, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.page-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.page-header-eyebrow::before, .page-header-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.page-header-title {
  font-family: 'Italiana', serif;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.page-header-title .gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header-title .italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

.page-header-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(60px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroImageEnter {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes counterSpin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes badgeRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 20px rgba(37, 211, 102, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.75s; }

.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }

/* ===== ABOUT PAGE ===== */
.story-section { padding: 80px 5vw 100px; background: var(--black); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.story-text h3 {
  font-family: 'Italiana', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.story-text h3 .gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.story-image {
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}

.story-image img { width: 100%; height: 100%; object-fit: cover; }

.values-section {
  padding: 100px 5vw;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.value-num {
  font-family: 'Italiana', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.value-title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}

.value-text {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== MENU PAGE ===== */
.menu-filters {
  padding: 30px 5vw;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 74px;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(10, 9, 8, 0.92);
}

.menu-filters-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover { color: var(--gold-light); border-color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.menu-section { padding: 80px 5vw; background: var(--black); }

.menu-category-title {
  font-family: 'Italiana', serif;
  font-size: clamp(42px, 5vw, 68px);
  color: var(--cream);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.menu-category-title .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.4em;
  color: var(--gold);
  font-weight: 300;
}

.menu-category-title .gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-category-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 50px;
}

/* ===== BAKERY PAGE ===== */
.bakery-products { padding: 100px 5vw; background: var(--black); }

.bakery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.bakery-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}

.bakery-card:hover {
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: var(--shadow-gold);
}

.bakery-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bakery-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.7s ease;
}

.bakery-card:hover .bakery-image img { transform: scale(1.1) rotate(-5deg); }

.bakery-content {
  padding: 32px;
  text-align: center;
}

.bakery-name {
  font-family: 'Italiana', serif;
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.bakery-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.bakery-price {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--gold-bright);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 5vw 100px; background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
}

.contact-info { display: flex; flex-direction: column; gap: 30px; }

.contact-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.4s ease;
}

.contact-card:hover { border-color: var(--gold); }

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}

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

.contact-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

.contact-card-content {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

.contact-card-content strong { color: var(--cream); font-weight: 600; }
.contact-card-content a:hover { color: var(--gold-light); }

.contact-form {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 50px;
}

.contact-form-title {
  font-family: 'Italiana', serif;
  font-size: 38px;
  color: var(--cream);
  margin-bottom: 12px;
}

.contact-form-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--charcoal-3);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .category-grid, .dish-grid, .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .bakery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta-text { display: none; }
  /* Hide the header WhatsApp button on mobile — floating button covers this */
  .header-inner > .cta-btn { display: none; }

  .nav.open {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 400px);
    height: 100vh;
    overflow: auto;
    background: var(--charcoal);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 28px;
    border-left: 1px solid var(--border);
    z-index: 99;
    align-items: flex-start;
  }

  .nav.open a { font-size: 18px; }

  .hero-inner, .about-grid, .truck-grid, .story-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .logo { height: 60px; }
  .header.scrolled .logo { height: 50px; }

  .about-img-accent { width: 60%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px; }
}

@media (max-width: 600px) {
  section { padding: 70px 5vw; }
  .category-grid, .dish-grid, .pillar-grid, .bakery-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero { padding: 120px 5vw 60px; }
  .hero-image-circle { max-width: 320px; margin: 0 auto; }
  .hero-slide-captions { display: none; }
  .hero-badge { width: 100px; height: 100px; }
  .hero-badge .num { font-size: 28px; }

  .marquee-track { font-size: 18px; gap: 30px; }

  .footer { padding: 60px 5vw 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== INTERACTIVE SOLID DISH CARDS & MODAL ===== */
.dish-card.solid-card { cursor: pointer; }

.dish-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dish-select-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -4px rgba(212,165,58,0.5); }
.dish-select-btn svg { width: 14px; height: 14px; }

.dish-tag.choose-tag { background: var(--gold); color: var(--black); }

/* Modal overlay */
.solid-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 4, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.solid-modal-overlay.open { display: flex; animation: fadeIn 0.3s ease; }

.solid-modal {
  background: linear-gradient(180deg, var(--charcoal-2) 0%, var(--charcoal) 100%);
  border: 1px solid var(--gold);
  border-radius: 12px;
  max-width: 430px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  animation: modalEnter 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes modalEnter {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.solid-modal-head {
  position: relative;
  height: 150px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.solid-modal-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solid-modal-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--charcoal-2) 100%);
}

.solid-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.8);
  border: 1px solid var(--border);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
}

.solid-modal-close:hover { background: var(--spice); border-color: var(--spice); transform: rotate(90deg); }
.solid-modal-close svg { width: 20px; height: 20px; }

.solid-modal-body { padding: 22px 24px 24px; }

.solid-modal-title {
  font-family: 'Italiana', serif;
  font-size: 27px;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1;
}

.solid-modal-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.solid-option-group { margin-bottom: 18px; }

.solid-option-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solid-option-label .step {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-chip {
  padding: 9px 16px;
  background: var(--black);
  border: 1.5px solid var(--border);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.option-chip:hover { border-color: var(--gold); color: var(--gold-light); }

.option-chip.selected {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 700;
}

.solid-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.solid-modal-price {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--gold-bright);
  line-height: 1;
}

.solid-modal-order {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  background: #25D366;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solid-modal-order:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.6);
}

.solid-modal-order:disabled {
  background: var(--charcoal-3);
  color: var(--text-muted);
  cursor: not-allowed;
}

.solid-modal-order svg { width: 18px; height: 18px; }

.solid-modal-hint {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--spice-glow);
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

/* ===== VISIT / WALK-IN RESTAURANT SECTION ===== */
.visit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.visit-tag {
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 165, 58, 0.06);
}

.visit-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.visit-address svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-address strong {
  color: var(--cream);
  font-family: 'Italiana', serif;
  font-size: 18px;
  letter-spacing: 0.03em;
}

/* Extra-charge note in solid modal */
.solid-extra-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--gold-light);
  margin-top: 10px;
}

/* "Optional" tag on the extra step */
.optional-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px 9px;
  margin-left: 4px;
}

/* ===== MOBILE MENU FILTER DROPDOWN ===== */
.menu-filter-select {
  display: none;
  width: 100%;
  padding: 14px 44px 14px 18px;
  background: var(--charcoal-2);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* gold chevron */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E8C547' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.menu-filter-select:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(212, 165, 58, 0.18);
}

.menu-filter-select option {
  background: var(--charcoal-2);
  color: var(--cream);
  font-weight: 600;
}

/* On mobile: swap the pill row for the dropdown */
@media (max-width: 600px) {
  .menu-filters-inner { display: none; }
  .menu-filter-select { display: block; }
  .menu-filters { padding-top: 14px; padding-bottom: 14px; }

  /* Hero eyebrow — keep it on one line so the rules sit close to the text */
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 0.16em;
    gap: 9px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    width: 22px;
  }
}
