/* ═══════════════════════════════════════════════════════════════
   PHNOM PENH RESTAURANT — Complete Stylesheet
   v2025-03-20
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; }

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --primary:       #c41e3a;
  --primary-dk:    #8B1A1A;
  --primary-glow:  rgba(196, 30, 58, .3);
  --gold:          #C8921A;
  --gold-lt:       #e8b84b;
  --gold-glow:     rgba(200, 146, 26, .18);
  --dark:          #080503;
  --dark-2:        #110907;
  --dark-3:        #19100a;
  --dark-4:        #21160d;
  --dark-5:        #2a1c12;
  --text:          #f0e8dc;
  --text-2:        #b89878;
  --text-muted:    #836b53;
  --border:        rgba(200, 146, 26, .12);
  --border-dim:    rgba(255, 255, 255, .055);
  --shadow-sm:     0 2px 12px rgba(0, 0, 0, .38);
  --shadow-md:     0 8px 32px rgba(0, 0, 0, .5);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, .6);
  --radius:        10px;
  --radius-lg:     20px;
  --ease:          cubic-bezier(.4, 0, .2, 1);
  --t:             .3s var(--ease);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
}

/* ── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Container / Section ────────────────────────────────────── */
.container { width: 90%; max-width: 1200px; margin-inline: auto; }
.section { padding: 96px 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
h3 { font-size: 1.1rem; font-weight: 600; }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
  font-size: .95rem;
}
.center { text-align: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: var(--t);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #e02244;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t);
}
.site-header.scrolled {
  background: rgba(8, 5, 3, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-dim);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--text);
}
.logo-khmer {
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .08em;
}
.logo-en {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  color: rgba(240, 232, 220, .65);
  font-size: .875rem;
  font-weight: 500;
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,5,3,.9) 0%, rgba(8,5,3,.55) 55%, rgba(8,5,3,.2) 100%),
    linear-gradient(to top, rgba(8,5,3,.65) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 72px;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tagline::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--gold); display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(240, 232, 220, .7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: var(--t);
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; right: 40px;
  z-index: 2;
  opacity: .5;
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollHint 2.2s ease infinite;
}
@keyframes scrollHint {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════
   FEATURES BAR
   ════════════════════════════════════════════ */
.features-bar {
  background: var(--dark-4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--border-dim);
}
.feature-item:last-child { border-right: none; }
.feature-item svg {
  width: 28px; height: 28px;
  fill: var(--gold);
  flex-shrink: 0;
  opacity: .9;
}
.feature-item strong {
  display: block;
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-item span {
  display: block;
  color: var(--text-muted);
  font-size: .78rem;
}

/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
.about { background: var(--dark-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255,255,255,.08);
}
.badge-year  { display: block; font-size: .7rem; color: rgba(255,255,255,.65); letter-spacing: .12em; text-transform: uppercase; }
.badge-num   { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1.1; }
.badge-label { display: block; font-size: .68rem; color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-content p { color: var(--text-2); margin-bottom: .875rem; line-height: 1.7; font-size: .95rem; }
.about-content em { color: var(--text); }
.about-content strong { color: var(--text); }
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
}
.highlight-chip {
  background: var(--dark-5);
  border: 1px solid var(--border-dim);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .8rem;
  color: var(--text);
}

/* ════════════════════════════════════════════
   MENU SECTION
   ════════════════════════════════════════════ */
.menu-section { background: var(--dark-3); }
.menu-section .section-sub { margin-bottom: 2rem; }

/* Location selector */
.location-selector {
  text-align: center;
  margin-bottom: 2rem;
}
.location-selector-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.location-tabs {
  display: inline-flex;
  gap: .375rem;
  background: rgba(255,255,255,.04);
  padding: .35rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border-dim);
}
.location-btn {
  padding: .625rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: var(--t);
  touch-action: manipulation; /* eliminates 300ms tap delay on mobile */
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.location-btn:not(.active):hover { color: var(--text); background: rgba(255,255,255,.06); }
.location-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(-1px);
}

/* Menu content fade transition on location switch */
#menu-content {
  transition: opacity .2s var(--ease);
}
#menu-content.menu-fading {
  opacity: 0;
}

/* Location change toast notification */
.location-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--dark-4, #1a1a1a);
  border: 1px solid rgba(200,146,26,.4);
  color: var(--text, #eee);
  padding: .5rem 1.25rem;
  border-radius: 2rem;
  font-size: .82rem;
  font-family: var(--font-sans);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9000;
}
.location-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Menu search */
.menu-search-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto 2rem;
}
.menu-search-icon {
  position: absolute;
  left: .875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-style: normal;
  font-size: .9rem;
}
.menu-search {
  width: 100%;
  padding: .7rem 1rem .7rem 2.625rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .875rem;
  outline: none;
  transition: border-color var(--t);
}
.menu-search:focus { border-color: rgba(200,146,26,.35); }
.menu-search::placeholder { color: var(--text-muted); }

/* Menu tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2px;
  position: relative;
}
.menu-tabs::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border-dim);
}
.tab-btn {
  padding: .55rem 1.125rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .83rem;
  font-weight: 500;
  font-family: var(--font-sans);
  white-space: nowrap;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: color var(--t), background var(--t);
  position: relative;
  z-index: 1;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--t);
  z-index: 2;
}
.tab-btn:hover { color: var(--text); background: rgba(255,255,255,.04); }
.tab-btn.active { color: var(--primary); }
.tab-btn.active::after { transform: scaleX(1); }

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .3s var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Sub-section labels */
.sub-desc, .sub-note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.sub-category {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin: 2.5rem 0 1.25rem;
  padding-bottom: .625rem;
  border-bottom: 1px solid var(--border);
}

/* ── Menu Grid ──────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.125rem;
}
.menu-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .875rem;
}

/* ── Menu Card ──────────────────────────── */
.menu-card {
  background: var(--dark-5);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--border-dim);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,146,26,.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t);
}
.menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,146,26,.22);
  box-shadow: var(--shadow-sm);
}
.menu-card:hover::before { opacity: 1; }
.menu-card.chef-pick {
  border-left: 3px solid var(--gold);
}
.menu-card.hidden { display: none !important; }

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .5rem;
}
.menu-card-header h3 {
  font-size: .92rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 1.45;
}
.price {
  color: var(--gold-lt);
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.price-note {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .25rem;
  font-style: italic;
}
.menu-card p {
  color: var(--text-muted);
  font-size: .83rem;
  line-height: 1.55;
  margin-top: .25rem;
}
.variant-list {
  list-style: none;
  margin-top: .625rem;
  font-size: .8rem;
}
.variant-list li {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  padding: .3rem 0;
  border-bottom: 1px dotted rgba(255,255,255,.06);
  color: var(--text-muted);
}
.variant-list li:last-child { border-bottom: none; }
.variant-list .v-name { color: var(--text-2); }
.variant-list .v-price { color: var(--gold-lt); font-weight: 600; }

/* Menu tags */
.menu-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: .02em;
  line-height: 1.4;
}
.num-tag    { background: rgba(255,255,255,.07); color: var(--text-muted); }
.veg-tag    { background: rgba(52,211,153,.1);   color: #6ee7b7; }
.spicy-tag  { background: rgba(239,68,68,.1);    color: #f87171; }
.popular-tag{ background: rgba(200,146,26,.15);  color: var(--gold-lt); }
.chef-tag   { background: rgba(196,30,58,.12);   color: #f08090; }

/* Photo button */
.photo-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  padding: 2px 5px;
  border-radius: 4px;
  opacity: .55;
  transition: opacity var(--t), background var(--t);
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
.photo-icon-btn:hover { opacity: 1; background: var(--gold-glow); }

/* Menu empty state */
.menu-empty {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
  font-style: italic;
  grid-column: 1/-1;
}

/* Menu loading */
#menu-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
#menu-loading::after {
  content: '';
  display: block;
  width: 36px; height: 36px;
  margin: 1.25rem auto 0;
  border: 2.5px solid rgba(255,255,255,.07);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════ */
.gallery-section { background: var(--dark-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: .875rem;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,5,3,.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.125rem;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════
   LOCATIONS
   ════════════════════════════════════════════ */
.locations-section { background: var(--dark-3); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.location-card {
  background: var(--dark-5);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  border: 1px solid var(--border-dim);
  text-align: center;
  transition: transform var(--t), border-color var(--t);
}
.location-card:hover { transform: translateY(-4px); border-color: rgba(200,146,26,.2); }
.location-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.location-card p {
  color: var(--text-2);
  margin-bottom: .875rem;
  font-size: .9rem;
  line-height: 1.65;
}
.location-card strong { color: var(--text); }
.location-card a { color: var(--gold-lt); transition: color var(--t); }
.location-card a:hover { color: var(--gold); }
.location-card .dir-btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: .6rem 1.5rem;
  background: var(--gold-glow);
  border-radius: 999px;
  color: var(--gold-lt);
  font-size: .8rem;
  font-weight: 600;
  transition: background var(--t);
  border: 1px solid var(--border);
}
.location-card .dir-btn:hover { background: rgba(200,146,26,.28); }

/* ════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════ */
.contact-section {
  background: var(--dark-4);
  text-align: center;
}
.contact-section .section-sub { margin-bottom: 2rem; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dim);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-khmer { font-size: .9rem; color: var(--gold); letter-spacing: .08em; }
.footer-brand .logo-en {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  display: block;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: .875rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(240,232,220,.5);
  font-size: .85rem;
  margin-bottom: .5rem;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--text); }
.footer-col p {
  color: rgba(240,232,220,.45);
  font-size: .82rem;
  line-height: 1.65;
  margin-bottom: .4rem;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { color: var(--text-muted); font-size: .78rem; }

/* ════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════ */
#dish-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
#dish-lightbox.active { display: flex; }
.dish-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.93);
  cursor: pointer;
}
.dish-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.dish-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.dish-lightbox-caption {
  color: var(--text);
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: .01em;
}
.dish-lightbox-close {
  position: absolute;
  top: -52px; right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  font-size: 2.5rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t);
  line-height: 1;
}
.dish-lightbox-close:hover { color: #fff; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-top: 1px solid var(--border-dim); }
  .feature-item:nth-child(3) { border-right: 1px solid var(--border-dim); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-frame { aspect-ratio: 16/8; }
  .about-badge { bottom: -12px; right: 16px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(8,5,3,.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    border-bottom: 1px solid var(--border-dim);
    z-index: 1;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 0; border-bottom: 1px solid var(--border-dim); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }

  .hero-scroll-hint { display: none; }

  .features-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }

  .menu-grid,
  .menu-grid.compact { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .features-bar-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-top: 1px solid var(--border-dim); }
  .feature-item:first-child { border-top: none; }
  .feature-item:nth-child(3) { border-right: none !important; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .location-tabs { flex-direction: column; }
  .location-btn { width: 100%; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr; }

  .about-badge { right: 8px; bottom: -8px; }
}

/* ── Menu content fade on location switch ────────────────── */
#menu-content {
  transition: opacity .2s ease;
}
#menu-content.is-filtering {
  opacity: 0;
}

/* ── Location toast notification ────────────────────────── */
.location-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--dark-4);
  border: 1px solid rgba(200,146,26,.4);
  color: var(--text);
  padding: .5rem 1.25rem;
  border-radius: 2rem;
  font-size: .82rem;
  font-family: var(--font-sans);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9000;
}
.location-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
