/* =============================================
   BIRYANI PANDA – Global Styles
   ============================================= */

:root {
  /* Warm food-oriented palette */
  --cream:        #FAF7F2;
  --cream-dark:   #F5EFE4;
  --parchment:    #EDE4D4;
  --parchment-dark: #DDD0B8;
  --ink:          #1C1209;
  --ink-mid:      #3D2B1A;
  --ink-light:    #6B4C2A;
  --saffron:      #E8952A;
  --saffron-light:#F5B955;
  --saffron-dark: #C4751A;
  --spice:        #C0392B;
  --spice-dark:   #96281B;
  --spice-light:  #E74C3C;
  --turmeric:     #D4A017;
  --cardamom:     #4A7C59;
  /* keep these for backwards compat */
  --charcoal:     #1C1209;
  --charcoal-light: #2E1E0E;
  --charcoal-mid: #3D2B1A;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ── Tailwind CDN cannot generate opacity-modifier utilities for custom
   colors. Define them explicitly here so text/bg/border are always visible. ── */

/* text-ink variants */
.text-ink    { color: #1C1209; }
.text-ink\/10 { color: rgba(28,18,9,0.10); }
.text-ink\/20 { color: rgba(28,18,9,0.20); }
.text-ink\/30 { color: rgba(28,18,9,0.30); }
.text-ink\/40 { color: rgba(28,18,9,0.40); }
.text-ink\/45 { color: rgba(28,18,9,0.45); }
.text-ink\/50 { color: rgba(28,18,9,0.55); }
.text-ink\/55 { color: rgba(28,18,9,0.55); }
.text-ink\/60 { color: rgba(28,18,9,0.62); }
.text-ink\/70 { color: rgba(28,18,9,0.70); }
.text-ink\/80 { color: rgba(28,18,9,0.80); }

/* text-saffron variants */
.text-saffron        { color: #E8952A; }
.text-saffron-dark   { color: #C4751A; }
.text-saffron-light  { color: #F5B955; }
.text-saffron\/60    { color: rgba(232,149,42,0.70); }
.text-saffron\/70    { color: rgba(232,149,42,0.80); }

/* text-spice variants */
.text-spice          { color: #C0392B; }
.text-spice-light    { color: #E74C3C; }
.text-spice-dark     { color: #96281B; }

/* text-cardamom */
.text-cardamom       { color: #4A7C59; }

/* bg-ink variants */
.bg-ink      { background-color: #1C1209; }
.bg-ink\/5   { background-color: rgba(28,18,9,0.05); }
.bg-ink\/8   { background-color: rgba(28,18,9,0.08); }
.bg-ink\/10  { background-color: rgba(28,18,9,0.10); }

/* bg-saffron variants */
.bg-saffron          { background-color: #E8952A; }
.bg-saffron-dark     { background-color: #C4751A; }
.bg-saffron-light    { background-color: #F5B955; }
.bg-saffron\/10      { background-color: rgba(232,149,42,0.10); }
.bg-saffron\/20      { background-color: rgba(232,149,42,0.20); }
.bg-saffron\/30      { background-color: rgba(232,149,42,0.30); }

/* bg-spice variants */
.bg-spice            { background-color: #C0392B; }
.bg-spice-light      { background-color: #E74C3C; }
.bg-spice-dark       { background-color: #96281B; }
.bg-spice\/8         { background-color: rgba(192,57,43,0.08); }
.bg-spice\/10        { background-color: rgba(192,57,43,0.10); }
.bg-spice\/20        { background-color: rgba(192,57,43,0.20); }

/* bg-cardamom variants */
.bg-cardamom         { background-color: #4A7C59; }
.bg-cardamom\/10     { background-color: rgba(74,124,89,0.10); }

/* bg-cream variants */
.bg-cream            { background-color: #FAF7F2; }
.bg-cream-dark       { background-color: #F5EFE4; }
.bg-cream\/95        { background-color: rgba(250,247,242,0.95); }
.bg-cream\/98        { background-color: rgba(250,247,242,0.98); }

/* bg-parchment */
.bg-parchment        { background-color: #EDE4D4; }
.bg-parchment-dark   { background-color: #DDD0B8; }

/* border-ink variants */
.border-ink\/8       { border-color: rgba(28,18,9,0.08); }
.border-ink\/10      { border-color: rgba(28,18,9,0.10); }
.border-ink\/15      { border-color: rgba(28,18,9,0.15); }
.border-ink\/20      { border-color: rgba(28,18,9,0.20); }
.\[0\.06\]           { border-color: rgba(28,18,9,0.06); }
.border-ink\/\[0\.06\] { border-color: rgba(28,18,9,0.06); }

/* border-saffron variants */
.border-saffron\/20  { border-color: rgba(232,149,42,0.20); }
.border-saffron\/30  { border-color: rgba(232,149,42,0.30); }
.border-saffron\/40  { border-color: rgba(232,149,42,0.40); }

/* border-spice variants */
.border-spice\/15    { border-color: rgba(192,57,43,0.15); }
.border-spice\/40    { border-color: rgba(192,57,43,0.40); }

/* border-cardamom */
.border-cardamom\/20 { border-color: rgba(74,124,89,0.20); }

/* hover variants - bg */
.hover\:bg-saffron\/10:hover { background-color: rgba(232,149,42,0.10); }
.hover\:bg-saffron\/20:hover { background-color: rgba(232,149,42,0.20); }
.hover\:bg-saffron-light:hover { background-color: #F5B955; }
.hover\:bg-spice-light:hover   { background-color: #E74C3C; }
.hover\:text-saffron-dark:hover { color: #C4751A; }
.hover\:text-saffron:hover      { color: #E8952A; }
.hover\:text-spice:hover        { color: #C0392B; }
.hover\:border-saffron\/20:hover { border-color: rgba(232,149,42,0.20); }
.hover\:border-saffron\/30:hover { border-color: rgba(232,149,42,0.30); }
.hover\:border-saffron\/40:hover { border-color: rgba(232,149,42,0.40); }

/* gradient-to variants using custom colors */
.from-saffron\/5  { --tw-gradient-from: rgba(232,149,42,0.05); }
.from-saffron\/10 { --tw-gradient-from: rgba(232,149,42,0.10); }
.from-saffron\/20 { --tw-gradient-from: rgba(232,149,42,0.20); }
.from-saffron\/30 { --tw-gradient-from: rgba(232,149,42,0.30); }
.from-spice\/20   { --tw-gradient-from: rgba(192,57,43,0.20); }
.from-spice\/30   { --tw-gradient-from: rgba(192,57,43,0.30); }
.to-saffron\/5    { --tw-gradient-to: rgba(232,149,42,0.05); }
.to-saffron\/10   { --tw-gradient-to: rgba(232,149,42,0.10); }
.to-spice\/30     { --tw-gradient-to: rgba(192,57,43,0.30); }

/* shadow custom color variants */
.shadow-saffron\/8  { --tw-shadow-color: rgba(232,149,42,0.08); }
.shadow-saffron\/10 { --tw-shadow-color: rgba(232,149,42,0.10); }
.shadow-saffron\/30 { --tw-shadow-color: rgba(232,149,42,0.30); }
.shadow-spice\/40   { --tw-shadow-color: rgba(192,57,43,0.40); }

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: auto;
}

body.custom-cursor {
  cursor: none;
}

/* ── Custom Cursor ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(244, 162, 97, 0.5);
  border-radius: 50%;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--saffron);
}

/* ── Noise Overlay ── */
.noise-overlay {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Nav ── */
#navbar { transition: all 0.4s ease; }

.nav-blur {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 4, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,149,42,0.12);
  transition: all 0.4s ease;
  z-index: -1;
}

.nav-blur.active {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28,18,9,0.08);
  box-shadow: 0 2px 24px rgba(28,18,9,0.08);
}

/* Nav links – white on dark nav */
.nav-link {
  color: rgba(255,255,255,0.75) !important;
  transition: color 0.25s ease;
}
.nav-link:hover {
  color: #E8952A !important;
}

/* Nav links – dark on white scrolled nav */
#navbar.is-scrolled .nav-link {
  color: rgba(28,18,9,0.65) !important;
}
#navbar.is-scrolled .nav-link:hover {
  color: #C4751A !important;
}
#navbar.is-scrolled .nav-link.\!text-saffron {
  color: #C4751A !important;
}

/* Logo – transparent on dark nav via screen blend mode */
.logo-pill {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.logo-pill img {
  mix-blend-mode: screen;
  filter: brightness(1.05) contrast(1.05);
  transition: filter 0.3s ease, mix-blend-mode 0.3s ease;
}
.logo-pill:hover img {
  filter: brightness(1.15) contrast(1.1) drop-shadow(0 0 8px rgba(232,149,42,0.5));
}
/* Logo on white nav – disable screen blend so it renders correctly */
#navbar.is-scrolled .logo-pill img {
  mix-blend-mode: normal;
  filter: brightness(1) contrast(1);
}

/* Mobile hamburger – white lines on dark nav */
.nav-hamburger span {
  background: rgba(255,255,255,0.85) !important;
}
/* Hamburger – dark lines on white scrolled nav */
#navbar.is-scrolled .nav-hamburger span {
  background: rgba(28,18,9,0.75) !important;
}

/* ── Locomotive Scroll ── */
html.has-scroll-smooth { overflow: hidden; }
html.has-scroll-dragging { user-select: none; }
.has-scroll-smooth body { overflow: hidden; }
.has-scroll-smooth [data-scroll-container] { min-height: 100vh; }

/* ── Hero Section ── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,18,9,0.25) 0%,
    rgba(28,18,9,0.50) 40%,
    rgba(28,18,9,0.82) 80%,
    rgba(250,247,242,1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}

/* ── Typography ── */
.font-playfair { font-family: 'Playfair Display', serif; }

.display-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-text-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 11vw, 12rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--saffron-dark);
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 50%, var(--spice) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--spice);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 60px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--spice-light), var(--spice));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 20px 40px rgba(192,57,43,0.35); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border: 1.5px solid rgba(28,18,9,0.25);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 60px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-outline:hover { border-color: var(--saffron-dark); color: var(--saffron-dark); transform: translateY(-2px); }

/* ── Rice Grain Particles ── */
.rice-grain {
  position: absolute;
  width: 3px;
  height: 8px;
  background: rgba(244, 162, 97, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Dish Cards ── */
.dish-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28,18,9,0.08);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s ease;
  cursor: auto;
}

body.custom-cursor .dish-card {
  cursor: none;
}

.dish-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(28,18,9,0.18), 0 0 0 1px rgba(232,149,42,0.25);
}

.dish-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

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

.dish-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,18,9,0.90) 0%, rgba(28,18,9,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dish-card:hover .dish-card-overlay { opacity: 1; }

/* Steam Effect on Cards */
.steam-effect {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dish-card:hover .steam-effect { opacity: 1; }

.steam-line {
  position: absolute;
  bottom: 0;
  width: 3px;
  border-radius: 50%;
  background: linear-gradient(to top, rgba(255,255,255,0.3), transparent);
  animation: steam-rise 2s ease-out infinite;
}

@keyframes steam-rise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  100% { transform: translateY(-80px) scaleX(2); opacity: 0; }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: auto;
}

body.custom-cursor .gallery-item {
  cursor: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,18,9,0.80) 0%, rgba(232,149,42,0.10) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

/* Masonry Layout */
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; height: 450px; }
.gallery-item:nth-child(2) { grid-column: span 4; height: 215px; }
.gallery-item:nth-child(3) { grid-column: span 3; height: 215px; }
.gallery-item:nth-child(4) { grid-column: span 4; height: 215px; }
.gallery-item:nth-child(5) { grid-column: span 3; height: 215px; }
.gallery-item:nth-child(6) { grid-column: span 4; height: 280px; }
.gallery-item:nth-child(7) { grid-column: span 4; height: 280px; }
.gallery-item:nth-child(8) { grid-column: span 4; height: 280px; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item:nth-child(n) { grid-column: span 1; height: 180px; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 260px; }
}

/* ── Story Steps ── */
.story-step {
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}

.story-number {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(244,162,97,0.08);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
  pointer-events: none;
}

/* ── Offers Cards ── */
.offer-card {
  background: linear-gradient(135deg, #fff, var(--cream-dark));
  border: 1px solid rgba(28,18,9,0.08);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--saffron), var(--spice));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.offer-card:hover { transform: translateY(-6px); }
.offer-card:hover::before { opacity: 0.15; }

.offer-card-glow {
  box-shadow: 0 0 0 rgba(244,162,97,0);
  transition: box-shadow 0.4s ease;
}

.offer-card:hover .offer-card-glow,
.offer-card:hover { box-shadow: 0 0 40px rgba(232,149,42,0.18), 0 20px 60px rgba(28,18,9,0.12); }

/* ── Reviews ── */
.reviews-swiper .swiper-wrapper {
  align-items: stretch !important;
}
.reviews-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(28,18,9,0.07);
  border-radius: 16px;
  padding: 28px;
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #3D2B1A;
  box-sizing: border-box;
}
.review-card p {
  color: #5A3E28;
}
.review-card .reviewer-name {
  color: #1C1209;
  font-weight: 600;
}
.review-card .reviewer-city {
  color: rgba(28,18,9,0.45);
}

/* ── Video Section ── */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,18,9,0.85) 0%, rgba(28,18,9,0.35) 50%, transparent 100%);
  z-index: 1;
}

/* ── Location Pin ── */
@keyframes pinGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(230, 57, 70, 0.5); }
  50% { box-shadow: 0 0 35px rgba(230, 57, 70, 0.9), 0 0 60px rgba(230, 57, 70, 0.3); }
}

.location-pin {
  animation: pinGlow 2s ease-in-out infinite;
}

/* ── Menu Filter Tabs ── */
.filter-tab {
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(28,18,9,0.15);
  color: var(--ink-light);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: #fff;
}

.filter-tab:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.filter-tab.active { background: var(--spice); border-color: var(--spice); color: #fff; font-weight: 700; }

/* ── Menu Cards ── */
.menu-card {
  background: #fff;
  border: 1px solid rgba(28,18,9,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.menu-card:hover {
  border-color: rgba(232,149,42,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(28,18,9,0.12);
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img { transform: scale(1.05); }

/* ── CTA Section ── */
.cta-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.08) 0%, transparent 70%),
              linear-gradient(to bottom, var(--parchment), var(--cream-dark));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,149,42,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Platform Buttons ── */
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.platform-btn.swiggy { background: #FC8019; color: #fff; }
.platform-btn.swiggy:hover { box-shadow: 0 0 30px rgba(252,128,25,0.4); transform: translateY(-2px); }
.platform-btn.zomato { background: #E23744; color: #fff; }
.platform-btn.zomato:hover { box-shadow: 0 0 30px rgba(226,55,68,0.4); transform: translateY(-2px); }
.platform-btn.whatsapp { background: #25D366; color: #fff; }
.platform-btn.whatsapp:hover { box-shadow: 0 0 30px rgba(37,211,102,0.4); transform: translateY(-2px); }

/* ── Map Container ── */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(28,18,9,0.10);
  height: 300px;
}

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(50px); }
.reveal.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }

/* ── Sticky Order Button ── */
.sticky-order-btn {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(230,57,70,0.4); }
  50% { box-shadow: 0 0 40px rgba(230,57,70,0.7), 0 0 60px rgba(230,57,70,0.3); }
}

/* ── Swiper Overrides ── */
.swiper-pagination-bullet { background: rgba(255,255,255,0.3) !important; }
.swiper-pagination-bullet-active { background: var(--saffron) !important; }

/* ── Three.js Canvas ── */
#three-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

/* ── Section Separator ── */
.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--saffron), var(--spice));
}

/* ── Parallax Elements ── */
[data-parallax] { will-change: transform; }

/* ── Image Placeholder (used when no real image) ── */
.food-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Shimmer loading effect */
.shimmer {
  background: linear-gradient(90deg, var(--parchment) 25%, var(--cream-dark) 50%, var(--parchment) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Marquee ── */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
  gap: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--saffron), var(--spice));
  z-index: 100;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .display-text { font-size: clamp(2.5rem, 12vw, 4rem); }
  .display-text-xl { font-size: clamp(3rem, 14vw, 5rem); }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Page Transition ── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  pointer-events: none;
}

/* ── Divider ── */
.fancy-divider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fancy-divider::before,
.fancy-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,149,42,0.4), transparent);
}

/* ── Google Map Fake (Placeholder) ── */
.map-placeholder {
  background: linear-gradient(135deg, var(--parchment) 0%, var(--parchment-dark) 50%, #cfc0a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

