/* ============================================================
   Pizza One — El Kseur  |  style.css
   Static site. No build step. Vanilla CSS only.
   ------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Utilities & reveal animations
   4.  Navigation (glass bar + mobile drawer)
   5.  Hero (panorama parallax)
   6.  Marquee band
   7.  About cards
   8.  Gallery + lightbox
   9.  Menu (sticky tabs, search, cards)
   10. Info & map
   11. Footer & attribution
   12. Floating action dock
   13. Responsive
   ============================================================ */

/* ── 1. TOKENS ───────────────────────────────────────────── */
:root {
  /* Surfaces — layered, each step slightly lighter */
  --black:      #070707;
  --deep:       #0d0d0e;
  --card:       #141415;
  --card-hi:    #1b1b1d;
  --line:       rgba(212, 168, 67, 0.14);
  --line-soft:  rgba(245, 240, 232, 0.07);

  /* Brand */
  --gold:       #d4a843;
  --gold-light: #f2d489;
  --gold-deep:  #a17c26;
  --ember:      #e2542f;
  --red:        #c0392b;

  /* Text */
  --white:      #f7f3ec;
  --dim:        rgba(247, 243, 236, 0.62);
  --muted:      rgba(247, 243, 236, 0.38);

  /* Gradients */
  --grad-gold:  linear-gradient(135deg, #f2d489 0%, #d4a843 45%, #a17c26 100%);
  --grad-warm:  linear-gradient(135deg, #e2542f 0%, #d4a843 100%);
  --grad-card:  linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));

  /* Shape & depth */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 18px rgba(0,0,0,0.35);
  --shadow-md: 0 18px 48px rgba(0,0,0,0.5);
  --shadow-gold: 0 14px 44px rgba(212,168,67,0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 78px;

  /* Type */
  --f-display: 'Bebas Neue', 'Impact', sans-serif;
  --f-serif:   'Playfair Display', Georgia, serif;
  --f-sans:    'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ── 2. RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fine film grain over the whole page — kills banding in the dark gradients */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--black); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-deep), var(--gold));
  border-radius: var(--r-pill);
  border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. UTILITIES & REVEAL ───────────────────────────────── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(72px, 10vw, 128px); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-family: var(--f-serif);
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-intro {
  max-width: 56ch;
  color: var(--dim);
  font-size: 15px;
}

/* Reveal-on-scroll. Stagger via --d on the element. */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease) var(--d, 0s),
    transform 0.8s var(--ease) var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 32px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-gold);
  color: #1a1206;
  border: none;
  box-shadow: 0 8px 26px rgba(212,168,67,0.24);
}
/* Sheen sweep on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-primary:hover::after { transform: translateX(120%); }

.btn-outline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(247,243,236,0.24);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(212,168,67,0.08);
}

/* ── 4. NAVIGATION ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  background: linear-gradient(to bottom, rgba(7,7,7,0.85), rgba(7,7,7,0));
  transition: background 0.4s var(--ease), height 0.4s var(--ease),
              border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Solid glass once the page is scrolled */
.nav.scrolled {
  height: 66px;
  background: rgba(9,9,10,0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(212,168,67,0.35));
  transition: height 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav.scrolled .nav-logo img { height: 42px; }
.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links > li > a {
  position: relative;
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dim);
  border-radius: var(--r-pill);
  transition: color 0.25s var(--ease);
}
/* Underline grows from the centre; also marks the scroll-spy active link */
.nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 1.5px;
  background: var(--grad-gold);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: calc(100% - 32px); }

.nav-cta {
  margin-left: 12px;
  padding: 11px 24px !important;
  background: var(--grad-gold);
  color: #1a1206 !important;
  font-weight: 700 !important;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 20px rgba(212,168,67,0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Hamburger */
.nav-burger {
  display: none;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 1.6px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s linear;
}
.nav-burger span:nth-child(1) { transform: translate(-50%, -7px); }
.nav-burger span:nth-child(2) { transform: translate(-50%, -50%); }
.nav-burger span:nth-child(3) { transform: translate(-50%, 5px); }
.nav-burger.open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 96px var(--gutter) 48px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.nav-drawer.open { transform: none; }
.nav-drawer a {
  font-family: var(--f-serif);
  font-size: clamp(28px, 8vw, 42px);
  text-decoration: none;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transform: translateY(18px);
  transition: color 0.25s var(--ease);
}
.nav-drawer.open a { animation: fadeUp 0.5s var(--ease) forwards; }
.nav-drawer.open a:nth-child(1) { animation-delay: 0.08s; }
.nav-drawer.open a:nth-child(2) { animation-delay: 0.14s; }
.nav-drawer.open a:nth-child(3) { animation-delay: 0.20s; }
.nav-drawer.open a:nth-child(4) { animation-delay: 0.26s; }
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-phone {
  margin-top: 28px;
  font-family: var(--f-display);
  font-size: 34px;
  letter-spacing: 3px;
  color: var(--gold);
  border: none;
}

body.nav-locked { overflow: hidden; }

/* ── 5. HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}
.panorama-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.panorama-img {
  position: absolute;
  top: 0; left: 0;
  width: 180%;
  height: auto;
  max-width: none;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  transform: scale(1.02);
  pointer-events: none;
}

/* Two stacked overlays: a directional wash + a vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(212,168,67,0.10), transparent 60%),
    linear-gradient(160deg, rgba(7,7,7,0.90) 0%, rgba(7,7,7,0.55) 45%, rgba(7,7,7,0.94) 100%);
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(7,7,7,0.75) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 100px;
  max-width: 900px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212,168,67,0.10);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(76px, 15vw, 200px);
  line-height: 0.84;
  letter-spacing: 3px;
  text-shadow: 0 20px 70px rgba(0,0,0,0.65);
  opacity: 0;
  animation: fadeUp 0.9s 0.35s var(--ease) forwards;
}
.hero-title span {
  display: block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 44px rgba(212,168,67,0.35));
}
.hero-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 2.6vw, 25px);
  color: rgba(247,243,236,0.78);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s var(--ease) forwards;
}
.hero-divider {
  width: 72px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 30px auto;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease) forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s var(--ease) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.3s var(--ease) forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 3px; /* Balances the letter-spacing on the right */
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}


/* ── 6. MARQUEE BAND ─────────────────────────────────────── */
.marquee {
  background: var(--grad-gold);
  color: #1a1206;
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  border-block: 1px solid rgba(0,0,0,0.15);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  font-family: var(--f-display);
  font-size: 17px;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-group i { font-style: normal; opacity: 0.45; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 7. ABOUT ────────────────────────────────────────────── */
#about {
  background:
    radial-gradient(90% 60% at 15% 0%, rgba(212,168,67,0.06), transparent 60%),
    var(--deep);
  border-block: 1px solid var(--line);
}
.about-head { text-align: center; margin-bottom: 52px; }
.about-head .section-label { justify-content: center; }
.about-head .section-intro { margin-inline: auto; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.about-col {
  position: relative;
  padding: 38px 34px;
  background: var(--grad-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}
/* Warm aura that fades in on hover */
.about-col::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(70% 55% at 50% 0%, rgba(212,168,67,0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.about-col:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
.about-col:hover::before { opacity: 1; }

.about-icon {
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  background: rgba(212,168,67,0.09);
  border: 1px solid rgba(212,168,67,0.20);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}
.about-col:hover .about-icon { transform: translateY(-3px) rotate(-4deg); background: rgba(212,168,67,0.16); }
.about-icon img { width: 34px; height: 34px; object-fit: contain; }

.about-col h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}
.about-col p { font-size: 14.5px; line-height: 1.7; color: var(--dim); }
.about-col p strong { color: var(--gold); font-weight: 600; }

/* Stats row under the cards */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--deep);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--f-display);
  font-size: 42px;
  line-height: 1;
  letter-spacing: 1px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── 8. GALLERY ──────────────────────────────────────────── */
#gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line-soft);
}
.gallery-item {
  position: relative;
  height: clamp(280px, 34vw, 440px);
  overflow: hidden;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--black);
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.7);
  transform: scale(1.02);
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.1); filter: brightness(0.72) saturate(1.05); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.92) 0%, transparent 55%);
  pointer-events: none;
}
.gallery-caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  text-align: left;
}
.gallery-label {
  font-family: var(--f-display);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--white);
  transition: color 0.3s var(--ease);
  display: block;
}
.gallery-item:hover .gallery-label { color: var(--gold); }
.gallery-sub {
  display: block;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-item:hover .gallery-sub { opacity: 1; transform: none; }
.gallery-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--grad-gold);
  transition: width 0.5s var(--ease);
  z-index: 3;
}
.gallery-item:hover .gallery-bar,
.gallery-item.scroll-active .gallery-bar { width: 100%; }

/* Scroll-triggered animations for gallery items */
.gallery-item.scroll-active img {
  filter: brightness(0.72) saturate(1.05);
  transform: scale(1.06);
}
.gallery-item.scroll-active .gallery-label {
  color: var(--gold);
}
.gallery-item.scroll-active .gallery-sub {
  opacity: 1;
  transform: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4,4,4,0.94);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.open img { transform: none; }
.lightbox-cap {
  margin-top: 16px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--gold);
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.14); transform: rotate(90deg); }

/* ── 9. MENU ─────────────────────────────────────────────── */
#menu {
  background:
    radial-gradient(70% 40% at 100% 0%, rgba(226,84,47,0.05), transparent 65%),
    var(--black);
}
.menu-header { margin-bottom: 30px; }
.menu-header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

/* Sticky control bar: tabs + search travel with the user */
.menu-controls {
  position: sticky;
  top: calc(var(--nav-h) - 8px);
  z-index: 60;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px;
  margin-bottom: 40px;
  background: rgba(15,15,16,0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.menu-tabs {
  display: flex;
  gap: 4px;
  flex: 1 1 340px;
  min-width: 0;
}
.tab-btn {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  color: var(--dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tab-btn .tab-icon {
  width: 20px; height: 20px;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.tab-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.tab-btn:hover .tab-icon { transform: scale(1.12) rotate(-6deg); }
.tab-btn.active {
  background: var(--grad-gold);
  color: #1a1206;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212,168,67,0.26);
}

/* Live search */
.menu-search {
  position: relative;
  flex: 0 1 250px;
  display: flex;
  align-items: center;
}
.menu-search svg {
  position: absolute;
  left: 14px;
  width: 15px; height: 15px;
  stroke: var(--muted);
  pointer-events: none;
}
.menu-search input {
  width: 100%;
  padding: 12px 38px 12px 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: var(--f-sans);
  font-size: 13px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.menu-search input::placeholder { color: var(--muted); }
.menu-search input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,168,67,0.06);
}
.search-clear {
  position: absolute;
  right: 10px;
  width: 22px; height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: none;
}
.menu-search.has-value .search-clear { display: block; }

.menu-panel { display: none; animation: panelIn 0.45s var(--ease); }
.menu-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 19px;
}
.no-results.show { display: block; }

/* Product grid */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.pizza-card {
  position: relative;
  padding: 26px 28px;
  background: var(--grad-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* Gold rail that fills top-to-bottom on hover */
.pizza-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--grad-gold);
  transition: height 0.4s var(--ease);
}
.pizza-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: var(--card-hi);
  box-shadow: var(--shadow-md);
}
.pizza-card:hover::before { height: 100%; }
.pizza-card[hidden] { display: none; }

.pizza-name {
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  padding-right: 8px;
}
.pizza-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--dim);
  margin-bottom: 20px;
  min-height: 42px;
}
/* Single default-size price (pizzas panel) */
.pizza-price {
  display: inline-flex;
  align-items: baseline;
  padding: 8px 16px;
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.16);
  border-radius: var(--r-pill);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pizza-card:hover .pizza-price { background: rgba(212,168,67,0.12); border-color: rgba(212,168,67,0.32); }
.pizza-price .price-val { font-size: 22px; }

.pizza-prices { display: flex; gap: 10px; flex-wrap: wrap; }
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.16);
  border-radius: var(--r-pill);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pizza-card:hover .price-tag { background: rgba(212,168,67,0.12); border-color: rgba(212,168,67,0.32); }
.price-size {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.price-val {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--gold);
}

/* Signature card treatment */
.pizza-card.signature {
  background: linear-gradient(150deg, rgba(212,168,67,0.13), rgba(226,84,47,0.06) 55%, rgba(255,255,255,0.02));
  border-color: rgba(212,168,67,0.34);
}
.pizza-card.signature .pizza-name { color: var(--gold-light); }
.card-flag {
  position: absolute;
  top: 0; right: 0;
  padding: 6px 14px;
  background: var(--grad-gold);
  color: #1a1206;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom-left-radius: var(--r-md);
}

/* Sub-sections inside a panel */
.tacos-section { margin-bottom: 52px; }
.tacos-section:last-child { margin-bottom: 0; }
.tacos-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 30px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.tacos-section-title img { width: 30px; height: 30px; object-fit: contain; }
.tacos-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--line), transparent);
}

/* Supplements */
.supp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.supp-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--grad-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.supp-card:hover { border-color: rgba(212,168,67,0.35); transform: translateY(-2px); background: var(--card-hi); }
.supp-card[hidden] { display: none; }
.supp-name { font-size: 14px; font-weight: 500; }
.supp-prices { display: flex; gap: 12px; }
.supp-col { text-align: center; }
.supp-price-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.supp-price {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--gold);
}

/* Desserts & drinks */
.dessert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.dessert-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--grad-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.dessert-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.dessert-card:hover { background: var(--card-hi); border-color: var(--line); transform: translateY(-2px); }
.dessert-card:hover::after { transform: scaleX(1); }
.dessert-card[hidden] { display: none; }
.dessert-name { font-family: var(--f-serif); font-size: 16px; }
.dessert-price { font-family: var(--f-display); font-size: 22px; color: var(--gold); letter-spacing: 1px; }

/* Menu footer note */
.menu-note {
  margin-top: 44px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.menu-note p { font-size: 14px; color: var(--dim); max-width: 52ch; }
.menu-note strong { color: var(--gold); }

/* ── 10. INFO & MAP ──────────────────────────────────────── */
#info {
  background:
    radial-gradient(80% 50% at 0% 0%, rgba(212,168,67,0.055), transparent 60%),
    var(--deep);
  border-top: 1px solid var(--line);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  align-items: start;
}
.info-block h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  margin-bottom: 26px;
}
.info-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  margin-bottom: 10px;
  background: var(--grad-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.info-detail:hover { border-color: var(--line); transform: translateX(4px); }
.info-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: var(--r-sm);
  background: rgba(212,168,67,0.09);
  border: 1px solid rgba(212,168,67,0.18);
}
.info-text { font-size: 14px; line-height: 1.65; color: var(--dim); }
.info-text strong {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.phone-link {
  display: inline-block;
  margin-top: 2px;
  font-family: var(--f-display);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.phone-link:hover { color: var(--gold); }
.info-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.map-wrapper {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.map-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(212,168,67,0.16), inset 0 -70px 70px -50px rgba(7,7,7,0.9);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: grayscale(0.55) contrast(1.1) invert(0.92) hue-rotate(175deg) saturate(0.65);
}
/* ── 10b. IMPRESSIONS & REVIEWS ────────────────────────── */
#reviews {
  padding-block: clamp(60px, 8vw, 100px);
  background:
    radial-gradient(80% 50% at 50% 100%, rgba(212,168,67,0.06), transparent 70%),
    var(--black);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}
.reviews-header .section-label {
  justify-content: center;
}
.reviews-header .section-intro {
  margin-inline: auto;
}

.reviews-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 15px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  pointer-events: none; /* Locks track from touch, drag or swipe interference */
  touch-action: pan-y;
}

.reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: reviewsSlide 36s linear infinite;
  pointer-events: none;
}

.reviews-group {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

@keyframes reviewsSlide {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

.review-card {
  flex: 0 0 320px;
  max-width: 320px;
  padding: 26px 24px;
  background: var(--grad-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.5));
}


.review-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--white);
  font-family: var(--f-sans);
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 640px) {
  .review-card {
    flex: 0 0 280px;
    max-width: 280px;
    padding: 20px 18px;
  }
  .review-text {
    font-size: 13.5px;
  }
}

/* ── 11. FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(212,168,67,0.28));
}
.footer-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-about { font-size: 13.5px; color: var(--dim); max-width: 42ch; line-height: 1.7; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col li {
  font-size: 13.5px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* Freepik / icon credits — deliberately small and quiet */
.attribution {
  padding-block: 14px 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 10.5px;
  line-height: 1.7;
  color: rgba(247,243,236,0.30);
  text-align: center;
}
.attribution a {
  color: rgba(247,243,236,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}
.attribution a:hover { color: var(--gold); }

/* ── 12. FLOATING DOCK ───────────────────────────────────── */
.dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dock-btn {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20,20,21,0.9);
  backdrop-filter: blur(12px);
  color: var(--gold);
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease);
}
.dock-btn:hover { transform: translateY(-3px) scale(1.05); background: var(--gold); color: #1a1206; }
.dock-btn.call {
  background: var(--grad-gold);
  color: #1a1206;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  animation: callPulse 3s infinite;
}
@keyframes callPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.40); }
  50%      { box-shadow: 0 0 0 12px rgba(212,168,67,0); }
}
#toTop {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease), background 0.28s var(--ease);
}
#toTop.show { opacity: 1; visibility: visible; transform: none; }

/* Scroll progress bar under the nav */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 250;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(212,168,67,0.6);
}

/* ── MENU SCROLL GLOW EFFECTS ────────────────────────────── */
.menu-panel .pizza-card,
.menu-panel .dessert-card,
.menu-panel .supp-card {
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              background 0.35s var(--ease), box-shadow 0.35s var(--ease),
              opacity 0.5s var(--ease);
}

.menu-panel .pizza-card.menu-glow,
.menu-panel .dessert-card.menu-glow,
.menu-panel .supp-card.menu-glow {
  border-color: rgba(212,168,67,0.35);
  box-shadow: 0 0 25px rgba(212,168,67,0.10), 0 8px 32px rgba(0,0,0,0.3);
}

.menu-panel .pizza-card.menu-glow::before {
  height: 100%;
}

.menu-panel .pizza-card.menu-glow .pizza-price,
.menu-panel .pizza-card.menu-glow .price-tag {
  background: rgba(212,168,67,0.14);
  border-color: rgba(212,168,67,0.35);
}

.menu-panel .dessert-card.menu-glow::after {
  transform: scaleX(1);
}

/* ── 13. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .info-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .menu-controls { top: calc(var(--nav-h) - 6px); }
}

@media (max-width: 640px) {
  .hero-content { padding-top: 100px; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { flex: 1 1 200px; }
  #gallery { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }
  .menu-controls { padding: 10px; gap: 10px; }
  .menu-tabs { flex: 1 1 100%; flex-direction: column; }
  .menu-search { flex: 1 1 100%; }
  .tab-btn { justify-content: flex-start; padding: 12px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .pizza-grid { grid-template-columns: 1fr; }
  .pizza-desc { min-height: 0; }
  .map-wrapper iframe { height: 340px; }
  .dock { right: 14px; bottom: 14px; }
  .dock-btn { width: 48px; height: 48px; font-size: 18px; }
  /* Panorama: fill viewport height and stay wide enough to pan horizontally */
  .panorama-img { width: auto; height: 100%; min-width: 250%; }
}

/* ── ACCESSIBILITY: reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ── PRINT: give the staff a clean paper menu ────────────── */
@media print {
  body { background: #fff; color: #000; }
  body::after, .nav, .dock, .progress, #hero, #gallery, .marquee,
  .menu-controls, .map-wrapper, .lightbox { display: none !important; }
  .menu-panel { display: block !important; page-break-inside: avoid; }
  .pizza-card, .supp-card, .dessert-card { border: 1px solid #ccc; background: none; }
  .price-val, .dessert-price, .supp-price, .tacos-section-title { color: #000; }
}
