/* ===== Design Tokens ===== */
:root {
  --color-bg: #fcfcfc;
  --color-bg-soft: #f5f4f2;
  --color-bg-elevated: #ffffff;
  --color-text: #0a0a0a;
  --color-text-muted: #6b6b6b;
  --color-text-subtle: #9a9a9a;
  --color-accent: #e07832;
  --color-accent-dark: #c96828;
  --color-accent-light: rgba(224, 120, 50, 0.08);
  --color-secondary: #0f4d38;
  --color-secondary-dark: #0a3628;
  --color-secondary-light: rgba(15, 77, 56, 0.1);
  --color-on-dark: #ffffff;
  --color-on-dark-muted: rgba(255, 255, 255, 0.65);
  --color-on-dark-subtle: rgba(255, 255, 255, 0.45);
  --color-border: rgba(0, 0, 0, 0.07);
  --color-border-strong: rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-accent: 0 4px 20px rgba(15, 77, 56, 0.22);
  --shadow-secondary: 0 4px 20px rgba(15, 77, 56, 0.22);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-display: 'Anton', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 1140px;
  --section-pad: clamp(3rem, 8vw, 8rem);
  --section-pad-mobile: clamp(2.25rem, 6vw, 3rem);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 64px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-anim-ms: 720ms;
  --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-center-scale: 1.42;
  --hero-center-scale-mobile: 1.1;
  --frame-bg: #f0eeeb;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
  -webkit-tap-highlight-color: transparent;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
button, a, input, select, textarea {
  touch-action: manipulation;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Utilities ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--fade {
  transform: none;
}
.reveal--fade.revealed {
  transform: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Loading Screen ===== */
body.is-loading { overflow: hidden; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary-dark);
  color: #fff;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader__inner {
  text-align: center;
  padding: 2rem;
  width: min(320px, 88vw);
}
.site-loader__logo {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  animation: loader-pulse 1.8s ease-in-out infinite;
}
.site-loader__tagline {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.site-loader__bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.site-loader__progress {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: inherit;
  transition: width 0.35s var(--ease-out);
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

/* ===== Page & Hero Entrance ===== */
.page-enter,
.hero-enter,
.hero-enter-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
  transition-delay: var(--enter-delay, 0ms);
  will-change: opacity, transform;
}

body.is-ready .page-enter,
body.is-ready .hero-enter,
body.is-ready .hero-enter-item {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .hero__ghost.hero-enter {
  transform: translateY(0) scale(1);
}

.hero__ghost.hero-enter {
  transform: translateY(36px) scale(0.97);
  transition-duration: 1s;
}

body.is-ready .hero__carousel.hero-enter .hero__slide--center .hero__slide-inner {
  animation: hero-food-in 1s var(--ease-out) var(--enter-delay, 280ms) both;
}

@keyframes hero-food-in {
  from {
    opacity: 0;
    transform: translateZ(0) scale(1.12);
  }
  to {
    opacity: 1;
    transform: translateZ(0) scale(var(--hero-center-scale));
  }
}

html.hero-mobile body.is-ready .hero__carousel.hero-enter .hero__slide--center .hero__slide-inner {
  animation-name: hero-food-in-mobile;
}

@keyframes hero-food-in-mobile {
  from {
    opacity: 0;
    transform: translateZ(0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateZ(0) scale(var(--hero-center-scale-mobile));
  }
}

body.is-loading .reveal {
  opacity: 0;
}

body:not(.is-ready) .reveal {
  opacity: 0;
  transform: translateY(18px);
}

/* ===== Image Frame (premium container) ===== */
.img-frame {
  position: relative;
  background: var(--frame-bg);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}
.img-frame--lg { padding: 0.75rem; }
.img-frame--sm {
  padding: 0.25rem;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.img-frame--sm img { border-radius: 6px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  min-height: 44px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-text);
  color: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}
.btn--primary:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-secondary);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }
.btn--ghost {
  background: var(--color-secondary-light);
  color: var(--color-secondary);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn--ghost:hover { background: var(--color-secondary); color: #fff; }
.btn--full { width: 100%; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; min-height: 44px; }
.btn--on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* ===== Dark Sections (Royal Green) ===== */
.section--dark {
  background: var(--color-secondary);
  color: var(--color-on-dark);
  border-color: rgba(255, 255, 255, 0.08);
}
.section--dark .section__eyebrow { color: var(--color-on-dark-subtle); }
.section--dark .section__title { color: var(--color-on-dark); }
.section--dark .section__subtitle { color: var(--color-on-dark-muted); }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding-top: env(safe-area-inset-top);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(252, 252, 252, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color var(--transition);
  z-index: 10;
  max-width: min(52vw, 220px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header.scrolled .logo { color: var(--color-text); }
.nav { display: none; }
.nav__list { display: flex; gap: 1.75rem; }
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition);
}
.nav__link:hover::after { width: 100%; }
.header.scrolled .nav__link { color: var(--color-text-muted); }
.header.scrolled .nav__link:hover { color: var(--color-secondary); }
.btn--order {
  position: relative;
  display: inline-flex;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
}
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--color-text);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  z-index: 10;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--color-text); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.cart-drawer,
.mobile-nav__drawer {
  overscroll-behavior: contain;
}

/* Mobile Nav */
.mobile-nav { position: fixed; inset: 0; z-index: 999; pointer-events: none; }
.mobile-nav.open { pointer-events: auto; }
.mobile-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-nav.open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__drawer {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  padding: calc(4.5rem + env(safe-area-inset-top)) 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open .mobile-nav__drawer { transform: translateX(0); }
.mobile-nav__close {
  position: absolute;
  top: calc(0.75rem + env(safe-area-inset-top));
  right: 0.75rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-text-muted);
}
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.mobile-nav__link {
  display: block;
  padding: 0.875rem 0;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--color-secondary); }

/* ===== Hero Carousel ===== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100svh;
  overflow: hidden;
  background-color: var(--color-secondary);
  transition: background-color var(--hero-anim-ms) var(--hero-ease);
  font-family: var(--font-sans);
  isolation: isolate;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}
.hero__ghost {
  position: absolute;
  left: 0;
  right: 0;
  top: 14%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(56px, 20vw, 340px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 0.95;
}
.hero__label {
  position: absolute;
  top: calc(var(--header-h) + 0.5rem);
  left: 1rem;
  z-index: 60;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}
.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 3;
  transform: translateZ(0);
}
.hero__slide {
  position: absolute;
  aspect-ratio: 0.75 / 1;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  transform-origin: bottom center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    opacity var(--hero-anim-ms) var(--hero-ease),
    left var(--hero-anim-ms) var(--hero-ease),
    height var(--hero-anim-ms) var(--hero-ease),
    bottom var(--hero-anim-ms) var(--hero-ease);
}
.hero__slide-inner {
  width: 100%;
  height: 100%;
  transform-origin: bottom center;
  transform: translateZ(0) scale(1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform var(--hero-anim-ms) var(--hero-ease);
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.hero__slide--center img {
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.18));
}
.hero__slide--center {
  z-index: 20;
  opacity: 1;
  filter: none;
  height: 92%;
  bottom: 0;
  left: 50%;
}
.hero__slide--center .hero__slide-inner {
  transform: translateZ(0) scale(var(--hero-center-scale));
}
.hero__slide--left {
  z-index: 10;
  opacity: 0.85;
  height: 28%;
  bottom: 12%;
  left: 30%;
  filter: blur(2px);
}
.hero__slide--right {
  z-index: 10;
  opacity: 0.85;
  height: 28%;
  bottom: 12%;
  left: 70%;
  filter: blur(2px);
}
.hero__slide--back {
  z-index: 5;
  opacity: 1;
  height: 22%;
  bottom: 12%;
  left: 50%;
  filter: blur(4px);
}
.hero-mobile .hero__slide--center {
  height: 60%;
  bottom: 22%;
}
.hero-mobile .hero__slide--center .hero__slide-inner {
  transform: translateZ(0) scale(var(--hero-center-scale-mobile));
}
.hero-mobile .hero__slide--left,
.hero-mobile .hero__slide--right {
  height: 16%;
  bottom: 32%;
}
.hero-mobile .hero__slide--left { left: 20%; }
.hero-mobile .hero__slide--right { left: 80%; }
.hero-mobile .hero__slide--back {
  height: 13%;
  bottom: 32%;
}
.hero__footer-left {
  position: absolute;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  right: 1rem;
  z-index: 60;
  max-width: min(320px, calc(100% - 2rem));
  color: #fff;
}
.hero__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}
.hero__slide-name {
  font-size: clamp(1.0625rem, 3vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  transition: opacity 400ms ease;
}
.hero__desc {
  display: -webkit-box;
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 0.875rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero__nav {
  display: flex;
  gap: 0.75rem;
}
.hero__nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease, background-color 150ms ease;
}
.hero__nav-btn:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.12);
}
.hero__discover {
  position: absolute;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  right: 1rem;
  z-index: 55;
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.95;
  transition: opacity 200ms ease;
  max-width: 45%;
  text-align: right;
}
.hero__discover:hover { opacity: 1; }
.hero__discover svg { flex-shrink: 0; width: 1.25em; height: 1.25em; }

@media (min-width: 480px) {
  .hero__discover { display: flex; }
}

@media (min-width: 640px) {
  .hero__label { left: 2rem; }
  .hero__footer-left {
    bottom: 5rem;
    left: 2rem;
    right: auto;
    max-width: 360px;
  }
  .hero__desc {
    display: block;
    -webkit-line-clamp: unset;
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .hero__nav-btn { width: 4rem; height: 4rem; }
  .hero__discover {
    bottom: 5rem;
    right: 2.5rem;
    max-width: none;
    font-size: clamp(1.25rem, 4vw, 3.25rem);
    gap: 0.5rem;
  }
  .hero__discover svg { width: 28px; height: 28px; }
}

@media (min-width: 768px) {
  .hero__footer-left { left: 6rem; }
}

/* ===== Sections ===== */
.section { padding: var(--section-pad) 0; }
.section__header { text-align: center; margin-bottom: 3.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 0.875rem;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.875rem;
}
.section__subtitle {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Food Cards ===== */
.section--featured { background: var(--color-bg-soft); }
.section--menu { background: var(--color-bg); }

.featured-grid, .menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.food-card {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}
.food-card__img-wrap {
  position: relative;
  padding: 0.75rem 0.75rem 0;
}
.food-card__img-wrap .img-frame {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.food-card__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--frame-bg) 8%, #faf9f7 18%, var(--frame-bg) 33%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  z-index: 1;
  border-radius: calc(var(--radius) - 4px);
  transition: opacity 0.4s ease;
}
.food-card__img-wrap .img-frame:has(.food-card__img.is-loaded) .food-card__shimmer {
  opacity: 0;
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.food-card__img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.food-card__img.is-loaded { opacity: 1; }
.food-card:hover .food-card__img.is-loaded { transform: scale(1.04); }
.food-card__img-fade {
  position: absolute;
  inset: 0.75rem 0.75rem 0;
  border-radius: var(--radius);
  background: linear-gradient(to top, rgba(0,0,0,0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
}
.food-card__body { padding: 1rem 1rem 1.125rem; }
.food-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.food-card__name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.food-card__price {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.food-card__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.875rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.food-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}
.food-card__rating { color: #e8a020; font-weight: 500; }
.food-card__rating span { color: var(--color-text-muted); margin-left: 0.25rem; }
.food-card__cal {
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
  font-weight: 500;
}
.food-card__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ===== Menu Controls ===== */
.menu-controls { margin-bottom: 2rem; }
.menu-search {
  position: relative;
  margin-bottom: 1.25rem;
}
.menu-search__icon {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}
.menu-search__input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg-elevated);
  font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.menu-search__input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px var(--color-secondary-light);
}
.menu-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-filters::-webkit-scrollbar { display: none; }
.filter-pill {
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  color: var(--color-text-muted);
  transition: var(--transition);
  min-height: 40px;
}
.filter-pill:hover {
  border-color: var(--color-border-strong);
  color: var(--color-text);
}
.filter-pill.active {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.menu-empty { text-align: center; color: var(--color-text-muted); padding: 3rem 0; }

/* ===== Discount Section ===== */
.section--discount {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.section--discount.section--dark {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.section--discount .discount-timer {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.section--discount .discount-timer__label,
.section--discount .discount-timer__unit small,
.section--discount .discount-timer__sep {
  color: var(--color-on-dark-subtle);
}
.section--discount .discount-timer__unit span {
  color: var(--color-on-dark);
}
.section--discount .discount-ticker {
  border-color: rgba(255, 255, 255, 0.1);
}
.section--discount .discount-ticker__track span {
  color: var(--color-on-dark-subtle);
}
.section--discount .discount-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}
.section--discount .discount-card__name { color: var(--color-on-dark); }
.section--discount .discount-card__desc { color: var(--color-on-dark-muted); }
.section--discount .discount-card__footer { border-color: rgba(255, 255, 255, 0.1); }
.section--discount .price-stack__old { color: var(--color-on-dark-subtle); }
.section--discount .price-stack__new { color: var(--color-on-dark); }
.section--discount .discount-card__badge { background: rgba(255, 255, 255, 0.18); }
.section--discount .discount-rail__chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.section--discount .discount-rail__name { color: var(--color-on-dark); }
.section--discount .discount-rail__price { color: var(--color-on-dark-muted); }
.section--discount .discount-rail__price s { color: var(--color-on-dark-subtle); }
.section--discount .discount-showcase__arrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-on-dark);
}
.section--discount .discount-showcase__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}
.section--discount .discount-showcase__dot {
  background: rgba(255, 255, 255, 0.25);
}
.section--discount .discount-showcase__dot.is-active {
  background: var(--color-on-dark);
}

.discount-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.discount-header__copy { max-width: 420px; flex: 1; min-width: 0; }
.discount-header__copy .section__eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.625rem;
}
.discount-header__copy .section__title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 0.25rem;
  line-height: 1.15;
}
.discount-header__copy .section__subtitle {
  margin-left: 0;
  margin-right: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.discount-timer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.875rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.discount-timer__label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  white-space: nowrap;
}
.discount-timer__units {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.discount-timer__unit {
  text-align: center;
  min-width: 36px;
}
.discount-timer__unit span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.discount-timer__unit small {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
}
.discount-timer__sep {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  font-weight: 300;
  padding-bottom: 0.5rem;
}

.discount-ticker {
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 0.35rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.discount-ticker__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: ticker-scroll 40s linear infinite;
}
.discount-ticker__track span {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  white-space: nowrap;
}
.discount-ticker__track span::after {
  content: '·';
  margin-left: 3rem;
  opacity: 0.4;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.discount-showcase {
  position: relative;
  margin-bottom: 0.75rem;
}
.discount-showcase__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.discount-showcase__track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}
.discount-showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
}
.discount-showcase:hover .discount-showcase__arrow { opacity: 1; }
.discount-showcase__arrow:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}
.discount-showcase__arrow--prev { left: -0.5rem; }
.discount-showcase__arrow--next { right: -0.5rem; }
.discount-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.625rem;
}
.discount-showcase__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border-strong);
  padding: 0;
  transition: var(--transition);
}
.discount-showcase__dot.is-active {
  background: var(--color-secondary);
  width: 20px;
  border-radius: var(--radius-pill);
}

.discount-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  align-items: center;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.discount-card__visual {
  position: relative;
  padding: 0.625rem 0 0.625rem 0.625rem;
}
.discount-card__visual .img-frame {
  aspect-ratio: 1;
  padding: 0.375rem;
}
.discount-card__visual .img-frame img {
  object-fit: cover;
}
.discount-card__badge {
  position: absolute;
  top: 0.875rem;
  right: 0.5rem;
  z-index: 2;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-pill);
}
.discount-card__content {
  padding: 0.75rem 0.875rem 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.discount-card__name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0;
}
.discount-card__desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.discount-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}
.price-stack { display: flex; flex-direction: row; align-items: baseline; gap: 0.5rem; }
.price-stack__old {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  text-decoration: line-through;
}
.price-stack__new {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.discount-rail {
  overflow: hidden;
  padding: 0;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.discount-rail__track {
  display: flex;
  width: max-content;
  gap: 0.5rem;
  animation: rail-scroll 45s linear infinite;
}
.discount-rail__chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.discount-rail__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.discount-rail__name {
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.discount-rail__price {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.discount-rail__price s {
  margin-right: 0.35rem;
  color: var(--color-text-subtle);
}
@keyframes rail-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .discount-card {
    grid-template-columns: 200px 1fr;
  }
  .discount-card__visual {
    padding: 0.75rem 0 0.75rem 0.75rem;
  }
  .discount-card__visual .img-frame {
    aspect-ratio: 4/3;
    padding: 0.5rem;
  }
  .discount-card__content {
    padding: 0.875rem 1.25rem 0.875rem 0;
    gap: 0.625rem;
  }
  .discount-card__name { font-size: 1.25rem; }
  .discount-card__desc { -webkit-line-clamp: 2; font-size: 0.8125rem; }
  .discount-showcase__arrow { opacity: 1; }
  .discount-showcase__arrow--prev { left: -1.25rem; }
  .discount-showcase__arrow--next { right: -1.25rem; }
}

@media (max-width: 479px) {
  .discount-header {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .discount-timer {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .discount-showcase__arrow { display: none; }
}

/* ===== About ===== */
.section--about {
  background: var(--color-bg-soft);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.about-content .section__eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.625rem;
}
.about-content .section__title {
  text-align: left;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.about-content .section__subtitle { margin-left: 0; text-align: left; }
.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-size: 0.8125rem;
}
.about-content p:last-of-type { margin-bottom: 0; }
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
}
.about-stat { text-align: left; }
.about-stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.about-stat__label {
  font-size: 0.5625rem;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-founder {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.75rem;
  align-items: center;
}
.about-founder__frame {
  aspect-ratio: 1;
  padding: 0.375rem;
}
.about-founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-founder__card {
  position: static;
  padding: 0.75rem 0.875rem;
  border-radius: var(--radius);
}
.about-founder__card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}
.about-founder__card p { font-size: 0.6875rem; color: var(--color-text-muted); }
.about-founder__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8125rem;
  margin-top: 0.35rem;
  color: var(--color-text) !important;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Timeline */
.timeline {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.timeline::-webkit-scrollbar { display: none; }
.timeline::before { display: none; }
.timeline-item {
  position: relative;
  flex: 0 0 auto;
  min-width: 130px;
  max-width: 160px;
  padding: 0.75rem 0.875rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.timeline-item::before { display: none; }
.timeline-item__year {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1;
}
.timeline-item__title {
  font-weight: 500;
  font-size: 0.75rem;
  margin: 0.25rem 0 0.15rem;
  letter-spacing: -0.01em;
}
.timeline-item__desc {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Partners ===== */
.section--partners {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.section--partners.section--dark { border-top: none; }
.partners__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-on-dark-subtle);
  margin-bottom: 1.75rem;
}
.partners-grid {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1.375rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-on-dark);
  transition: var(--transition);
}
.partner-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}
.partner-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__icon--uber { background: #000; color: #fff; }
.partner-card__icon--pickme { background: #00b14f; color: #fff; }
.partner-card__icon--direct { background: var(--color-secondary-light); color: var(--color-secondary); }

/* ===== Testimonials ===== */
.section--testimonials {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.testimonials-wrap {
  position: relative;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.testimonial-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.testimonial-card__photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.testimonial-card__identity {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-on-dark);
  letter-spacing: -0.01em;
}
.testimonial-card__username {
  font-size: 0.8125rem;
  color: var(--color-on-dark-subtle);
}
.testimonial-card__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.testimonial-card__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-on-dark-subtle);
  opacity: 0.7;
}

/* ===== Contact ===== */
.section--contact { background: var(--color-bg-elevated); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
.contact-info .section__title { text-align: left; }
.contact-list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border);
}
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list svg { flex-shrink: 0; color: var(--color-text); margin-top: 2px; opacity: 0.6; }
.contact-list strong {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-subtle);
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.contact-list a { color: var(--color-text); transition: color var(--transition); }
.contact-list a:hover { color: var(--color-secondary); }
.contact-list span { font-size: 0.9375rem; color: var(--color-text-muted); }
.reservation-form {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
}
.reservation-form h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--color-text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  background: var(--color-bg-elevated);
  font-size: 16px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px var(--color-secondary-light);
  background: #fff;
}
.form-success {
  text-align: center;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-size: 0.9375rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-secondary-dark);
  color: var(--color-on-dark-muted);
  padding: clamp(3rem, 8vw, 5rem) 0 calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer__col h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-on-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col a { transition: color var(--transition); font-size: 0.875rem; }
.footer__col a:hover { color: rgba(255, 255, 255, 0.95); }
.footer__col li { font-size: 0.875rem; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__social a:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.footer__payments {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer__payments-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.5);
}
.payment-icons { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.payment-icon {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}
.payment-icon--visa { color: #1a1f71; background: #fff; }
.payment-icon--mc { color: #eb001b; background: #fff; }
.payment-icon--amex { color: #006fcf; background: #fff; }
.payment-icon--apple { color: #000; background: #fff; }
.footer__credit {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Cart Drawer ===== */
.cart-drawer {
  position: fixed; inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.cart-drawer.open { pointer-events: auto; }
.cart-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}
.cart-drawer.open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  height: 100dvh;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer__header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.cart-drawer__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-text-muted);
}
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem; -webkit-overflow-scrolling: touch; }
.cart-empty { text-align: center; color: var(--color-text-muted); padding: 3rem 1rem; }
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.cart-item__img {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
}
.cart-item__info { flex: 1; }
.cart-item__name { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.cart-item__price { color: var(--color-secondary); font-size: 0.875rem; font-weight: 500; }
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.qty-btn:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.cart-item__qty { font-weight: 600; min-width: 24px; text-align: center; }
.cart-item__remove {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  margin-left: auto;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: #e53935; }
.cart-drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.cart-total span:last-child { color: var(--color-secondary); font-size: 1.25rem; font-weight: 500; letter-spacing: -0.02em; }

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.modal.open { pointer-events: auto; opacity: 1; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  padding: 2rem;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition);
}
.modal.open .modal__content { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-text-muted);
  z-index: 1;
}
.modal__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.modal__title {
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.modal__desc { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.nutrition-ring { text-align: center; }
.nutrition-ring svg { width: 80px; height: 80px; margin: 0 auto 0.5rem; display: block; }
.nutrition-ring__value {
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 1rem;
  font-weight: 700;
}
.nutrition-ring__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}
.modal__disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* ===== Chat Widget ===== */
.chat-widget {
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  right: calc(1rem + env(safe-area-inset-right));
  z-index: 1500;
}
.chat-fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(15, 77, 56, 0.45); }
.chat-popup {
  position: absolute;
  bottom: 70px; right: 0;
  width: min(360px, calc(100vw - 2rem));
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.chat-popup.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.chat-popup__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-secondary);
  color: #fff;
}
.chat-popup__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.chat-popup__status { font-size: 0.75rem; opacity: 0.8; display: block; }
.chat-popup__close {
  margin-left: auto;
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.8;
}
.chat-popup__messages {
  height: 280px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fafafa;
}
.chat-msg {
  max-width: 85%;
  padding: 0.625rem 1rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  animation: msgIn 0.3s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.chat-msg--user {
  background: var(--color-secondary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-popup__input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.chat-popup__input input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 16px;
}
.chat-popup__input input:focus { outline: none; border-color: var(--color-secondary); }
.chat-popup__input button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.chat-popup__input button:hover { background: var(--color-secondary-dark); }

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .section { padding: var(--section-pad-mobile) 0; }
  .section__header { margin-bottom: 2rem; }
  .section__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .testimonial-card { max-width: 100%; }
  .modal {
    padding:
      calc(0.75rem + env(safe-area-inset-top))
      calc(0.75rem + env(safe-area-inset-right))
      calc(0.75rem + env(safe-area-inset-bottom))
      calc(0.75rem + env(safe-area-inset-left));
  }
  .modal__content {
    max-height: min(90dvh, calc(100dvh - 1.5rem));
    padding: 1.25rem;
  }
  .modal__title { font-size: 1.375rem; }
  .nutrition-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .nutrition-ring svg { width: 68px; height: 68px; }
  .chat-popup {
    right: calc(-0.25rem - env(safe-area-inset-right));
    width: min(360px, calc(100vw - 1.5rem - env(safe-area-inset-left) - env(safe-area-inset-right)));
  }
  .chat-popup__messages { height: min(280px, 40dvh); }
  .hero__nav-btn { width: 2.75rem; height: 2.75rem; }
}

@media (max-width: 479px) {
  .container { padding: 0 1rem; }
  .featured-grid,
  .menu-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .food-card__actions { flex-direction: column; }
  .food-card__actions .btn { width: 100%; justify-content: center; }
  .contact-grid { gap: 1.5rem; }
}

@media (hover: none) {
  .food-card:hover,
  .testimonial-card:hover,
  .discount-card:hover { transform: none; }
  .food-card:hover { box-shadow: var(--shadow-xs); }
}

@media (min-width: 768px) {
  :root { --header-h: 72px; }
  .nav { display: block; }
  .btn--order { padding: 0.875rem 1.75rem; font-size: 0.9375rem; }
  .hamburger { display: none; }
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 1.5rem;
  }
  .about-founder {
    grid-template-columns: 110px 1fr;
  }
  .timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.625rem;
    overflow: visible;
  }
  .timeline-item {
    min-width: 0;
    max-width: none;
  }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .featured-grid,
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .food-card__body { padding: 1.15rem 1rem 1rem; }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .page-enter,
  .hero-enter,
  .hero-enter-item { opacity: 1; transform: none; }
  body.is-loading { overflow: auto; }
  .site-loader { display: none; }
  .food-card__shimmer { display: none; }
  .food-card__img { opacity: 1; }
  .discount-ticker__track,
  .discount-rail__track { animation: none; }
  .hero__slide { will-change: auto; }
  .hero__slide-inner { will-change: auto; }
  html { scroll-behavior: auto; }
}
