/* ==========================================================================
   Jade Cafe — Design System
   ========================================================================== */

:root {
  /* Color */
  --jade-900: #0b3d2e;
  --jade-800: #0f4d38;
  --jade-700: #146c4f;
  --jade-600: #1a7f5c;
  --jade-500: #2c9c73;
  --gold-600: #b3872f;
  --gold-500: #c9a24d;
  --gold-300: #e4cd8f;
  --cream-50: #faf6ee;
  --cream-100: #f4ecda;
  --cream-200: #ece0c4;
  --ink-900: #1b1a16;
  --ink-700: #3a3833;
  --ink-500: #63605a;
  --white: #ffffff;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(11, 61, 46, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 61, 46, 0.14);
  --shadow-lg: 0 24px 60px rgba(11, 61, 46, 0.2);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--jade-900);
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--jade-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold-500);
  color: var(--jade-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-600); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark {
  background: var(--jade-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--jade-700); box-shadow: var(--shadow-md); }

/* ---- Top bar ---- */
.topbar {
  background: var(--jade-900);
  color: var(--cream-100);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-300); }
.topbar a:hover { text-decoration: underline; }
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--cream-200);
}
/* Frosted-glass effect lives on a pseudo-element rather than .site-header itself.
   A backdrop-filter/filter/transform on .site-header would make IT the containing
   block for any position:fixed descendant (like the mobile .nav-links drawer),
   trapping that drawer inside the header's own height instead of the viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand .mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--jade-900);
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jade-900);
  letter-spacing: 0.02em;
}
.brand-text .tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--jade-800); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
/* The Order Online button inside .nav-links only shows in the mobile drawer;
   the always-visible desktop CTA lives in .nav-actions instead. */
.nav-links .btn-primary { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--jade-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,61,46,0.55) 0%, rgba(11,61,46,0.72) 55%, rgba(11,61,46,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-300);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 0.4em;
}
.hero p.lede {
  font-size: 1.15rem;
  color: var(--cream-100);
  max-width: 560px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-300);
}
.hero-stats .stat span {
  font-size: 0.8rem;
  color: var(--cream-100);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Section basics ---- */
section { padding: 96px 0; }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { color: var(--gold-600); justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }

.bg-cream { background: var(--cream-100); }
.bg-jade {
  background: var(--jade-900);
  color: var(--cream-100);
}
.bg-jade h2, .bg-jade h3 { color: var(--white); }
.bg-jade .section-head p { color: var(--cream-200); }

/* ---- Trust strip ---- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--cream-200);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item .icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--jade-700);
  display: flex; align-items: center; justify-content: center;
}
.trust-item h4 { margin-bottom: 2px; font-size: 1rem; }
.trust-item p { margin: 0; font-size: 0.88rem; color: var(--ink-500); }

/* ---- About / split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.split-media .badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold-500);
  color: var(--jade-900);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.1;
}
.split-media .badge strong { display: block; font-size: 1.6rem; }
.split-media .badge span { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

.split-body .eyebrow::before { display: none; }
.split-body h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.split-body p { color: var(--ink-700); }
.check-list { margin: 24px 0; display: grid; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--jade-900);
}
.check-list li svg { flex: none; margin-top: 2px; color: var(--gold-600); }

/* ---- Dish cards ---- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish-media { aspect-ratio: 4 / 3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dish-card:hover .dish-media img { transform: scale(1.06); }
.dish-body { padding: 18px 20px 22px; }
.dish-body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.dish-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.dish-price { color: var(--gold-600); font-weight: 800; font-family: var(--font-display); }
.dish-body p { font-size: 0.88rem; color: var(--ink-500); margin: 0; }
.spice { color: #c1440e; font-size: 0.8rem; }

.center-cta { text-align: center; margin-top: 48px; }

/* ---- Menu hub cards ---- */
.menu-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hub-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.hub-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hub-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,46,0) 30%, rgba(11,29,22,0.92) 100%);
}
.hub-card-body {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: var(--white);
}
.hub-card-body .eyebrow { color: var(--gold-300); margin-bottom: 8px; }
.hub-card-body .eyebrow::before { display: none; }
.hub-card-body h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.hub-card-body p { color: var(--cream-100); font-size: 0.9rem; margin-bottom: 14px; }
.hub-card-body .link-arrow { font-weight: 700; color: var(--gold-300); display: inline-flex; align-items: center; gap: 6px; }
.hub-card:hover .link-arrow { text-decoration: underline; }

/* ---- Visit / hours-location ---- */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit-info {
  background: var(--jade-900);
  color: var(--cream-100);
  padding: 56px 48px;
}
.visit-info h2 { color: var(--white); }
.visit-block { margin-bottom: 28px; }
.visit-block h4 {
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.visit-block p, .visit-block a { color: var(--cream-100); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--white); }
.visit-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--jade-800), var(--jade-900));
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 64px 32px;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--cream-100); max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-actions { display: flex; justify-content: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }

/* ---- Menu page ---- */
.page-hero {
  position: relative;
  color: var(--white);
  padding: 180px 0 80px;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,46,0.75), rgba(11,61,46,0.9));
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.breadcrumb { font-size: 0.85rem; color: var(--gold-300); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-300); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero .lede { max-width: 600px; margin: 0 auto; color: var(--cream-100); }

.menu-tabs {
  position: sticky;
  top: 73px;
  z-index: 500;
  background: var(--cream-50);
  border-bottom: 1px solid var(--cream-200);
  padding: 14px 0;
}
.menu-tabs .container { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.menu-tabs a {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--cream-200);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--jade-800);
  background: var(--white);
}
.menu-tabs a:hover, .menu-tabs a.active { background: var(--jade-900); color: var(--white); border-color: var(--jade-900); }

.menu-note {
  background: var(--cream-100);
  border-left: 4px solid var(--gold-500);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--ink-700);
  margin-bottom: 56px;
}
.menu-note strong { color: var(--jade-900); }

.menu-section { margin-bottom: 64px; scroll-margin-top: 150px; }
.menu-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--jade-900);
  padding-bottom: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.menu-section-head h2 { margin: 0; font-size: 1.6rem; }
.menu-section-price { font-family: var(--font-display); font-weight: 700; color: var(--gold-600); font-size: 1.05rem; white-space: nowrap; }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 40px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-200);
}
.menu-item .name { font-weight: 700; color: var(--ink-900); }
.menu-item .name .spice { margin-left: 6px; }
.menu-item .price { font-weight: 700; color: var(--gold-600); white-space: nowrap; }

.menu-feature-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.menu-feature-card img { width: 140px; height: 140px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.menu-feature-card h3 { margin-bottom: 6px; }
.menu-feature-card p { color: var(--ink-500); margin-bottom: 0; font-size: 0.92rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--jade-900);
  color: var(--cream-100);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-text .name { color: var(--white); }
.footer-brand p { color: var(--cream-200); font-size: 0.92rem; margin-top: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--jade-900); }
.footer-col h4 {
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col p { color: var(--cream-100); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--cream-200);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--gold-300); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---- Utility icon sizing ---- */
.icon { width: 20px; height: 20px; }

/* ==========================================================================
   Motion
   ========================================================================== */

/* Header shrinks + gains a shadow once the page scrolls */
.site-header { transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: 0 2px 16px rgba(11, 61, 46, 0.12); }
.site-header.scrolled .nav { padding-top: 10px; padding-bottom: 10px; }

/* Hero / page-hero entrance (plays on load, no JS required) */
.hero-content, .page-hero-content { animation: fadeInUp 0.9s cubic-bezier(0.16, 0.8, 0.24, 1) both; }
.hero-stats { animation: fadeInUp 0.9s cubic-bezier(0.16, 0.8, 0.24, 1) 0.2s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero image gets a slow, subtle zoom + parallax drift handled in JS */
.hero-media img { transform: scale(1.08); will-change: transform; }

/* Scroll-reveal: elements fade/slide in the first time they enter the viewport.
   Gated behind html.js so content is always visible if JS never runs. */
html.js .reveal,
html.js .reveal-left,
html.js .reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.24, 1), transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
  transition-delay: calc(var(--reveal-i, 0) * 80ms);
}
html.js .reveal { transform: translateY(28px); }
html.js .reveal-left { transform: translateX(-32px); }
html.js .reveal-right { transform: translateX(32px); }
html.js .reveal.in-view,
html.js .reveal-left.in-view,
html.js .reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Floating back-to-top button */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--jade-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--jade-700); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .reveal-left,
  html.js .reveal-right {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hero-content, .page-hero-content, .hero-stats { animation: none; }
  .hero-media img { transform: none; }
  .back-to-top { transition: opacity 0.15s linear; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-hub { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map iframe { min-height: 320px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .topbar .container { justify-content: center; text-align: center; }
  .nav-links {
    position: fixed;
    inset: 73px 0 0 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .nav-links .btn-primary { display: inline-flex; margin-top: 8px; }
  .hero { min-height: 100vh; }
  .hero-stats { gap: 24px; }
  .dish-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
  .split-media .badge { right: 12px; bottom: -18px; padding: 14px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .menu-feature-card { flex-direction: column; align-items: flex-start; }
  .menu-feature-card img { width: 100%; height: 180px; }
  .page-hero { padding: 150px 0 60px; }
  .menu-tabs { top: 65px; }
}

@media (max-width: 460px) {
  .dish-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-banner .btn { width: 100%; justify-content: center; }
}
