/* ═══════════════════════════════════════════════════
   BBQ PIZZA HUT — PREMIUM STYLESHEET v2
   Cinematic dark luxury • Glassmorphism • Gold accents
   ═══════════════════════════════════════════════════ */

/* ── Local fonts: Hind Siliguri (body / menu text) ─── */
@font-face {
  font-family: 'Hind Siliguri';
  src: url('fonts/HindSiliguri-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hind Siliguri';
  src: url('fonts/HindSiliguri-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hind Siliguri';
  src: url('fonts/HindSiliguri-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hind Siliguri';
  src: url('fonts/HindSiliguri-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hind Siliguri';
  src: url('fonts/HindSiliguri-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Color palette */
  --bg:           #0A0A0A;
  --bg-2:         #121212;
  --bg-3:         #1A1A1A;
  --card:         #1C1C1C;
  --primary:      #D4AF37;
  --primary-2:    #E8C766;
  --secondary:    #FF6B35;
  --secondary-2:  #FF8C42;
  --text:         #FFFFFF;
  --text-2:       #E8E8E8;
  --muted:        #9A9A9A;
  --muted-2:      #6B6B6B;
  --border:       rgba(255,255,255,.06);
  --glass:        rgba(28,28,28,.55);
  --glass-border: rgba(255,255,255,.08);
  --success:      #4CAF50;
  --warning:      #FFA726;
  --error:        #EF5350;
  --accent:       #00BCD4;

  /* Fonts — titles keep Playfair; body/menu use Hind Siliguri */
  --font-body:  'Hind Siliguri', system-ui, sans-serif;
  --font-title: 'Playfair Display', Georgia, serif;

  /* Spacing — 8px system */
  --space-xs:  .5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* Radius */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-full: 999px;

  /* Transitions */
  --ease:        cubic-bezier(.22,1,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --t-fast: .2s var(--ease);
  --t-med:  .4s var(--ease);
  --t-slow: .8s var(--ease);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.5);
  --shadow-gold: 0 8px 32px rgba(212,175,55,.25);
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.gold { color: var(--primary); }

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--secondary));
  border-radius: 4px;
}

::selection { background: var(--primary); color: var(--bg); }

/* ═══ LOADING SCREEN ════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, #151515 0%, #050505 70%);
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--primary); opacity: .15;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .2; }
  90%  { opacity: .15; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.loader-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}

.loader-ring {
  position: relative;
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.loader-ring::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}
.loader-ring::after {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid transparent;
  border-bottom-color: rgba(212,175,55,.3);
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loader-logo {
  width: 90px; height: 90px; object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(212,175,55,.5));
  animation: logoPulse 2s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes logoPulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.08); }
}

.loader-bar-wrap {
  width: 260px; height: 3px;
  background: rgba(255,255,255,.06); border-radius: 4px;
  overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(212,175,55,.5);
  transition: width .1s linear;
}
.loader-percent {
  font-size: .85rem; letter-spacing: 3px; color: var(--muted);
  font-weight: 500;
}

/* ═══ NAVBAR ═══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background var(--t-med), backdrop-filter var(--t-med), box-shadow var(--t-med), padding var(--t-med);
}
#navbar.scrolled {
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  transition: padding var(--t-med);
}
#navbar.scrolled .nav-inner { padding: .85rem 2rem; }

.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-logo {
  width: 44px; height: 44px; object-fit: contain;
  mix-blend-mode: screen;
  transition: transform var(--t-med);
}
.nav-brand:hover .nav-logo { transform: scale(1.1) rotate(-5deg); }
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: .5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  position: relative; font-size: .92rem; font-weight: 500; color: var(--muted);
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 50%; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width var(--t-med), left var(--t-med);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; left: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Language switcher EN | বাং */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: var(--r-full);
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(0,0,0,.35);
  gap: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .4px;
  padding: .35rem .7rem;
  border-radius: var(--r-full);
  cursor: pointer;
  line-height: 1.2;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(212,175,55,.3);
}

.nav-cta {
  display: inline-flex; align-items: center;
  padding: .6rem 1.5rem; border-radius: var(--r-full);
  font-size: .85rem; font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #1a1a1a;
  box-shadow: var(--shadow-gold);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212,175,55,.4); }

/* Bangla body text uses Hind Siliguri (already body font) */
body.lang-bn {
  font-family: var(--font-body);
  line-height: 1.7;
}
body.lang-bn .menu-item-name,
body.lang-bn .cat-card-name,
body.lang-bn .contact-card h3,
body.lang-bn .nav-links a {
  font-family: var(--font-body);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
  z-index: 1001;
}
.nav-hamburger span {
  width: 26px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ BUTTONS ══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 2.2rem; border-radius: var(--r-full);
  font-size: .92rem; font-weight: 600; letter-spacing: .3px;
  cursor: pointer; border: none; transition: all var(--t-med);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #1a1a1a;
  box-shadow: var(--shadow-gold);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-2), var(--secondary-2));
  opacity: 0; transition: opacity var(--t-med);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(212,175,55,.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { transition: transform var(--t-med); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.04);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ═══ SECTIONS COMMON ══════════════════════════════ */
section { padding: var(--space-2xl) 2rem; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-eyebrow {
  font-size: .78rem; text-transform: uppercase; letter-spacing: 5px;
  color: var(--secondary); font-weight: 600; margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
  line-height: 1.2;
}
.divider {
  width: 64px; height: 3px; margin: 1.5rem auto 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  position: relative;
}
.divider::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

/* ═══ HERO ═════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; overflow: hidden;
  position: relative;
}
.hero-bg-glow {
  position: absolute; top: 10%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.10) 0%, transparent 65%);
  pointer-events: none;
  animation: glowDrift 12s ease-in-out infinite;
}
.hero-bg-glow-2 {
  position: absolute; bottom: -20%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.06) 0%, transparent 65%);
  pointer-events: none;
  animation: glowDrift 15s ease-in-out infinite reverse;
}
@keyframes glowDrift {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(30px, -30px); }
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem;
  align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  font-size: 1.05rem; color: var(--muted); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.wave { display: inline-block; animation: wave 2.5s ease-in-out infinite; transform-origin: 70% 70%; }
@keyframes wave {
  0%, 60%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(14deg); }
  20%     { transform: rotate(-8deg); }
}

.hero-title { margin-bottom: 1rem; }
.hero-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-2) 50%, var(--primary) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-chef-line {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem; color: var(--text-2); margin-bottom: .25rem;
}
.hero-chef-line .gold {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-role {
  font-size: 1.05rem; color: var(--secondary); font-weight: 500;
  margin-bottom: 1.5rem; letter-spacing: .5px;
}
.hero-desc {
  color: var(--muted); font-size: 1.02rem; max-width: 500px;
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted-2);
}

/* Chef frame */
/* Chef frame */
.hero-right { display: flex; justify-content: center; position: relative; }
.chef-frame {
  position: relative; width: 420px; height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.chef-frame.no-chef::before {
  content: '👨‍🍳'; font-size: 12rem;
  filter: drop-shadow(0 0 40px rgba(212,175,55,.3));
}
.chef-glow {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.18) 0%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes glowPulse {
  0%,100% { opacity: .5; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.08); }
}
.chef-ring {
  position: absolute; inset: 0; border-radius: var(--r-lg);
  border: 1px solid rgba(212,175,55,.15);
  animation: ringRotate 20s linear infinite;
  z-index: 1;
  pointer-events: none;
}
.chef-ring::before {
  content: ''; position: absolute; top: -3px; left: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 12px var(--primary);
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

.chef-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--glass-border);
  animation: chefFloat 6s ease-in-out infinite;
  position: relative; z-index: 1;
  background: #0A0A0A;
}
@keyframes chefFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-16px); }
}

/* Glass quote — left side of hero photo (clear of the face) */
.quote-glass {
  position: absolute;
  left: -120px;
  top: 42%;
  z-index: 3;
  width: min(190px, 46vw);
  margin: 0;
  padding: .8rem .85rem .75rem .95rem;
  border-radius: var(--r-md);
  background: rgba(18, 18, 18, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .4),
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 0 18px rgba(212, 175, 55, .12);
  overflow: hidden;
  animation: badgeFloat 5s ease-in-out infinite;
  pointer-events: none;
}
.quote-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, .5),
    rgba(255, 255, 255, .08) 45%,
    rgba(255, 107, 53, .35)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.quote-mark {
  position: absolute;
  top: -.05rem;
  left: .4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--primary);
  opacity: .5;
  pointer-events: none;
  user-select: none;
}
.quote-text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--text-2);
  font-weight: 500;
  font-style: italic;
}
.quote-author {
  position: relative;
  z-index: 1;
  margin-top: .45rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--primary);
  font-style: normal;
}
.quote-author::before {
  content: '— ';
  opacity: .7;
}

.chef-badge {
  position: absolute; bottom: 30px; right: -20px; z-index: 3;
  background: rgba(28,28,28,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--r-md);
  padding: .75rem 1.25rem;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--shadow-md);
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.chef-badge-text {
  font-family: 'Playfair Display', serif;
  font-size: .9rem; font-weight: 700; color: var(--primary);
}
.chef-badge-sub {
  font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted);
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-hint > span:first-child {
  width: 28px; height: 46px; border: 2px solid var(--border); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px; position: relative;
}
.scroll-hint > span:first-child::after {
  content: ''; position: absolute;
  width: 4px; height: 8px; background: var(--primary); border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(16px); }
}
.scroll-text {
  font-size: .65rem; letter-spacing: 3px; color: var(--muted-2); font-weight: 600;
}

/* ═══ MARQUEE ══════════════════════════════════════ */
.marquee {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: #1a1a1a;
  display: inline-flex; align-items: center; gap: .5rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══ ABOUT ════════════════════════════════════════ */
.about { background: var(--bg-2); }
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.about-card {
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: var(--r-md);
  padding: 2.25rem 2rem;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,.2);
}
.about-card:hover::before { transform: scaleX(1); }
.about-card .icon {
  font-size: 2rem; margin-bottom: 1rem;
  display: inline-block;
  transition: transform var(--t-med);
}
.about-card:hover .icon { transform: scale(1.15) rotate(-5deg); }
.about-card h3 {
  font-size: 1.1rem; margin-bottom: .5rem; color: var(--primary);
  font-weight: 600;
}
.about-card p { color: var(--muted); font-size: .92rem; line-height: 1.7; }
.about-card a { color: var(--muted); transition: color var(--t-fast); }
.about-card a:hover { color: var(--primary); }

/* ═══ MENU BOARD (printed menu style) ══════════════ */
.menu-intro {
  max-width: 36rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}
.menu {
  padding-top: 3.5rem;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255,107,53,.07), transparent 55%),
    var(--bg);
}
#menu-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Category pick list */
.cat-grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.cat-card {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255,160,60,.18);
  background:
    linear-gradient(90deg, rgba(40,28,18,.92) 0%, rgba(14,10,8,.96) 100%);
  border-radius: 18px;
  padding: .85rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: .9rem;
  cursor: pointer;
  color: inherit;
  font: inherit;
  min-height: 88px;
  width: 100%;
  position: relative;
  overflow: visible;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(255,140,66,.12), transparent 45%);
  pointer-events: none;
}
.cat-card:hover,
.cat-card:focus-visible {
  transform: translateX(4px);
  border-color: rgba(255,160,60,.45);
  box-shadow: 0 12px 32px rgba(255,107,53,.18);
  outline: none;
}
.cat-card:active { transform: scale(.99); }

.cat-card-media {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 0;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  flex-shrink: 0;
  isolation: isolate;
}
.cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent !important;
  mix-blend-mode: normal;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
  transition: transform var(--t-slow);
}
.cat-card:hover .cat-card-media img { transform: scale(1.06); }
.cat-card-ring { display: none !important; }

.cat-card-name {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #F0A030;
  line-height: 1.2;
  flex: 1 1 auto;
  min-width: 0;
}
.cat-card-count {
  position: relative;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}
.cat-card-cta {
  position: relative;
  margin-top: 0;
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .4px;
  color: #1a120c;
  background: linear-gradient(135deg, #F0A030, #FF6B35);
  padding: .4rem .8rem;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Category detail + back */
.menu-details { width: 100%; }
.menu-detail[hidden],
.cat-grid[hidden] { display: none !important; }

.menu-detail-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
  position: sticky;
  top: 64px;
  z-index: 40;
  padding: .65rem .85rem;
  border-radius: 14px;
  background: rgba(12,10,8,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,160,60,.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.menu-back-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,160,60,.35);
  background: rgba(255,140,66,.1);
  color: #FFB347;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--t-fast);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 42px;
}
.menu-back-btn:hover {
  background: linear-gradient(135deg, #F0A030, #FF6B35);
  color: #1a120c;
  border-color: transparent;
}
.menu-back-btn:active { transform: scale(.97); }

.menu-detail-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #F0A030;
}

.menu-category { width: 100%; }

.menu-board {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,180,80,.12);
  background:
    linear-gradient(180deg, rgba(40,28,18,.55) 0%, rgba(18,12,8,.75) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.015) 0px,
      rgba(255,255,255,.015) 1px,
      transparent 1px,
      transparent 7px
    ),
    #1a120c;
}
.menu-board::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,140,66,.08), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(212,175,55,.06), transparent 32%);
  pointer-events: none;
}
.menu-board::after {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(255,160,60,.1);
  border-radius: 12px;
  pointer-events: none;
}

.menu-board-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 2rem 1.75rem 2rem 2rem;
}

.menu-category.flip .menu-board-inner {
  grid-template-columns: 200px 1fr;
}
.menu-category.flip .cat-image-wrap { order: -1; }

.cat-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(255,140,66,.18);
}

.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #F0A030;
  letter-spacing: .5px;
  text-shadow: 0 2px 12px rgba(255,140,66,.25);
  line-height: 1.15;
}
.cat-badge {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: #FFB347;
  margin-left: .25rem;
}

.menu-size-head {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.size-pill {
  min-width: 2.4rem;
  text-align: center;
  padding: .22rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  color: #1a120c;
  background: linear-gradient(135deg, #F0A030, #FF6B35);
  box-shadow: 0 2px 8px rgba(255,107,53,.3);
}

/* Food photo like printed menu */
.cat-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cat-image-frame {
  width: 170px;
  height: 170px;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
  position: relative;
}
.cat-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
  transition: transform var(--t-slow);
}
.cat-image-frame:hover img { transform: scale(1.05); }

/* Subcategory */
.subcat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #FF8C42;
  font-weight: 700;
  margin: 1.1rem 0 .45rem;
  padding-top: .65rem;
  border-top: 1px dashed rgba(255,140,66,.2);
}
.subcat-label:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

/* Numbered dotted-leader items */
.menu-items-list { display: flex; flex-direction: column; gap: .15rem; }

.menu-item { padding: .28rem 0; }
.menu-item-main { width: 100%; }

.menu-item-line {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  width: 100%;
  min-width: 0;
}

.menu-item-left {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  flex-shrink: 0;
  max-width: 58%;
}

.menu-item-num {
  font-size: .9rem;
  font-weight: 600;
  color: #E8C766;
  min-width: 1.7rem;
  font-variant-numeric: tabular-nums;
}

.menu-item-name {
  font-size: .95rem;
  font-weight: 500;
  color: #F2EDE6;
  line-height: 1.35;
}

.menu-dots {
  flex: 1 1 auto;
  min-width: 1.25rem;
  height: 0;
  margin: 0 .15rem .28rem;
  border-bottom: 1.5px dotted rgba(255,200,120,.35);
  align-self: flex-end;
}

.menu-item-prices {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: .65rem;
  font-variant-numeric: tabular-nums;
}

.menu-item-prices.multi {
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 48%;
}

.price-val {
  font-size: .92rem;
  font-weight: 700;
  color: #F5F0E8;
  white-space: nowrap;
  letter-spacing: .2px;
}

.price-val .size-label {
  display: none;
}

.menu-item-desc {
  font-size: .78rem;
  color: rgba(232,200,140,.65);
  margin: .15rem 0 0 2.1rem;
  font-style: italic;
  line-height: 1.4;
}

.menu-item:hover .menu-item-name { color: #FFB347; }
.menu-item:hover .menu-dots { border-bottom-color: rgba(255,180,80,.55); }
.menu-item:hover .price-val { color: #FFD27A; }

/* ═══ PIZZA BOARD (S 8" / M 10" / L 12" orange boxes) ══ */
.pizza-board .menu-board-inner {
  grid-template-columns: 1fr 220px;
}
.pizza-board.flip .menu-board-inner {
  grid-template-columns: 220px 1fr;
}

.pizza-title-row {
  align-items: flex-end;
  border-bottom: 2px solid rgba(255,140,66,.45);
  padding-bottom: .75rem;
  margin-bottom: 1rem;
}

.pizza-size-head {
  display: grid;
  grid-template-columns: repeat(3, 4.6rem);
  gap: .45rem;
  justify-content: end;
  min-width: calc(3 * 4.6rem + 2 * .45rem);
}

.pizza-size-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: #FFB347;
  text-transform: none;
  line-height: 1.2;
}

.pizza-items {
  gap: .35rem;
}

.pizza-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1rem;
  width: 100%;
}

.pizza-item .menu-item-left {
  max-width: none;
  flex: 1 1 auto;
  min-width: 0;
}

.pizza-price-cols {
  display: grid;
  grid-template-columns: repeat(3, 4.6rem);
  gap: .45rem;
  flex-shrink: 0;
}

.pizza-price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: .35rem .2rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: #1a120c;
  background: linear-gradient(180deg, #FF9A3C 0%, #F07820 100%);
  box-shadow:
    0 2px 0 rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.25);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.pizza-price-box.empty {
  background: transparent;
  box-shadow: none;
  border: 1px dashed rgba(255,160,60,.15);
  min-height: 2rem;
}

.pizza-item:hover .menu-item-name { color: #FFB347; }
.pizza-item:hover .pizza-price-box:not(.empty) {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.pizza-photo {
  width: 200px;
  height: 200px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}
.pizza-photo img {
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.4));
}

/* ═══ GALLERY ══════════════════════════════════════ */
.gallery { background: var(--bg-2); }
.gallery-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 50%);
  opacity: 0; transition: opacity var(--t-med);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-icon {
  position: absolute; top: 1rem; right: 1rem; z-index: 1;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(28,28,28,.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--primary);
  opacity: 0; transform: scale(.8);
  transition: opacity var(--t-med), transform var(--t-med);
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: scale(1); }

/* ═══ CONTACT ══════════════════════════════════════ */
.contact {
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(212,175,55,.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(255,107,53,.05), transparent 50%),
    var(--bg);
}

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

/* Brand panel */
.contact-brand {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-brand::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}
.contact-brand-glow {
  position: absolute;
  width: 220px; height: 220px;
  top: -40px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,175,55,.18) 0%, transparent 70%);
  pointer-events: none;
}
.contact-logo-ring {
  position: relative;
  width: 120px; height: 120px;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.25);
  box-shadow: 0 0 0 8px rgba(212,175,55,.06), var(--shadow-gold);
  background: rgba(10,10,10,.6);
}
.contact-logo-ring::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,.35);
  animation: spin 18s linear infinite;
}
.contact-logo {
  width: 88px; height: 88px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 16px rgba(212,175,55,.35));
}
.contact-store-label {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
  font-weight: 600;
}
.contact-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .65rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-headline {
  color: var(--text-2);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.contact-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 28ch;
}
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.contact-chip {
  padding: .35rem .85rem;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--primary);
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
}
.contact-tagline {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--primary-2);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.contact-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: auto;
}
.contact-brand-actions .btn {
  padding: .7rem 1.35rem;
  font-size: .85rem;
}

/* Detail cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-content: start;
}
.contact-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,.22);
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.15);
  transition: transform var(--t-med), background var(--t-med);
}
.contact-card .icon .brand-icon {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}
.contact-card .icon .brand-icon-fb {
  color: #1877F2;
}
.contact-card .icon .brand-icon-wa {
  color: #25D366;
}
.contact-card:hover .icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(212,175,55,.14);
}
.contact-card h3 {
  font-size: .95rem;
  margin-bottom: .45rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: .2px;
}
.contact-card p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
  word-break: break-word;
  flex: 1;
}
.contact-btn {
  display: inline-block;
  margin-top: auto;
  padding: .55rem 1.4rem;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #1a1a1a;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,.3);
}

/* ═══ FOOTER ══════════════════════════════════════ */
.footer { background: #060606; padding: 3.5rem 2rem 1.5rem; border-top: var(--border); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; mix-blend-mode: screen; }
.footer-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-info p { color: var(--muted); font-size: .85rem; margin-bottom: .25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--muted); font-size: 1.1rem;
  transition: all var(--t-fast);
}
.footer-social a .brand-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.footer-social a.footer-icon-wa .brand-icon-wa {
  color: #25D366;
}
.footer-social a.footer-icon-wa:hover {
  color: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.footer-social a.footer-icon-fb .brand-icon-fb {
  color: #1877F2;
}
.footer-social a.footer-icon-fb:hover {
  color: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 4px 16px rgba(24,119,242,.25);
}
.footer-social a.footer-icon-maps:hover {
  border-color: #EA4335;
  box-shadow: 0 4px 16px rgba(234,67,53,.25);
}
.footer-social a:hover {
  color: var(--primary); border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(212,175,55,.2);
}
.footer-bottom {
  max-width: 1280px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: var(--border);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  align-items: center;
}
.footer-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .65rem;
}
.footer-credit strong {
  color: var(--text-2);
  font-weight: 600;
  letter-spacing: .3px;
}
.footer-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--primary);
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(212,175,55,.08);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.footer-mail-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  pointer-events: none;
}
.footer-mail:hover {
  color: var(--primary-2);
  border-color: var(--primary);
  background: rgba(212,175,55,.16);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,175,55,.2);
}
.footer-bottom p { color: var(--muted-2); font-size: .82rem; }
.heart { color: #e74c3c; animation: heartBeat 1.5s ease-in-out infinite; }
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}

/* ═══ LIGHTBOX ═════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.9); transition: transform var(--t-med);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid var(--glass-border);
  color: var(--text); font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.lightbox-close:hover { background: var(--primary); color: #1a1a1a; transform: rotate(90deg); }

/* ═══ BACK TO TOP ══════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #1a1a1a; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--t-med);
  box-shadow: 0 4px 20px rgba(212,175,55,.3);
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(212,175,55,.5); }

/* ═══ REVEAL ANIMATION ═════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE / MOBILE ══════════════════════════ */
html { -webkit-text-size-adjust: 100%; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  /* Mobile: quote in left corner of hero photo (PC position unchanged) */
  .quote-glass {
    left: -42px;
    top: 6%;
    bottom: auto;
    right: auto;
    width: min(148px, 40vw);
    max-width: 42%;
    padding: .55rem .6rem .5rem .7rem;
  }
  .quote-text { font-size: .62rem; line-height: 1.4; }
  .quote-author { font-size: .55rem; margin-top: .3rem; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .chef-frame { width: min(300px, 70vw); height: auto; aspect-ratio: 420 / 520; }
  .menu-board-inner,
  .pizza-board .menu-board-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cat-image-frame { width: 140px; height: 140px; }
  .pizza-photo { width: 160px; height: 160px; }
  .cat-title { font-size: 1.7rem; }
  .pizza-title-row {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .pizza-size-head,
  .pizza-price-cols {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    min-width: 0;
    max-width: 280px;
    margin-left: auto;
  }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-brand { max-width: 520px; margin: 0 auto; width: 100%; }
  .cat-grid {
    max-width: 100%;
    gap: .7rem;
  }
}

@media (max-width: 768px) {
  .nav-inner { padding: .9rem 1rem; }
  #navbar.scrolled .nav-inner { padding: .7rem 1rem; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(78%, 300px);
    background: rgba(10,10,10,.97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center; gap: 1.75rem;
    transition: right var(--t-med); padding: 2rem;
    border-left: var(--border);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.15rem; padding: .5rem 1rem; }
  .nav-hamburger { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .nav-actions { gap: .5rem; margin-left: auto; margin-right: .35rem; }
  .nav-cta { display: none; }
  .lang-switch { flex-shrink: 0; }
  .lang-btn { font-size: .7rem; padding: .3rem .55rem; }
  section { padding: 4rem 1.15rem; }
  .section-head { margin-bottom: 2.25rem; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .menu-detail-bar { top: 58px; }
  .cat-grid { gap: .65rem; }
  .cat-card {
    min-height: 76px;
    border-radius: 16px;
    padding: .75rem .85rem;
    gap: .7rem;
  }
  .cat-card-media { width: 56px; height: 56px; }
  .cat-card-name { font-size: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
  .marquee-track span { font-size: 1.05rem; }

  /* Pizza board — mobile only: compact price boxes, readable names */
  .pizza-title-row {
    flex-direction: column;
    align-items: stretch;
    gap: .45rem;
  }
  .pizza-item-row {
    flex-direction: row;
    align-items: center;
    gap: .5rem;
  }
  .pizza-item .menu-item-left {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }
  .pizza-item .menu-item-name {
    font-size: .86rem;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
  }
  .pizza-item .menu-item-num {
    font-size: .76rem;
    min-width: 1.3rem;
  }
  .pizza-size-head,
  .pizza-price-cols {
    display: grid;
    grid-template-columns: repeat(3, 3.15rem);
    gap: .28rem;
    width: auto;
    min-width: 0;
    max-width: none;
    margin-left: 0;
    flex-shrink: 0;
    justify-content: end;
  }
  .pizza-size-label {
    font-size: .6rem;
    letter-spacing: 0;
    line-height: 1.15;
  }
  .pizza-price-box,
  .pizza-price-box.empty {
    min-height: 1.5rem;
    padding: .22rem .1rem;
    font-size: .64rem;
    font-weight: 800;
    border-radius: 5px;
    letter-spacing: 0;
  }
}

@media (max-width: 480px) {
  .nav-name { font-size: 1rem; max-width: 42vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-logo { width: 36px; height: 36px; }
  .hero { min-height: auto; padding-top: 5.5rem; padding-bottom: 3rem; }
  .hero-brand { font-size: clamp(2rem, 10vw, 2.5rem); }
  .hero-desc { font-size: .9rem; }
  .chef-frame { width: min(250px, 78vw); }
  .chef-badge { right: 0; padding: .6rem 1rem; }
  .btn { padding: .8rem 1.35rem; font-size: .85rem; width: 100%; max-width: 280px; }
  .hero-buttons { width: 100%; }
  .hero-stats { gap: 1.1rem; width: 100%; justify-content: space-around; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: .72rem; }
  .menu-board-inner { padding: 1.15rem .9rem; }
  .menu-item-left { max-width: 50%; }
  .menu-item-name { font-size: .86rem; }
  .menu-item-num { font-size: .8rem; min-width: 1.45rem; }
  .price-val { font-size: .82rem; }
  .menu-item-prices.multi { gap: .3rem; max-width: 52%; }
  .price-val .size-label {
    display: inline;
    font-size: .62rem;
    font-weight: 600;
    color: #FFB347;
    margin-right: .12rem;
  }
  /* Pizza: slightly smaller on narrow phones, still readable */
  .pizza-item .menu-item-left { max-width: none; }
  .pizza-item .menu-item-name { font-size: .82rem; }
  .pizza-size-head,
  .pizza-price-cols {
    grid-template-columns: repeat(3, 2.95rem);
    gap: .24rem;
  }
  .pizza-size-label { font-size: .56rem; }
  .pizza-price-box,
  .pizza-price-box.empty {
    min-height: 1.4rem;
    padding: .18rem .08rem;
    font-size: .6rem;
  }
  .cat-image-frame { width: 112px; height: 112px; }
  .pizza-photo { width: 140px; height: 140px; border-radius: 0; border: none; background: transparent; }
  .cat-title { font-size: 1.4rem; }
  .cat-grid { gap: .55rem; }
  .cat-card {
    min-height: 70px;
    padding: .65rem .7rem;
    gap: .55rem;
  }
  .cat-card-media { width: 50px; height: 50px; }
  .cat-card-name { font-size: .95rem; }
  .cat-card-count { display: none; }
  .cat-card-cta { font-size: .65rem; padding: .32rem .55rem; }
  .menu-back-btn { font-size: .8rem; padding: .5rem .85rem; }
  .menu-detail-label { font-size: .95rem; }
  .menu-detail-bar { top: 54px; padding: .55rem .65rem; }
  #back-to-top { bottom: 1rem; right: 1rem; width: 44px; height: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-brand { padding: 1.75rem 1.1rem; }
  .contact-brand-name { font-size: 1.4rem; }
  .contact-brand-actions { width: 100%; }
  .contact-brand-actions .btn { width: 100%; }
  .contact-card { padding: 1.4rem 1.15rem; }
  .footer { padding: 2.5rem 1.15rem 1.25rem; }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
  #navbar .nav-inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  #back-to-top {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }
}

/* ═══ HIDDEN ADMIN LOGIN MODAL (minimal, matches dark theme) ═══ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.footer-copy-mark {
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}
.admin-login-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.admin-login-modal[hidden] { display: none !important; }
.admin-login-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}
.admin-login-card {
  position: relative; width: 100%; max-width: 360px;
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1.5rem 1.35rem 1.25rem;
  box-shadow: var(--shadow-lg);
}
.admin-login-card h2 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: .35rem;
}
.admin-login-hint {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 1rem;
}
.admin-login-card input[type="password"] {
  width: 100%;
  padding: .75rem .9rem;
  margin-bottom: .75rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--glass-border);
  background: var(--bg-2);
  color: var(--text);
  font: inherit;
}
.admin-login-card input[type="password"]:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
.admin-login-submit { width: 100%; justify-content: center; }
.admin-login-error {
  color: var(--error);
  font-size: .85rem;
  margin-top: .65rem;
}
.admin-login-cancel {
  display: block;
  width: 100%;
  margin-top: .75rem;
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  padding: .4rem;
}
.admin-login-cancel:hover { color: var(--text-2); }
