/* ═══════════════════════════════════════════════════════════
   HARRY'S OVEN — Claymorphism Design System
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --clr-bg:        #FFF5EC;
  --clr-cream:     #FFF9F4;
  --clr-dark:      #1E1208;
  --clr-red:       #E8462A;
  --clr-red-dark:  #C4301A;
  --clr-orange:    #F57C2B;
  --clr-yellow:    #FFD166;
  --clr-green:     #4CAF7D;
  --clr-green-dark:#3A8A62;
  --clr-brown:     #7B3D1E;
  --clr-text:      #1E1208;
  --clr-text-mid:  #5A3A22;
  --clr-text-light:#8A6040;

  --shadow-xs: 2px 2px 0px rgba(30,18,8,0.10);
  --shadow-sm: 4px 4px 0px rgba(30,18,8,0.15);
  --shadow-md: 6px 8px 0px rgba(30,18,8,0.18);
  --shadow-lg: 8px 12px 0px rgba(30,18,8,0.20);
  --shadow-xl: 10px 16px 0px rgba(30,18,8,0.22);

  --r-pill:  9999px;
  --r-card:  18px;
  --r-sm:    16px;
  --r-xs:    10px;

  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px;   --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', -apple-system, sans-serif;

  --fs-xs: 0.72rem;  --fs-sm: 0.82rem;  --fs-base: 0.95rem;
  --fs-md: 1.1rem;   --fs-lg: 1.35rem;  --fs-xl: 1.8rem;
  --fs-2xl: 2.4rem;  --fs-3xl: 3.2rem;  --fs-4xl: 4rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 150ms var(--ease-out);
  --t-base: 250ms var(--ease-out);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-5); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: var(--sp-3);
  transition: background var(--t-base), box-shadow var(--t-base);
}
.navbar.scrolled {
  background: rgba(255,245,236,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(30,18,8,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,245,236,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 8px var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 900;
  color: var(--clr-red);
  letter-spacing: -0.3px;
  display: flex; align-items: center; gap: var(--sp-2);
  white-space: nowrap;
}
.nav-logo img { height: 28px; width: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: var(--sp-4); }
.nav-links a {
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--clr-text); transition: color var(--t-fast);
  position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--clr-red); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--clr-red);
  transition: width var(--t-base);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--clr-red); color: #fff !important;
  border: 2px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 6px var(--sp-4);
  font-weight: 700 !important; font-size: 0.78rem !important;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.nav-cta:hover { transform: translate(-1px,-2px); box-shadow: var(--shadow-sm); }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: var(--sp-2);
  min-width: 36px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--clr-dark); border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(255,245,236,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-8);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: var(--fs-xl); font-weight: 700;
  color: var(--clr-text); transition: color var(--t-fast);
}
.nav-mobile a:hover { color: var(--clr-red); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px var(--sp-5) var(--sp-12);
  position: relative; overflow: hidden;
}
.hero .container { display: flex; gap: var(--sp-10); align-items: center; }

/* Floating blobs */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3; pointer-events: none;
}
.blob-1 { width: 500px; height: 500px; background: var(--clr-orange); top: -120px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: var(--clr-yellow); bottom: 60px; left: -80px; }
.blob-3 { width: 200px; height: 200px; background: var(--clr-red); top: 40%; left: 50%; opacity: 0.15; }

.hero-text { flex: 1; min-width: 0; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--clr-yellow);
  border: 2px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--fs-sm); font-weight: 700;
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--sp-5);
}
h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: var(--sp-4);
}
h1 em { font-style: normal; color: var(--clr-red); display: block; }
.hero-sub {
  font-size: var(--fs-base); color: var(--clr-text-mid);
  line-height: 1.7; max-width: 460px;
  margin-bottom: var(--sp-6);
}
.hero-btns { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-weight: 700; font-size: var(--fs-base);
  border: 2.5px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 12px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer; text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px,-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translate(0,0); box-shadow: var(--shadow-xs); }
.btn-primary { background: var(--clr-red); color: #fff; }
.btn-primary:hover { background: var(--clr-red-dark); }
.btn-secondary { background: var(--clr-cream); color: var(--clr-text); }
.btn-green { background: var(--clr-green); color: #fff; }
.btn-green:hover { background: var(--clr-green-dark); }
.btn-sm { padding: 8px 18px; font-size: var(--fs-sm); }

/* Hero visual */
.hero-visual {
  flex: 1; min-width: 0; max-width: 480px;
  position: relative; z-index: 2;
  display: flex; justify-content: center;
}
.hero-card {
  background: #fff;
  border: 2.5px solid var(--clr-dark);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  max-width: 380px; width: 100%;
  position: relative;
}
.hero-card-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r-sm);
  border: 2px solid var(--clr-dark);
  margin-bottom: var(--sp-4);
}
.hero-card-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg); font-weight: 700;
  text-align: center; margin-bottom: var(--sp-1);
}
.hero-card-sub {
  font-size: var(--fs-sm); color: var(--clr-text-light);
  text-align: center; margin-bottom: var(--sp-4);
}
.hero-card-tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; justify-content: center; }

/* Floating stickers */
.sticker {
  position: absolute;
  border: 2.5px solid var(--clr-dark);
  border-radius: var(--r-card);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-xs); font-weight: 800;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 3;
}
.sticker-1 { background: var(--clr-green); color: #fff; top: -12px; right: -12px; transform: rotate(-8deg); }
.sticker-2 { background: var(--clr-yellow); bottom: -10px; left: -10px; transform: rotate(6deg); }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--clr-dark);
  padding: var(--sp-6) var(--sp-5);
}
.stats-bar .container {
  display: flex; flex-wrap: wrap;
  justify-content: space-around; align-items: center; gap: var(--sp-2);
}
.stat-item { text-align: center; padding: var(--sp-3) var(--sp-4); flex: 1; min-width: 80px; }
.stat-num {
  font-family: var(--ff-display);
  font-size: var(--fs-xl); font-weight: 900;
  color: var(--clr-yellow); display: block;
}
.stat-label { font-size: var(--fs-xs); color: rgba(255,255,255,0.6); font-weight: 500; }
.stat-divider { width: 2px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── SECTION COMMON ─────────────────────────────────────── */
section { padding: var(--sp-16) var(--sp-5); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--clr-dark); color: #fff;
  border-radius: var(--r-pill);
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: var(--sp-3);
}
.section-lead {
  font-size: var(--fs-base); color: var(--clr-text-mid);
  line-height: 1.7; max-width: 520px;
  margin-bottom: var(--sp-8);
}

/* ── SIGNATURE DISHES ───────────────────────────────────── */
.signature-section { background: var(--clr-cream); }
.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
}
.sig-card {
  background: #fff;
  border: 2.5px solid var(--clr-dark);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.sig-card:hover { transform: translate(-3px,-4px); box-shadow: var(--shadow-lg); }
.sig-card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-bottom: 2.5px solid var(--clr-dark);
}
.sig-card-body { padding: var(--sp-4); }
.sig-card-name {
  font-family: var(--ff-display);
  font-size: var(--fs-base); font-weight: 700;
  margin-bottom: 4px;
}
.sig-card-desc {
  font-size: var(--fs-sm); color: var(--clr-text-light);
  line-height: 1.5; margin-bottom: var(--sp-3);
}
.sig-card-footer { display: flex; align-items: center; justify-content: space-between; }
.sig-price { font-weight: 800; color: var(--clr-red); font-size: var(--fs-base); }
.sig-badge {
  background: var(--clr-yellow);
  border: 1.5px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: var(--fs-xs); font-weight: 700;
  box-shadow: var(--shadow-xs);
}
.sig-badge.green { background: #D4F3E5; }
.sig-badge.red { background: #FFDDD7; }

/* ── MENU ────────────────────────────────────────────────── */
.menu-section { }
.menu-tabs {
  display: flex; gap: var(--sp-2); flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--sp-1);
}
.menu-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  border: 2px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 8px var(--sp-4);
  font-size: var(--fs-sm); font-weight: 600;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--clr-red); color: #fff;
  transform: translate(-1px,-2px); box-shadow: var(--shadow-sm);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--sp-4);
}
.menu-card {
  background: #fff;
  border: 2.5px solid var(--clr-dark);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.menu-card:hover { transform: translate(-3px,-4px); box-shadow: var(--shadow-lg); }
.menu-card-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-bottom: 2.5px solid var(--clr-dark);
  background: var(--clr-cream);
}
.menu-card-body { padding: var(--sp-4); }
.menu-card-name {
  font-family: var(--ff-display);
  font-size: var(--fs-base); font-weight: 700;
  margin-bottom: 4px;
}
.menu-card-desc {
  font-size: var(--fs-sm); color: var(--clr-text-light);
  line-height: 1.55; margin-bottom: var(--sp-3);
}
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-2); }
.menu-price { font-weight: 800; color: var(--clr-red); font-size: var(--fs-base); }
.menu-price .from { font-size: var(--fs-xs); color: var(--clr-text-light); font-weight: 500; }
.menu-sizes {
  display: flex; gap: var(--sp-2); margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}
.size-chip {
  border: 1.5px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: var(--fs-xs); font-weight: 700;
  background: var(--clr-cream);
  cursor: pointer;
  transition: all var(--t-fast);
}
.size-chip.active { background: var(--clr-yellow); }
.menu-badge {
  background: var(--clr-yellow);
  border: 1.5px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: var(--fs-xs); font-weight: 700;
  box-shadow: var(--shadow-xs);
}
.menu-badge.green { background: #D4F3E5; }
.menu-badge.red { background: #FFDDD7; }
.sold-ribbon {
  position: absolute; top: 12px; right: -6px;
  background: var(--clr-red); color: #fff;
  font-size: var(--fs-xs); font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px 0 0 4px;
  box-shadow: 2px 2px 0 rgba(30,18,8,0.2);
  z-index: 2;
}
.sold-ribbon::after {
  content: ''; position: absolute; bottom: -6px; right: 0;
  border: 3px solid transparent;
  border-top-color: #9e2010; border-right-color: #9e2010;
}

/* ── OUR STORY (original — replaced by Feature 2 cinematic) ─ */

/* ── LOCATIONS ──────────────────────────────────────────── */
.locations-section { background: var(--clr-dark); color: #fff; }
.locations-section h2 { color: var(--clr-yellow); }
.locations-section .section-lead { color: rgba(255,255,255,0.6); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}
.loc-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform var(--t-base);
}
.loc-card:hover { transform: translateY(-4px); }
.loc-icon { font-size: 1.8rem; margin-bottom: var(--sp-3); }
.loc-name {
  font-family: var(--ff-display);
  font-size: var(--fs-lg); font-weight: 700;
  margin-bottom: var(--sp-2); color: var(--clr-yellow);
}
.loc-detail { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); margin-bottom: var(--sp-1); line-height: 1.6; }
.loc-detail strong { color: #fff; }
.loc-map {
  width: 100%; height: 160px;
  border-radius: var(--r-sm);
  border: 2px solid rgba(255,255,255,0.15);
  margin-top: var(--sp-4);
  filter: grayscale(0.4) brightness(0.8);
  transition: filter var(--t-base);
}
.loc-card:hover .loc-map { filter: grayscale(0) brightness(1); }

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews-section { background: var(--clr-cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.review-card {
  background: #fff;
  border: 2.5px solid var(--clr-dark);
  border-radius: var(--r-card);
  padding: var(--sp-5);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base);
}
.review-card:hover { transform: translate(-2px,-3px); }
.review-stars { font-size: var(--fs-md); margin-bottom: var(--sp-2); color: var(--clr-yellow); }
.review-text {
  /* Premium typography applied via Feature 5 override below */
  font-size: var(--fs-sm); line-height: 1.75;
  color: #5A3A22; margin-bottom: var(--sp-3);
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: var(--sp-2); }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--clr-yellow);
  border: 2px solid var(--clr-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--fs-sm);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: var(--fs-sm); }
.review-platform { font-size: var(--fs-xs); color: var(--clr-text-light); }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--clr-red);
  border-top: 3px solid var(--clr-dark);
  border-bottom: 3px solid var(--clr-dark);
  padding: var(--sp-12) var(--sp-5);
}
.cta-banner .container {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: var(--sp-6);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.6rem); max-width: 500px; }
.btn-white {
  background: #fff !important; color: var(--clr-red) !important;
  font-weight: 800 !important;
  border: 2.5px solid var(--clr-dark) !important;
  border-radius: var(--r-pill) !important;
  padding: 14px 32px !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform var(--t-fast), box-shadow var(--t-fast) !important;
}
.btn-white:hover { transform: translate(-2px,-3px) !important; box-shadow: var(--shadow-lg) !important; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--clr-dark); color: rgba(255,255,255,0.7);
  padding: var(--sp-10) var(--sp-5) var(--sp-5);
}
.footer-top { display: flex; flex-wrap: wrap; gap: var(--sp-8); margin-bottom: var(--sp-8); }
.footer-brand { flex: 2; min-width: 200px; }
.footer-logo {
  font-family: var(--ff-display);
  font-size: var(--fs-lg); font-weight: 900;
  color: #fff; margin-bottom: var(--sp-3);
}
.footer-desc { font-size: var(--fs-sm); line-height: 1.7; max-width: 320px; margin-bottom: var(--sp-4); }
.footer-social { display: flex; gap: var(--sp-2); }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-base); transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--clr-red); border-color: var(--clr-red); transform: translateY(-2px); }

.footer-col { min-width: 140px; }
.footer-col h4 {
  color: var(--clr-yellow); font-size: var(--fs-sm);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: var(--sp-3);
}
.footer-col a {
  display: block; font-size: var(--fs-sm); color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-2); transition: color var(--t-fast);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-5);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
}
.footer-bottom a { color: var(--clr-yellow); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border: 2.5px solid var(--clr-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}
.whatsapp-float:hover { transform: translate(-2px,-3px) scale(1.05); box-shadow: var(--shadow-lg); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: #fff; color: var(--clr-text);
  border: 2px solid var(--clr-dark);
  border-radius: var(--r-sm);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm); font-weight: 600;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── LOADER OVERLAY (replaced by Feature 3 above) ─────────── */

/* ── BACK TO TOP BUTTON ─────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 44px; height: 44px;
  background: var(--clr-cream);
  border: 2.5px solid var(--clr-dark);
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--clr-dark);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow var(--t-fast);
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1; transform: translateY(0); pointer-events: all;
}
#back-to-top:hover {
  background: var(--clr-red); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* ── FLOATING STICKER/CHIP ANIMATIONS ───────────────────── */
@keyframes sticker-float-1 {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-6px) rotate(-5deg); }
}
@keyframes sticker-float-2 {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50%      { transform: translateY(6px) rotate(9deg); }
}
@keyframes chip-float-1 {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50%      { transform: translateY(-6px) rotate(8deg); }
}
@keyframes chip-float-2 {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(6px) rotate(-3deg); }
}
.sticker-1 { animation: sticker-float-1 3s ease-in-out infinite; }
.sticker-2 { animation: sticker-float-2 3.5s ease-in-out infinite; }
.chip-1    { animation: chip-float-1 2.8s ease-in-out infinite; }
.chip-2    { animation: chip-float-2 3.2s ease-in-out infinite; }

/* ── WHATSAPP FLOAT PULSE ───────────────────────────────── */
@keyframes wa-pulse {
  0%   { box-shadow: var(--shadow-md), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: var(--shadow-md), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float {
  animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover {
  animation: none;
  transform: translate(-2px,-3px) scale(1.05); box-shadow: var(--shadow-lg);
}

/* ── ORDER BUTTON ON MENU CARDS ─────────────────────────── */
.menu-card-order {
  display: inline-flex; align-items: center; gap: 4px;
  background: #25D366;
  color: #fff;
  border: 1.5px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  font-size: var(--fs-xs); font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.menu-card-order:hover {
  transform: translate(-1px,-2px); box-shadow: var(--shadow-sm);
  background: #1ebe5a;
}
.menu-card-order svg { width: 12px; height: 12px; fill: #fff; }

/* ── NO-IMAGE PLACEHOLDER ───────────────────────────────── */
.menu-card-no-img {
  width: 100%; aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  border-bottom: 2.5px solid var(--clr-dark);
}
.menu-card-no-img.cat-beverages { background: linear-gradient(135deg, #FFD166, #F57C2B); }
.menu-card-no-img.cat-deals     { background: linear-gradient(135deg, #FFDDD7, #E8462A); }
.menu-card-no-img.cat-default    { background: linear-gradient(135deg, var(--clr-cream), #FFD166); }

/* ── HOVER ZOOM ON CARD IMAGES ──────────────────────────── */
.sig-card { overflow: hidden; }
.menu-card { overflow: hidden; }
.sig-card-img, .menu-card-img {
  transition: transform 0.4s var(--ease-out);
}
.sig-card:hover .sig-card-img,
.menu-card:hover .menu-card-img {
  transform: scale(1.08);
}

/* ── MENU TAB SCROLL INDICATOR (mobile) ─────────────────── */
.menu-tabs-wrap {
  position: relative;
  margin-bottom: var(--sp-6);
}
.menu-tabs-wrap::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--clr-bg));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.menu-tabs-wrap.scrolling::after {
  opacity: 1;
}

/* ── CTA BANNER SUBTLE ANIMATION ────────────────────────── */
@keyframes cta-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-banner {
  background: linear-gradient(135deg, var(--clr-red) 0%, #d63a20 30%, var(--clr-red) 60%, #f04a2e 100%);
  background-size: 300% 300%;
  animation: cta-shift 8s ease infinite;
}

/* ── LOCATION DIRECTIONS LINK ───────────────────────────── */
.loc-directions {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--clr-yellow);
  transition: opacity var(--t-fast);
}
.loc-directions:hover { opacity: 0.8; }
.loc-directions svg { flex-shrink: 0; }

/* ── FOOTER SOCIAL SVG ICONS ────────────────────────────── */
.footer-social a svg {
  width: 18px; height: 18px;
  transition: transform var(--t-fast);
}
.footer-social a:hover svg {
  transform: scale(1.15);
}
.foodpanda-icon {
  font-size: 1.1rem;
}
.fp-panda {
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE 3: STYLISH LOADING SCREEN — Cinematic
   ═══════════════════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #5C2E15 0%, #3A1A0A 40%, #7B3D1E 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  will-change: opacity, transform;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0, 1);
}
#loader.loaded {
  opacity: 0;
  transform: scale(1.08);
  pointer-events: none;
}

/* Loader decorative ring */
.loader-ring {
  position: absolute;
  width: clamp(280px, 50vw, 420px);
  height: clamp(280px, 50vw, 420px);
  border-radius: 50%;
  border: 2px solid rgba(255, 249, 244, 0.06);
  opacity: 0;
  animation: loader-ring-in 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}
.loader-ring::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255, 209, 102, 0.4);
  border-right-color: rgba(232, 70, 42, 0.3);
  animation: loader-ring-spin 2s linear infinite;
}
@keyframes loader-ring-in {
  0% { opacity: 0; transform: scale(0.6); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes loader-ring-spin {
  to { transform: rotate(360deg); }
}

/* Loader glow behind text */
.loader-glow {
  position: absolute;
  width: clamp(200px, 40vw, 360px);
  height: clamp(80px, 12vw, 140px);
  background: radial-gradient(ellipse, rgba(255, 209, 102, 0.15) 0%, rgba(232, 70, 42, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  animation: loader-glow-in 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s both;
}
@keyframes loader-glow-in {
  0% { opacity: 0; transform: scale(0.5); }
  60% { opacity: 1; }
  100% { opacity: 0.7; transform: scale(1); }
}

/* Loader text — the main event */
.loader-text {
  display: flex;
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  color: var(--clr-cream);
  letter-spacing: -0.04em;
  will-change: transform, opacity;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 40px rgba(255, 209, 102, 0.0);
  animation: loader-text-glow 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1.2s both;
}
@keyframes loader-text-glow {
  0% { text-shadow: 0 0 40px rgba(255, 209, 102, 0.0); }
  50% { text-shadow: 0 0 60px rgba(255, 209, 102, 0.3), 0 0 120px rgba(232, 70, 42, 0.15); }
  100% { text-shadow: 0 0 30px rgba(255, 209, 102, 0.15), 0 0 80px rgba(232, 70, 42, 0.08); }
}

/* Individual letter stagger */
.loader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  filter: blur(6px);
  animation: loader-letter-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--letter-index) * 70ms) both;
  will-change: transform, opacity, filter;
}
.loader-letter.space {
  width: 0.3em;
}
@keyframes loader-letter-in {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Pulse after all letters are in */
.loader-text.letters-done {
  animation: loader-breathe 0.7s cubic-bezier(0.25, 1, 0.5, 1) both;
}
@keyframes loader-breathe {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.08); }
  70%  { transform: scale(0.98); }
  100% { transform: scale(1); }
}

/* Loader subtitle tagline */
.loader-tagline {
  position: relative; z-index: 2;
  font-family: var(--ff-body);
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  font-weight: 500;
  color: rgba(255, 249, 244, 0.0);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: var(--sp-3);
  animation: loader-tagline-in 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.6s both;
}
@keyframes loader-tagline-in {
  0% { opacity: 0; transform: translateY(10px); color: rgba(255, 249, 244, 0.0); }
  100% { opacity: 1; transform: translateY(0); color: rgba(255, 249, 244, 0.5); }
}

/* Fade out: ring + glow disappear faster */
#loader.loaded .loader-ring,
#loader.loaded .loader-glow,
#loader.loaded .loader-tagline {
  transition: opacity 0.4s ease;
  opacity: 0;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE 4: 3D NEUMORPHIC BUTTONS
   ═══════════════════════════════════════════════════════════ */
.neu-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 3px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 18px;
  min-height: 52px;
  font-family: var(--ff-body);
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.neu-btn:hover { transform: translateY(-2px); }
.neu-btn:active { transform: translateY(1px); }

.neu-btn-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(145deg, #9E5A30, #5C2E15);
  box-shadow:
    4px 4px 8px rgba(30, 18, 8, 0.4),
    -2px -2px 6px rgba(160, 90, 40, 0.15),
    inset 1px 1px 2px rgba(255, 255, 255, 0.1);
}

.neu-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 28px;
  border-radius: 13px;
  background: linear-gradient(145deg, #FFF9F4, #F0DFD0);
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.8),
    inset -1px -1px 3px rgba(120, 60, 20, 0.12);
  transition: box-shadow 0.2s ease;
}
.neu-btn:hover .neu-btn-inner {
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.9),
    inset -1px -1px 4px rgba(120, 60, 20, 0.18);
}

.neu-btn-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(180deg, #3A1A0A 0%, #7B3D1E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}
.neu-btn-inner span svg {
  -webkit-text-fill-color: initial;
  fill: #5C2E15;
  flex-shrink: 0;
}

/* CTA variant - lighter bg for CTA banner */
.neu-btn--cta .neu-btn-inner {
  background: linear-gradient(145deg, #fff, #FFF0E0);
  padding: 14px 32px;
}
.neu-btn--cta .neu-btn-inner span {
  font-size: 1.05rem;
}

/* Submit variant */
.neu-btn--submit {
  width: 100%;
  min-height: 52px;
  margin-top: var(--sp-4);
}

/* ═══════════════════════════════════════════════════════════
   FEATURE 5: PREMIUM CARD TYPOGRAPHY
   ═══════════════════════════════════════════════════════════ */
.sig-card-name {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.sig-card-desc {
  font-size: var(--fs-sm); color: #5A3A22;
  line-height: 1.6; margin-bottom: var(--sp-3);
}
.sig-price {
  font-weight: 800; color: var(--clr-red); font-size: var(--fs-base);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.sig-badge {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-card-name {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.menu-card-desc {
  font-size: var(--fs-sm); color: #5A3A22;
  line-height: 1.6; margin-bottom: var(--sp-3);
}
.menu-price {
  font-weight: 800; color: var(--clr-red); font-size: var(--fs-base);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.menu-badge {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Section headings */
h2 {
  text-wrap: balance;
  letter-spacing: -0.04em;
}
.section-lead {
  max-width: 65ch;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE 1: REVIEW MODAL
   ═══════════════════════════════════════════════════════════ */
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.reviews-header .section-lead { margin-bottom: 0; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(30, 18, 8, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--clr-cream);
  border: 2.5px solid var(--clr-dark);
  border-radius: 18px;
  padding: var(--sp-6);
  max-width: 460px; width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease-out);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: 2px solid var(--clr-dark);
  border-radius: 50%;
  background: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.modal-close:hover { background: var(--clr-red); color: #fff; }

.modal h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 900;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.02em;
}

.form-group {
  margin-bottom: var(--sp-4);
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-2);
  color: var(--clr-text-mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: #fff;
  border: 2px solid var(--clr-dark);
  border-radius: 12px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231E1208' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  box-shadow: var(--shadow-xs), 0 0 0 3px rgba(232, 70, 42, 0.2);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input.error,
.form-group textarea.error {
  border-color: var(--clr-red);
}

/* Star rating interactive */
.star-rating {
  display: flex; gap: 4px;
}
.star-input {
  font-size: 1.8rem;
  color: #D4C8BC;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.star-input:hover { transform: scale(1.15); }
.star-input.active { color: var(--clr-yellow); }
.star-input.hover-preview { color: var(--clr-yellow); opacity: 0.7; }

/* Toast notification */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #fff;
  border: 2.5px solid var(--clr-dark);
  border-radius: 14px;
  padding: var(--sp-3) var(--sp-5);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: var(--fs-sm);
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   FEATURE 2: CINEMATIC ABOUT US — 3D Scroll Animations
   ═══════════════════════════════════════════════════════════ */
.story-section {
  background: var(--clr-cream);
  padding: 0;
  /* Enable 3D perspective for all children */
  perspective: 1200px;
  overflow: hidden;
  position: relative;
}

.cinema-scene {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-5);
  overflow: visible;
  /* 3D context */
  transform-style: preserve-3d;
}

.cinema-scene--reverse {
  flex-direction: row-reverse;
}

/* ── IMAGE WRAP: 3D entrance + parallax depth ── */
.cinema-image-wrap {
  flex: 1.2;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2.5px solid var(--clr-dark);
  box-shadow: var(--shadow-lg);
  will-change: transform, opacity;
  transform-style: preserve-3d;
  /* Initial hidden state: rotated off-axis in 3D space */
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.cinema-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  /* Slight parallax on the image itself */
  transform: scale(1.15);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.cinema-scene.revealed .cinema-image-wrap img {
  transform: scale(1);
}
.cinema-image-portrait img {
  aspect-ratio: 3/4;
  max-height: 480px;
}

/* Scene-specific 3D entrance transforms */
.cinema-slide-left {
  transform: translateX(-80px) rotateY(12deg) scale(0.88);
}
.cinema-slide-right {
  transform: translateX(80px) rotateY(-12deg) scale(0.88);
}
.cinema-slide-bottom {
  transform: translateY(60px) rotateX(-8deg) scale(0.88);
}

/* Revealed state: flat and centered with a subtle overshoot */
.cinema-scene.revealed .cinema-slide-left,
.cinema-scene.revealed .cinema-slide-right,
.cinema-scene.revealed .cinema-slide-bottom {
  opacity: 1;
  transform: translate(0, 0) rotateY(0deg) rotateX(0deg) scale(1);
}

/* ── TEXT WRAP: 3D reveal ── */
.cinema-text-wrap {
  flex: 1;
  min-width: 0;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(40px) rotateX(-6deg);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
              transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.cinema-scene.revealed .cinema-text-wrap {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.cinema-text-wrap h2 {
  margin-bottom: var(--sp-4);
}
.cinema-text-wrap p {
  font-size: var(--fs-base);
  color: var(--clr-text-mid);
  line-height: 1.8;
  max-width: 65ch;
}
.cinema-text-wrap .section-eyebrow {
  margin-bottom: var(--sp-3);
}

/* ── Value chips stagger reveal ── */
.value-chip {
  background: #fff;
  border: 2px solid var(--clr-dark);
  border-radius: var(--r-pill);
  padding: 6px var(--sp-4);
  font-size: var(--fs-sm); font-weight: 600;
  box-shadow: var(--shadow-xs);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cinema-scene.revealed .value-chip {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cinema-scene.revealed .value-chip:nth-child(1) { transition-delay: 0.4s; }
.cinema-scene.revealed .value-chip:nth-child(2) { transition-delay: 0.5s; }
.cinema-scene.revealed .value-chip:nth-child(3) { transition-delay: 0.6s; }
.cinema-scene.revealed .value-chip:nth-child(4) { transition-delay: 0.7s; }

.story-values {
  display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: var(--sp-5);
}

/* ── Scroll-driven parallax on images ── */
.cinema-image-wrap.parallax-active img {
  transition: none;
}

/* ── Floating ember particles for story section ── */
.story-section .ember {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--clr-yellow);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  filter: blur(1px);
  box-shadow: 0 0 6px rgba(255, 209, 102, 0.5);
}
.story-section .ember.active {
  animation: ember-rise 3s ease-out forwards;
}
@keyframes ember-rise {
  0% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) translateX(20px) scale(0.3);
  }
}

/* ═══════════════════════════════════════════════════════════
   FEATURE 6: WOW FACTOR
   ═══════════════════════════════════════════════════════════ */

/* 1. Cursor glow */
#cursor-glow {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 70, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
  will-change: transform;
}
#cursor-glow.active { opacity: 1; }

/* 2. Stats counter pulse */
@keyframes stat-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.stat-num.pulse {
  animation: stat-pulse 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 3. Review stars shimmer on hover */
.review-card {
  position: relative;
}
.review-stars {
  transition: filter 0.3s;
}
.review-card:hover .review-stars {
  filter: drop-shadow(0 0 4px rgba(255, 209, 102, 0.6));
}

/* 4. Menu card image parallax on hover */
.menu-card,
.sig-card {
  position: relative;
  overflow: hidden;
}
.menu-card-img,
.sig-card-img {
  transition: transform 0.4s var(--ease-out);
}
.menu-card:hover .menu-card-img,
.sig-card:hover .sig-card-img {
  transform: scale(1.08);
}

/* 5. Section divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--sp-6) var(--sp-5);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.section-divider.revealed {
  opacity: 1;
  transform: translateY(0);
}
.divider-line {
  width: 40px;
  height: 2px;
  background: var(--clr-text-light);
  opacity: 0.3;
  border-radius: 1px;
  position: relative;
}
.divider-line::before {
  content: '· ·';
  position: absolute;
  font-size: 0.5rem;
  letter-spacing: 3px;
  color: var(--clr-text-light);
  opacity: 0.5;
  top: 50%;
  transform: translateY(-50%);
}
.divider-line:first-child::before {
  right: -20px;
}
.divider-line:last-child::before {
  left: -20px;
}
.divider-icon {
  font-size: 1.1rem;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Comprehensive Mobile Breakpoints
   ═══════════════════════════════════════════════════════════ */

/* ── GLOBAL MOBILE UTILITIES ────────────────────────────── */

/* Safe area insets for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
  .navbar { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
  .whatsapp-float { bottom: calc(14px + env(safe-area-inset-bottom)); right: calc(14px + env(safe-area-inset-right)); }
  #back-to-top { bottom: calc(14px + env(safe-area-inset-bottom)); left: calc(14px + env(safe-area-inset-left)); }
  footer { padding-bottom: calc(var(--sp-5) + env(safe-area-inset-bottom)); }
  .cta-banner { padding-bottom: calc(var(--sp-8) + env(safe-area-inset-bottom)); }
}

/* Minimum tap target size for all interactive elements on touch */
@media (hover: none) and (pointer: coarse) {
  a, button, .tab-btn, .size-chip, .menu-card-order, .value-chip {
    min-height: 44px;
    min-width: 44px;
  }
  .nav-hamburger { min-width: 44px; min-height: 44px; justify-content: center; }
  .footer-social a { width: 44px; height: 44px; }
}

/* ── TABLET (≤900px) ────────────────────────────────────── */
@media (max-width: 900px) {
  /* Hero: stack vertically */
  .hero .container { flex-direction: column; text-align: center; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 360px; width: 100%; }

  /* Story: stack vertically on cinema scenes */
  .cinema-scene,
  .cinema-scene--reverse {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-6);
  }
  .cinema-image-wrap { max-width: 360px; width: 100%; }
  .cinema-text-wrap p { margin-left: auto; margin-right: auto; }
  .story-values { justify-content: center; }

  /* Center section leads */
  .section-lead { margin-left: auto; margin-right: auto; }

  /* CTA: center content */
  .cta-banner .container { text-align: center; justify-content: center; }

  /* Footer: start wrapping columns */
  .footer-top { gap: var(--sp-6); }
  .footer-brand { flex: 1 1 100%; }
  .footer-col { flex: 1 1 45%; min-width: 140px; }
}

/* ── MOBILE (≤768px) ────────────────────────────────────── */
@media (max-width: 768px) {

  /* ─── NAVBAR ─── */
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-mobile { display: flex !important; }
  .nav-inner { padding: 6px var(--sp-4); }
  .nav-logo { font-size: 1rem; }
  .nav-logo img { height: 24px; width: 24px; }
  /* Ensure mobile overlay links have proper tap targets */
  .nav-mobile a { padding: var(--sp-3) var(--sp-5); min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* ─── HERO ─── */
  .hero {
    padding-top: 88px; padding-bottom: var(--sp-8);
    min-height: auto;
  }
  h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); line-height: 1.1; }
  .hero-sub { font-size: var(--fs-sm); }
  .hero-badge { font-size: var(--fs-xs); margin-bottom: var(--sp-4); }
  /* Hide floating stickers on mobile (overflow issue) */
  .sticker { display: none; }
  .hero-card { padding: var(--sp-4); }
  .hero-card-title { font-size: var(--fs-md); }
  .hero-card-sub { font-size: var(--fs-xs); }

  /* ─── SECTIONS ─── */
  section { padding: var(--sp-10) var(--sp-4); }
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-lead { font-size: var(--fs-sm); margin-bottom: var(--sp-6); }

  /* ─── STATS BAR: 2x2 grid, hide dividers ─── */
  .stats-bar .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
  }
  .stat-item { padding: var(--sp-3) var(--sp-2); text-align: center; }
  .stat-num { font-size: var(--fs-lg); }
  .stat-label { font-size: 0.65rem; }
  .stat-divider { display: none; }

  /* ─── SIGNATURE GRID ─── */
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
  .sig-card-body { padding: var(--sp-3); }
  .sig-card-name { font-size: var(--fs-sm); }
  .sig-card-desc { font-size: var(--fs-xs); margin-bottom: var(--sp-2); }
  .sig-price { font-size: var(--fs-sm); }
  .sig-badge { font-size: 0.65rem; padding: 2px 8px; }

  /* ─── MENU TABS: horizontal scroll ─── */
  .menu-tabs-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, #000 90%, transparent);
    mask-image: linear-gradient(to right, #000 90%, transparent);
  }
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--sp-2);
    gap: var(--sp-2);
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { flex-shrink: 0; min-height: 44px; }

  /* ─── MENU GRID ─── */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
  .menu-card-body { padding: var(--sp-3); }
  .menu-card-name { font-size: var(--fs-sm); }
  .menu-card-desc { font-size: var(--fs-xs); margin-bottom: var(--sp-2); }
  .menu-price { font-size: var(--fs-sm); }
  .menu-badge { font-size: 0.65rem; padding: 2px 8px; }
  .sold-ribbon { top: 8px; font-size: 0.6rem; padding: 3px 8px; }

  /* ─── OUR STORY (cinematic mobile) ─── */
  .cinema-scene,
  .cinema-scene--reverse {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-8) var(--sp-4);
  }
  .cinema-image-wrap { max-width: 280px; width: 100%; }
  /* Reduce 3D rotation on mobile for performance but keep the effect */
  .cinema-slide-left {
    transform: translateX(-40px) rotateY(6deg) scale(0.92);
  }
  .cinema-slide-right {
    transform: translateX(40px) rotateY(-6deg) scale(0.92);
  }
  .cinema-slide-bottom {
    transform: translateY(30px) rotateX(-4deg) scale(0.92);
  }
  .cinema-text-wrap {
    transform: translateY(20px) rotateX(-3deg);
  }
  .cinema-text-wrap p { margin-left: auto; margin-right: auto; font-size: var(--fs-sm); }
  .story-values { justify-content: center; }

  /* ─── LOCATIONS ─── */
  .locations-grid { grid-template-columns: 1fr; }
  .loc-map { height: 160px; }

  /* ─── REVIEWS ─── */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: var(--sp-4); }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  #open-review-modal { width: 100%; text-align: center; }

  /* ─── CTA BANNER: stack text + button ─── */
  .cta-banner { padding: var(--sp-8) var(--sp-4); }
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .cta-banner h2 { font-size: clamp(1.3rem, 4vw, 2rem); margin-bottom: var(--sp-4); }

  /* ─── FOOTER: single column stack ─── */
  .footer-top {
    flex-direction: column;
    gap: var(--sp-6);
  }
  .footer-brand { flex: none; width: 100%; }
  .footer-col { flex: none; width: 100%; min-width: 0; }

  /* ─── WHATSAPP FLOAT ─── */
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }

  /* ─── BACK TO TOP ─── */
  #back-to-top { width: 44px; height: 44px; bottom: 16px; left: 16px; }
}

/* ── SMALL MOBILE (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }

  /* ─── NAVBAR ─── */
  .navbar { padding: var(--sp-2); }
  .nav-inner { padding: 5px var(--sp-3); }
  .nav-logo { font-size: 0.9rem; gap: 4px; }
  .nav-logo img { height: 22px; width: 22px; }
  .nav-mobile a { font-size: var(--fs-lg); }

  /* ─── HERO ─── */
  .hero { padding-top: 76px; padding-bottom: var(--sp-6); }
  h1 { font-size: clamp(1.6rem, 9vw, 2.4rem); }
  .hero-badge { font-size: 0.65rem; padding: 4px 12px; }
  .hero-sub { font-size: 0.82rem; }

  /* Full-width stacked buttons */
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: var(--fs-sm); min-height: 48px; }

  .hero-visual { max-width: 280px; }
  .hero-card { padding: var(--sp-3); }
  .hero-card-img { margin-bottom: var(--sp-3); }

  /* ─── SECTIONS ─── */
  section { padding: var(--sp-8) var(--sp-3); }

  /* ─── STATS BAR ─── */
  .stats-bar { padding: var(--sp-4) var(--sp-3); }
  .stats-bar .container { gap: var(--sp-2); }
  .stat-item { padding: var(--sp-2); }
  .stat-num { font-size: var(--fs-md); }
  .stat-label { font-size: 0.6rem; }

  /* ─── SIGNATURE GRID ─── */
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2);
  }
  .sig-card-body { padding: var(--sp-2); }
  .sig-card-name { font-size: 0.78rem; line-height: 1.3; }
  .sig-card-desc { display: none; }
  .sig-card-footer { flex-direction: column; align-items: flex-start; gap: 4px; }
  .sig-price { font-size: var(--fs-xs); }
  .sig-badge { font-size: 0.6rem; }

  /* ─── MENU TABS ─── */
  .menu-tabs {
    gap: 6px;
    padding-bottom: var(--sp-2);
    margin-bottom: var(--sp-4);
  }
  .tab-btn { padding: 8px 14px; font-size: var(--fs-xs); min-height: 44px; }

  /* ─── MENU GRID ─── */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2);
  }
  .menu-card-body { padding: var(--sp-2); }
  .menu-card-name { font-size: 0.78rem; line-height: 1.3; }
  .menu-card-desc { display: none; }
  .menu-card-footer { flex-direction: column; align-items: flex-start; gap: 4px; }
  .menu-price { font-size: var(--fs-xs); }
  .menu-badge { font-size: 0.6rem; }
  .menu-sizes { gap: 4px; }
  .size-chip { padding: 4px 8px; font-size: 0.6rem; min-height: 32px; }

  /* ─── OUR STORY (cinematic small mobile) ─── */
  .cinema-scene,
  .cinema-scene--reverse {
    padding: var(--sp-6) var(--sp-3);
    gap: var(--sp-4);
  }
  .cinema-image-wrap { max-width: 240px; }
  .cinema-text-wrap h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .cinema-text-wrap p { font-size: var(--fs-xs); }
  .story-values { gap: var(--sp-1); }
  .value-chip { padding: 6px 12px; font-size: var(--fs-xs); min-height: 44px; display: inline-flex; align-items: center; }

  /* ─── LOCATIONS ─── */
  .loc-card { padding: var(--sp-4); }
  .loc-map { height: 140px; }
  .loc-name { font-size: var(--fs-md); }

  /* ─── REVIEWS ─── */
  .review-card { padding: var(--sp-3); }
  .review-text { font-size: var(--fs-xs); }
  .review-stars { font-size: var(--fs-sm); }

  /* ─── CTA BANNER ─── */
  .cta-banner { padding: var(--sp-6) var(--sp-3); }
  .cta-banner h2 { margin-bottom: var(--sp-4); }
  .btn-white { padding: 14px 28px !important; font-size: var(--fs-sm) !important; min-height: 48px !important; width: 100%; justify-content: center; }

  /* ─── FOOTER ─── */
  footer { padding: var(--sp-6) var(--sp-3) var(--sp-4); }
  .footer-logo { font-size: var(--fs-md); }
  .footer-desc { font-size: var(--fs-xs); }
  .footer-col h4 { font-size: var(--fs-xs); }
  .footer-col a { font-size: var(--fs-xs); padding: var(--sp-1) 0; min-height: 36px; display: flex; align-items: center; }

  /* ─── WHATSAPP FLOAT ─── */
  .whatsapp-float { width: 48px; height: 48px; bottom: 14px; right: 14px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
  .whatsapp-tooltip { display: none; }

  /* ─── BACK TO TOP ─── */
  #back-to-top { width: 40px; height: 40px; bottom: 14px; left: 14px; }

  /* ─── ORDER BUTTON ─── */
  .menu-card-order { padding: 4px 10px; font-size: 0.6rem; min-height: 32px; display: inline-flex; align-items: center; }
  .menu-card-order svg { width: 10px; height: 10px; }
  .menu-card-no-img { font-size: 1.8rem; }
  .loc-directions { font-size: var(--fs-xs); min-height: 44px; display: inline-flex; align-items: center; }
}

/* ── EXTRA SMALL (≤360px) ───────────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 var(--sp-3); }

  /* ─── NAVBAR ─── */
  .nav-logo { font-size: 0.82rem; }
  .nav-logo img { height: 20px; width: 20px; }

  /* ─── HERO ─── */
  .hero { padding-top: 72px; padding-bottom: var(--sp-5); }
  h1 { font-size: 1.5rem; line-height: 1.15; }
  .hero-badge { font-size: 0.6rem; padding: 3px 10px; }
  .hero-sub { font-size: 0.78rem; }
  .hero-visual { max-width: 240px; }

  /* ─── SECTIONS ─── */
  section { padding: var(--sp-6) var(--sp-2); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* ─── STATS BAR: keep 2x2 but tighter ─── */
  .stats-bar { padding: var(--sp-3) var(--sp-2); }
  .stat-num { font-size: var(--fs-base); }
  .stat-label { font-size: 0.55rem; }

  /* ─── SIGNATURE GRID: tighter minmax for 320px ─── */
  .signature-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--sp-2);
  }
  .sig-card-body { padding: var(--sp-2); }
  .sig-card-name { font-size: 0.72rem; }
  .sig-price { font-size: 0.7rem; }

  /* ─── MENU GRID: full-width cards on tiny screens ─── */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .menu-card-body { padding: var(--sp-3); }
  .menu-card-name { font-size: var(--fs-sm); }
  .menu-card-desc { display: block; font-size: var(--fs-xs); margin-bottom: var(--sp-2); }
  .menu-price { font-size: var(--fs-sm); }

  /* ─── MENU TABS ─── */
  .menu-tabs { gap: 4px; }
  .tab-btn { padding: 6px 10px; font-size: 0.6rem; }

  /* ─── OUR STORY (cinematic extra small) ─── */
  .cinema-text-wrap h2 { font-size: 1.2rem; }
  .cinema-image-wrap { max-width: 200px; }
  .value-chip { font-size: 0.6rem; padding: 4px 8px; }

  /* ─── CTA BANNER ─── */
  .cta-banner { padding: var(--sp-5) var(--sp-2); }
  .cta-banner h2 { font-size: 1.2rem; }

  /* ─── FOOTER ─── */
  footer { padding: var(--sp-5) var(--sp-2) var(--sp-3); }

  /* ─── FLOATING BUTTONS: avoid overlap ─── */
  .whatsapp-float { width: 44px; height: 44px; bottom: 12px; right: 12px; }
  .whatsapp-float svg { width: 20px; height: 20px; }
  #back-to-top { width: 38px; height: 38px; bottom: 12px; left: 12px; }
}

/* ── LANDSCAPE PHONE (height ≤500px, width ≤900px) ─────── */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 72px; padding-bottom: var(--sp-5); }
  .hero .container { flex-direction: row; gap: var(--sp-4); }
  .hero-text { order: 1; }
  .hero-visual { order: 2; max-width: 240px; }
  .hero-card { padding: var(--sp-3); }
  h1 { font-size: clamp(1.4rem, 4vw, 2rem); }
  .nav-mobile a { font-size: var(--fs-md); padding: var(--sp-2) var(--sp-4); }
}

/* ── PREFERS-REDUCED-MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sticker-1, .sticker-2, .chip-1, .chip-2 { animation: none; }
  .whatsapp-float { animation: none; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .cta-banner { animation: none; }
  /* Feature 3: Loader - instant letters */
  .loader-letter { animation: none; opacity: 1; transform: none; filter: none; }
  .loader-text.letters-done { animation: none; }
  .loader-ring, .loader-glow, .loader-tagline { animation: none; opacity: 0; }
  .loader-tagline { opacity: 1; color: rgba(255,249,244,0.5); }
  /* Feature 2: Cinema - simpler reveal, no 3D */
  .cinema-image-wrap,
  .cinema-text-wrap {
    opacity: 1; transform: none; transition: none;
  }
  .cinema-slide-left,
  .cinema-slide-right,
  .cinema-slide-bottom {
    transform: none;
  }
  .cinema-image-wrap img { transform: scale(1); transition: none; }
  .value-chip { opacity: 1; transform: none; transition: none; }
  .story-section .ember { display: none; }
  /* Feature 6: Wow factor - disable */
  .stat-num.pulse { animation: none; }
  .review-card:hover .review-stars { filter: none; }
  .section-divider { opacity: 1; transform: none; transition: none; }
  #cursor-glow { display: none; }
  /* Neumorphic hover */
  .neu-btn:hover { transform: none; }
  /* Card hover */
  .menu-card:hover .menu-card-img,
  .sig-card:hover .sig-card-img { transform: none; }
}
