/* ═══════════════════════════════════════════════════════════════
   RETRO 7/11 CAFE — ULTRA PREMIUM 2025 REDESIGN
   Rich Terracotta · Warm Ivory · Editorial Glassmorphism
   Inspired by % Arabica · Blue Tokai · Bombay Canteen · Taj Hotels
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* ──────────────────────────────────────────────
     SIGNATURE PALETTE — Aesthetic Coffee Shop
     Warm Cocoa & Roasted Copper Cafe Vibe.
  ────────────────────────────────────────────── */

  /* Backgrounds */
  --bg:           #FAF7F2; /* Oyster Cream */
  --bg2:          #FFFFFF; /* Alpine White */
  --bg3:          #F4EEE5; /* Warm Latte Froth */
  --bg-espresso:  #F4EEE5;
  --bg-espresso2: #FFFFFF;

  /* Signature Vibe Colors - Cocoa & Copper */
  --gold:         #6F4E37; /* Artisan Coffee Brown */
  --gold2:        #4A3525; /* Dark Roast Cocoa */
  --gold-lt:      #C68B59; /* Roasted Copper */
  --gold-grad:    linear-gradient(135deg, #6F4E37 0%, #4A3525 100%);
  --champagne:    #E6DFD5; /* Latte Froth Sand */

  /* Typography */
  --text:         #4A3525; /* Cocoa text */
  --muted:        rgba(74, 53, 37, 0.60);

  /* Borders — warm tinted, clean */
  --border:       rgba(74, 53, 37, 0.08);

  /* Glass — cozy frosted glass for glassmorphism */
  --glass:        rgba(255, 255, 255, 0.76);

  --f-serif:  'Playfair Display', serif;
  --f-sans:   'Plus Jakarta Sans', system-ui, sans-serif;
  --f-hero:   'Playfair Display', serif;

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --t:        0.5s;
  --tf:       0.28s;
  --r:        14px;
  --rl:       22px;
  --pill:     999px;
}

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

/* ── NEXT-LEVEL BESPOKE DECORATIONS ── */
.glass-card-glow, .menu-feature-card, .jukebox, .rv-card, .cf-card, .ci-card-new, .about-img {
  position: relative;
  overflow: hidden;
}
.glass-card-glow::before, .menu-feature-card::before, .jukebox::before, .rv-card::before, .cf-card::before, .ci-card-new::before, .about-img::before {
  content: '';
  position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  transition: 0.85s var(--ease);
  z-index: 5;
  pointer-events: none;
}
.glass-card-glow:hover::before, .menu-feature-card:hover::before, .jukebox:hover::before, .rv-card:hover::before, .cf-card:hover::before, .ci-card-new:hover::before, .about-img:hover::before {
  left: 125%;
}

/* Concentric Vinyl Grooves Backing */
.about-sec, .experience-sec, .menu-sec {
  background-image:
    radial-gradient(circle, transparent 65%, rgba(74, 53, 37,0.04) 66%, transparent 68%),
    radial-gradient(circle, transparent 45%, rgba(74, 53, 37,0.025) 46%, transparent 48%),
    radial-gradient(circle, transparent 25%, rgba(74, 53, 37,0.015) 26%, transparent 28%);
  background-size: 800px 800px;
  background-position: center;
}

.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  background: linear-gradient(135deg, rgba(198, 139, 89, 0.12) 0%, rgba(198, 139, 89, 0.02) 100%);
  border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: 4px;
  color: var(--gold2);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(74, 53, 37,0.06);
  background: var(--bg);
}
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb {
  background: var(--gold-grad);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(74, 53, 37,0.35);
}

body {
  font-family: var(--f-sans);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--bg);
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03; /* Ultra-subtle terracotta leaf/branch texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath d='M20,10 C35,15 45,35 40,55 C35,75 15,85 10,75 C5,65 5,45 15,35 Z' fill='none' stroke='%236f4e37' stroke-width='0.8'/%3E%3Cpath d='M30,30 L10,50' stroke='%236f4e37' stroke-width='0.6'/%3E%3Ccircle cx='40' cy='30' r='2' fill='%236f4e37'/%3E%3Ccircle cx='45' cy='35' r='2.5' fill='%236f4e37'/%3E%3Cpath d='M100,80 C115,85 125,105 120,125 C115,145 95,155 90,145 C85,135 85,115 95,105 Z' fill='none' stroke='%236f4e37' stroke-width='0.8'/%3E%3Cpath d='M110,100 L90,120' stroke='%236f4e37' stroke-width='0.6'/%3E%3Ccircle cx='120' cy='100' r='2' fill='%236f4e37'/%3E%3Ccircle cx='125' cy='105' r='2.5' fill='%236f4e37'/%3E%3C/svg%3E");
  background-size: 320px 320px;
}

/* Ambient luxury glows in sections */
.about-sec::after, .experience-sec::after, .menu-sec::after, .contact-sec::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 139, 89, 0.09) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 10s infinite alternate ease-in-out;
}
.about-sec::after     { top: 15%; right: -100px; animation-delay: 0s; background: radial-gradient(circle, rgba(74, 53, 37,0.08) 0%, transparent 70%); }
.experience-sec::after { bottom: 10%; left: -100px; animation-delay: 2s; background: radial-gradient(circle, rgba(74, 53, 37,0.06) 0%, transparent 70%); }
.menu-sec::after       { top: 30%; right: -50px; animation-delay: 4s; background: radial-gradient(circle, rgba(74, 53, 37,0.08) 0%, transparent 70%); }
.contact-sec::after    { bottom: 15%; left: 0; animation-delay: 1s; }

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  100% { transform: scale(1.15) translate(30px, -20px); opacity: 1; }
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Scroll Progress Bar ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, #1E2530, #D69E8C, #1E2530);
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
  width: 0; transition: width .1s linear;
  box-shadow: 0 0 12px rgba(74, 53, 37,0.50);
}
@keyframes shimmerBar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Toast ── */
#toast-container {
  position: fixed; top: 1.5rem; right: 1.5rem;
  z-index: 99999; display: flex; flex-direction: column; gap: .6rem;
}
.toast {
  background: rgba(255,254,251,0.96); border: 1px solid rgba(198, 139, 89, 0.16);
  backdrop-filter: blur(24px) saturate(160%); padding: .9rem 1.4rem;
  border-radius: var(--r); color: var(--text);
  display: flex; align-items: center; gap: .7rem;
  box-shadow: 0 8px 32px rgba(74, 53, 37,0.10);
  transform: translateX(120%);
  animation: toastIn .35s var(--ease) forwards;
  min-width: 250px; max-width: 360px; font-size: .86rem;
}
.toast.success { border-left: 3px solid var(--gold); }
.toast.success i { color: var(--gold); }
.toast.error   { border-left: 3px solid #f87171; }
.toast.error i { color: #f87171; }
.toast.fade-out { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn  { to { transform: translateX(0); } }
@keyframes toastOut { to { transform: translateX(120%); opacity: 0; } }

/* ── Utils ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.text-center { text-align: center; }

.eyebrow-tag {
  display: inline-block; font-family: var(--f-sans);
  font-size: .68rem; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  padding: .3rem 1.1rem; border: 1px solid rgba(74, 53, 37,0.18);
  border-radius: var(--pill); margin-bottom: 1.1rem;
  background: rgba(74, 53, 37,0.06);
}

.sec-title {
  font-family: var(--f-serif); font-size: 3.5rem;
  font-weight: 400; line-height: 1.1; color: var(--text);
  margin-bottom: 1.2rem; letter-spacing: -.5px;
}
.sec-title em { font-style: italic; color: var(--gold); }

.sec-desc {
  color: var(--muted); font-size: 1rem; max-width: 580px;
  margin: 0 auto 3rem; line-height: 1.8;
}
.sec-head { margin-bottom: .5rem; }

.sub-head {
  font-family: var(--f-serif); font-size: 2rem; font-weight: 500;
  color: var(--text); display: flex; align-items: center;
  justify-content: center; gap: .6rem;
  margin: 5rem 0 2.5rem; text-align: center;
}
.sub-head i { color: var(--gold); font-size: 1.4rem; }

/* ── Reveal ── */
/* ── Reveal Animations (Enhanced) ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Directional variants */
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(50px);  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-scale { opacity: 0; transform: scale(0.9);        transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.revealed, .reveal-right.revealed, .reveal-scale.revealed { opacity: 1; transform: none; }

/* Stagger delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ══════════════ BUTTONS ══════════════ */
.pill-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2.2rem; border-radius: var(--pill);
  font-family: var(--f-sans); font-size: .75rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  transition: all var(--t) var(--ease); cursor: pointer;
}
.pill-btn--gold {
  background: var(--gold-grad);
  color: #fff; border: none;
  box-shadow: 0 6px 28px rgba(74, 53, 37,0.42);
  letter-spacing: 2.5px;
}
.pill-btn--gold:hover {
  background: linear-gradient(135deg, #1E2530 0%, #0E1218 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(74, 53, 37,0.58);
}
.pill-btn--ghost {
  background: rgba(255,254,251,0.60);
  color: var(--text);
  border: 1.5px solid rgba(74, 53, 37,0.20);
  backdrop-filter: blur(12px);
}
.pill-btn--ghost:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(74, 53, 37,0.06);
  transform: translateY(-2px);
}

/* Gold Sweeping Shine Button Animations */
.pill-btn--gold, .submit-btn, .whatsapp-btn, .whatsapp-share-btn {
  position: relative;
  overflow: hidden;
}
.pill-btn--gold::after, .submit-btn::after, .whatsapp-btn::after, .whatsapp-share-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: none;
}
.pill-btn--gold:hover::after, .submit-btn:hover::after, .whatsapp-btn:hover::after, .whatsapp-share-btn:hover::after {
  animation: sweepShine 0.85s ease-out;
}
@keyframes sweepShine {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* ══════════════ HEADER / NAV ══════════════ */
#header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; transition: all var(--t) var(--ease);
}
#header.scrolled {
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(36px) saturate(200%);
  -webkit-backdrop-filter: blur(36px) saturate(200%);
  box-shadow: 0 4px 48px rgba(74, 53, 37,0.08), 0 1px 0 rgba(74, 53, 37,0.06);
  border-bottom: 1px solid rgba(74, 53, 37,0.08);
}

.nav {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 2.5rem; height: 82px;
  max-width: 1400px; margin: 0 auto;
}
.nav-left  { display: flex; align-items: center; gap: 1rem; }
.nav-right { display: flex; align-items: center; gap: 1rem; justify-content: flex-end; }

.nav-social {
  width: 36px; height: 36px; border-radius: var(--pill);
  background: rgba(28,30,36,0.02); border: 1px solid rgba(198, 139, 89, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .95rem;
  transition: all var(--tf) ease;
}
.nav-social:hover { color: var(--gold); border-color: var(--border); background: rgba(198, 139, 89,0.08); }

.nav-logo { text-align: center; line-height: 1; }
.logo-script {
  display: block; font-family: var(--f-serif); font-size: 2rem;
  font-weight: 400; font-style: italic; color: var(--gold);
  letter-spacing: .5px;
}
.logo-sub {
  display: block; font-family: var(--f-sans); font-size: .55rem;
  letter-spacing: 4px; color: var(--muted); margin-top: 1px;
}

.nav-pill {
  padding: .55rem 1.4rem; border-radius: var(--pill);
  font-size: .72rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; transition: all var(--tf) ease;
  border: 1px solid rgba(74, 53, 37,0.15); color: var(--muted);
  position: relative;
}
.nav-pill::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; width: 0; height: 1px;
  background-color: var(--gold);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}
.nav-pill:hover::after { width: 60%; left: 20%; }
.nav-pill:hover { border-color: var(--gold); color: var(--gold); }
.nav-pill--gold {
  background: var(--gold-grad); color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px rgba(74, 53, 37,0.38);
}
.nav-pill--gold:hover {
  background: linear-gradient(135deg, #1E2530, #0E1218);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(74, 53, 37,0.50);
}

.burger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--gold); border-radius: 2px; transition: all var(--tf) ease; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ── Premium Mobile Nav ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: rgba(250, 248, 245, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  opacity: 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(74,53,37,0.12);
}
.mobile-nav.open {
  display: flex;
  max-height: 600px;
  opacity: 1;
}

.mob-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.5rem 1.8rem;
  gap: 0.3rem;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.25s ease;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  position: relative;
}
.mob-link i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
.mob-link:hover, .mob-link:active {
  color: var(--gold);
  background: rgba(212,175,85,0.07);
  border-color: rgba(212,175,85,0.15);
  transform: translateX(4px);
}

.mob-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 0.6rem 0;
  opacity: 0.5;
}

.mob-nav-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.5rem 1rem 0;
  padding: 0.95rem;
  background: var(--gold);
  color: #fff;
  border-radius: var(--pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(198, 139, 89,0.3);
}
.mob-nav-book:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(198, 139, 89,0.4); }

/* ══════════════ HERO CAFENA SPLIT REDESIGN ══════════════ */
.hero-cafena {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: 80px;
}
.hero-cafena-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 5;
}
.hero-cafena-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-cafena-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.cafena-line {
  width: 32px;
  height: 1.5px;
  background: var(--gold-lt);
  display: inline-block;
}
.hero-cafena-title {
  font-family: var(--f-hero);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold2);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.hero-cafena-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-cafena-btns {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

/* Cafena Counters */
.hero-cafena-stats {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.cafena-stat {
  display: flex;
  flex-direction: column;
}
.c-stat-num {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.c-stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
  font-weight: 600;
}
.cafena-stat-sep {
  width: 1.5px;
  height: 36px;
  background: var(--border);
}

/* Right Side - Dynamic 3D Image Blob */
.hero-cafena-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-cafena-graphic {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cafena-blob {
  width: 92%;
  height: 92%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 
    0 30px 80px rgba(74, 53, 37, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: blobMorph 8s ease-in-out infinite alternate, floatCup 6s ease-in-out infinite;
  background: var(--bg2);
}
.hero-cafena-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.hero-cafena-blob:hover img {
  transform: scale(1.1);
}

/* Floating beans */
.floating-bean {
  position: absolute;
  color: var(--gold-lt);
  font-size: 1.1rem;
  opacity: 0.75;
  filter: drop-shadow(0 4px 8px rgba(74,53,37,0.15));
  animation: floatCup 5s ease-in-out infinite alternate;
}
.bean-1 { top: 10%; left: 8%; animation-delay: 0.2s; }
.bean-2 { bottom: 15%; right: 5%; animation-delay: 0.7s; font-size: 1.3rem; }
.bean-3 { bottom: 12%; left: 12%; animation-delay: 1.2s; }

/* Sketches */
.hero-sketch {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  pointer-events: none;
  opacity: 0.26;
  z-index: 1;
}
.hero-sketch--left {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='240' viewBox='0 0 160 240'%3E%3Cpath d='M10,20 C30,35 45,60 40,90 C35,120 15,135 10,120 C5,105 5,75 15,60 Z' fill='none' stroke='%23c68b59' stroke-width='0.8'/%3E%3Cpath d='M25,50 L5,80' stroke='%23c68b59' stroke-width='0.6'/%3E%3Ccircle cx='35' cy='50' r='2' fill='%23c68b59'/%3E%3Ccircle cx='40' cy='58' r='2.5' fill='%23c68b59'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.hero-sketch--right {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='240' viewBox='0 0 160 240'%3E%3Cpath d='M120,80 C140,95 150,120 145,150 C140,180 120,195 115,180 C110,165 110,135 120,120 Z' fill='none' stroke='%23c68b59' stroke-width='0.8'/%3E%3Cpath d='M135,110 L115,140' stroke='%23c68b59' stroke-width='0.6'/%3E%3Ccircle cx='145' cy='110' r='2' fill='%23c68b59'/%3E%3Ccircle cx='150' cy='118' r='2.5' fill='%23c68b59'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

/* Animations */
@keyframes blobMorph {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 45% 55% 45% 55% / 50% 50% 50% 50%; }
  100% { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
}
@keyframes floatCup {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Responsive Cafena Hero */
@media (max-width: 900px) {
  .hero-cafena {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .hero-cafena-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-cafena-left {
    align-items: center;
  }
  .hero-cafena-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cafena-btns {
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  .hero-cafena-stats {
    justify-content: center;
  }
  .hero-cafena-right {
    order: -1;
  }
  .hero-cafena-graphic {
    max-width: 320px;
    height: 320px;
  }
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .62rem; letter-spacing: 3px;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(74, 53, 37,0.30);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-dot {
  width: 3px; height: 6px; border-radius: 2px; background: var(--gold);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0%{transform:translateY(0);opacity:1} 75%{transform:translateY(9px);opacity:0} 100%{transform:translateY(0);opacity:1} }

/* ══════════════ STRIP ══════════════ */
.strip {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(198, 139, 89, 0.16);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  position: relative; z-index: 5;
  margin-top: -42px; /* Pulls it up to overlap the Hero bottom */
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  box-shadow: 
    0 24px 64px rgba(74, 53, 37, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: all 0.4s var(--ease);
}
.strip:hover {
  box-shadow: 
    0 32px 80px rgba(74, 53, 37, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}
.strip-inner {
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 0.5rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  transition: all 0.35s var(--ease);
  cursor: default;
}
.strip-item:hover {
  background: rgba(198, 139, 89, 0.08);
}
.strip-item i {
  color: var(--gold-lt);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}
.strip-item:hover i {
  transform: scale(1.22) rotate(10deg);
  color: var(--gold);
}
.strip-item span {
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.strip-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ══════════════ ABOUT ══════════════ */
.about-sec {
  padding: 10rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: grayscale(1) brightness(1.1) blur(1px);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(252, 251, 249, 0.4) 0%, var(--bg) 100%);
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  position: relative;
  z-index: 1;
}
.about-imgs {
  position: relative;
  height: 520px;
}
/* A background decorative dashed panel floating behind the main image */
.about-imgs::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 72%;
  height: 88%;
  border: 1.5px dashed var(--gold-lt);
  border-radius: var(--rl);
  z-index: 1;
  pointer-events: none;
  opacity: 0.65;
}
.about-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--rl);
  transition: all 0.5s var(--ease);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-img--main {
  width: 72%; height: 88%; top: 0; left: 0; z-index: 2;
  border: 1px solid rgba(198, 139, 89, 0.16);
  box-shadow: 0 20px 50px rgba(74, 53, 37, 0.08);
}
.about-img--side {
  width: 55%; height: 55%; right: 0; bottom: 0; z-index: 3;
  border: 1px solid rgba(198, 139, 89, 0.16);
  box-shadow: 0 20px 50px rgba(74, 53, 37, 0.08);
}
.about-imgs:hover .about-img--main img {
  transform: scale(1.05);
}
.about-imgs:hover .about-img--side img {
  transform: scale(1.08) rotate(-1deg);
}
.about-imgs:hover .about-img--side {
  transform: translateY(-6px) translateX(-6px);
}
.about-imgs:hover .about-img--main {
  transform: translateY(3px) translateX(3px);
}

.about-badge {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--gold); color: #fff;
  border-radius: var(--pill); padding: .6rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(198, 139, 89, 0.25);
}
.badge-num { display: block; font-family: var(--f-serif); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.badge-txt { display: block; font-size: .6rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px; }

.about-content {
  display: flex;
  flex-direction: column;
  background: rgba(255, 254, 251, 0.75);
  backdrop-filter: blur(36px) saturate(200%);
  -webkit-backdrop-filter: blur(36px) saturate(200%);
  border: 1px solid rgba(74, 53, 37,0.10);
  border-radius: var(--rl);
  padding: 3rem;
  box-shadow:
    0 24px 64px rgba(74, 53, 37,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transition: all 0.45s var(--ease);
}
.about-content:hover {
  transform: translateY(-7px);
  border-color: rgba(74, 53, 37,0.22);
  box-shadow:
    0 40px 80px rgba(74, 53, 37,0.14),
    inset 0 1px 0 #FFFFFF;
}
.about-content p { color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; font-size: .98rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.35s var(--ease);
  box-shadow: 0 4px 12px rgba(74, 53, 37, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--gold-lt);
  box-shadow: 
    0 16px 36px rgba(74, 53, 37, 0.06),
    0 0 16px rgba(198, 139, 89, 0.15);
}
.stat-card-icon {
  font-size: 1.1rem;
  color: var(--gold-lt);
  margin-bottom: 0.2rem;
  transition: transform 0.35s ease;
}
.stat-card:hover .stat-card-icon {
  transform: scale(1.22) rotate(10deg);
  color: var(--gold);
}
.stat-num {
  font-family: var(--f-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ══════════════ EXPERIENCE ═══════════════════════════════════════
   JUKEBOX WIDGET — Dark Retro Vinyl Lounge
   Sleek dark luxury card with warm gold accents & vinyl animation
═══════════════════════════════════ */
/* ══════════════ EXPERIENCE ═══════════════════════════════════════
   JUKEBOX WIDGET — Retro Coffee & Vinyl Lounge
   Frosted Glass Card matching Retro 7/11 aesthetic
═══════════════════════════════════ */
.jukebox {
  background: rgba(255, 254, 251, 0.88);
  border: 1px solid rgba(74, 53, 37, 0.14);
  border-radius: 28px;
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow:
    0 24px 64px rgba(74, 53, 37, 0.08),
    0 4px 16px rgba(74, 53, 37, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
/* Top accent line */
.jukebox::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), var(--gold), var(--gold-lt), transparent);
  border-radius: 28px 28px 0 0;
}

.jukebox:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 53, 37, 0.25);
  box-shadow:
    0 40px 80px rgba(74, 53, 37, 0.12),
    0 8px 24px rgba(74, 53, 37, 0.06),
    inset 0 1px 0 #FFFFFF;
}
.jukebox.playing {
  animation: jbPulse 3s infinite alternate ease-in-out;
}
@keyframes jbPulse {
  0% { box-shadow: 0 24px 64px rgba(74, 53, 37, 0.08), 0 0 20px rgba(198, 139, 89, 0.15); }
  100% { box-shadow: 0 40px 80px rgba(74, 53, 37, 0.14), 0 0 44px rgba(198, 139, 89, 0.25); }
}

.jb-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.4rem; padding-bottom: .9rem;
  border-bottom: 1px solid rgba(74, 53, 37, 0.10);
}
.jb-title {
  font-size: .72rem; font-weight: 700; letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.jb-led {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: #94a3b8;
  box-shadow: 0 0 8px #94a3b8;
  transition: all 0.35s ease;
}
.jukebox.playing .jb-led {
  background: var(--gold-lt);
  box-shadow: 0 0 10px var(--gold-lt), 0 0 20px rgba(198, 139, 89, 0.4);
}
.visualizer { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.vbar { width: 3px; height: 3px; border-radius: 3px; background: var(--gold-lt); transition: height .1s ease; opacity: .8; }

/* Vinyl record — authentic dark vinyl look */
.vinyl-wrap {
  position: relative; width: 190px; height: 190px;
  margin: 0.5rem auto 1.6rem; border-radius: 50%;
}
.vinyl-glow {
  position: absolute; inset: -24px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 139, 89, 0.25) 0%, transparent 70%);
  filter: blur(18px); opacity: 0; transition: opacity var(--t) ease;
}
.jukebox.playing .vinyl-glow { opacity: 1; }

.vinyl {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle, #2b231d 15%, #18120d 45%, #0b0805 75%);
  border: 1.5px solid rgba(198, 139, 89, 0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.9), 0 10px 32px rgba(74, 53, 37, 0.25);
  position: relative; z-index: 2;
}
.vinyl::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.08) 35deg,
    transparent 90deg,
    rgba(255, 255, 255, 0.05) 125deg,
    transparent 180deg,
    rgba(255, 255, 255, 0.05) 215deg,
    transparent 270deg,
    rgba(255, 255, 255, 0.05) 305deg,
    transparent 360deg
  );
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
}
/* Center label — Retro 7/11 themed */
.vinyl-center {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #FAFAF8, #ECE3DD);
  border: 2px solid var(--gold);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1px;
  box-shadow: 0 0 18px rgba(74, 53, 37, 0.25);
}
.vinyl-center span { font-size: .54rem; font-weight: 800; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; }
.v-hole { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 2px; opacity: .9; box-shadow: inset 0 1px 2px rgba(0,0,0,0.5); }

.tonearm {
  position: absolute; top: -8px; right: 14px;
  width: 20px; height: 105px; z-index: 10;
  transform-origin: 10px 10px; transform: rotate(-35deg);
  transition: transform .8s cubic-bezier(.25,1,.5,1); pointer-events: none;
}
.ta-base { width: 18px; height: 18px; background: radial-gradient(circle, #ffffff, #ECEBE8); border-radius: 50%; border: 1px solid rgba(74, 53, 37, 0.2); }
.ta-rod   { width: 2px; height: 70px; background: linear-gradient(180deg, #d1d5db, #9ca3af); position: absolute; top: 17px; left: 8px; }
.ta-head  { width: 7px; height: 16px; background: var(--gold-lt); position: absolute; bottom: 0; left: 5px; border-radius: 2px; transform: rotate(12deg); }
.jukebox.playing .tonearm { transform: rotate(-15deg); }

/* Track info + controls */
.jb-info { display: flex; flex-direction: column; gap: 1rem; }
.track-box {
  background: rgba(74, 53, 37, 0.05);
  border: 1px solid rgba(74, 53, 37, 0.12);
  border-radius: 14px; padding: .75rem 1rem; text-align: center;
  min-height: 56px; display: flex; flex-direction: column;
  justify-content: center; gap: 4px;
}
.t-status { font-size: .62rem; color: var(--gold-lt); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.t-name   { font-size: .86rem; font-weight: 600; color: var(--text); }

.jb-controls { display: flex; justify-content: center; align-items: center; gap: 1.2rem; margin-top: 0.2rem; }
.jbtn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 254, 251, 0.95);
  border: 1.5px solid rgba(74, 53, 37, 0.15);
  color: var(--text); display: flex; align-items: center;
  justify-content: center; font-size: .92rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(74, 53, 37, 0.06);
}
.jbtn:hover {
  background: #ffffff;
  border-color: var(--gold-lt);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74, 53, 37, 0.15);
}
.jbtn--play {
  width: 54px; height: 54px;
  background: var(--gold-grad);
  color: #ffffff !important; border: none !important;
  box-shadow: 0 6px 22px rgba(74, 53, 37, 0.30);
}
.jbtn--play:hover {
  background: linear-gradient(135deg, #C68B59 0%, #4A3525 100%);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(74, 53, 37, 0.45) !important;
}

/* ══════════════ GRAND MENU SECTION ══════════════ */
.menu-sec {
  position: relative;
  padding: 8rem 0;
  background: transparent;
  border-top: 1px solid var(--border);
  overflow: hidden;
  z-index: 1;
}

.grand-menu-box {
  background: linear-gradient(145deg, rgba(255,254,251,0.90), rgba(242,235,224,0.96));
  border: 1px solid rgba(74, 53, 37,0.10);
  border-radius: var(--rl);
  padding: 3.5rem 2.5rem;
  box-shadow:
    0 30px 90px rgba(74, 53, 37,0.09),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  position: relative;
  overflow: hidden;
}
.grand-menu-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, transparent, #1E2530, #D69E8C, #1E2530, transparent);
}

/* Background Photo Layer */
.menu-bg-photo-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.menu-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.98) contrast(1.05) saturate(1) blur(2px);
  opacity: 0.45;
  animation: bgZoomSlow 30s infinite alternate ease-in-out;
}
@keyframes bgZoomSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.menu-bg-photo-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at center, rgba(250, 248, 245, 0.1) 0%, rgba(250, 248, 245, 0.6) 85%),
    linear-gradient(to bottom, rgba(250, 248, 245, 0.8) 0%, transparent 40%, rgba(250, 248, 245, 0.8) 100%);
}

.menu-container {
  position: relative;
  z-index: 2;
}

/* Menu Search Capsule */
.menu-search-wrapper {
  position: relative;
  max-width: 580px;
  width: 100%;
  margin: 0 auto 2.5rem;
}
.menu-search-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.05rem;
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.3s;
}
#menu-search-input {
  width: 100%;
  padding: 0.85rem 1.5rem 0.85rem 3rem;
  border-radius: var(--pill);
  background: rgba(255, 254, 251, 0.96);
  border: 1.5px solid rgba(74, 53, 37,0.14);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 0.92rem;
  font-weight: 500;
  outline: none;
  letter-spacing: 0.5px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s var(--ease);
  box-shadow: 0 8px 32px rgba(74, 53, 37,0.05);
}
#menu-search-input:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(198, 139, 89, 0.15);
}
#menu-search-input::placeholder {
  color: rgba(28, 30, 36, 0.4);
}
.search-clear-btn {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.2s;
  padding: 4px;
}
.search-clear-btn:hover {
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

/* Menu Cards Row */
.menu-cards-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-bottom: 5rem; padding-bottom: 5rem;
  border-bottom: 1px dashed rgba(212,175,85,0.2);
}
.menu-card {
  position: relative; border-radius: var(--r); overflow: hidden;
  cursor: pointer; border: 1px solid rgba(198, 139, 89, 0.16);
  transition: all var(--t) var(--ease);
}
.menu-card:hover { border-color: rgba(212,175,85,.3); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.mc-img { height: 460px; overflow: hidden; background: #000; }
.mc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: .85; transition: all .8s var(--ease); }
.menu-card:hover .mc-img img { transform: scale(1.05); opacity: 1; }
.mc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,12,22,.05) 0%, rgba(8,12,22,.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem;
}
.mc-tag { font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .5rem; }
.mc-overlay h3 { font-family: var(--f-serif); font-size: 2.5rem; font-weight: 400; color: #fff; margin-bottom: 1.5rem; }
.mc-btn {
  align-self: flex-start; display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1.6rem; border-radius: var(--pill);
  background: rgba(212,175,85,.1); border: 1px solid rgba(212,175,85,.3);
  color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; transition: all var(--tf) ease;
}
.menu-card:hover .mc-btn { background: var(--gold); border-color: transparent; color: var(--bg); }
/* ── Interactive Menu Tabs ── */
.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  gap: 0.5rem;
  background: rgba(255,254,251,0.88);
  border: 1px solid rgba(74, 53, 37,0.10);
  border-radius: 40px;
  padding: 6px;
  margin: 0 auto 3rem;
  max-width: 100%;
  width: max-content;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 32px rgba(74, 53, 37,0.06);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.menu-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--pill);
  font-family: var(--f-sans);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.menu-tab-btn:hover {
  border-color: rgba(74, 53, 37,0.22);
  color: var(--gold);
  background: rgba(74, 53, 37,0.05);
  transform: translateY(-1px);
}

.menu-tab-btn.active {
  background: var(--gold-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(74, 53, 37,0.38);
}

/* Single Grid (Feature image + Items list side-by-side) */
.menu-sub-grid.single-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 2.5rem;
  width: 100%;
}

.menu-feature-card {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid rgba(74, 53, 37,0.08);
  height: 520px;
  min-height: 520px;
  box-shadow: 0 20px 56px rgba(74, 53, 37,0.08);
  background: rgba(255,254,251,0.90);
  transition: all 0.4s var(--ease);
}
.menu-pane.active .menu-feature-card {
  animation: featureCardFadeIn 0.75s var(--ease) forwards;
}
@keyframes featureCardFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.97) translateY(12px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.menu-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(252, 251, 249, 0.95) 0%, rgba(252, 251, 249, 0.45) 45%, transparent 70%);
  z-index: 1;
}
.m-feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 0.8s ease;
}
.menu-feature-card:hover .m-feat-img {
  transform: scale(1.04);
}
.m-feat-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.m-feat-tag {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.m-feat-overlay h3 {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.m-feat-overlay p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.menu-sub-sec.wide-sec {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  padding-right: 1.5rem;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-height: 520px;
  overflow-y: auto;
  display: block;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.03);
}
.menu-sub-sec.wide-sec::-webkit-scrollbar {
  width: 5px;
}
.menu-sub-sec.wide-sec::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 10px;
}
.menu-sub-sec.wide-sec::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* 2 columns for items inside the category */
.menu-sub-sec.wide-sec .menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 992px) {
  .menu-sub-sec.wide-sec {
    padding-right: 2rem;
  }
  .menu-sub-sec.wide-sec .menu-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Tab Switching Animation & Stagger delays */
@keyframes menuItemFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-pane.active .menu-card-item {
  opacity: 0;
  animation: menuItemFadeIn 0.55s var(--ease) forwards;
}

.menu-pane.active .menu-card-item:nth-child(1) { animation-delay: 0.04s; }
.menu-pane.active .menu-card-item:nth-child(2) { animation-delay: 0.08s; }
.menu-pane.active .menu-card-item:nth-child(3) { animation-delay: 0.12s; }
.menu-pane.active .menu-card-item:nth-child(4) { animation-delay: 0.16s; }
.menu-pane.active .menu-card-item:nth-child(5) { animation-delay: 0.20s; }
.menu-pane.active .menu-card-item:nth-child(6) { animation-delay: 0.24s; }
.menu-pane.active .menu-card-item:nth-child(7) { animation-delay: 0.28s; }
.menu-pane.active .menu-card-item:nth-child(8) { animation-delay: 0.32s; }
.menu-pane.active .menu-card-item:nth-child(9) { animation-delay: 0.36s; }
.menu-pane.active .menu-card-item:nth-child(10) { animation-delay: 0.40s; }
.menu-pane.active .menu-card-item:nth-child(11) { animation-delay: 0.44s; }
.menu-pane.active .menu-card-item:nth-child(12) { animation-delay: 0.48s; }
.menu-pane.active .menu-card-item:nth-child(13) { animation-delay: 0.52s; }
.menu-pane.active .menu-card-item:nth-child(14) { animation-delay: 0.56s; }
.menu-pane.active .menu-card-item:nth-child(n+15) { animation-delay: 0.60s; }

@media (max-width: 1100px) {
  .menu-sub-sec.wide-sec {
    padding-right: 1rem;
  }
  .menu-sub-sec.wide-sec .menu-list {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}


/* ── Menu Pane Layout ── */
.interactive-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
}

.menu-pane {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s var(--ease);
}

.menu-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ── Menu Card Item Styling ── */
.menu-card-item {
  background: var(--glass);
  border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 10px 40px rgba(198, 139, 89, 0.04), inset 0 0 15px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.menu-card-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(198, 139, 89, 0.14), inset 0 0 20px rgba(255, 255, 255, 0.7);
  background: #ffffff;
}

.m-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.m-card-name-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.menu-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  width: 100%;
}

.menu-sub-sec {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: var(--rl);
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(198, 139, 89, 0.04);
  backdrop-filter: blur(10px);
  height: fit-content;
}

.menu-sub-title {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.8rem;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── Menu Item Row Styling ── */
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(28, 30, 36, 0.05);
  transition: all 0.3s var(--ease);
}

.menu-item-thumb {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(198, 139, 89, 0.2);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(198, 139, 89, 0.06);
  transition: all 0.35s var(--ease);
}
.menu-item-row:hover .menu-item-thumb {
  transform: scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(212, 175, 85, 0.25);
}

.menu-item-left {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.menu-item-name-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.veg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border: 1px solid #22c55e;
  border-radius: 2px;
  padding: 1px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.2);
}

.veg-dot {
  width: 5px;
  height: 5px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: vegPulse 2s infinite ease-in-out;
}

@keyframes vegPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

.menu-item-name {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  transition: all 0.3s ease;
}

.menu-card-item:hover .menu-item-name {
  color: var(--gold);
}

.menu-item-line {
  flex-grow: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(212, 175, 85, 0.25);
  margin: 0 0.5rem;
  position: relative;
  top: -4px;
  transition: all 0.3s ease;
}

.menu-item-row:hover .menu-item-line {
  border-bottom-color: var(--gold);
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1.4rem;
  transition: all 0.3s ease;
}

.menu-card-item:hover .menu-item-desc {
  color: var(--text);
}

.m-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(198, 139, 89, 0.2);
  padding-top: 0.8rem;
  margin-top: 0.2rem;
}

.m-card-price-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 600;
}

.m-card-price-single {
  display: flex;
  justify-content: flex-end;
  border-top: 1px dashed rgba(198, 139, 89, 0.2);
  padding-top: 0.8rem;
  margin-top: 0.2rem;
  width: 100%;
}

.menu-item-price {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.menu-card-item:hover .menu-item-price {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(198, 139, 89, 0.25);
}

/* Multi-size Price Styling */
.menu-item-price-multi {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.price-size-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(198, 139, 89, 0.03);
  border: 1px solid rgba(198, 139, 89, 0.12);
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  min-width: 58px;
  transition: all 0.3s var(--ease);
}

.price-size-tag .size-lbl {
  font-size: 0.55rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.price-size-tag .price-val {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
  line-height: 1;
}

.menu-card-item:hover .price-size-tag {
  background: rgba(198, 139, 89, 0.08);
  border-color: rgba(198, 139, 89, 0.3);
  transform: translateY(-1px);
}

/* ── Responsive Menu Styles ── */
@media (max-width: 900px) {
  .menu-sub-grid, .menu-sub-grid.single-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .menu-pane {
    background: rgba(255, 254, 251, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(74, 53, 37, 0.12);
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: 0 16px 40px rgba(74, 53, 37, 0.08);
  }
  .menu-feature-card {
    height: 200px;
    min-height: 200px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(74, 53, 37, 0.10);
    border: 1px solid rgba(198, 139, 89, 0.22);
  }
  .m-feat-overlay {
    padding: 1.2rem;
  }
  .m-feat-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }
  .m-feat-overlay p {
    font-size: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  .menu-item-price-multi {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: center;
    justify-content: flex-end;
    max-width: 100px;
  }
  .price-size-tag {
    padding: 0.2rem 0.35rem;
    min-width: 44px;
  }
  .price-size-tag .price-val {
    font-size: 0.78rem;
  }
  .price-size-tag .size-lbl {
    font-size: 0.48rem;
  }
  .menu-sub-sec {
    padding: 1.2rem 1rem;
  }
  .menu-item-name {
    font-size: 0.95rem;
  }
  .menu-item-desc {
    padding-left: 0;
    font-size: 0.78rem;
  }
  .menu-item-price {
    font-size: 0.95rem;
  }
  .menu-item-row {
    flex-wrap: nowrap;
    gap: 0.8rem;
  }
  .menu-item-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }
  .menu-item-left {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  .menu-item-line {
    display: none;
  }
  .menu-tab-btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.65rem;
  }
  .menu-tab-btn i {
    font-size: 0.7rem;
  }
}

/* Lightbox */
.mlb {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(4,4,8,.97); backdrop-filter: blur(30px);
  display: none; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; transition: opacity .4s ease;
}
.mlb.active { display: flex; opacity: 1; }
.mlb-box { position: relative; max-width: 90%; max-height: 90vh; display: flex; flex-direction: column; align-items: center; transform: scale(.9); transition: transform .4s var(--ease); }
.mlb.active .mlb-box { transform: scale(1); }
.mlb-img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--r); }
.mlb-close { position: absolute; top: -42px; right: 0; background: transparent; border: none; color: var(--muted); font-size: 2.2rem; cursor: pointer; transition: color var(--tf) ease; }
.mlb-close:hover { color: var(--gold); }
.mlb-caption { margin-top: 1rem; font-style: italic; color: var(--muted); font-size: .9rem; }

/* ══════════════ CHEF SPECIAL ══════════════ */
.special-sec {
  padding: 9rem 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 94, 43, 0.04) 0%, rgba(212, 175, 85, 0.02) 40%, var(--bg) 80%);
  border-top: 1px solid var(--border);
}
.special-layout {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 5rem; align-items: center;
}
.special-img-side { position: relative; }
.sp-frame {
  border-radius: var(--rl); overflow: hidden; aspect-ratio: 1;
  border: 1px solid rgba(198, 139, 89, 0.16); box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.sp-frame img { width:100%; height:100%; object-fit:cover; }
.sp-stamp {
  position: absolute; top: -1rem; left: -1rem;
  background: var(--gold); color: var(--bg); border-radius: 50%;
  width: 80px; height: 80px; display: flex; align-items: center;
  justify-content: center; text-align: center;
  font-size: .6rem; font-weight: 800; line-height: 1.3;
  transform: rotate(-15deg); box-shadow: 0 4px 20px rgba(212,175,85,.35);
  animation: stamp 4s ease-in-out infinite;
}
@keyframes stamp { 0%,100%{transform:rotate(-15deg) translateY(0)} 50%{transform:rotate(-10deg) translateY(-8px)} }

.sp-stars { color: var(--gold); font-size: .95rem; margin-bottom: .8rem; }
.special-content-side .sec-title { margin-top: .4rem; }
.sp-desc { color: var(--muted); font-size: .98rem; line-height: 1.8; margin-bottom: 1.8rem; }
.sp-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 2.5rem; }
.sp-list li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--muted); }
.sp-list li i { color: var(--gold); font-size: .78rem; flex-shrink: 0; }
.sp-cta { display: flex; align-items: center; gap: 1.5rem; }
.sp-price { font-family: var(--f-serif); font-size: 2.8rem; font-weight: 400; color: var(--gold); }

/* ══════════════ REVIEWS ══════════════ */
.reviews-sec {
  padding: 9rem 0;
  background: radial-gradient(circle at 20% 50%, rgba(198, 139, 89, 0.05) 0%, rgba(255, 255, 255, 0.01) 60%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.reviews-wrap { overflow: hidden; position: relative; }
.reviews-track { display: flex; gap: 1.5rem; transition: transform .5s var(--ease); }
.rv-card {
  min-width: calc(33.333% - 1rem); padding: 2rem;
  background: var(--bg2); border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: var(--rl); transition: all var(--t) var(--ease);
}
.rv-card:hover { border-color: rgba(198, 139, 89, 0.2); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(198, 139, 89, 0.06); }
.rv-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.rv-stars { color: var(--gold); font-size: .95rem; }
.rv-icon  { color: rgba(198, 139, 89, 0.08); font-size: 1.5rem; }
.rv-text  { font-family: var(--f-serif); font-size: 1.02rem; font-style: italic; color: var(--muted); line-height: 1.7; margin-bottom: 1.4rem; }
.rv-author{ font-size: .8rem; font-weight: 600; color: var(--gold); letter-spacing: .5px; }

/* ═══════════════════════════════════
   EXPERIENCE SECTION — Premium Coffee Theme
   Fresh, editorial, premium 2025 cafe look
═══════════════════════════════════ */
.experience-sec {
  position: relative; overflow: hidden;
  padding: 9rem 0;
  /* Warm layered cocoa gradient background */
  background:
    radial-gradient(ellipse at 80% 50%, rgba(198, 139, 89, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(74, 53, 37, 0.08) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, #FAF8F5 45%, #ECE3DD 100%);
}

/* Subtle dot pattern overlay */
.experience-sec::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle, rgba(74, 53, 37,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.exp-bg { display: none; }
.exp-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(1.2) blur(2px); opacity: 0.04; }
.exp-overlay {
  position: absolute; inset: 0;
  background: transparent;
}

.exp-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 6rem; align-items: center;
}

.exp-list { list-style: none; margin: 1.8rem 0 2.5rem; display: flex; flex-direction: column; gap: .85rem; }
.exp-list li { display: flex; align-items: center; gap: .75rem; font-size: .95rem; color: var(--muted); }
.exp-list li i { color: var(--gold); font-size: .85rem; flex-shrink: 0; }

.rv-nav { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.rv-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(198, 139, 89, 0.16);
  color: var(--muted); display: flex; align-items: center;
  justify-content: center; font-size: .85rem; transition: all var(--tf) ease;
}
.rv-btn:hover { background: rgba(198, 139, 89, 0.1); border-color: rgba(198, 139, 89, 0.3); color: var(--gold); }
.rv-dots { display: flex; gap: .5rem; align-items: center; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26, 22, 19, 0.15); border: none; cursor: pointer; transition: all var(--tf) ease; }
.carousel-dot.active { width: 24px; border-radius: 4px; background: var(--gold); }

/* ══════════════ CONTACT ══════════════ */
.contact-sec { position: relative; padding: 9rem 0; overflow: hidden; }
.contact-bg { display: none; }
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(1.1) blur(1px);
  opacity: 0.08;
  transform: scale(1.02);
  transition: all var(--t) ease;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(252, 251, 249, 0.4) 0%, var(--bg) 90%);
}
.contact-sec .container { position: relative; z-index: 2; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }

/* Centered form wrapper */
.ci-card-new {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.8rem;
  padding: 2rem 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: var(--rl);
  transition: all 0.4s var(--ease);
  text-decoration: none; color: inherit;
  cursor: default;
  box-shadow: 0 10px 30px rgba(198, 139, 89, 0.03), inset 0 0 15px rgba(255, 255, 255, 0.5);
}
a.ci-card-new { cursor: pointer; }
.ci-card-new:hover {
  background: #ffffff;
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(198, 139, 89, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.7);
}

.reservation-form-wrap {
  max-width: 680px;
  margin: 2rem auto 0;
}
.reservation-form-wrap #guest-check-form { padding: 2rem 2.5rem 2.5rem; }


/* ── New Contact Info Row (4-col) ── */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.ci-icon-new {
  width: 58px; height: 58px;
  background: rgba(198, 139, 89, 0.08);
  border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
  transition: all 0.4s var(--ease);
}
.ci-card-new:hover .ci-icon-new {
  background: var(--gold-grad); color: #fff;
  box-shadow: 0 8px 24px rgba(74, 53, 37, 0.25);
  border-color: transparent;
}
.ci-card-new h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold);
}
.ci-card-new p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
}

/* CTA area */
.contact-cta {
  text-align: center;
  padding: 2.5rem 0 1rem;
}
.cta-tagline {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contact-info-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-info-row { grid-template-columns: 1fr; }
}

/* Info */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.ci-card {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: var(--r); transition: all var(--t) var(--ease);
}
.ci-card:hover { border-color: rgba(212,175,85,.2); background: rgba(212,175,85,.03); transform: translateX(4px); }
.ci-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(212,175,85,.08); border: 1px solid rgba(198, 139, 89, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem; transition: all var(--tf) ease;
}
.ci-card:hover .ci-icon { background: var(--gold); color: var(--bg); border-color: transparent; box-shadow: 0 4px 16px rgba(212,175,85,.25); }
.ci-text h4 { font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: .2rem; letter-spacing: .5px; }
.ci-text p, .ci-text a { font-size: .84rem; color: var(--muted); line-height: 1.55; transition: color var(--tf) ease; }
.ci-text a:hover { color: var(--gold); }

.whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  padding: .85rem; border-radius: var(--pill);
  background: #25D366; color: #fff; font-weight: 600;
  font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--t) var(--ease); margin-top: .5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.2);
}
.whatsapp-btn:hover { background: #1fba5a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); }

/* Form */
.cf-card {
  background: var(--bg2); border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: var(--rl); overflow: hidden;
  box-shadow: 0 30px 80px rgba(198, 139, 89, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px);
}
.cf-head {
  padding: 2.5rem 2.5rem 1.8rem; text-align: center;
  border-bottom: 1px solid var(--border); background: rgba(212,175,85,.03);
}
.cf-head i { color: var(--gold); font-size: 1.5rem; margin-bottom: .8rem; display: block; }
.cf-head h3 {
  font-family: var(--f-hero); font-size: 1.8rem; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .35rem;
}
.cf-head p { font-size: .84rem; color: var(--muted); }

#guest-check-form { padding: 2rem 2.5rem 2.5rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.3rem; }
.fg label {
  font-size: .68rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: .4rem;
}
.fg label i { color: var(--gold); }
.fg input, .fg textarea {
  background: #ffffff; border: 1px solid rgba(198, 139, 89, 0.16);
  border-radius: 10px; padding: .85rem 1rem;
  color: var(--text); font-family: var(--f-sans); font-size: .9rem;
  outline: none; transition: all var(--tf) ease; resize: vertical;
  box-shadow: 0 2px 6px rgba(198, 139, 89, 0.03);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(28, 30, 36, 0.35); }
.fg input:focus, .fg textarea:focus {
  border-color: var(--gold); background: #ffffff;
  box-shadow: 0 4px 12px rgba(198, 139, 89, 0.12);
}
.fg-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.2rem; }

/* ══════════════ FOOTER ══════════════ */
.footer {
  background: var(--bg3); border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem; position: relative; z-index: 2;
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  filter: blur(.5px);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1.2rem; }
.f-logo { display: flex; align-items: center; gap: .7rem; font-family: var(--f-serif); font-size: 1.9rem; font-style: italic; }
.f-logo i { color: var(--gold); }
.f-logo span { color: var(--gold); }
.footer-brand > p { font-size: .87rem; color: var(--muted); line-height: 1.7; }
.f-social { display: flex; gap: .7rem; }
.fsoc {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(198, 139, 89, 0.16);
  color: var(--muted); display: flex; align-items: center;
  justify-content: center; font-size: .85rem; transition: all var(--tf) ease;
}
.fsoc:hover { background: var(--gold); border-color: transparent; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(198,139,89,.25); }
.footer-col h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text); margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col li { font-size: .84rem; color: var(--muted); display: flex; align-items: flex-start; gap: .6rem; }
.footer-col li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-col li strong { color: var(--gold2); font-weight: 600; }
.footer-col li em { color: var(--gold); font-style: italic; font-size: .8rem; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .74rem; color: var(--muted); flex-wrap: wrap; gap: .75rem;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1100px) {
  .about-grid, .exp-inner, .special-layout, .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-imgs { height: 380px; }
  .exp-inner { max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav { grid-template-columns: 1fr auto; padding: 0 1.2rem; height: 66px; }
  .nav-right { display: none; }
  .burger  { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 11vw, 5rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-btns  { flex-direction: column; align-items: center; gap: 0.8rem; }
  .pill-btn   { width: 100%; justify-content: center; max-width: 320px; }

  /* Sections */
  .sec-title  { font-size: 2rem; }
  .sec-desc   { font-size: 0.9rem; margin-bottom: 2rem; }

  /* About */
  .about-sec  { padding: 6rem 0; }
  .about-imgs { height: 280px; }
  .about-stats { gap: 1.5rem; }

  /* Strip */
  .strip {
    margin-top: 0;
    max-width: calc(100% - 2rem);
    border-radius: 24px;
  }
  .strip-inner {
    padding: 1.2rem;
    flex-direction: column;
    gap: 0.6rem;
  }
  .strip-sep {
    width: 40px;
    height: 1px;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Menu Section */
  .menu-sec   { padding: 5rem 0; }
  .menu-search-wrapper {
    max-width: 100%;
    margin-bottom: 1.8rem;
  }
  #menu-search-input {
    font-size: 0.85rem;
    padding: 0.75rem 1.2rem 0.75rem 2.6rem;
  }
  .menu-search-wrapper .search-icon {
    left: 1rem;
    font-size: 0.95rem;
  }
  .menu-tabs  {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1.8rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-sub-grid, .menu-sub-grid.single-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .menu-pane {
    background: rgba(255, 254, 251, 0.96) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid rgba(74, 53, 37, 0.12) !important;
    border-radius: 20px !important;
    padding: 1.2rem !important;
    box-shadow: 0 16px 40px rgba(74, 53, 37, 0.08) !important;
  }
  .menu-feature-card {
    height: 180px !important;
    min-height: 180px !important;
    width: 100% !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(74, 53, 37, 0.10) !important;
    border: 1px solid rgba(198, 139, 89, 0.22) !important;
  }
  .menu-sub-sec.wide-sec .menu-list { grid-template-columns: 1fr; gap: 1.2rem; }
  .interactive-menu { margin-top: 1rem; }

  /* Cards */
  .sp-list    { grid-template-columns: 1fr; }
  .hl-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
  .rv-card    { min-width: 100%; }

  /* Contact */
  .fg-row     { grid-template-columns: 1fr; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Experience */
  .experience-sec { padding: 5rem 0; }
  .jukebox { max-width: 340px; margin: 0 auto; }

  /* Special */
  .special-sec { padding: 5rem 0; }
  .sp-frame { aspect-ratio: 16/9; }
  .sp-cta { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav { padding: 0 1rem; }
  .cf-head, #guest-check-form { padding-left: 1.2rem; padding-right: 1.2rem; }
  .about-stats { flex-direction: column; gap: 1rem; }
  .grand-menu-box { padding: 1.2rem 0.8rem; }
  .menu-tabs { gap: 0.4rem; }
  .menu-pane { padding: 1rem; border-radius: 20px; }
  .menu-feature-card { height: 175px; min-height: 175px; }
  .menu-sub-title { font-size: 1.4rem; }
  .sec-title { font-size: 1.75rem; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  /* Contact cards 1 col */
  .contact-info-row { grid-template-columns: 1fr 1fr; }
  .ci-card-new { padding: 1.2rem 0.8rem; }

  /* Reviews */
  .reviews-sec { padding: 5rem 0; }

  /* About */
  .about-sec { padding: 5rem 0; }
  .about-imgs { height: 240px; }
  .about-img--main { width: 78%; height: 85%; }
  .about-img--side { width: 50%; height: 48%; }

  /* Footer */
  .footer { padding: 4rem 0 2rem; }
  .footer-grid { gap: 2rem; }
}

@media (max-width: 360px) {
  .grand-menu-box { padding: 1rem 0.6rem; }
  .menu-tab-btn { padding: 0.5rem 0.75rem; font-size: 0.6rem; }
  .menu-sub-sec { padding: 1rem 0.8rem; }
  .menu-item-name { font-size: 0.88rem; }
  .hero-title { font-size: 2.2rem; }
}

/* ── Redesigned Lightbox Menu Boards ── */
.menu-board {
  background: radial-gradient(circle, #faf8f5 0%, #ffffff 100%);
  border: 2px solid var(--gold);
  border-radius: var(--rl);
  padding: 3rem;
  max-width: 900px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 80px rgba(198, 139, 89, 0.12), inset 0 0 40px rgba(255, 255, 255, 0.6);
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(0,0,0,0.02);
}

.menu-board::-webkit-scrollbar {
  width: 4px;
}
.menu-board::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.board-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.board-script {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.board-header h2 {
  font-family: var(--f-hero);
  font-size: 2.8rem;
  letter-spacing: 4px;
  color: var(--text);
  line-height: 1;
}

.board-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.8rem;
}

.board-divider::before,
.board-divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.board-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.board-divider span {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 4px;
  margin: 0 10px;
}

.board-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.board-col h3 {
  font-family: var(--f-hero);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(212, 175, 85, 0.2);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}

.board-item {
  margin-bottom: 1.6rem;
}

.board-item .item-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.board-item .item-name {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.board-item .item-dots {
  flex-grow: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(212, 175, 85, 0.25);
  margin: 0 0.5rem;
  position: relative;
  top: -4px;
}

.board-item .item-price {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
}

.board-item .item-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 0.2rem;
  padding-left: 1.3rem;
}

/* ── Responsive Board styles ── */
@media (max-width: 768px) {
  .board-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .menu-board {
    padding: 2rem 1.5rem;
  }
  .board-header h2 {
    font-size: 2.2rem;
  }
}



/* ── ADVANCED MUSIC PLAYER FUNCTIONS ── */
.jb-playlist-toggle {
  color: var(--gold);
  font-size: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 53, 37, 0.04);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}
.jb-playlist-toggle:hover {
  background: var(--gold);
  color: #fff;
  border-color: transparent;
}

/* Concentric Gold Vinyl Grooves */
.vinyl-grooves {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px double rgba(198, 139, 89, 0.08);
  pointer-events: none;
  z-index: 3;
}
.vinyl-grooves::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 0.5px solid rgba(198, 139, 89, 0.04);
}
.vinyl-grooves::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 0.5px solid rgba(198, 139, 89, 0.06);
}

/* Timeline / Progress Bar */
.jb-timeline-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 1.5rem 0 1rem;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  user-select: none;
}
.jb-progress-container {
  flex: 1;
  height: 4px;
  background: rgba(74, 53, 37, 0.08);
  border-radius: var(--pill);
  position: relative;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.jb-progress-container:hover {
  height: 6px;
  background: rgba(74, 53, 37, 0.12);
}
.jb-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
  border-radius: var(--pill);
  position: relative;
  transition: width 0.1s linear;
}
.jb-progress-bar::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-lt);
  border: 1.5px solid var(--gold);
  box-shadow: 0 2px 6px rgba(74, 53, 37, 0.25);
  transition: transform 0.2s var(--ease);
}
.jb-progress-container:hover .jb-progress-bar::after {
  transform: translateY(-50%) scale(1);
}

.jb-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.jb-volume-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(74, 53, 37, 0.03);
  border: 1px solid var(--border);
  padding: 0.3rem;
  border-radius: 30px;
  transition: all 0.3s var(--ease);
}
.vol-btn {
  color: var(--muted);
  font-size: 0.82rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.vol-btn:hover {
  color: var(--gold);
  background: rgba(74, 53, 37, 0.05);
}
.vol-slider-container {
  width: 0;
  overflow: hidden;
  transition: width 0.3s var(--ease);
  display: flex;
  align-items: center;
}
.jb-volume-wrap:hover .vol-slider-container,
.vol-slider-container:focus-within {
  width: 70px;
  margin-right: 0.3rem;
}
.vol-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(74, 53, 37, 0.15);
  border-radius: 2px;
  outline: none;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform 0.1s ease;
}
.vol-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

/* Playlist Panel Overlay */
.jb-playlist-panel {
  position: absolute;
  inset: 0;
  background: rgba(255, 254, 251, 0.90);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 28px;
  z-index: 20;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateY(105%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(74, 53, 37, 0.08);
}
.jb-playlist-panel.open {
  transform: translateY(0);
}
.jb-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.jb-panel-header span {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
}
.panel-close-btn {
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s;
}
.panel-close-btn:hover {
  color: var(--gold);
}
.jb-track-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-right: 0.2rem;
  scrollbar-width: none;
}
.jb-track-list::-webkit-scrollbar { display: none; }
.jb-track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}
.jb-track-item:hover {
  background: rgba(74, 53, 37, 0.03);
  border-color: rgba(74, 53, 37, 0.06);
}
.jb-track-item.active {
  background: rgba(198, 139, 89, 0.08);
  border-color: rgba(198, 139, 89, 0.25);
}
.jb-track-item-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.jb-track-item-name {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.jb-track-item-genre {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  color: var(--muted);
}
.jb-track-item-play {
  font-size: 0.7rem;
  color: var(--gold-lt);
  opacity: 0;
  transition: opacity 0.25s;
}
.jb-track-item.active .jb-track-item-play {
  opacity: 1;
  color: var(--gold);
}

/* Mobile Responsive Jukebox Scaling */
@media (max-width: 480px) {
  .jukebox {
    padding: 1.2rem;
    max-width: 310px;
    margin: 0 auto;
  }
  .vinyl-wrap {
    width: 140px;
    height: 140px;
  }
  .vinyl-glow {
    inset: -14px;
  }
  .vinyl-center {
    width: 52px;
    height: 52px;
  }
  .vinyl-center span {
    font-size: 0.44rem;
    letter-spacing: 1px;
  }
  .tonearm {
    height: 80px;
    right: 8px;
    top: -4px;
  }
  .ta-base {
    width: 14px;
    height: 14px;
  }
  .ta-rod {
    height: 52px;
    left: 6px;
  }
  .ta-head {
    width: 5px;
    height: 12px;
    left: 4px;
  }
  .jb-controls-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .jb-volume-wrap {
    width: 100%;
    justify-content: center;
  }
  .vol-slider-container {
    width: 80px;
  }
}

/* ══════════════ MOBILE MENU ULTIMATE OVERRIDE ══════════════ */
@media screen and (max-width: 1024px) {
  .menu-sub-grid,
  .menu-sub-grid.single-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .menu-pane {
    background: rgba(255, 254, 251, 0.96) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid rgba(74, 53, 37, 0.14) !important;
    border-radius: 24px !important;
    padding: 1.5rem !important;
    box-shadow: 0 16px 40px rgba(74, 53, 37, 0.08) !important;
  }

  .menu-feature-card {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 240px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(198, 139, 89, 0.22) !important;
    box-shadow: 0 8px 24px rgba(74, 53, 37, 0.12) !important;
  }

  .m-feat-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .m-feat-overlay {
    padding: 1.2rem !important;
  }
}

@media screen and (max-width: 480px) {
  .menu-pane {
    padding: 1.1rem !important;
    border-radius: 20px !important;
  }
  .menu-feature-card {
    height: 175px !important;
    min-height: 175px !important;
  }
}

