/* ═══════════════════════════════════════════════════════════════
   Pho Vi – Premium Vietnamese Restaurant
   style.css  ·  Light Luxury Edition
   Warm Cream Palette · Vibrant Red Accents · Editorial Typography
   Mobile-First · Smooth Animations · Fully Responsive
═══════════════════════════════════════════════════════════════ */

/* ─── 1. Design Tokens ───────────────────────────────────────── */
:root {
  /* Brand Palette */
  --red:         #ec3235;
  --red-dark:    #c12225;
  --red-deep:    #a01c1f;
  --red-light:   #ffd5d6;
  --red-tint:    rgba(236,50,53,.06);
  --red-tint-md: rgba(236,50,53,.12);

  /* Surfaces */
  --cream:       #fdf8ed;
  --cream-deep:  #f7f0db;
  --ivory:       #fff9f0;
  --white:       #ffffff;
  --surface-alt: #fef6ee;

  /* Text */
  --dark:        #1e1b1c;
  --charcoal:    #373435;
  --text:        #373435;
  --text-muted:  #6b6869;
  --text-light:  #9c999a;

  /* Aliases (kept for backward compat) */
  --gold:        #ec3235;
  --gold-dark:   #c12225;
  --gold-light:  #ffd5d6;
  --dark-mid:    #545051;

  /* Typography */
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-display:  'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   3.5rem;
  --space-2xl:  5rem;
  --space-3xl:  7rem;

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   36px;
  --radius-full: 9999px;

  /* Shadows — warm amber tones */
  --shadow-xs:   0 1px 4px rgba(55,40,20,.06);
  --shadow-sm:   0 2px 12px rgba(55,40,20,.08);
  --shadow-md:   0 8px 32px rgba(55,40,20,.10);
  --shadow-lg:   0 20px 60px rgba(55,40,20,.13);
  --shadow-xl:   0 32px 80px rgba(55,40,20,.16);
  --shadow-red:  0 8px 32px rgba(236,50,53,.28);
  --shadow-red-lg: 0 20px 60px rgba(236,50,53,.22);

  /* Transitions */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur-fast:    170ms;
  --dur-mid:     300ms;
  --dur-slow:    480ms;

  /* Layout */
  --header-h:  80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

ul { list-style: none; }
address { font-style: normal; }

.container {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
}

/* ─── 3. Skip link ───────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 9999;
  background: var(--dark);
  color: var(--red-light);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 1rem; }

/* ─── 4. Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--dark);
}

/* ─── 5. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur-mid) var(--ease-spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::before { opacity: 1; }

.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }

.btn-gold,
.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.btn-gold:hover,
.btn-red:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-red-lg);
  color: #fff;
}
.btn-gold:active,
.btn-red:active { transform: translateY(0) scale(.98); }

.btn-outline-light {
  background: rgba(255,255,255,.10);
  color: var(--white);
  border-color: rgba(255,255,255,.50);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.80);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: rgba(55,52,53,.35);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  background: transparent;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease);
  flex-shrink: 0;
}
.btn-icon-circle:hover {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg) scale(1.1);
}

/* ─── 6. Section Utilities ───────────────────────────────────── */
.section { padding-block: var(--space-3xl); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
  position: relative;
  padding-bottom: .5rem;
}
.section-tag::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: .01em;
  color: var(--dark);
  margin-bottom: var(--space-sm);
  line-height: 1.12;
}
.section-title.left { text-align: left; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.78;
}

.section-ornament {
  margin-top: var(--space-md);
  color: var(--red);
  font-size: 1.1rem;
  letter-spacing: .5rem;
  opacity: .6;
}
.section-ornament.left { text-align: left; }

/* ─── 7. Scroll Reveal ───────────────────────────────────────── */
.reveal-fade, .reveal-up {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 700ms;
  transition-timing-function: var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-fade.is-visible, .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 8. Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition:
    background var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease),
    height var(--dur-mid) var(--ease),
    border-color var(--dur-slow) var(--ease);
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(236,50,53,.12), 0 4px 32px rgba(55,40,20,.08);
  height: 68px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

/* Logo */
.logo-link {
  position: absolute;
  left: 50%; top: 6px;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 1005;
  transition: top var(--dur-mid) var(--ease), transform var(--dur-fast) var(--ease);
}
.logo-link:hover { transform: translateX(-50%) scale(1.04); }
.site-header.scrolled .logo-link { top: 4px; }

.logo-img {
  height: 58px; width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  background: #faf7f2;
  padding: 3px;
  transition: all var(--dur-mid) var(--ease);
}
.site-header.scrolled .logo-img {
  height: 46px;
  border-color: rgba(236,50,53,.3);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Main nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.main-nav a {
  padding: .5rem .9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.88);
  transition: all var(--dur-fast) var(--ease);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: .9rem; right: .9rem;
  height: 1.5px;
  background: var(--red-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a::after { background: var(--red); }
.site-header.scrolled .main-nav a:hover { color: var(--dark); background: var(--red-tint); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .3rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-full);
  padding: .3rem .65rem;
  backdrop-filter: blur(4px);
  transition: border-color var(--dur-fast);
}
.site-header.scrolled .lang-switcher { border-color: rgba(55,52,53,.18); }
.lang-btn {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  padding: .12rem .3rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast);
}
.lang-btn.active { color: var(--red-light); }
.lang-btn:hover  { color: var(--white); }
.site-header.scrolled .lang-btn { color: var(--text-muted); }
.site-header.scrolled .lang-btn.active { color: var(--red); }
.lang-divider { color: rgba(255,255,255,.2); font-size: .72rem; }
.site-header.scrolled .lang-divider { color: rgba(55,52,53,.2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: all var(--dur-fast) var(--ease);
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease);
}
.site-header.scrolled .hamburger {
  background: rgba(55,52,53,.04);
  border-color: rgba(55,52,53,.15);
}
.site-header.scrolled .hamburger span {
  background: var(--dark);
}
.hamburger.open {
  background: var(--red-tint) !important;
  border-color: rgba(236,50,53,.3) !important;
}
.hamburger.open span {
  background: var(--red) !important;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header reserve/phone btn adjustments */
.site-header.scrolled #header-reserve-btn,
.site-header.scrolled #header-phone-btn {
  color: var(--dark);
  border-color: rgba(55,52,53,.35);
  background: transparent;
}
.site-header.scrolled #header-reserve-btn:hover,
.site-header.scrolled #header-phone-btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* Mobile phone button display */
.header-phone-mobile {
  display: none;
}

@media (max-width: 768px) {
  .header-phone-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid rgba(236,50,53,.35);
    color: var(--red);
    font-size: .92rem;
    box-shadow: 0 2px 8px rgba(236,50,53,.1);
    transition: all var(--dur-fast) var(--ease);
  }
  .site-header.scrolled .header-phone-mobile {
    background: var(--red-tint);
    border-color: rgba(236,50,53,.3);
    color: var(--red);
    box-shadow: none;
  }
}


/* ─── 9. Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero-bg-img, .hero-bg-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-img {
  transform-origin: center;
  animation: heroZoom 22s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,15,10,.65) 0%, rgba(20,15,10,.30) 45%, rgba(20,15,10,.55) 100%);
}

/* Decorative patterns */
.hero-pattern {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 1;
  width: 180px;
  pointer-events: none;
  opacity: .5;
}
.hero-pattern--left  { left: 0; }
.hero-pattern--right { right: 0; transform: scaleX(-1); }

/* Floating lotus */
.lotus {
  position: absolute;
  z-index: 1;
  color: var(--red-light);
  pointer-events: none;
  animation: floatLotus 9s ease-in-out infinite;
}
.lotus-1 { font-size: 2.8rem; top: 18%; left: 6%; opacity: .18; animation-delay: 0s; }
.lotus-2 { font-size: 1.8rem; top: 66%; left: 4%; opacity: .13; animation-delay: -3s; }
.lotus-3 { font-size: 2.2rem; top: 22%; right: 6%; opacity: .16; animation-delay: -5s; }
@keyframes floatLotus {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(6deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 1100px;
  padding-block: var(--space-2xl);
  padding-inline: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.30);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  padding: .5rem 1.2rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: var(--space-md);
}
.hero-badge i { color: var(--red-light); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: .01em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 40px rgba(0,0,0,.45);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.78);
  line-height: 1.78;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ─── 10. Features Strip ─────────────────────────────────────── */
.features-strip {
  background: var(--white);
  padding-block: var(--space-xl);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(55,40,20,.07);
  position: relative;
  z-index: 1;
}

.features-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.feature-icon {
  width: 58px; height: 58px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(236,50,53,.15);
  transition: all var(--dur-mid) var(--ease);
}
.feature-icon:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}

.feature-text { display: flex; flex-direction: column; }
.feature-text strong { font-weight: 700; font-size: 1rem; color: var(--dark); }
.feature-text span   { font-size: .82rem; color: var(--text-muted); margin-top: .1rem; }

.feature-divider {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(236,50,53,.2), transparent);
}

/* ─── 11. Menu Section ───────────────────────────────────────── */
.menu-section {
  background: var(--cream);
  border-top: 1px solid rgba(55,40,20,.06);
}

.menu-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: .6rem 1.5rem;
  border: 1.5px solid rgba(236,50,53,.35);
  border-radius: var(--radius-full);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease);
  box-shadow: var(--shadow-xs);
}
.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-red);
}
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
  font-weight: 600;
}

/* ─── 11.5 Full Menu Book ────────────────────────────────────── */
.menu-book-container {
  background: var(--white);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(236,50,53,.2);
  box-shadow: var(--shadow-md);
  position: relative;
}
.menu-book-container::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(236,50,53,.1);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.full-menu-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.full-menu-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1.5px solid rgba(236,50,53,.15);
  padding-right: var(--space-md);
  max-height: 560px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red-light) transparent;
}
.full-menu-cats::-webkit-scrollbar { width: 3px; }
.full-menu-cats::-webkit-scrollbar-thumb {
  background: var(--red-light);
  border-radius: var(--radius-full);
}

.full-menu-cat-btn {
  text-align: left;
  padding: .65rem 1rem;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
  border-left: 2px solid transparent;
}
.full-menu-cat-btn:hover {
  color: var(--red);
  background: var(--red-tint);
  border-left-color: rgba(236,50,53,.3);
}
.full-menu-cat-btn.active {
  color: var(--red);
  font-weight: 600;
  background: rgba(236,50,53,.08);
  border-left: 2px solid var(--red);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.full-menu-panel { display: none; }
.full-menu-panel.active {
  display: block;
  animation: fadeInPanel .35s var(--ease) forwards;
}
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.full-menu-panel-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.full-menu-panel-title::before {
  content: '❧';
  color: var(--red);
  font-style: normal;
  font-size: 1.3rem;
  opacity: .7;
}

.full-menu-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm) var(--space-xl);
}

.full-menu-item-row {
  display: flex;
  flex-direction: column;
  padding: 11px 10px;
  border-bottom: 1px solid rgba(55,40,20,.06);
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
}
.full-menu-item-row:last-child { border-bottom: none; }
.full-menu-item-row:hover {
  background: var(--red-tint);
  padding-left: 16px;
  border-left: 2px solid var(--red);
}

.full-menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
}
.full-menu-item-header .name {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}
.full-menu-item-header .dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(55,40,20,.15);
  margin-inline: .4rem;
  min-width: 16px;
}
.full-menu-item-header .price {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  background: var(--red);
  padding: .12rem .5rem;
  border-radius: var(--radius-full);
}
.full-menu-item-desc {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.55;
  font-style: italic;
}

/* ─── 12. About Section ──────────────────────────────────────── */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  border-top: 1px solid rgba(55,40,20,.06);
}

.about-bg-deco {
  position: absolute;
  top: -220px; right: -220px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,50,53,.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding-bottom: var(--space-3xl);
}

.about-img-frame { position: relative; }
.about-img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  height: 620px;
  box-shadow: 0 32px 80px rgba(236,50,53,.12), var(--shadow-xl);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 124px; height: 124px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red-lg);
  overflow: hidden;
}
.badge-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.35);
  animation: badgeSpin 20s linear infinite;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
.badge-content { text-align: center; position: relative; z-index: 1; }
.badge-num   { display: block; font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: #fff; line-height: 1; }
.badge-label { display: block; font-size: .62rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .06em; text-transform: uppercase; line-height: 1.3; padding-inline: .3rem; }

.about-text-col { padding-block: var(--space-lg); }
.about-p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-md);
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(55,40,20,.08);
  border-top: 3px solid var(--red);
  margin-bottom: var(--space-lg);
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  font-style: italic;
}
.stat-lbl { font-size: .8rem; color: var(--text-muted); margin-top: .3rem; display: block; }
.stat-divider {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(236,50,53,.2), transparent);
}

/* Interior strip */
.about-interior {
  position: relative;
  height: clamp(280px, 35vw, 480px);
  overflow: hidden;
  margin-top: var(--space-2xl);
}
.about-interior img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 9s var(--ease);
}
.about-interior:hover img { transform: scale(1.04); }
.interior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,10,5,.62) 0%, rgba(20,10,5,.45) 50%, rgba(20,10,5,.62) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--space-lg);
  text-align: center;
}
.interior-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  max-width: 900px;
  line-height: 1.35;
  text-shadow: 0 4px 24px rgba(0,0,0,.55);
}

/* ─── 13. Gallery ────────────────────────────────────────────── */
.gallery-section {
  background: var(--cream);
  padding-bottom: 0;
  border-top: 1px solid rgba(55,40,20,.06);
}

.gallery-grid {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1.25rem;
  padding: 0 1.25rem 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.09); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(236,50,53,.7) 0%, rgba(30,20,15,.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease);
}
.gallery-item:hover .gallery-hover { opacity: 1; }

.gallery-zoom-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.5);
  transition: transform var(--dur-mid) var(--ease-spring), background var(--dur-fast);
}
.gallery-zoom-btn:hover { background: var(--red); color: #fff; }
.gallery-item:hover .gallery-zoom-btn { transform: scale(1); }

/* ─── 14. Reviews Section ────────────────────────────────────── */
.reviews-section {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(55,40,20,.06);
}

.reviews-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(236,50,53,.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(236,50,53,.04) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(55,40,20,.08);
  border-top: 3px solid var(--red);
  max-width: 400px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}
.agg-score {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  font-style: italic;
}
.agg-details { display: flex; flex-direction: column; gap: .35rem; }
.agg-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 1.05rem; }
.agg-details p { font-size: .82rem; color: var(--text-muted); }

/* Reviews Slider */
.reviews-slider-container {
  position: relative;
  width: 100%;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
}
.reviews-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding-block: 12px;
}
.reviews-track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--dur-slow) var(--ease);
  will-change: transform;
}
.reviews-track .review-card {
  width: calc((100% - (2 * var(--space-md))) / 3);
  flex-shrink: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(236,50,53,.35);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--dur-fast) var(--ease);
  box-shadow: var(--shadow-sm);
}
.slider-arrow:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.slider-arrow.prev { left: -60px; }
.slider-arrow.next { right: -60px; }

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-xl);
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(55,40,20,.18);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.slider-dot.active {
  background: var(--red);
  transform: scale(1.3);
  width: 22px;
  border-radius: var(--radius-full);
}

@media (max-width: 1024px) {
  .reviews-track .review-card { width: calc((100% - var(--space-md)) / 2); }
  .slider-arrow.prev { left: -20px; }
  .slider-arrow.next { right: -20px; }
}
@media (max-width: 768px) {
  .reviews-track .review-card { width: 100%; }
  .slider-arrow { display: none; }
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(55,40,20,.07);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--dur-mid) var(--ease);
  border-bottom: 3px solid transparent;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--red);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-name { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.review-date { font-size: .75rem; color: var(--text-light); }
.review-google-icon { margin-left: auto; flex-shrink: 0; }
.review-stars { display: flex; gap: 2px; color: #f59e0b; font-size: .88rem; margin-bottom: .75rem; }
.review-stars .empty { color: rgba(55,40,20,.15); }
.review-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.72;
  font-style: italic;
}
.reviews-cta { text-align: center; }

/* ─── 15. Contact Section ────────────────────────────────────── */
.contact-section {
  background: var(--white);
  border-top: 1px solid rgba(55,40,20,.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55,40,20,.07);
  border-left: 3px solid transparent;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-mid) var(--ease);
}
.contact-card:hover {
  border-left-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--red-tint);
  border: 1.5px solid rgba(236,50,53,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card-body h3 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .4rem;
}
.contact-phone-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-phone-link:hover { color: var(--red); }

/* Hours */
.hours-list { display: flex; flex-direction: column; gap: .4rem; }
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(55,40,20,.07);
}
.hour-row:last-child { border-bottom: none; }
.hour-day { font-weight: 600; color: var(--dark); min-width: 90px; }
.hour-times { color: var(--text-muted); display: flex; gap: .4rem; align-items: center; }
.hour-sep { color: var(--red); }
.hour-row--closed .hour-day { color: var(--text-light); }
.closed-label { color: var(--text-light); font-style: italic; }

/* Contact social & CTAs */
.contact-social {
  display: flex; align-items: center; gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.contact-social p { font-size: .85rem; color: var(--text-muted); }
.social-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #1877f2;
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 500;
  transition: all var(--dur-mid) var(--ease);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,.3); }
.contact-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Map */
.contact-map-wrap { position: relative; }
.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(236,50,53,.15);
}
.map-badge {
  position: absolute;
  bottom: var(--space-sm); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(236,50,53,.25);
  border-radius: var(--radius-full);
  padding: .6rem 1.3rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--dark); font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.map-badge i { color: #ea4335; }

/* ─── 16. Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red-dark) 50%, var(--red) 70%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: var(--space-lg);
  align-items: start;
}

.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-logo-img {
  height: 50px; width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  background: #faf7f2;
  padding: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.footer-tagline {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: var(--space-sm);
}
.footer-desc {
  font-size: .875rem; line-height: 1.75;
  color: rgba(255,255,255,.45); max-width: 280px; margin-bottom: var(--space-md);
}

.footer-socials { display: flex; gap: .6rem; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: all var(--dur-mid) var(--ease);
}
.social-icon:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: var(--space-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--red-light); }
.footer-col address p {
  font-size: .875rem; color: rgba(255,255,255,.45);
  margin-bottom: .6rem; display: flex; gap: .5rem; align-items: flex-start;
}
.footer-col address i { color: var(--red); margin-top: 3px; }
.footer-col address a { color: rgba(255,255,255,.45); }
.footer-col address a:hover { color: var(--red-light); }

.footer-hours { display: flex; flex-direction: column; gap: .35rem; }
.footer-hour-row {
  display: flex; justify-content: space-between; gap: .5rem;
  font-size: .8rem;
}
.footer-hour-row .day  { color: rgba(255,255,255,.45); min-width: 80px; }
.footer-hour-row .time { color: rgba(255,255,255,.3); text-align: right; }
.footer-hour-row.closed .day,
.footer-hour-row.closed .time { color: rgba(255,255,255,.2); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-size: .8rem;
  color: rgba(255,255,255,.28); flex-wrap: wrap;
}
.footer-credits {
  color: rgba(255,255,255,.3);
  font-size: .8rem; line-height: 1.6;
}
.footer-credits a {
  color: rgba(255,255,255,.45) !important;
  text-decoration: underline;
  transition: color var(--dur-fast) var(--ease);
}
.footer-credits a:hover { color: var(--red-light) !important; }

.site-footer .btn {
  font-family: var(--font-sans);
  font-weight: 600; letter-spacing: .04em;
  text-decoration: none;
  border-radius: var(--radius-full);
}
.site-footer .btn-gold { color: #fff !important; text-shadow: 0 1px 2px rgba(0,0,0,.2); }
.site-footer .btn-gold:hover { color: #fff !important; }
.site-footer .btn-outline-light {
  color: var(--white) !important;
  border-color: rgba(255,255,255,.4) !important;
}
.site-footer .btn-outline-light:hover {
  color: var(--white) !important;
  border-color: rgba(255,255,255,.7) !important;
}
.footer-ctas {
  margin-top: var(--space-md);
  display: flex; flex-direction: column;
  gap: var(--space-xs);
  max-width: 260px;
}

/* ─── 17. Back to Top ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all var(--dur-mid) var(--ease-spring);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px) scale(1.08); }

/* ─── 18. Lightbox ───────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(10,5,3,.96);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: var(--space-xl);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-overlay img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  transform: scale(0.9);
  transition: transform var(--dur-slow) var(--ease-spring);
}
.lightbox-overlay.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(236,50,53,.15);
  border: 1px solid rgba(236,50,53,.3);
  color: var(--red-light);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast);
}
.lightbox-close:hover { background: rgba(236,50,53,.3); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(55,52,53,.65);
  border: 1px solid rgba(236,50,53,.35);
  color: var(--red-light);
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease);
  z-index: 2010;
}
.lightbox-nav:hover { background: var(--red); color: #fff; border-color: var(--red); }
.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

/* ─── 19. Responsive ─────────────────────────────────────────── */

/* ── Tablet 1024px ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-img { height: 420px; }
  .about-img-badge { right: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-hours { max-width: 290px; margin-inline: auto; }
  .footer-col address { display: inline-block; text-align: center; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  /* Full menu: sidebar → top scroll tabs */
  .full-menu-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
  .full-menu-cats {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1.5px solid rgba(236,50,53,.15);
    padding-right: 0;
    padding-bottom: var(--space-xs);
    white-space: nowrap;
    max-height: none;
  }
  .full-menu-cat-btn { padding: .5rem 1rem; font-size: .9rem; }
  .full-menu-cat-btn.active {
    border-left: none;
    border-bottom: 2.5px solid var(--red);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    padding-bottom: calc(.5rem - 2.5px);
  }
}

/* ── Mobile nav 900px ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .logo-link {
    position: relative; left: auto; top: auto;
    transform: none; height: 100%;
  }
  .logo-link:hover { transform: none; }
  .logo-img { height: 38px !important; }
  .site-header.scrolled .logo-img { height: 32px !important; }

  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(28px);
    padding: var(--space-xl) var(--space-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-bottom: 2px solid var(--red);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .main-nav ul {
    flex-direction: column;
    gap: .5rem;
    align-items: center;
  }
  .main-nav ul li {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s var(--ease);
    width: 100%;
    text-align: center;
  }
  .main-nav.open ul li {
    opacity: 1;
    transform: translateY(0);
  }
  /* Staggered entrance animation for links */
  .main-nav.open ul li:nth-child(1) { transition-delay: 0.08s; }
  .main-nav.open ul li:nth-child(2) { transition-delay: 0.14s; }
  .main-nav.open ul li:nth-child(3) { transition-delay: 0.20s; }
  .main-nav.open ul li:nth-child(4) { transition-delay: 0.26s; }
  .main-nav.open ul li:nth-child(5) { transition-delay: 0.32s; }
  .main-nav.open ul li:nth-child(6) { transition-delay: 0.38s; }

  .main-nav a {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 500;
    padding: .6rem 1rem;
    letter-spacing: .05em;
    display: inline-block;
    position: relative;
  }
  .main-nav a::after { background: var(--red); bottom: 6px; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-frame { height: 360px; }

  .full-menu-items-list { grid-template-columns: 1fr; gap: var(--space-md); }

  .footer-ctas { margin-inline: auto; }
}

/* ── Small mobile 768px ── */
@media (max-width: 768px) {
  :root { --space-3xl: 3.5rem; --space-2xl: 2.5rem; }

  .header-actions .btn { display: none; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand .footer-desc { max-width: 100%; }

  .about-stats { gap: var(--space-md); padding: var(--space-md); }
  .stat-num { font-size: 2.1rem; }

  .features-grid { gap: var(--space-lg); flex-direction: column; }
  .feature-divider { width: 40px; height: 1px; }

  .hero-pattern { display: none; }

  .menu-book-container { padding: var(--space-lg) var(--space-sm); }

  /* Hide category scroll tabs on mobile and show all sections directly */
  .menu-filters {
    display: none !important;
  }
  .hero-scroll {
    display: none !important;
  }
  .full-menu-panel {
    display: block !important;
    margin-bottom: var(--space-xl);
  }
  .full-menu-panel:last-child {
    margin-bottom: 0;
  }

  /* Compact padding for contact cards on mobile to prevent squishing content */
  .contact-card {
    padding: var(--space-md);
  }
}


/* ── Extra small 480px ── */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .about-img-badge { right: .5rem; bottom: .5rem; width: 90px; height: 90px; }
  .badge-num { font-size: 1.5rem; }

  .slider-arrow.prev { left: -10px; }
  .slider-arrow.next { right: -10px; }

  .lightbox-nav { width: 44px; height: 44px; font-size: 1rem; }
  .lightbox-nav.prev { left: .75rem; }
  .lightbox-nav.next { right: .75rem; }

  /* Stack hours on small mobile viewports */
  .hour-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding-block: 0.5rem;
  }
  .hour-times {
    font-size: 0.82rem;
  }
}

/* ─── 20. Print ──────────────────────────────────────────────── */
@media print {
  .site-header, .hero-scroll, .back-to-top, .lightbox-overlay { display: none !important; }
  body { background: white; color: black; }
}

/* ─── 21. Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
