﻿/* Premium responsive navbar for Lion Of Punjab */
:root{
  --b: rgba(5,5,7,0.55);
  --glass: rgba(255,255,255,0.04);
  --gold: #d4af37;
  --gold-dark: #b88620;
  --deep-red: #7b0a0a;
  --muted: rgba(230,210,190,0.06);
  --container: 1200px;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background:#040304;color:#fff}

.nav-inner{
  max-width:var(--container);margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:0.6rem 1rem;gap:1rem;
}

.nav-brand{display:flex;align-items:center;gap:0.9rem}

/* Actions and menu */
.nav-menu{list-style:none;margin:0;padding:0;display:flex;gap:1.25rem;align-items:center}
.nav-menu .nav-link{color:#f6e9d3;text-decoration:none;padding:0.5rem 0.6rem;border-radius:10px;transition:all .22s ease;display:inline-block}
.nav-menu .nav-link:hover{background:linear-gradient(90deg, rgba(212,175,55,0.08), rgba(123,10,10,0.03));box-shadow:0 4px 18px rgba(212,175,55,0.06),0 1px 0 rgba(255,255,255,0.02);transform:translateY(-2px)}

.lang-switcher{display:flex;gap:0.4rem;align-items:center}

.cookie-consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(8, 6, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.cookie-consent-banner p {
  margin: 0;
  color: #f4f1e7;
  line-height: 1.5;
  max-width: 52rem;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-toggle{background:transparent;border:0;padding:0.3rem 0.5rem;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer}
.nav-toggle:focus{outline:2px solid rgba(212,175,55,0.18)}

/* Desktop styles */
@media (min-width:900px){
  .nav-inner{padding:1rem 1.5rem}
}

/* Mobile adjustments */
@media (max-width:899px){
  .nav-menu{display:none}
  .lang-switcher{position:fixed;top:0.6rem;right:1rem;z-index:1000}
  .hero {
    position: relative;
    min-height: 90vh;
    background:
      linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.15)),
      url('images/hero.jpeg') center center / 100% 100% no-repeat !important;
  }
}

/* Restore original review slider after removing external widget. */
.review-marquee {
  display: block !important;
}

/* Accessibility helpers */
.nav-menu a:focus{outline:2px solid rgba(212,175,55,0.18);outline-offset:3px}

:root {
  color-scheme: dark;
  --bg: #800000;
  --surface: #6b0000;
  --surface-strong: #550000;
  --text: #f8f9fa;
  --muted: #f0d6d6;
  --primary: #d62828;
  --primary-dark: #b11a1a;
  --accent: #a11212;
  --gold: #D4AF37;
}

* {
  box-sizing: border-box;
}

/* Premium Button Animations */
@keyframes buttonGlowHover {
  0% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.3), inset 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.05);
  }
  100% {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.08);
  }
}

@keyframes buttonPress {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes mobileButtonGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.28),
      0 10px 26px rgba(0, 0, 0, 0.32),
      0 0 18px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.48),
      0 14px 34px rgba(0, 0, 0, 0.38),
      0 0 32px rgba(212, 175, 55, 0.42);
  }
}

@keyframes mobileButtonSweep {
  from {
    transform: translateX(-140%) skewX(-18deg);
  }
  to {
    transform: translateX(140%) skewX(-18deg);
  }
}

@keyframes goldShimmer {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
  }
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 26%),
    linear-gradient(135deg, #050505 0%, #2A0000 30%, #4B0000 50%, #2A0000 70%, #050505 100%),
    url('images/logo.jpeg') center/cover no-repeat;
  background-blend-mode: overlay, normal, normal;
  color: var(--text);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 90vh;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 24%),
    linear-gradient(135deg, #050505 0%, #2A0000 30%, #4B0000 50%, #2A0000 70%, #050505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/logo.jpeg') center center / 42% no-repeat;
  opacity: 0.40;
  mix-blend-mode: screen;
  filter: blur(0.5px);
  transform: scale(2.5);
  background-clip:padding-box;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.52);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin: 0;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.45);
  letter-spacing: 0.03em;
}

.hero p {
  margin: 1.25rem auto 0;
  max-width: 640px;
  color: var(--muted);
}

.hero-typewriter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 2.45rem;
  max-width: min(92vw, 720px);
  padding: 0.38rem 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(8, 4, 4, 0.38);
  color: #fff4c4;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.38);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  animation: heroTypewriterAura 3.8s ease-in-out infinite;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.hero-typewriter span {
  position: relative;
  display: inline-block;
  z-index: 1;
  transition:
    color 0.28s ease,
    text-shadow 0.28s ease,
    transform 0.28s ease;
}

.hero-typewriter::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -65%;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 248, 198, 0.52),
    rgba(212, 175, 55, 0.28),
    transparent
  );
  transform: skewX(-18deg);
  animation: heroTypewriterShine 4.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-typewriter::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 2px;
  height: 1.12em;
  margin-left: 0.38rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.7);
  animation: typeCaretBlink 0.85s steps(1) infinite;
}

.hero-typewriter.is-complete {
  border-color: rgba(255, 232, 145, 0.48);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(212, 175, 55, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-typewriter.is-complete span {
  color: #fff9dc;
  text-shadow:
    0 0 18px rgba(255, 221, 112, 0.58),
    0 0 34px rgba(212, 175, 55, 0.32);
}

.hero-typewriter.is-changing {
  transform: translateY(-1px) scale(1.018);
}

@keyframes typeCaretBlink {
  50% {
    opacity: 0;
  }
}

@keyframes heroTypewriterAura {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.28),
      0 0 16px rgba(212, 175, 55, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  50% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.32),
      0 0 28px rgba(212, 175, 55, 0.23),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

@keyframes heroTypewriterShine {
  0%,
  62% {
    left: -65%;
    opacity: 0;
  }

  72% {
    opacity: 1;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-typewriter,
  .hero-typewriter::before,
  .hero-typewriter::after,
  .hero-food-track,
  .hero-food-card,
  .hero-food-card img {
    animation: none !important;
  }

  .hero-food-track {
    transform: none !important;
  }

  .hero-food-card,
  .hero-food-card img {
    transform: none !important;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-food-carousel {
  display: none;
}

.hero-food-rail {
  overflow: hidden;
}

.hero-food-track {
  display: flex;
  width: max-content;
  gap: 0.68rem;
  will-change: transform;
}

.hero-food-card {
  position: relative;
  flex: 0 0 8.6rem;
  width: 8.6rem;
  height: 6.1rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 221, 118, 0.34);
  border-radius: 18px;
  background: #130707;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(212, 175, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-food-card:nth-child(2n) {
  animation-delay: -1.4s;
}

.hero-food-card:nth-child(3n) {
  animation-delay: -2.6s;
}

.hero-food-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-food-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at 35% 20%, rgba(255, 221, 118, 0.16), transparent 34%);
  pointer-events: none;
}

.hero-food-card figcaption {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.42rem;
  z-index: 1;
  color: #fff1b9;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.75);
}

@media (max-width: 899px) {
  .hero-food-carousel {
    display: block;
    width: min(calc(100vw - 1.4rem), 430px);
    /* FOOD CAROUSEL GAP: increase this number to move the food strip lower. */
    margin: 2.55rem auto 0;
    overflow: hidden;
  }

  .hero-food-rail {
    padding: 0.25rem 0 0.35rem;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }

  .hero-food-track {
    animation: heroFoodCleanMarquee 28s linear infinite;
  }

  .hero-food-carousel:active .hero-food-track {
    animation-play-state: paused;
  }
}

@media (max-width: 560px) {
  .hero-food-carousel {
    width: min(calc(100vw - 1rem), 390px);
    /* FOOD CAROUSEL GAP SMALL MOBILE: increase this number for very small phones. */
    margin-top: 2.25rem;
  }

  .hero-food-track {
    gap: 0.55rem;
  }

  .hero-food-card {
    flex-basis: 7.35rem;
    width: 7.35rem;
    height: 5.25rem;
    border-radius: 15px;
  }

  .hero-food-card figcaption {
    left: 0.48rem;
    right: 0.48rem;
    bottom: 0.35rem;
    font-size: 0.5rem;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.button::after {
  content: '';
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 196, 0.34), transparent);
  opacity: 0;
  transform: translateX(-140%) skewX(-18deg);
  pointer-events: none;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
  animation: buttonGlowHover 0.6s ease-out;
}

.button:active {
  animation: buttonPress 0.3s ease-out;
}

.button:active::before {
  opacity: 1;
}

.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #e63d3d 100%);
  color: #0a0a0a;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.primary:hover {
  background: linear-gradient(135deg, #e63d3d 0%, var(--primary) 100%);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 
    0 0 24px rgba(212, 175, 55, 0.3),
    0 12px 32px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #000;
}

.primary:active {
  box-shadow: 
    0 0 20px rgba(212, 175, 55, 0.3),
    0 4px 12px rgba(212, 175, 55, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: var(--text);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.secondary:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--gold);
  box-shadow: 
    0 0 24px rgba(212, 175, 55, 0.3),
    0 12px 32px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.secondary:active {
  box-shadow: 
    0 0 20px rgba(212, 175, 55, 0.25),
    0 4px 12px rgba(212, 175, 55, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 5rem 1.5rem;
}

#about {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(24, 0, 0, 0.82) 0%, rgba(63, 0, 0, 0.52) 46%, rgba(18, 8, 3, 0.22) 100%),
    url("images/about.jpeg") center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-attachment: fixed;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 214, 108, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(4, 3, 4, 0.05), rgba(4, 3, 4, 0.28));
}

#about::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  z-index: -1;
  border: 1px solid rgba(212, 175, 55, 0.26);
  pointer-events: none;
}

#about .container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: max(1.5rem, calc((100vw - var(--container)) / 2));
  padding: 2.65rem 2.9rem;
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(27, 0, 0, 0.72), rgba(63, 9, 6, 0.42));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#about p {
  max-width: 760px;
  color: #ffe18a;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.35vw, 1.62rem);
  font-style: italic;
  line-height: 1.55;
}

#about .about-copy p:not(.about-signature) {
  margin: 0.85rem 0 0;
}

#about h2 {
  margin-top: 0;
  letter-spacing: 0.03em;
}

#about .about-panel {
  max-width: 1120px;
  display: block;
}

.about-copy {
  min-width: 0;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.36rem 0.78rem;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  color: #fff0bd;
  background: rgba(212, 175, 55, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#about .about-signature {
  margin-top: 1.15rem;
  color: #ffe18a;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.35vw, 1.62rem);
  font-style: italic;
  line-height: 1.55;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

p,
li {
  color: var(--muted);
}

.highlight {
  background: var(--surface);
}

.section-intro {
  max-width: 760px;
  margin-top: 0.75rem;
  color: var(--muted);
}

.site-nav {
  background: rgba(13, 17, 23, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 0.75rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  gap: 0.75rem;
}

.nav-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-brand span {
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 0.85rem);
  right: calc(env(safe-area-inset-right, 0px) + 0.9rem);
  z-index: 1300;
}

.lang-switcher select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.language-current,
.language-option {
  appearance: none;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: linear-gradient(135deg, rgba(87, 0, 0, 0.96), rgba(32, 5, 5, 0.96));
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 92px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.5rem 0.72rem 0.5rem 0.58rem;
  letter-spacing: 0.04em;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 4px rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.language-current:hover,
.language-current:focus-visible,
.lang-switcher.open .language-current {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 5px rgba(212, 175, 55, 0.12);
}

.language-current::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.lang-switcher.open .language-current::after {
  transform: translateY(2px) rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 1002;
  display: grid;
  gap: 0.35rem;
  min-width: 112px;
  padding: 0.45rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(26, 7, 7, 0.98), rgba(8, 10, 15, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.lang-switcher.open .language-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 11px;
  background: transparent;
  text-align: left;
  border-color: transparent;
}

.language-option:hover,
.language-option:focus-visible,
.language-option[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
  color: #fff7d6;
  outline: none;
}

.flag-icon {
  display: inline-block;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 1.45rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.flag-gb {
  background:
    linear-gradient(33deg, transparent 41%, #fff 41%, #fff 47%, #c8102e 47%, #c8102e 53%, #fff 53%, #fff 59%, transparent 59%),
    linear-gradient(-33deg, transparent 41%, #fff 41%, #fff 47%, #c8102e 47%, #c8102e 53%, #fff 53%, #fff 59%, transparent 59%),
    linear-gradient(90deg, transparent 42%, #fff 42%, #fff 46%, #c8102e 46%, #c8102e 54%, #fff 54%, #fff 58%, transparent 58%),
    linear-gradient(0deg, transparent 38%, #fff 38%, #fff 44%, #c8102e 44%, #c8102e 56%, #fff 56%, #fff 62%, transparent 62%),
    #012169;
}

.flag-de {
  background: linear-gradient(180deg, #000 0%, #000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%, #ffce00 100%);
}

.flag-nl {
  background: linear-gradient(180deg, #ae1c28 0%, #ae1c28 33.33%, #fff 33.33%, #fff 66.66%, #21468b 66.66%, #21468b 100%);
}

.lang-switcher select:focus,
.language-current:focus-visible {
  outline: 2px solid rgba(212,168,64,0.35);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: transform 0.2s ease;
}

.nav-toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle-icon::before {
  transform: translateY(-6px);
}

.nav-toggle-icon::after {
  transform: translateY(4px);
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: auto;
}

.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  font-weight: 600;
  text-align: left;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.menu-card.premium {
  background: linear-gradient(180deg, rgba(0,0,0,0.35), var(--surface));
  border: 1px solid rgba(212,168,64,0.18);
  box-shadow: 0 10px 30px rgba(212,168,64,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.menu-card.premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(212,168,64,0.12);
}

.menu-card .menu-meta {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card .price {
  color: var(--gold);
  font-weight: 700;
}

.menu-card .tag {
  background: rgba(212,168,64,0.12);
  color: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.gallery-frame {
  position: relative;
  margin-top: 2.2rem;
  padding: 1rem;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 0, 0, 0.76), rgba(5, 5, 7, 0.8)),
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.16), transparent 26%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.gallery-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(212, 175, 55, 0.16);
  pointer-events: none;
}

.gallery-grid {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 0.85rem;
  perspective: 1100px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #120909;
  border: 1px solid rgba(212, 168, 64, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: galleryReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--gallery-order, 0) * 0.08s);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.gallery-card:nth-child(1) { --gallery-order: 0; }
.gallery-card:nth-child(2) { --gallery-order: 1; }
.gallery-card:nth-child(3) { --gallery-order: 2; }
.gallery-card:nth-child(4) { --gallery-order: 3; }
.gallery-card:nth-child(5) { --gallery-order: 4; }
.gallery-card:nth-child(6) { --gallery-order: 5; }
.gallery-card:nth-child(7) { --gallery-order: 6; }
.gallery-card:nth-child(8) { --gallery-order: 7; }
.gallery-card:nth-child(9) { --gallery-order: 8; }
.gallery-card:nth-child(10) { --gallery-order: 9; }

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: sepia(0.18) saturate(1.14) contrast(1.08) brightness(0.92);
  transform: scale(1.02);
  transition: transform 0.75s ease, filter 0.45s ease;
}

.gallery-card img:not(.is-loaded) {
  filter: blur(16px) sepia(0.18) saturate(1.14) contrast(1.08) brightness(0.76);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.14), transparent 28%);
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
  color: var(--text);
  transform: translateY(10px);
  opacity: 0.9;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.gallery-overlay h4 {
  margin: 0 0 0.25rem;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.gallery-overlay p {
  margin: 0;
  color: #fff1df;
  font-size: 0.88rem;
  line-height: 1.4;
}

.gallery-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.46);
  border-color: rgba(212, 175, 55, 0.72);
  z-index: 3;
}

.gallery-card:hover img {
  filter: sepia(0.08) saturate(1.22) contrast(1.12) brightness(1.02);
  transform: scale(1.12);
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-preview {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.16), transparent 28%),
    rgba(3, 2, 2, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  touch-action: pan-y;
}

.gallery-preview.open {
  display: flex;
}

.gallery-preview-figure {
  width: min(100%, 920px);
  margin: 0;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.gallery-preview-image {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 20px;
  opacity: 0;
  filter: blur(10px) brightness(0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(212, 175, 55, 0.24);
  transition: opacity 0.34s ease, filter 0.34s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-preview-image.from-right {
  transform: translateX(46px) scale(0.97);
}

.gallery-preview-image.from-left {
  transform: translateX(-46px) scale(0.97);
}

.gallery-preview-image.is-ready {
  opacity: 1;
  filter: blur(0) brightness(1);
  transform: translateX(0) scale(1);
}

.gallery-preview-caption {
  display: grid;
  gap: 0.2rem;
  text-align: center;
  color: #fff1df;
}

.gallery-preview-caption strong {
  color: var(--gold);
  font-size: 1rem;
}

.gallery-preview-caption span {
  color: rgba(255, 241, 223, 0.82);
  font-size: 0.88rem;
}

.gallery-preview-close,
.gallery-preview-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(12, 5, 5, 0.72);
  color: var(--gold);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.gallery-preview-close {
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-size: 1.75rem;
}

.gallery-preview-arrow {
  top: 50%;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2rem;
  transform: translateY(-50%);
}

.gallery-preview-arrow.prev {
  left: 1rem;
}

.gallery-preview-arrow.next {
  right: 1rem;
}

@keyframes galleryReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.16), transparent 30%),
    rgba(3, 2, 2, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox-figure {
  width: min(100%, 980px);
  margin: 0;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.gallery-lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 22px;
  object-fit: contain;
  opacity: 0;
  filter: blur(14px) brightness(0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(212, 175, 55, 0.24);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
  transform: scale(0.98);
}

.gallery-lightbox-image.is-loaded {
  opacity: 1;
  filter: blur(0) brightness(1);
  transform: scale(1);
}

.gallery-lightbox-caption {
  display: grid;
  gap: 0.2rem;
  text-align: center;
  color: #fff1df;
}

.gallery-lightbox-caption strong {
  color: var(--gold);
  font-size: 1rem;
}

.gallery-lightbox-caption span {
  color: rgba(255, 241, 223, 0.82);
  font-size: 0.88rem;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(12, 5, 5, 0.68);
  color: var(--gold);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  font-size: 1.8rem;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2.1rem;
  transform: translateY(-50%);
}

.gallery-lightbox-nav.prev {
  left: 1rem;
}

.gallery-lightbox-nav.next {
  right: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card,
  .gallery-card img {
    animation: none !important;
  }
}

.review-marquee {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  touch-action: pan-y;
}

.google-reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 1.5rem;
  align-items: end;
}

.google-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  color: #ffe6a0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.22);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.google-pill::before {
  content: "G";
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  color: #111;
  background: #fff;
  font-weight: 900;
}

.google-rating-card {
  display: grid;
  justify-items: start;
  gap: 0.42rem;
  padding: 1.1rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(15, 7, 6, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.google-rating-label {
  color: rgba(255, 241, 223, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.google-rating-card strong {
  color: #fff8e8;
  font-size: 2.55rem;
  line-height: 1;
}

.google-review-button {
  width: 100%;
  margin-top: 0.35rem;
  justify-content: center;
  padding: 0.78rem 1rem;
  font-size: 0.86rem;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 90px);
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface) 0%, rgba(107, 0, 0, 0) 100%);
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface) 0%, rgba(107, 0, 0, 0) 100%);
}

.review-grid {
  display: flex;
  flex-wrap: nowrap;
  --review-card-width: 320px;
  --review-gap: 1.5rem;
  gap: var(--review-gap);
  width: max-content;
  padding-bottom: 2.5rem;
  animation: reviewMarquee 54s linear infinite;
  will-change: transform;
}

.review-marquee:focus-within .review-grid,
.review-marquee.is-paused .review-grid {
  animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
  .review-marquee:hover .review-grid {
    animation-play-state: paused;
  }
}

.review-card {
  min-width: 280px;
  flex: 0 0 var(--review-card-width);
  scroll-snap-align: center;
  padding: 1.75rem;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(18, 8, 7, 0.84);
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  transform: none;
  opacity: 1;
  animation: none;
}

.review-card:nth-child(1) { --review-order: 0; }
.review-card:nth-child(2) { --review-order: 1; }
.review-card:nth-child(3) { --review-order: 2; }
.review-card:nth-child(4) { --review-order: 3; }

.review-card p {
  margin: 0 0 1.25rem;
  color: var(--text);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  border-radius: 50%;
  color: #210d0a;
  background: linear-gradient(135deg, #fff4c4, var(--gold));
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.review-author strong {
  display: block;
  color: #fff8e8;
  line-height: 1.15;
}

.review-author span:not(.review-avatar) {
  display: block;
  color: rgba(255, 241, 223, 0.64);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.review-stars {
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .review-grid {
    animation: none;
    overflow-x: auto;
    width: auto;
    scroll-snap-type: x mandatory;
  }

  .nav-menu,
  .nav-menu .nav-link {
    transition: none !important;
    transform: none !important;
  }

  .nav-menu.open,
  .nav-menu.open .nav-link {
    opacity: 1;
  }
}

@keyframes reviewCardFade {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes reviewFloat {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6%);
  }
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc((var(--review-card-width) + var(--review-gap)) * var(--review-card-count, 4) * -1));
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: 2rem;
  align-items: stretch;
}

.contact-card,
.map-card {
  padding: 0.75rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-card h2,
.map-card h3 {
  margin-top: 0;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-card li {
  margin-bottom: 0.75rem;
}

.contact-panel {
  --contact-icon-size: 48px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.contact-list-item {
  width: var(--contact-icon-size);
  height: var(--contact-icon-size);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.phone-icon-link,
.email-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--contact-icon-size);
  height: var(--contact-icon-size);
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.phone-icon-link {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.65), transparent 30%),
    linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32), 0 0 0 6px rgba(37, 211, 102, 0.12);
}

.email-icon-link {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.75), transparent 28%),
    linear-gradient(135deg, #d4af37 0%, #f4d675 42%, #7b0a0a 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32), 0 0 0 6px rgba(212, 175, 55, 0.13);
}

.phone-icon-link:hover,
.phone-icon-link:focus-visible,
.email-icon-link:hover,
.email-icon-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  outline: none;
}

.phone-icon-link:hover,
.phone-icon-link:focus-visible {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(37, 211, 102, 0.18);
}

.email-icon-link:hover,
.email-icon-link:focus-visible {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(212, 175, 55, 0.2);
}

.phone-icon,
.email-icon {
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
}

.phone-icon {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.email-icon {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2zm8 7.35L4.35 7H4v1.25l8 5.6 8-5.6V7h-.35L12 12.35z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: var(--text);
  font-weight: 700;
}

.social-follow > span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--contact-icon-size);
  height: var(--contact-icon-size);
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  outline: none;
}

.social-icon span {
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 105%, #fdf497 0%, #fdf497 18%, #fd5949 42%, #d6249f 66%, #285aeb 100%);
}

.social-icon.instagram span {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4c0 3.2-2.6 5.8-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8C2 4.6 4.6 2 7.8 2zm-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.4 5.6 20 7.6 20h8.8c2 0 3.6-1.6 3.6-3.6V7.6C20 5.6 18.4 4 16.4 4H7.6zm9.65 1.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #0b5bd3);
}

.social-icon.facebook span {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8.5V6.75c0-.49.4-.89.89-.89H17V2h-3.08C10.94 2 9 4.02 9 7.16V8.5H6v4h3V22h4.5v-9.5h3.1l.55-4H13.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.map-card iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 18px;
  margin-top: 1rem;
}

.contact-info {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(42, 0, 0, 0.92), rgba(20, 0, 0, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 18px;
  color: #F5F5F5;
}

.info-box {
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.info-box h3 {
  color: #D4AF37;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.info-box p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  white-space: pre-line;
}

.reservation-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

#contact .reservation-section {
  display: flex;
  justify-content: center;
}

.contact-panel {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  width: min(100%, 520px);
  padding: 1.4rem;
  text-align: center;
}

.contact-panel h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

label {
  display: block;
  margin-top: 1rem;
  color: var(--text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(212,168,64,0.35);
  outline-offset: 2px;
}

form button {
  width: 100%;
  margin-top: 1.5rem;
}

.form-message {
  margin-top: 1rem;
  color: #b7e778;
}

.netlify-honeypot {
  display: none;
}

/* Menu Modal Styles with Glassmorphism */
.menu-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10010;
  animation: menuModalFadeIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-modal[aria-hidden="false"] {
  display: flex;
}

@keyframes menuModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: backdropBlur 0.4s ease-out;
}

@keyframes backdropBlur {
  from {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  to {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

.menu-modal-dialog {
  position: relative;
  width: min(95%, 820px);
  max-height: 90vh;
  overflow: hidden;
  border-radius: 32px;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(20, 10, 10, 0.95) 0%,
    rgba(50, 10, 10, 0.88) 25%,
    rgba(75, 0, 0, 0.92) 50%,
    rgba(50, 10, 10, 0.88) 75%,
    rgba(20, 10, 10, 0.95) 100%
  );
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  box-shadow: 
    0 0 40px rgba(212, 175, 55, 0.12),
    0 30px 100px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: modalSmokeIn 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalSmokeIn {
  from {
    transform: scale(0.96) translateY(18px);
    opacity: 0;
    filter: blur(8px);
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

.menu-modal-dialog::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1), transparent 45%),
              radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.05), transparent 50%);
  pointer-events: none;
}

.menu-modal-dialog::after {
  content: '';
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 235, 184, 0.18), transparent 18%),
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.1), transparent 16%),
    radial-gradient(circle at 42% 80%, rgba(212, 175, 55, 0.12), transparent 19%);
  opacity: 0;
  filter: blur(18px);
  animation: menuSmokeDrift 1.35s ease-out forwards;
}

@keyframes menuSmokeDrift {
  0% {
    opacity: 0.72;
    transform: translateY(18px) scale(0.98);
  }
  100% {
    opacity: 0;
    transform: translateY(-22px) scale(1.08);
  }
}

.menu-modal-content {
  position: relative;
  z-index: 1;
  max-height: calc(90vh - 4rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.25rem;
}

.menu-modal-content h2 {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.5rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.02em;
}

.menu-modal-intro {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
  font-weight: 400;
  line-height: 1.5;
}

.main-menu-kicker {
  display: block;
  width: fit-content;
  margin: 0 auto 0.65rem;
  padding: 0.36rem 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  color: #f8df96;
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-menu-list {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.main-menu-side-actions {
  position: absolute;
  top: 5.25rem;
  right: 1.05rem;
  z-index: 5;
  display: grid;
  gap: 0.55rem;
}

.main-menu-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.8rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(88, 214, 141, 0.55);
  border-radius: 999px;
  color: #effff5;
  background:
    linear-gradient(135deg, rgba(46, 204, 113, 0.42), rgba(10, 82, 48, 0.84)),
    rgba(7, 34, 22, 0.9);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 24px rgba(46, 204, 113, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.main-menu-side-btn:hover,
.main-menu-side-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(126, 239, 171, 0.85);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), 0 0 30px rgba(46, 204, 113, 0.34);
  outline: none;
}

.main-menu-jump {
  position: sticky;
  top: 0;
  z-index: 4;
  margin: -0.25rem 0 0.5rem;
  padding: 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 18px;
  background: rgba(12, 4, 4, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.main-menu-jump-label {
  margin: 0 0 0.55rem;
  color: rgba(255, 241, 223, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-menu-select {
  display: none;
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid rgba(88, 214, 141, 0.45);
  border-radius: 14px;
  color: #f4fff8;
  background:
    linear-gradient(135deg, rgba(21, 94, 63, 0.96), rgba(8, 42, 29, 0.96));
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0.62rem 2.35rem 0.62rem 0.78rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(212, 175, 55, 0.14);
}

.main-menu-chip-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 0.25rem 0.45rem 1rem;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.main-menu-chip-row::-webkit-scrollbar {
  display: none;
}

.main-menu-chip {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 218, 104, 0.72);
  border-radius: 999px;
  color: #321803;
  background:
    linear-gradient(135deg, #ffe58f 0%, #f2c34d 48%, #b97812 100%);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 8px 18px rgba(212, 175, 55, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  touch-action: pan-x;
}

.category-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 247, 207, 0.92), rgba(242, 195, 77, 0.92));
  color: #321803;
  font-size: 0.98rem;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 6px 16px rgba(212, 175, 55, 0.2);
}

.category-label {
  min-width: 0;
}

.main-menu-chip small {
  display: grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  color: #fff3c4;
  background: rgba(54, 24, 3, 0.78);
  font-size: 0.7rem;
}

.main-menu-chip:hover,
.main-menu-chip:focus-visible,
.main-menu-chip.active {
  transform: translateY(-1px);
  border-color: #fff7c4;
  background:
    linear-gradient(135deg, #3a1700 0%, #8b4f08 38%, #ffd95f 100%);
  color: #fff8d7;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 0 3px rgba(255, 220, 92, 0.34),
    0 0 24px rgba(255, 202, 58, 0.48),
    0 14px 32px rgba(0, 0, 0, 0.34);
  outline: none;
}

.main-menu-chip.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.48rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 2px solid #153407;
  background: #25d366;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.16),
    0 0 14px rgba(37, 211, 102, 0.9);
  transform: translateX(-50%);
}

.main-menu-chip.active small {
  color: #2a1000;
  background: #fff2aa;
}

.main-menu-category {
  scroll-margin-top: 6rem;
  min-width: 0;
  max-width: 100%;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(16, 6, 5, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 38px rgba(0, 0, 0, 0.22);
}

.main-menu-slider {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.main-menu-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.main-menu-category-head h3 {
  margin: 0;
  color: #ffe8a4;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-menu-category-head > span {
  color: rgba(255, 241, 223, 0.62);
  font-size: 0.82rem;
  white-space: nowrap;
}

.main-menu-category-head h3,
.takeaway-category-heading h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-menu-note {
  margin: 0.7rem 0 0;
  color: rgba(255, 241, 223, 0.72);
  font-size: 0.9rem;
  font-style: italic;
}

.main-menu-items {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.main-menu-item {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.main-menu-info {
  min-width: 0;
  max-width: 100%;
}

.main-menu-number {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(10, 10, 10, 0.72);
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 8px 18px rgba(0, 0, 0, 0.22);
}

.main-menu-line {
  display: block;
  max-width: 100%;
}

.main-menu-line h4 {
  min-width: 0;
  margin: 0;
  color: #ffd95f;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.main-menu-line span {
  display: none;
}

.main-menu-line strong {
  display: inline-flex;
  vertical-align: baseline;
  margin-left: 0.35rem;
  padding: 0.12rem 0.38rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 10px;
  color: #f8df96;
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.82rem;
  line-height: 1.15;
  white-space: nowrap;
  transform: translateY(-0.08rem);
}

.main-menu-info p {
  margin: 0.35rem 0 0;
  color: rgba(255, 241, 223, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 100%;
  overflow: visible;
  overflow-wrap: anywhere;
  white-space: normal;
}

.main-menu-empty {
  margin: 0;
  text-align: center;
  color: rgba(255, 241, 223, 0.72);
}

.menu-modal-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.menu-category h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.menu-modal-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.menu-modal-item {
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: itemFadeIn 0.4s ease-out;
}

@keyframes itemFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-modal-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}

.menu-modal-item.premium {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.03));
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.08);
}

.menu-modal-item.premium:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.06));
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.item-header h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  flex: 1;
}

.item-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
}

.menu-modal-item p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.item-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.6rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  letter-spacing: 0.03em;
}

.menu-modal-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.menu-modal-actions .button {
  min-width: 240px;
}

.menu-modal .modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
}

.menu-modal .modal-close:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--text);
  transform: rotate(90deg);
}

@media (max-width: 820px) {
  .menu-modal-dialog {
    width: min(98%, 100%);
    padding: 1.5rem;
    border-radius: 24px;
    max-height: 95vh;
  }

  .menu-modal-content {
    max-height: calc(95vh - 3rem);
    padding-right: 0;
  }

  .main-menu-list {
    padding-top: 0;
  }

  .main-menu-side-actions {
    top: auto;
    right: 0.9rem;
    bottom: 0.9rem;
    grid-auto-flow: column;
    gap: 0.45rem;
  }

  .main-menu-side-btn {
    min-width: auto;
    padding: 0.52rem 0.68rem;
    font-size: 0.72rem;
  }

  .menu-modal-content h2 {
    font-size: 1.8rem;
  }

  .menu-category h3 {
    font-size: 1.2rem;
  }

  .menu-modal-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .main-menu-jump {
    position: sticky;
    top: 0;
    z-index: 7;
    margin: 0 0 0.72rem;
    padding: 0.54rem 0 0.72rem;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(34, 6, 6, 0.98), rgba(34, 6, 6, 0.9) 74%, transparent);
    box-shadow: none;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .main-menu-chip-row {
    display: flex;
    gap: 0.62rem;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    padding: 0.24rem 0.5rem 1.08rem;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    cursor: grab;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .main-menu-chip-row::-webkit-scrollbar,
  .main-menu-slider::-webkit-scrollbar,
  .main-menu-category::-webkit-scrollbar {
    display: none;
  }

  .main-menu-select {
    display: none;
  }

  .main-menu-chip {
    flex: 0 0 auto;
    width: auto;
    justify-content: center;
    gap: 0.38rem;
    min-height: 2.35rem;
    padding: 0.55rem 0.72rem;
    border-radius: 999px;
    font-size: 0.68rem;
    text-align: left;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .main-menu-chip .category-label {
    max-width: 11rem;
    line-height: 1.12;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-menu-chip .category-icon {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.86rem;
  }

  .main-menu-chip small {
    flex: 0 0 auto;
    min-width: 1.08rem;
    height: 1.08rem;
    padding: 0 0.18rem;
    font-size: 0.56rem;
  }

  .main-menu-slider {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    height: min(60vh, 620px);
    width: 100%;
    max-width: 100%;
    touch-action: pan-y;
  }

  .main-menu-category {
    display: none;
    position: absolute;
    inset: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 18px;
    background:
      radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.12), transparent 28%),
      rgba(8, 3, 3, 0.42);
    box-shadow: none;
    scroll-margin-top: 0;
  }

  .main-menu-category.active {
    display: block;
    animation: mainMenuPanelIn 0.22s ease-out;
  }

  @keyframes mainMenuPanelIn {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .main-menu-category-head {
    display: none;
  }

  .main-menu-note {
    display: none;
  }

  .main-menu-items {
    gap: 0.68rem;
    margin-top: 0;
  }

  .main-menu-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    padding: 0.82rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.13);
    border-radius: 15px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
      rgba(16, 6, 5, 0.68);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .main-menu-number {
    width: auto;
    min-width: 2.2rem;
    height: 1.5rem;
    justify-self: start;
    padding: 0 0.48rem;
    border-radius: 999px;
    font-size: 0.72rem;
  }

  .main-menu-info {
    width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .main-menu-line,
  .main-menu-line h4,
  .main-menu-info p {
    max-width: 100%;
  }

  .main-menu-line {
    display: block;
  }

  .main-menu-line span {
    display: none;
  }

  .main-menu-line h4 {
    font-size: 0.95rem;
    line-height: 1.38;
    overflow-wrap: break-word;
  }

  .main-menu-line strong {
    font-size: 0.78rem;
    padding: 0.1rem 0.3rem;
    margin-left: 0.25rem;
  }

  .main-menu-info p {
    display: block;
    margin-top: 0.42rem;
    font-size: 0.82rem;
    line-height: 1.46;
    color: rgba(255, 241, 223, 0.78);
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .menu-modal-items {
    gap: 1rem;
  }

  .menu-modal-item {
    padding: 1rem;
  }

  .item-header {
    flex-direction: column;
    gap: 0.25rem;
  }

  .item-price {
    font-size: 1rem;
  }

  .menu-modal-actions {
    flex-direction: column;
  }

  .menu-modal-actions .button {
    min-width: 100%;
  }

  .menu-modal .modal-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 560px) {
  .menu-modal-dialog {
    padding: 1.25rem;
  }

  .menu-modal-content h2 {
    font-size: 1.5rem;
  }

  .menu-category h3 {
    font-size: 1.05rem;
  }

  .item-header h4 {
    font-size: 1rem;
  }

  .menu-modal-item {
    padding: 0.85rem;
  }
}

/* Takeaway Modal Styles */
.takeaway-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10015;
  animation: menuModalFadeIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.takeaway-modal[aria-hidden="false"] {
  display: flex;
}

.takeaway-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: backdropBlur 0.4s ease-out;
}

.takeaway-modal-dialog {
  position: relative;
  width: min(98%, 1000px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 32px;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(20, 10, 10, 0.95) 0%,
    rgba(50, 10, 10, 0.88) 25%,
    rgba(75, 0, 0, 0.92) 50%,
    rgba(50, 10, 10, 0.88) 75%,
    rgba(20, 10, 10, 0.95) 100%
  );
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  box-shadow: 
    0 0 40px rgba(212, 175, 55, 0.12),
    0 30px 100px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: modalScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.takeaway-modal-dialog::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1), transparent 45%),
              radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.05), transparent 50%);
  pointer-events: none;
}

.takeaway-modal-content {
  position: relative;
  z-index: 1;
}

.takeaway-modal-content h2 {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 0.25rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.takeaway-modal-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.takeaway-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
}

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

.takeaway-menu h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding-bottom: 0.75rem;
}

.takeaway-item-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.takeaway-item-group h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0.5rem 0 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.takeaway-dishes {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.takeaway-dish {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: itemFadeIn 0.4s ease-out;
}

.takeaway-dish:hover {
  background: rgba(212, 175, 55, 0.07);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.1);
}

.dish-info {
  flex: 1;
  min-width: 0;
}

.dish-info h5 {
  margin: 0 0 0.25rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.dish-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0;
}

.dish-desc {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.dish-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 0.4rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-input {
  width: 32px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0;
}

.qty-input:focus {
  outline: none;
}

.takeaway-cart-sidebar {
  background: rgba(20, 10, 10, 0.8);
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.takeaway-cart-sidebar h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 0.75rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 60px;
  max-height: 240px;
  overflow-y: auto;
}

.cart-items::-webkit-scrollbar {
  width: 4px;
}

.cart-items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.15);
  border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.25);
}

.cart-item {
  padding: 0.65rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: itemFadeIn 0.3s ease-out;
}

.cart-item-name {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item-qty {
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-item-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.empty-cart {
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.cart-total {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.total-row.final {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

#whatsapp-order-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

#whatsapp-order-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#whatsapp-order-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cart-note {
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
  margin: 0;
  opacity: 0.7;
}

.takeaway-modal .modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
}

.takeaway-modal .modal-close:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--text);
  transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .takeaway-container {
    grid-template-columns: 1fr;
  }

  .takeaway-cart-sidebar {
    position: static;
    grid-column: 1;
  }
}

@media (max-width: 820px) {
  .takeaway-modal-dialog {
    width: min(98%, 100%);
    padding: 1.25rem;
    border-radius: 24px;
  }

  .takeaway-modal-content h2 {
    font-size: 1.6rem;
  }

  .takeaway-container {
    gap: 1rem;
  }

  .takeaway-dish {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .dish-controls {
    align-self: flex-end;
  }

  .takeaway-modal .modal-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 560px) {
  .takeaway-modal-dialog {
    padding: 1rem;
  }

  .takeaway-modal-content h2 {
    font-size: 1.4rem;
  }

  .takeaway-menu h3 {
    font-size: 1rem;
  }

  .takeaway-item-group h4 {
    font-size: 0.95rem;
  }

  .takeaway-dish {
    padding: 0.8rem;
  }

  .dish-info h5 {
    font-size: 0.9rem;
  }

  .takeaway-cart-sidebar {
    padding: 1rem;
  }

  .dish-controls {
    width: 100%;
  }
}

.reservation-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10020;
}

.reservation-modal[aria-hidden="false"] {
  display: flex;
}

.reservation-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(2px);
}

.reservation-modal-dialog {
  position: relative;
  width: min(96%, 760px);
  max-height: 95vh;
  overflow: auto;
  border-radius: 28px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(10,0,0,0.98), rgba(65,0,0,0.92) 35%, rgba(75,0,0,0.96) 55%, rgba(10,0,0,0.97));
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.reservation-modal-dialog::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 38%);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.reservation-modal-content {
  position: relative;
  z-index: 1;
  background: rgba(5, 5, 5, 0.6);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.reservation-modal h2 {
  color: var(--gold);
}

.reservation-modal .section-intro {
  color: var(--muted);
}

@media (max-width: 820px) {
  .reservation-modal-dialog {
    width: min(100%, 100%);
    padding: 1rem;
    border-radius: 20px;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

.footer {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.site-credit {
  flex: 0 0 100%;
  margin: 0.15rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 231, 215, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-credit a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: #fff3c4;
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fff3c4;
  outline: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.legal-modal[aria-hidden="false"] {
  display: flex;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.legal-modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 820px);
  overflow-y: auto;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #260000, #120406);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.legal-modal-content h2 {
  margin-top: 0;
}

.legal-updated {
  margin-top: -0.5rem;
  color: var(--muted);
}

.legal-block {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-block h3 {
  margin: 0 0 0.5rem;
  color: var(--gold);
}

.legal-block p {
  margin: 0;
  color: #f8e7d7;
}

.legal-block a {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .nav-inner {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 165px;
  }

  .hero {
    min-height: 75vh;
    padding: 2.5rem 1rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.25rem);
  }
}

@media (max-width: 820px) {
  .reservation-section,
  #contact .reservation-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #about {
    min-height: 460px;
    background:
      linear-gradient(180deg, rgba(28, 0, 0, 0.78) 0%, rgba(74, 0, 0, 0.58) 56%, rgba(18, 8, 3, 0.36) 100%),
      url("images/about.jpeg") center / cover no-repeat;
    background-attachment: scroll;
  }

  #about .container {
    width: min(100% - 2rem, 640px);
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-left-width: 3px;
    background: linear-gradient(135deg, rgba(27, 0, 0, 0.76), rgba(63, 9, 6, 0.5));
  }

  #about .about-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  #about p {
    font-size: 1.32rem;
    line-height: 1.58;
  }

  .about-kicker {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .gallery-frame {
    padding: 0.65rem;
    border-radius: 18px;
  }

  .gallery-frame::before {
    inset: 0.65rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card {
    display: block;
    width: 100%;
    min-height: 8.25rem;
    margin: 0;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(14px) scale(0.96);
    animation: none !important;
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.25s ease,
      box-shadow 0.25s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(212, 175, 55, 0.1);
  }

  .gallery-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .gallery-card:nth-child(3n + 1) {
    aspect-ratio: 0.78;
  }

  .gallery-card:nth-child(3n + 2) {
    aspect-ratio: 1;
  }

  .gallery-card:nth-child(3n) {
    aspect-ratio: 0.86;
  }

  .gallery-card img {
    height: 100%;
    border-radius: inherit;
    filter: blur(12px) sepia(0.1) saturate(1.1) contrast(1.04) brightness(0.78);
    transform: scale(1.04);
    animation: none !important;
    transition: filter 0.55s ease, transform 0.55s ease, opacity 0.35s ease;
  }

  .gallery-card img.is-loaded {
    filter: sepia(0.08) saturate(1.16) contrast(1.08) brightness(0.96);
    transform: scale(1);
  }

  .gallery-overlay {
    padding: 0.45rem;
    transform: translateY(0);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
  }

  .gallery-overlay h4 {
    font-size: 0.68rem;
    line-height: 1.15;
    margin-bottom: 0.1rem;
  }

  .gallery-overlay p {
    display: none;
  }

  .gallery-card:active {
    transform: scale(0.97);
    border-color: rgba(212, 175, 55, 0.64);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32), 0 0 18px rgba(212, 175, 55, 0.22);
  }

  .gallery-preview {
    padding: 0.85rem;
  }

  .gallery-preview-image {
    max-height: 74vh;
    border-radius: 18px;
  }

  .gallery-preview-image.from-right {
    transform: translateX(34px) scale(0.96) rotateY(-6deg);
  }

  .gallery-preview-image.from-left {
    transform: translateX(-34px) scale(0.96) rotateY(6deg);
  }

  .gallery-preview-arrow {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.7rem;
    background: rgba(12, 5, 5, 0.76);
  }

  .gallery-preview-arrow.prev {
    left: 0.55rem;
  }

  .gallery-preview-arrow.next {
    right: 0.55rem;
  }

  .gallery-preview-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.55rem;
    height: 2.55rem;
  }

  .gallery-preview-caption {
    padding: 0 2.5rem;
  }

  .gallery-lightbox {
    padding: 0.85rem;
    touch-action: pan-y;
  }

  .gallery-lightbox-image {
    max-height: 74vh;
    border-radius: 18px;
  }

  .gallery-lightbox-nav {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.7rem;
    background: rgba(12, 5, 5, 0.76);
  }

  .gallery-lightbox-nav.prev {
    left: 0.55rem;
  }

  .gallery-lightbox-nav.next {
    right: 0.55rem;
  }

  .gallery-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.55rem;
    height: 2.55rem;
  }

  .gallery-lightbox-caption {
    padding: 0 2.5rem;
  }

  .google-reviews-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .google-rating-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .google-rating-card strong {
    font-size: 2.25rem;
  }

  .google-review-button {
    max-width: none;
  }

  .review-marquee {
    margin-top: 1.4rem;
  }

  .review-grid {
    --review-card-width: min(82vw, 320px);
    --review-gap: 0.9rem;
    gap: var(--review-gap);
    animation-duration: 48s;
  }

  .review-card {
    flex-basis: var(--review-card-width);
    min-width: var(--review-card-width);
    padding: 1.25rem;
    border-radius: 16px;
  }

  .review-avatar {
    width: 2.35rem;
    height: 2.35rem;
    flex-basis: 2.35rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.85rem;
  }

  .button {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.18),
      0 10px 26px rgba(0, 0, 0, 0.34),
      0 0 18px rgba(212, 175, 55, 0.18);
    -webkit-tap-highlight-color: transparent;
    animation: mobileButtonGlow 2.8s ease-in-out infinite;
  }

  .button::before {
    opacity: 0.28;
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.22), transparent 58%),
      radial-gradient(circle at center, rgba(212, 175, 55, 0.16), transparent 72%);
  }

  .button::after {
    opacity: 0.75;
    animation: mobileButtonSweep 2.9s ease-in-out infinite;
  }

  .button:hover,
  .button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.68);
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.5),
      0 14px 34px rgba(0, 0, 0, 0.38),
      0 0 34px rgba(212, 175, 55, 0.45);
    outline: none;
  }

  .button:active {
    transform: translateY(2px) scale(0.94);
    animation: buttonPress 0.28s ease-out;
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.6),
      0 3px 10px rgba(0, 0, 0, 0.42),
      0 0 48px rgba(212, 175, 55, 0.76),
      inset 0 5px 16px rgba(0, 0, 0, 0.34),
      inset 0 0 18px rgba(255, 244, 196, 0.16);
  }

  .button:active::before {
    opacity: 0.95;
    background:
      radial-gradient(circle at center, rgba(255, 255, 255, 0.58), transparent 28%),
      radial-gradient(circle at center, rgba(212, 175, 55, 0.36), transparent 70%);
  }

  .button:active::after {
    opacity: 1;
    animation: none;
    transform: translateX(35%) skewX(-18deg);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background:
      linear-gradient(180deg, rgba(12, 15, 22, 0.98), rgba(7, 10, 16, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    padding: 0;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.26s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-menu.open {
    max-height: 560px;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 64px;
    padding: 1rem 1.25rem;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #f8f9fa;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: left;
    opacity: 0;
    transform: translateX(-14px);
    transition:
      background 0.2s ease,
      color 0.2s ease,
      padding-left 0.2s ease,
      opacity 0.28s ease,
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-menu.open .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.open .nav-link:nth-child(1) { transition-delay: 0.03s; }
  .nav-menu.open .nav-link:nth-child(2) { transition-delay: 0.07s; }
  .nav-menu.open .nav-link:nth-child(3) { transition-delay: 0.11s; }
  .nav-menu.open .nav-link:nth-child(4) { transition-delay: 0.15s; }
  .nav-menu.open .nav-link:nth-child(5) { transition-delay: 0.19s; }
  .nav-menu.open .nav-link:nth-child(6) { transition-delay: 0.23s; }

  .nav-menu:not(.open) .nav-link {
    transition-delay: 0s;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:focus-visible {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.03));
    color: var(--gold);
    padding-left: 1.55rem;
    outline: none;
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }

  .nav-inner {
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
  }

  .section {
    padding: 3.5rem 1rem;
  }
}

@media (max-width: 560px) {
  .legal-modal {
    padding: 0.75rem;
  }

  .legal-modal-dialog {
    max-height: 88vh;
    padding: 1.35rem;
    border-radius: 16px;
  }

  .hero {
    min-height: 100vh;
    padding: 5rem 1rem 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-typewriter {
    min-height: 3rem;
    width: min(100%, 340px);
    padding: 0.45rem 0.78rem;
    font-size: 0.78rem;
    letter-spacing: 0.045em;
    white-space: normal;
  }

  .lang-switcher {
    top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
    right: calc(env(safe-area-inset-right, 0px) + 0.75rem);
  }

  .menu-card,
  .gallery-card,
  .review-card,
  .contact-card,
  .map-card {
    border-radius: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .container {
    width: min(100%, calc(100% - 1.5rem));
  }
}

@media (max-width: 899px) {
  .hero {
    isolation: isolate;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(5, 0, 0, 0.24) 46%, rgba(0, 0, 0, 0.28)),
      radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.22), transparent 34%),
      url('images/hero.jpeg') center center / 100% 100% no-repeat !important;
    background-color: #080303;
  }

  .hero::before {
    background: url('images/logo.jpeg') 80% 15% / 90% no-repeat;
    opacity: 0.30;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)) saturate(1.08) contrast(1.04);
    -webkit-mask-image: radial-gradient(circle at center, #000 0 33%, rgba(0, 0, 0, 0.72) 43%, transparent 58%);
    mask-image: radial-gradient(circle at center, #000 0 33%, rgba(0, 0, 0, 0.72) 43%, transparent 58%);
    transform: none;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 38%, rgba(212, 175, 55, 0.24), transparent 28%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.56)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
    mix-blend-mode: soft-light;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.24)),
      radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.1), transparent 42%);
  }
}

.takeaway-helper {
  margin: -0.6rem 0 1.2rem;
  color: #f4dcc4;
  font-size: 0.94rem;
  line-height: 1.55;
}

.takeaway-category-tabs {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.2rem 0 0.85rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background:
    linear-gradient(180deg, rgba(34, 6, 6, 0.98), rgba(34, 6, 6, 0.86) 76%, transparent);
}

.takeaway-category-tabs::-webkit-scrollbar,
.takeaway-category-slider::-webkit-scrollbar {
  display: none;
}

.takeaway-category-tab {
  flex: 0 0 auto;
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(12, 4, 4, 0.7);
  color: #fbe9c6;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.takeaway-category-tab .category-label {
  min-width: 0;
}

.takeaway-category-tab small {
  display: grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.55rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 0.72rem;
}

.takeaway-category-tab:hover,
.takeaway-category-tab:focus-visible,
.takeaway-category-tab.active,
.takeaway-category-tab.is-touched {
  transform: translateY(-1px);
  border-color: rgba(255, 210, 92, 0.82);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(140, 12, 12, 0.46));
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.12),
    0 0 26px rgba(212, 175, 55, 0.34),
    0 12px 28px rgba(0, 0, 0, 0.32);
  color: #fff8d8;
  outline: none;
}

.takeaway-category-slider {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: 18px;
  height: min(58vh, 620px);
}

.takeaway-category-panel {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.1), transparent 28%),
    rgba(8, 3, 3, 0.42);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.takeaway-category-panel .takeaway-dishes {
  gap: 0.65rem;
}

.takeaway-category-panel::-webkit-scrollbar {
  width: 6px;
}

.takeaway-category-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

.takeaway-category-panel::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.28);
  border-radius: 999px;
}

.takeaway-category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.takeaway-category-heading h4 {
  margin: 0;
  color: var(--gold);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.takeaway-category-heading > span {
  flex: 0 0 auto;
  color: #f7e7c2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(212, 175, 55, 0.08);
}

.takeaway-category-note {
  margin: 0.65rem 0 0;
  color: #f1d8bd;
  font-size: 0.88rem;
}

.takeaway-dish {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(212, 175, 55, 0.025)),
    rgba(18, 6, 6, 0.78);
  padding: 0.78rem;
  gap: 0.8rem;
}

.takeaway-dish:hover {
  transform: translateY(-1px);
}

.dish-number {
  width: 2.85rem;
  min-height: 2.85rem;
  flex: 0 0 2.85rem;
  display: grid;
  place-items: center;
  align-self: flex-start;
  color: var(--gold);
  font-weight: 900;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dish-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dish-title-row h5 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.dish-title-row .dish-price {
  margin: 0;
  white-space: nowrap;
  font-size: 1rem;
}

.dish-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.dish-tags span {
  color: #ffe7a4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(212, 175, 55, 0.08);
}

.takeaway-cart-sidebar {
  align-self: stretch;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(24, 8, 8, 0.94), rgba(10, 3, 3, 0.9)),
    rgba(20, 10, 10, 0.8);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cart-items {
  padding-right: 0.2rem;
}

.cart-item {
  gap: 0.7rem;
  padding: 0.72rem;
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(255, 255, 255, 0.035));
}

.cart-item-main {
  min-width: 0;
  flex: 1;
}

.cart-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-side {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
  flex: 0 0 auto;
}

.cart-remove {
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #f9dfad;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cart-remove:hover,
.cart-remove:focus-visible {
  background: rgba(214, 40, 40, 0.8);
  color: #fff;
  transform: scale(1.05);
  outline: none;
}

.cart-total {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  padding: 0.85rem;
}

.takeaway-cart-sidebar .button {
  max-width: none;
  width: 100%;
}

@media (max-width: 820px) {
  .takeaway-category-tabs {
    top: -0.1rem;
    margin-inline: -0.15rem;
    padding-inline: 0.15rem;
  }

  .takeaway-category-tab {
    min-height: 2.75rem;
    padding: 0.62rem 0.78rem;
    font-size: 0.78rem;
  }

  .takeaway-category-panel {
    padding: 0.75rem;
  }

  .takeaway-category-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .takeaway-dish {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
  }

  .dish-controls {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .takeaway-category-tabs {
    gap: 0.5rem;
    padding-bottom: 0.7rem;
  }

  .takeaway-category-tab {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .takeaway-category-panel {
    padding: 0.65rem;
  }

  .dish-title-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .takeaway-dish {
    grid-template-columns: 2.8rem 1fr;
  }

  .dish-number {
    width: 2.8rem;
    min-height: 2.8rem;
    flex-basis: 2.8rem;
    font-size: 0.92rem;
  }
}

/* Stable takeaway modal: cart updates should not resize or push the page. */
.takeaway-modal-dialog {
  height: min(92vh, 900px);
  overflow: hidden;
}

.takeaway-modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.takeaway-container {
  min-height: 0;
  flex: 1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 1.25rem;
}

.takeaway-menu,
.takeaway-items {
  min-width: 0;
  min-height: 0;
}

.takeaway-cart-sidebar {
  max-height: 100%;
  overflow: hidden;
  position: static;
}

.cart-items {
  height: 12rem;
  min-height: 12rem;
  max-height: 12rem;
  overscroll-behavior: contain;
}

@media (max-width: 1024px) {
  .takeaway-modal-dialog {
    height: 94vh;
  }

  .takeaway-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 34%);
    grid-template-rows: minmax(0, 1fr);
    overflow: hidden;
  }

  .takeaway-category-slider {
    height: min(58vh, 540px);
  }

  .takeaway-cart-sidebar {
    max-height: 100%;
  }

  .cart-items {
    height: 11rem;
    min-height: 11rem;
    max-height: 11rem;
  }
}

@media (max-width: 720px) {
  .takeaway-container {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .takeaway-category-slider {
    height: 43vh;
  }

  .takeaway-cart-sidebar {
    max-height: 15.5rem;
  }

  .cart-items {
    height: 5.8rem;
    min-height: 5.8rem;
    max-height: 5.8rem;
  }
}

@media (max-width: 560px) {
  .takeaway-modal-dialog {
    height: 96vh;
  }

  .takeaway-category-slider {
    height: 40vh;
  }

  .takeaway-cart-sidebar {
    gap: 0.65rem;
    max-height: 15rem;
  }

  .cart-items {
    height: 5.2rem;
    min-height: 5.2rem;
    max-height: 5.2rem;
  }
}

/* Mobile takeaway cleanup: full-screen, clear header, visible cart actions. */
.takeaway-modal-intro,
.takeaway-helper,
.cart-note {
  display: none;
}

@media (max-width: 720px) {
  .takeaway-modal {
    padding: 0;
  }

  .takeaway-modal-dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 0.85rem) 0.75rem 0.75rem;
    overflow: hidden;
  }

  .takeaway-modal-dialog::before {
    border-radius: 0;
  }

  .takeaway-modal .modal-close {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 0.65rem);
    right: calc(env(safe-area-inset-right, 0px) + 0.65rem);
    width: 42px;
    height: 42px;
    z-index: 10030;
    background: rgba(12, 3, 3, 0.92);
    border-color: rgba(212, 175, 55, 0.45);
  }

  .takeaway-modal-content {
    gap: 0.55rem;
  }

  .takeaway-modal-content h2 {
    max-width: calc(100% - 3.4rem);
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .takeaway-menu {
    gap: 0.55rem;
  }

  .takeaway-menu h3 {
    margin: 0;
    padding-bottom: 0.45rem;
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .takeaway-container {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0.65rem;
    overflow: hidden;
  }

  .takeaway-category-tabs {
    position: static;
    margin-bottom: 0.45rem;
    padding-bottom: 0.45rem;
    background: transparent;
  }

  .takeaway-category-tab {
    min-height: 2.45rem;
    padding: 0.5rem 0.68rem;
    font-size: 0.69rem;
  }

  .takeaway-category-tab .category-label {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .takeaway-category-tab .category-icon {
    width: 1.32rem;
    height: 1.32rem;
    font-size: 0.84rem;
  }

  .takeaway-category-slider {
    height: 42vh;
    min-height: 17rem;
  }

  .takeaway-category-panel {
    padding: 0.55rem;
  }

  .takeaway-category-heading {
    padding-bottom: 0.5rem;
  }

  .takeaway-category-heading h4 {
    font-size: 0.94rem;
  }

  .takeaway-category-heading > span,
  .takeaway-category-note {
    display: none;
  }

  .takeaway-category-panel .takeaway-dishes {
    gap: 0.5rem;
  }

  .takeaway-dish {
    padding: 0.58rem;
    gap: 0.55rem;
  }

  .dish-desc,
  .dish-tags {
    display: none;
  }

  .takeaway-cart-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title total"
      "items items"
      "whatsapp call";
    gap: 0.5rem;
    max-height: none;
    overflow: visible;
    padding: 0.72rem;
    border-radius: 16px;
  }

  .takeaway-cart-sidebar h3 {
    grid-area: title;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .cart-items {
    grid-area: items;
    height: 5.2rem;
    min-height: 5.2rem;
    max-height: 5.2rem;
    gap: 0.38rem;
  }

  .cart-item {
    padding: 0.45rem 0.52rem;
  }

  .cart-item-name,
  .cart-item-price {
    font-size: 0.78rem;
  }

  .cart-item-qty {
    font-size: 0.68rem;
  }

  .cart-remove {
    width: 1.35rem;
    height: 1.35rem;
  }

  .empty-cart {
    padding: 0.55rem 0;
    font-size: 0.78rem;
  }

  .cart-total {
    grid-area: total;
    min-width: 7.2rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .cart-total .total-row:not(.final) {
    display: none;
  }

  .total-row.final {
    display: flex;
    gap: 0.45rem;
    padding: 0;
    border: 0;
    font-size: 0.92rem;
  }

  #whatsapp-order-btn {
    grid-area: whatsapp;
  }

  .takeaway-cart-sidebar .button {
    min-height: 2.65rem;
    padding: 0.62rem 0.8rem;
    border-radius: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }

  .takeaway-cart-sidebar .button.secondary {
    grid-area: call;
    min-width: 6rem;
  }
}

/* Compact mobile cart pill - final override */
@media (max-width: 899px) {
  .takeaway-modal-content {
    padding-bottom: 4.35rem !important;
  }

  .takeaway-container {
    height: 100% !important;
    overflow: visible !important;
  }

  .takeaway-menu,
  .takeaway-items {
    height: 100% !important;
  }

  .takeaway-category-slider {
    height: calc(100dvh - 10.8rem) !important;
    min-height: 0 !important;
  }

  .takeaway-cart-sidebar {
    position: fixed !important;
    left: auto !important;
    right: 0.65rem !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.55rem) !important;
    z-index: 10050 !important;
    display: grid !important;
    grid-template-columns: auto auto auto auto !important;
    grid-template-areas: "carticon total whatsapp call" !important;
    align-items: center !important;
    gap: 0.32rem !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 1.3rem) !important;
    height: auto !important;
    max-height: none !important;
    min-height: 2.95rem !important;
    padding: 0.38rem !important;
    border-radius: 999px !important;
    overflow: visible !important;
    background: linear-gradient(135deg, rgba(26, 7, 7, 0.96), rgba(8, 3, 3, 0.96)) !important;
    border: 1px solid rgba(255, 210, 92, 0.46) !important;
    box-shadow:
      0 12px 34px rgba(0, 0, 0, 0.55),
      0 0 28px rgba(212, 175, 55, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  }

  .takeaway-cart-sidebar::before {
    content: "Cart" !important;
    grid-area: carticon !important;
    display: grid !important;
    place-items: center !important;
    min-width: 3rem !important;
    height: 2.05rem !important;
    padding: 0 0.42rem !important;
    border-radius: 999px !important;
    background: rgba(212, 175, 55, 0.16) !important;
    border: 1px solid rgba(212, 175, 55, 0.34) !important;
    color: #ffe7a4 !important;
    font-size: 0.66rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  .takeaway-cart-sidebar.has-items::before {
    content: "Cart " attr(data-cart-count) !important;
  }

  .takeaway-cart-sidebar h3,
  .cart-items,
  .cart-note,
  .cart-total .total-row:not(.final) {
    display: none !important;
  }

  .cart-total {
    grid-area: total !important;
    display: block !important;
    min-width: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .total-row.final {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.24rem !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--gold) !important;
    font-size: 0.84rem !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  .total-row.final span:first-child {
    display: none !important;
  }

  #whatsapp-order-btn,
  .takeaway-cart-sidebar .button.secondary {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 2.05rem !important;
    height: 2.05rem !important;
    padding: 0 0.46rem !important;
    border-radius: 999px !important;
    font-size: 0 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  #whatsapp-order-btn {
    grid-area: whatsapp !important;
  }

  #whatsapp-order-btn::after {
    content: "WA" !important;
    font-size: 0.68rem !important;
  }

  .takeaway-cart-sidebar .button.secondary {
    grid-area: call !important;
  }

  .takeaway-cart-sidebar .button.secondary::after {
    content: "Call" !important;
    font-size: 0.68rem !important;
  }

  .cart-toast {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 4.85rem) !important;
  }
}

/* Make mobile cart truly compact */
@media (max-width: 899px) {
  .takeaway-cart-sidebar {
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "carticon total"
      "whatsapp call" !important;
    width: 9.8rem !important;
    max-width: 9.8rem !important;
    min-height: 0 !important;
    padding: 0.42rem !important;
    gap: 0.28rem !important;
    border-radius: 18px !important;
  }

  .takeaway-cart-sidebar::before {
    min-width: 0 !important;
    width: 100% !important;
    height: 1.75rem !important;
    padding: 0 0.25rem !important;
    font-size: 0.6rem !important;
  }

  .total-row.final {
    height: 1.75rem !important;
    justify-content: center !important;
    font-size: 0.72rem !important;
  }

  #whatsapp-order-btn,
  .takeaway-cart-sidebar .button.secondary {
    width: 100% !important;
    height: 1.8rem !important;
    min-height: 1.8rem !important;
    padding: 0 !important;
    font-size: 0 !important;
    border-radius: 10px !important;
  }

  #whatsapp-order-btn::after,
  .takeaway-cart-sidebar .button.secondary::after {
    font-size: 0.58rem !important;
    font-weight: 900 !important;
  }
}

/* Tiny floating cart button - wins over all earlier mobile cart layouts. */
@media (max-width: 899px) {
  .takeaway-modal-content {
    padding-bottom: 1rem !important;
  }

  .takeaway-category-slider {
    height: calc(100dvh - 7.2rem) !important;
  }

  .takeaway-cart-sidebar {
    position: fixed !important;
    right: calc(env(safe-area-inset-right, 0px) + 0.8rem) !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.8rem) !important;
    left: auto !important;
    top: auto !important;
    z-index: 10060 !important;
    width: 4.85rem !important;
    height: 4.85rem !important;
    min-width: 4.85rem !important;
    max-width: 4.85rem !important;
    min-height: 4.85rem !important;
    max-height: 4.85rem !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr auto !important;
    grid-template-areas:
      "carticon"
      "total" !important;
    place-items: center !important;
    gap: 0 !important;
    padding: 0.42rem !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 35% 25%, rgba(255, 217, 110, 0.32), transparent 34%),
      linear-gradient(145deg, rgba(112, 0, 0, 0.96), rgba(18, 4, 4, 0.98)) !important;
    border: 1.5px solid rgba(255, 210, 92, 0.72) !important;
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.58),
      0 0 26px rgba(212, 175, 55, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  }

  .takeaway-cart-sidebar::before {
    content: "Cart" !important;
    grid-area: carticon !important;
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff7d7 !important;
    font-size: 0.66rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
  }

  .takeaway-cart-sidebar.has-items::before {
    content: "Cart " attr(data-cart-count) !important;
  }

  .takeaway-cart-sidebar h3,
  .cart-items,
  .cart-note,
  .cart-total .total-row:not(.final),
  .cart-total .total-row.final span:first-child,
  .takeaway-cart-sidebar .button.secondary {
    display: none !important;
  }

  .cart-total {
    grid-area: total !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .total-row.final {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    text-align: center !important;
    color: var(--gold) !important;
    font-size: 0.62rem !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  #whatsapp-order-btn {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    font-size: 0 !important;
    cursor: pointer !important;
  }

  #whatsapp-order-btn:disabled {
    pointer-events: none !important;
  }

  .cart-toast {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 6rem) !important;
  }
}

/* Mobile cart opens to review items first, then WhatsApp/Call. */
@media (max-width: 899px) {
  .takeaway-modal-content {
    padding-bottom: 1rem !important;
  }

  .takeaway-category-slider {
    height: calc(100dvh - 7.2rem) !important;
  }

  .takeaway-cart-sidebar {
    position: fixed !important;
    right: calc(env(safe-area-inset-right, 0px) + 0.8rem) !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.8rem) !important;
    left: auto !important;
    z-index: 10060 !important;
    width: 4.85rem !important;
    height: 4.85rem !important;
    min-width: 4.85rem !important;
    max-width: 4.85rem !important;
    min-height: 4.85rem !important;
    max-height: 4.85rem !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr auto !important;
    grid-template-areas:
      "carticon"
      "total" !important;
    place-items: center !important;
    padding: 0.42rem !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    cursor: pointer !important;
  }

  .takeaway-cart-sidebar::before {
    content: "Cart" !important;
    grid-area: carticon !important;
  }

  .takeaway-cart-sidebar.has-items::before {
    content: "Cart " attr(data-cart-count) !important;
  }

  .takeaway-cart-sidebar h3,
  .cart-items,
  .cart-note,
  .cart-total .total-row:not(.final),
  .cart-total .total-row.final span:first-child,
  #whatsapp-order-btn,
  .takeaway-cart-sidebar .button.secondary {
    display: none !important;
  }

  .cart-total {
    grid-area: total !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .total-row.final {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.62rem !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .takeaway-cart-sidebar.cart-open {
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 44vh !important;
    border-radius: 18px !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto minmax(5rem, 1fr) auto !important;
    grid-template-areas:
      "carticon total"
      "items items"
      "whatsapp call" !important;
    align-items: center !important;
    gap: 0.55rem !important;
    padding: 0.75rem !important;
    overflow: hidden !important;
    cursor: default !important;
  }

  .takeaway-cart-sidebar.cart-open::before {
    justify-self: start !important;
  }

  .takeaway-cart-sidebar.cart-open .cart-items {
    grid-area: items !important;
    display: flex !important;
    height: 8rem !important;
    min-height: 5rem !important;
    max-height: 8rem !important;
    overflow-y: auto !important;
  }

  .takeaway-cart-sidebar.cart-open .cart-item {
    padding: 0.52rem !important;
  }

  .takeaway-cart-sidebar.cart-open .cart-total {
    justify-self: end !important;
  }

  .takeaway-cart-sidebar.cart-open #whatsapp-order-btn,
  .takeaway-cart-sidebar.cart-open .button.secondary {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 2.55rem !important;
    height: 2.55rem !important;
    opacity: 1 !important;
    position: static !important;
    border: 1.5px solid rgba(212, 175, 55, 0.32) !important;
    padding: 0.62rem 0.85rem !important;
    border-radius: 12px !important;
    font-size: 0.78rem !important;
    pointer-events: auto !important;
  }

  .takeaway-cart-sidebar.cart-open #whatsapp-order-btn {
    grid-area: whatsapp !important;
  }

  .takeaway-cart-sidebar.cart-open .button.secondary {
    grid-area: call !important;
  }
}

/* Stop mobile takeaway dish blink/shrink on tap. */
@media (max-width: 899px) {
  .takeaway-dish,
  .takeaway-dish:hover,
  .takeaway-dish:active,
  .takeaway-dish:focus-within {
    transform: none !important;
    animation: none !important;
    transition: background 0.18s ease, border-color 0.18s ease !important;
  }

  .takeaway-dish {
    min-height: 4.15rem !important;
    contain: layout paint !important;
  }

  .qty-btn,
  .qty-btn:hover,
  .qty-btn:active {
    transform: none !important;
    animation: none !important;
  }

  .qty-input {
    appearance: textfield !important;
  }
}

/* Final mobile takeaway/cart lock: keeps dishes stable and cart as a true review button. */
@media (max-width: 899px) {
  .takeaway-modal-dialog {
    width: 100vw !important;
    height: 100dvh !important;
    max-width: 100vw !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    overflow: hidden !important;
  }

  .takeaway-modal-content {
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.55rem !important;
    padding: 0.9rem 0.75rem 0.9rem !important;
    overflow: hidden !important;
  }

  .takeaway-modal-content h2 {
    margin: 0 !important;
    max-width: calc(100% - 3.25rem) !important;
    font-size: 1.4rem !important;
    line-height: 1.1 !important;
  }

  .takeaway-modal-intro,
  .takeaway-helper,
  .cart-note {
    display: none !important;
  }

  .takeaway-container {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    width: 100% !important;
    display: block !important;
    overflow: hidden !important;
  }

  .takeaway-menu,
  .takeaway-items {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.55rem !important;
    overflow: hidden !important;
  }

  .takeaway-menu h3 {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
    font-size: 0.95rem !important;
    line-height: 1.05 !important;
  }

  .takeaway-category-tabs {
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0.15rem 0 0.25rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .takeaway-category-slider {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    contain: size layout paint !important;
  }

  .takeaway-category-panel {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    padding: 0.15rem 0.1rem 5.8rem !important;
  }

  .takeaway-item-group,
  .takeaway-dish {
    width: 100% !important;
    min-width: 0 !important;
    transform: none !important;
    animation: none !important;
  }

  .takeaway-dish {
    min-height: 4rem !important;
    padding: 0.72rem !important;
    display: grid !important;
    grid-template-columns: 2.65rem minmax(0, 1fr) !important;
    column-gap: 0.62rem !important;
    row-gap: 0.58rem !important;
    align-items: start !important;
    contain: layout paint !important;
  }

  .takeaway-dish .dish-number {
    width: 2.65rem !important;
    min-height: 2.65rem !important;
    flex-basis: 2.65rem !important;
    font-size: 0.86rem !important;
    align-self: start !important;
  }

  .takeaway-dish .dish-info {
    min-width: 0 !important;
  }

  .takeaway-dish .dish-desc {
    display: -webkit-box !important;
    margin-top: 0.28rem !important;
    color: #f1d8bd !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
  }

  .takeaway-dish .dish-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.3rem !important;
    margin-top: 0.42rem !important;
  }

  .takeaway-dish .dish-tags span {
    font-size: 0.62rem !important;
    padding: 0.16rem 0.42rem !important;
  }

  .takeaway-dish .dish-controls {
    grid-column: 1 / -1 !important;
  }

  .takeaway-cart-sidebar {
    position: fixed !important;
    left: auto !important;
    right: calc(env(safe-area-inset-right, 0px) + 0.8rem) !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.8rem) !important;
    z-index: 10080 !important;
    width: 4.8rem !important;
    height: 4.8rem !important;
    min-width: 4.8rem !important;
    max-width: 4.8rem !important;
    min-height: 4.8rem !important;
    max-height: 4.8rem !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr auto !important;
    grid-template-areas: "carticon" "total" !important;
    place-items: center !important;
    gap: 0.08rem !important;
    padding: 0.45rem !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    cursor: pointer !important;
    background: linear-gradient(145deg, rgba(136, 0, 0, 0.97), rgba(30, 5, 5, 0.98)) !important;
    border: 1.5px solid rgba(255, 211, 93, 0.7) !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.62), 0 0 24px rgba(212, 175, 55, 0.34) !important;
  }

  .takeaway-cart-sidebar::before {
    content: "Cart" !important;
    grid-area: carticon !important;
    display: block !important;
    color: #fff5d4 !important;
    font-size: 0.68rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
  }

  .takeaway-cart-sidebar.has-items::before {
    content: "Cart " attr(data-cart-count) !important;
  }

  .takeaway-cart-sidebar h3,
  .takeaway-cart-sidebar .cart-items,
  .takeaway-cart-sidebar .cart-note,
  .takeaway-cart-sidebar .cart-total .total-row:not(.final),
  .takeaway-cart-sidebar .cart-total .total-row.final span:first-child,
  .takeaway-cart-sidebar #whatsapp-order-btn,
  .takeaway-cart-sidebar .button.secondary {
    display: none !important;
  }

  .takeaway-cart-sidebar .cart-total {
    grid-area: total !important;
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .takeaway-cart-sidebar .total-row.final {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    text-align: center !important;
    color: var(--gold) !important;
    font-size: 0.62rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  .takeaway-cart-sidebar.cart-open {
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.75rem) !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 46vh !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-rows: auto minmax(6rem, 1fr) auto !important;
    grid-template-areas:
      "carticon total"
      "items items"
      "whatsapp call" !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.78rem !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    cursor: default !important;
  }

  .takeaway-cart-sidebar.cart-open::before {
    justify-self: start !important;
  }

  .takeaway-cart-sidebar.cart-open .cart-items {
    grid-area: items !important;
    display: flex !important;
    height: auto !important;
    min-height: 6rem !important;
    max-height: 8.8rem !important;
    overflow-y: auto !important;
    padding-right: 0.2rem !important;
  }

  .takeaway-cart-sidebar.cart-open .cart-item {
    padding: 0.52rem !important;
  }

  .takeaway-cart-sidebar.cart-open .cart-total {
    justify-self: end !important;
  }

  .takeaway-cart-sidebar.cart-open #whatsapp-order-btn,
  .takeaway-cart-sidebar.cart-open .button.secondary {
    grid-area: whatsapp !important;
    display: inline-flex !important;
    position: static !important;
    width: 100% !important;
    height: 2.55rem !important;
    min-height: 2.55rem !important;
    min-width: 0 !important;
    padding: 0.58rem 0.75rem !important;
    border-radius: 12px !important;
    opacity: 1 !important;
    font-size: 0.78rem !important;
    pointer-events: auto !important;
  }

  .takeaway-cart-sidebar.cart-open .button.secondary {
    grid-area: call !important;
  }

  .cart-toast {
    left: 50% !important;
    right: auto !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 6.2rem) !important;
    transform: translateX(-50%) !important;
    max-width: calc(100vw - 2rem) !important;
  }
}

/* FOOD STRIP CLEAN SLIDER FINAL - keeps hero food photos separated while moving. */
@keyframes heroFoodCleanMarquee {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroFoodCleanFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -4px, 0) scale(1.01);
  }
}

@keyframes heroFoodCleanZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.08);
  }
}

@media (max-width: 899px) {
  .hero-food-carousel {
    margin-top: 4.4rem !important;
  }

  .hero-food-rail {
    padding: 0.45rem 0.25rem 0.55rem !important;
  }

  .hero-food-track {
    align-items: center !important;
    gap: 1.05rem !important;
    animation: heroFoodCleanMarquee 28s linear infinite !important;
  }

  .hero-food-card {
    flex: 0 0 8rem !important;
    width: 8rem !important;
    height: 5.75rem !important;
    margin: 0 !important;
    overflow: hidden !important;
    isolation: isolate !important;
    transform: translate3d(0, 0, 0) !important;
    animation: heroFoodCleanFloat 6s ease-in-out infinite !important;
    backface-visibility: hidden !important;
  }

  .hero-food-card img {
    transform: scale(1.03) !important;
    animation: heroFoodCleanZoom 8s ease-in-out infinite alternate !important;
  }
}

@media (max-width: 560px) {
  .hero-food-carousel {
    margin-top: 1rem !important;
  }

  .hero-food-track {
    gap: 0.95rem !important;
  }

  .hero-food-card {
    flex-basis: 6.9rem !important;
    width: 6.9rem !important;
    height: 4.9rem !important;
    border-radius: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-food-track,
  .hero-food-card,
  .hero-food-card img {
    animation: none !important;
    transform: none !important;
  }
}

/* Mobile hero food focus carousel */
@media (max-width: 899px) {
  .hero {
    min-height: 100svh !important;
    min-height: 100dvh !important;
    padding: 4.45rem 0.75rem max(1.1rem, env(safe-area-inset-bottom, 0px)) !important;
    display: flex !important;
    align-items: center !important;
  }

  .hero-content {
    width: 100% !important;
    min-height: calc(100svh - 5.55rem) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    transform: translateY(clamp(2.3rem, 7vh, 4.25rem)) !important;
  }

  .hero-buttons {
    margin-bottom: 0.3rem !important;
  }

  .hero-food-carousel {
    width: min(calc(100vw - 0.75rem), 440px) !important;
    margin-top: clamp(3.35rem, 10.5vh, 6rem) !important;
    overflow: visible !important;
  }

  .hero-food-rail {
    overflow: visible !important;
    padding: 1.65rem 0.75rem 1.9rem !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%) !important;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%) !important;
  }

  .hero-food-track {
    align-items: center !important;
    gap: 1.05rem !important;
    animation-duration: 20s !important;
  }

  .hero-food-card {
    flex: 0 0 9.95rem !important;
    width: 9.95rem !important;
    height: 7.15rem !important;
    border-radius: 17px !important;
    border-color: rgba(255, 221, 118, 0.22) !important;
    opacity: calc(0.58 + (var(--hero-food-focus, 0) * 0.42)) !important;
    filter: blur(calc(1.15px - (var(--hero-food-focus, 0) * 1.15px))) brightness(calc(0.72 + (var(--hero-food-focus, 0) * 0.28))) saturate(calc(0.9 + (var(--hero-food-focus, 0) * 0.18))) !important;
    transform:
      perspective(520px)
      scale(calc(0.9 + (var(--hero-food-focus, 0) * 0.3)))
      translateY(calc(8px - (var(--hero-food-focus, 0) * 14px))) !important;
    transform-origin: center center !important;
    transition:
      transform 220ms linear,
      opacity 220ms linear,
      filter 220ms linear,
      border-color 520ms ease,
      box-shadow 520ms ease !important;
    z-index: 1 !important;
    animation: none !important;
  }

  .hero-food-card.is-side {
    z-index: 2 !important;
  }

  .hero-food-card.is-center {
    border-color: rgba(255, 215, 104, 0.82) !important;
    box-shadow:
      0 24px 52px rgba(0, 0, 0, 0.58),
      0 0 24px rgba(255, 202, 73, 0.28),
      0 0 0 1px rgba(255, 227, 133, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    z-index: 8 !important;
  }

  .hero-food-card::before {
    content: "" !important;
    position: absolute !important;
    inset: -1px !important;
    z-index: 2 !important;
    pointer-events: none !important;
    opacity: calc(var(--hero-food-focus, 0) * 0.28) !important;
    background: radial-gradient(circle at 50% 12%, rgba(255, 236, 166, 0.32), transparent 42%) !important;
    transform: none !important;
    transition: opacity 260ms linear !important;
  }

  .hero-food-card.is-center::before {
    opacity: 0.34 !important;
  }

  .hero-food-card img {
    animation: none !important;
    transform: scale(calc(1.03 + (var(--hero-food-focus, 0) * 0.05))) !important;
    transition: transform 220ms linear, filter 220ms linear !important;
  }

  .hero-food-card.is-center img {
    transform: scale(calc(1.03 + (var(--hero-food-focus, 0) * 0.05))) !important;
  }

  .hero-food-card figcaption {
    opacity: 0.42 !important;
    transform: translateY(4px) !important;
    transition: opacity 580ms ease, transform 580ms ease !important;
  }

  .hero-food-card.is-center figcaption {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 560px) {
  .hero-food-track {
    gap: 0.9rem !important;
  }

  .hero-food-card {
    flex-basis: 8.85rem !important;
    width: 8.85rem !important;
    height: 6.35rem !important;
    border-radius: 14px !important;
  }

  .hero-food-card.is-center {
    transform:
      perspective(520px)
      scale(calc(0.92 + (var(--hero-food-focus, 0) * 0.3)))
      translateY(calc(7px - (var(--hero-food-focus, 0) * 13px))) !important;
  }
}

/* Final gallery carousel lock */
.gallery-frame {
  padding: 1.5rem 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.gallery-frame::before {
  inset: 0 !important;
  border-color: rgba(212, 175, 55, 0.12) !important;
}

.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 3, 3, 0.96), transparent 14%, transparent 86%, rgba(8, 3, 3, 0.96)),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.18) 100%);
}

.gallery-grid {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  grid-template-columns: none !important;
  grid-auto-rows: auto !important;
  gap: clamp(0.9rem, 2vw, 1.35rem) !important;
  min-height: clamp(19rem, 43vw, 33rem) !important;
  padding: clamp(1.35rem, 3vw, 2.3rem) max(1rem, calc((100% - min(34rem, 72vw)) / 2)) !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
  perspective: 1300px !important;
  touch-action: pan-x pan-y !important;
  -webkit-overflow-scrolling: touch !important;
}

.gallery-grid::-webkit-scrollbar {
  display: none !important;
}

.gallery-card,
.gallery-card.wide,
.gallery-card.tall {
  flex: 0 0 min(34rem, 72vw) !important;
  width: min(34rem, 72vw) !important;
  height: clamp(17.5rem, 38vw, 29rem) !important;
  min-height: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  scroll-snap-align: center !important;
  opacity: 0.46 !important;
  filter: blur(2px) saturate(0.86) brightness(0.68) !important;
  transform:
    translateY(calc(var(--gallery-distance, 1) * 16px))
    rotateY(calc((var(--gallery-distance, 1) - 0.45) * -7deg))
    scale(0.78) !important;
  transition:
    opacity 0.5s ease,
    filter 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease !important;
  animation: none !important;
  will-change: transform, filter, opacity !important;
}

.gallery-card.is-side {
  opacity: 0.72 !important;
  filter: blur(1.1px) saturate(0.94) brightness(0.78) !important;
  transform:
    translateY(calc(var(--gallery-distance, 1) * 8px))
    rotateY(calc((var(--gallery-distance, 1) - 0.3) * -4deg))
    scale(0.88) !important;
  z-index: 2 !important;
}

.gallery-card.is-center {
  opacity: 1 !important;
  filter: blur(0) saturate(1.14) brightness(1.02) contrast(1.08) !important;
  transform: translateY(0) rotateY(0deg) scale(1.06) !important;
  z-index: 5 !important;
  border-color: rgba(212, 175, 55, 0.78) !important;
  box-shadow:
    0 30px 85px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(212, 175, 55, 0.28),
    0 0 36px rgba(212, 175, 55, 0.18) !important;
}

.gallery-card.is-far {
  opacity: 0.36 !important;
  filter: blur(3px) saturate(0.72) brightness(0.58) !important;
}

.gallery-card img {
  filter: sepia(0.16) saturate(1.05) contrast(1.04) brightness(0.82) !important;
  transform: scale(1.08) !important;
}

.gallery-card.is-center img {
  filter: sepia(0.04) saturate(1.2) contrast(1.1) brightness(1.02) !important;
  transform: scale(1.02) !important;
}

.gallery-overlay {
  opacity: 0 !important;
  transform: translateY(18px) !important;
}

.gallery-card.is-center .gallery-overlay {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.gallery-card:hover {
  transform: translateY(-2px) scale(1.07) !important;
}

@media (max-width: 899px) {
  .gallery-frame {
    margin-top: 1.3rem !important;
    padding: 1rem 0 !important;
    border-radius: 14px !important;
  }

  .gallery-grid {
    min-height: clamp(16rem, 74vw, 25rem) !important;
    padding: 1.15rem max(0.75rem, calc((100% - 76vw) / 2)) !important;
    gap: 0.8rem !important;
  }

  .gallery-card,
  .gallery-card.wide,
  .gallery-card.tall {
    flex-basis: 76vw !important;
    width: 76vw !important;
    height: clamp(14.5rem, 66vw, 22rem) !important;
    border-radius: 13px !important;
  }

  .gallery-card.is-center {
    transform: translateY(0) rotateY(0deg) scale(1.03) !important;
  }

  .gallery-overlay {
    padding: 0.75rem !important;
  }

  .gallery-overlay h4 {
    font-size: 0.85rem !important;
  }

  .gallery-overlay p {
    display: none !important;
  }
}
