/* ==========================================================================
   AKABARE THAKALI RESTAURANT — Apple-style, black & white, glassmorphism
   ========================================================================== */

:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;

  --black: #0a0a0a;
  --ink: #111111;
  --gray-900: #1d1d1f;
  --gray-700: #3a3a3c;
  --gray-500: #6e6e73;
  --gray-300: #b8b8bd;
  --gray-200: #d8d8dc;
  --gray-100: #efeff1;
  --gray-50: #f7f7f8;
  --white: #ffffff;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-dark-bg: rgba(20, 20, 22, 0.45);
  --glass-dark-border: rgba(255, 255, 255, 0.18);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
  margin: 0 0 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--black);
}

.body-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-700);
  max-width: 620px;
  margin: 0 0 18px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--glass-bg);
  color: var(--black);
  border-color: rgba(0,0,0,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--glass-bg-strong);
  box-shadow: var(--shadow-md);
}
.btn-nav {
  padding: 10px 22px;
  font-size: 14px;
  background: var(--black);
  color: var(--white);
}
.btn-nav:hover { transform: scale(1.04); }

/* ---------------- Glass utilities ---------------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
}

.glass-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-sm);
  color: var(--black);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  flex-shrink: 0;
}
.glass-icon svg { width: 20px; height: 20px; }
.glass-icon:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.75);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-right: auto;
  color: var(--black);
  transition: color 0.35s var(--ease);
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-name-light { color: var(--gray-500); font-weight: 500; transition: color 0.35s var(--ease); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--black);
  transition: width 0.3s var(--ease), background 0.35s var(--ease);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px; height: 1.6px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.35s var(--ease);
}

/* Over the dark hero video the navbar is fully transparent (pre-scroll), so
   text/icons need to flip light; once .scrolled adds the frosted white bg,
   the dark colors above take back over. The brand mark and hamburger sit
   directly on the navbar on every viewport, so they flip everywhere. */
.navbar:not(.scrolled) .brand { color: rgba(255, 255, 255, 0.95); }
.navbar:not(.scrolled) .brand-name-light { color: rgba(255, 255, 255, 0.6); }
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }

/* The desktop nav-links sit right on the transparent navbar too, so they
   need the same flip — but on mobile those links live inside the dropdown
   panel, which always has its own light background, so this is desktop-only. */
@media (min-width: 721px) {
  .navbar:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.85); }
  .navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
  .navbar:not(.scrolled) .nav-links a::after { background: #fff; }
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
/* Tall scroll track — its extra height is what we scrub the video against.
   The .hero inside pins via position:sticky while this scrolls underneath. */
.hero-scroll {
  position: relative;
  height: 300vh;
  background: var(--black);
}
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  perspective: 1400px;
}
.hero-video-stage {
  position: absolute;
  /* Just enough overscan to cover the reveal a 9deg rotateX creates at the
     top/bottom edges — kept small on purpose so object-fit:cover isn't
     forced to zoom/crop the video any more than a flat full-bleed fit would. */
  inset: -6%;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(9deg) scale(1.05);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.62) 100%);
  opacity: 0;
  will-change: opacity;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(48px, 9vw, 108px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 18px 0 26px;
}
.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.hero .btn-secondary:hover { background: rgba(255,255,255,0.2); }
.hero .eyebrow { color: rgba(255,255,255,0.65); }

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  animation: scrollCue 2s infinite ease;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ==========================================================================
   SCROLL-REVEAL (fade-up utility used across sections)
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: 140px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.glass-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.stat-label { font-size: 13.5px; color: var(--gray-500); margin-top: 4px; }

/* ==========================================================================
   DISH SHOWCASE — three slowly spinning plated dishes
   ========================================================================== */
.dish-showcase { padding: 90px 0 100px; background: var(--white); }
.dish-showcase-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.dish-spin {
  flex: 1 1 0;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.dish-spin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16));
  animation: dishRotate 18s linear infinite;
  will-change: transform;
}
.dish-spin:nth-child(1) img { animation-duration: 16s; }
.dish-spin:nth-child(2) img { animation-duration: 20s; animation-direction: reverse; }
.dish-spin:nth-child(3) img { animation-duration: 18s; }

.dish-showcase-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.dish-showcase-stats .stat { align-items: center; text-align: center; }

@keyframes dishRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   FEATURED DISHES — auto-scrolling carousel
   ========================================================================== */
.featured { padding: 100px 0 110px; background: var(--white); overflow: hidden; }

.featured-viewport {
  margin-top: 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.featured-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 4px 0 4px 32px;
  animation: featuredScroll 36s linear infinite;
}
.featured-track.is-paused { animation-play-state: paused; }

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

.featured-card {
  position: relative;
  flex: 0 0 240px;
  cursor: pointer;
}
.featured-card-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #ececee, #d9d9dd);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.featured-card:hover .featured-card-frame { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.featured-card-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-card-placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  filter: grayscale(1) opacity(0.5);
}
.featured-card-veg {
  position: absolute;
  top: 14px; left: 14px;
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1.5px solid #4c8c4a;
  background: rgba(255, 255, 255, 0.9);
}
.featured-card-veg::after {
  content: "";
  position: absolute; inset: 1.5px;
  background: #4c8c4a;
  border-radius: 50%;
}
.featured-card-veg.non-veg { border-color: #a33; }
.featured-card-veg.non-veg::after { background: #a33; }

.featured-card-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.featured-card:hover .featured-card-overlay,
.featured-card.is-active .featured-card-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.featured-card-overlay .btn-add-cart { background: var(--white); color: var(--black); }
.featured-card-overlay .qty-stepper { background: rgba(255, 255, 255, 0.92); }

.featured-card-info {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 0 2px;
}
.featured-card-name { font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em; }
.featured-card-price { font-weight: 700; font-size: 14px; color: var(--gray-500); white-space: nowrap; }

/* ==========================================================================
   MENU
   ========================================================================== */
.menu { padding: 120px 0 140px; background: var(--gray-50); }
.menu-sub { margin-left: auto; margin-right: auto; }

.menu-search {
  max-width: 560px;
  margin: 36px auto 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg-strong);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.menu-search:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.search-icon { width: 19px; height: 19px; color: var(--gray-500); flex-shrink: 0; }
.menu-search input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  min-width: 0;
  font-size: 15.5px;
  font-family: inherit;
  color: var(--ink);
}
.menu-search input::placeholder { color: var(--gray-500); }
.menu-count {
  font-size: 13px;
  color: var(--gray-500);
  white-space: nowrap;
  font-weight: 500;
}

.menu-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.category-rail { position: relative; }
.category-rail-inner {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
}
.cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  text-align: left;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.cat-icon { font-size: 16px; }
.cat-btn:hover { background: rgba(0,0,0,0.05); color: var(--black); transform: translateX(2px); }
.cat-btn.active {
  background: var(--black);
  color: var(--white);
}

.menu-category-block { margin-bottom: 56px; scroll-margin-top: calc(var(--nav-h) + 20px); }
.menu-category-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--black);
}
.menu-category-heading .count {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.menu-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow-md);
  background: var(--glass-bg-strong);
}
.menu-card-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8ea, #cfcfd4);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.menu-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.menu-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px 10px;
}
.menu-card-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.veg-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid #4c8c4a;
  flex-shrink: 0;
  position: relative;
}
.veg-dot::after {
  content: "";
  position: absolute; inset: 1.5px;
  background: #4c8c4a;
  border-radius: 50%;
}
.veg-dot.non-veg { border-color: #a33; }
.veg-dot.non-veg::after { background: #a33; }

.menu-card-price {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--black);
}
.menu-card-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.55;
}

/* ---------------- Quantity stepper (menu cards + cart panel) ---------------- */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-pill);
  padding: 4px 6px;
}
.qty-stepper[hidden] { display: none; }
.qty-btn {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease);
}
.qty-btn:hover { transform: scale(1.08); }
.qty-btn:active { transform: scale(0.92); }
.qty-value {
  min-width: 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
}

.menu-card-cart {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: flex-end;
}
.btn-add-cart {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-add-cart:hover { transform: translateY(-2px) scale(1.03); box-shadow: var(--shadow-sm); }

.no-results {
  text-align: center;
  color: var(--gray-500);
  font-size: 15px;
  padding: 60px 0;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { padding: 120px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e4e4e7, #cfcfd4);
  cursor: pointer;
}
.gallery-item::after {
  content: attr(data-emoji);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  filter: grayscale(1) opacity(0.5);
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover::after { transform: scale(1.15); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews { padding: 120px 0; background: var(--white); }
.review-summary {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.review-summary-score { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.review-summary-count { font-size: 15px; color: var(--gray-500); }
.review-stars { color: #f2a93b; font-size: 16px; letter-spacing: 2px; }
.review-cta {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.review-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow-md);
  background: var(--glass-bg-strong);
}
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
}
.review-name { display: block; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.review-meta { display: block; font-size: 12px; color: var(--gray-500); margin-top: 1px; }
.review-card .review-stars { font-size: 13px; margin-bottom: 10px; }
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card.is-expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.review-more {
  align-self: flex-start;
  margin-top: 6px;
  padding: 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.review-more[hidden] { display: none; }
.review-time { margin-top: 14px; font-size: 12px; color: var(--gray-300); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding: 120px 0 140px; background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 28px 0;
}
.info-row h4 { margin: 4px 0 4px; font-size: 15.5px; font-weight: 650; }
.info-row p { margin: 0; color: var(--gray-500); font-size: 14.5px; }
.info-row p a { color: var(--gray-700); font-weight: 600; transition: color 0.25s var(--ease); }
.info-row p a:hover { color: var(--black); }
.info-row p em { font-style: normal; color: var(--gray-300); }
.contact-cta { margin-top: 20px; }

.map-frame { padding: 10px; }
.map-embed {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--black); color: var(--gray-300); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .brand { color: var(--white); }
.footer-tagline { color: var(--gray-500); font-size: 14px; margin-top: 12px; }
.footer-links h5, .footer-social h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14.5px; color: var(--gray-300); transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--white); }
.social-icons { display: flex; gap: 12px; }
.footer .glass-icon {
  background: var(--glass-dark-bg);
  border-color: var(--glass-dark-border);
  color: var(--white);
}
.footer .glass-icon:hover { background: rgba(255,255,255,0.18); }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: var(--gray-500);
}

/* ==========================================================================
   CART + CHECKOUT
   ========================================================================== */
body.no-scroll { overflow: hidden; }

.cart-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  border-radius: var(--radius-pill);
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.3s var(--ease);
}
.cart-fab.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cart-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); }
.cart-fab-icon { width: 22px; height: 22px; flex-shrink: 0; }
.cart-fab-count {
  position: absolute;
  top: -6px; left: 30px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-fab-total { font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; }

.cart-backdrop {
  position: fixed; inset: 0;
  z-index: 1150;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 1200;
  width: 420px;
  max-width: 92vw;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.cart-panel.is-open { transform: translateX(0); }
.cart-panel-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.12);
}
.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
}
.cart-panel-header h3 { margin: 0; font-size: 20px; font-weight: 700; }
.cart-panel-header .panel-close { position: static; }

.cart-empty {
  color: var(--gray-500);
  font-size: 14.5px;
  text-align: center;
  padding: 48px 12px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cart-item-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-item-name { font-size: 14.5px; font-weight: 600; }
.cart-item-price { font-size: 12.5px; color: var(--gray-500); }

.cart-summary { padding-top: 16px; border-top: 1px solid rgba(0, 0, 0, 0.08); }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-700);
  padding: 5px 0;
}
.cart-total-row {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.cart-place-order { width: 100%; justify-content: center; margin-top: 16px; }

.panel-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.panel-close svg { width: 16px; height: 16px; }
.panel-close:hover { background: rgba(0, 0, 0, 0.1); transform: rotate(90deg); }

/* ---------------- Checkout modal ---------------- */
.modal-backdrop {
  position: fixed; inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }

.order-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94) translateY(10px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.modal-backdrop.is-open .order-modal { transform: scale(1) translateY(0); opacity: 1; }
.order-modal h3 { margin: 0 0 8px; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.order-modal-sub { color: var(--gray-500); font-size: 14px; margin: 0 0 26px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
}
.field em { font-weight: 400; font-style: normal; color: var(--gray-300); }
.field input, .field textarea {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 400;
  font-family: inherit;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.order-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 420px; margin: 0 auto; order: 2; }
  .about-copy { order: 1; }
  .menu-layout { grid-template-columns: 1fr; }
  .category-rail, .menu-content { min-width: 0; }
  .category-rail-inner {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .cat-btn { width: auto; flex-shrink: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 8px 32px 20px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .container { padding: 0 20px; }
  .hero-scroll { height: 230vh; }
  .about { padding: 90px 0; }
  .dish-showcase-stats { gap: 14px; flex-wrap: nowrap; margin-top: 32px; }
  .stat { min-width: 0; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 11px; }
  .dish-showcase { padding: 60px 0 70px; }
  .dish-showcase-row { gap: 8px; margin-top: 32px; }
  .dish-spin { max-width: 120px; }
  .featured { padding: 70px 0 80px; }
  .featured-card { flex-basis: 180px; }
  .menu { padding: 80px 0 100px; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .menu-card-body { padding: 12px; }
  .menu-card-thumb { font-size: 40px; }
  .gallery { padding: 80px 0; }
  .reviews { padding: 70px 0 80px; }
  .review-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 16px; }
  .review-card-head { gap: 10px; margin-bottom: 8px; }
  .review-avatar { width: 34px; height: 34px; font-size: 13px; }
  .review-card .review-stars { margin-bottom: 8px; }
  .review-text { -webkit-line-clamp: 3; font-size: 13.5px; }
  .review-time { margin-top: 10px; }
  .contact { padding: 80px 0 100px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }

  .cart-fab { bottom: 18px; right: 18px; padding: 12px 18px 12px 14px; }

  /* Cart becomes a bottom sheet instead of a right-side drawer. */
  .cart-panel {
    top: auto;
    left: 0; right: 0; bottom: 0;
    width: auto;
    max-width: none;
    max-height: 85vh;
    transform: translateY(100%);
  }
  .cart-panel.is-open { transform: translateY(0); }
  .cart-panel-inner {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.16);
    max-height: 85vh;
  }

  .order-modal { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .hero-scroll { height: 100vh; }
  .hero-content { opacity: 1 !important; transform: none !important; }
  .hero-video-stage { transform: none !important; }
}
