/* ============================================================
   DESIGN SYSTEM — My Family's Deli
   Mobile-first. OKLCH color space. Oswald + Lato typography.
   ============================================================ */

/* --------------------------------
   TOKENS
   -------------------------------- */
/* Hex fallbacks — always applied, every browser.
   @supports block below upgrades to OKLCH where available. */
:root {
  /* Colors */
  --c-bg:              #110d07;
  --c-surface:         #1a1309;
  --c-surface-raised:  #231a0d;
  --c-border:          #2e2418;

  --c-primary:         #fd532a;
  --c-primary-hover:   #ff6a38;

  --c-gold:            #ffcc66;
  --c-gold-dark:       #b8862e;

  --c-text:            #f5f0e8;
  --c-text-muted:      #a09890;
  --c-text-inverse:    #110d07;

  /* Typography */
  --font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body:    'Lato', system-ui, sans-serif;

  /* Scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   2rem;
  --text-4xl:   2.75rem;
  --text-5xl:   3.5rem;
  --text-6xl:   5rem;

  /* Spacing */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* Header height (for offset calculations) */
  --header-h: 68px;

  /* Transitions */
  --t-fast: 140ms ease-out;
  --t-base: 240ms ease-out;
}

/* Upgrade tokens to OKLCH on supporting browsers (Chrome 111+, Firefox 113+, Safari 15.4+).
   Browsers that don't support OKLCH keep the hex values defined above. */
@supports (color: oklch(0 0 0)) {
  :root {
    --c-bg:             oklch(13% 0.012 30);
    --c-surface:        oklch(17% 0.015 32);
    --c-surface-raised: oklch(22% 0.014 32);
    --c-border:         oklch(28% 0.010 32);
    --c-primary:        oklch(63% 0.20 33);
    --c-primary-hover:  oklch(68% 0.20 33);
    --c-gold:           oklch(84% 0.14 78);
    --c-gold-dark:      oklch(60% 0.13 65);
    --c-text:           oklch(96% 0.007 75);
    --c-text-muted:     oklch(68% 0.006 75);
    --c-text-inverse:   oklch(13% 0.012 30);
  }
}

/* --------------------------------
   RESET & BASE
   -------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  background-color: #0e0b06;
  background-color: oklch(13% 0.012 30);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scroll lock via class — no inline styles (CSP-compliant) */
body.scroll-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* --------------------------------
   SITE HEADER
   -------------------------------- */
.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-h);
  background: #120d07;
  background: oklch(13% 0.012 30);
  border-bottom: 1px solid rgba(60, 48, 32, 0.6); /* fallback */
  border-bottom: 1px solid oklch(28% 0.010 32 / 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--s5);
  max-width: 1280px;
  margin: 0 auto;
  gap: var(--s4);
}

.header-logo img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}

/* Mobile nav: hidden by default, full-screen overlay when open */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--s8);
}

.site-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffcc66;
  padding: 0;
  gap: 0;
  z-index: 99;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: var(--s1);
}

.site-nav:not(.is-open) .nav-link {
  font-size: var(--text-sm);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width var(--t-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--c-gold);
}

.nav-link.active::after {
  width: 100%;
}

/* ---- Mobile open state: gold overlay with full-width rows ---- */
.site-nav.is-open .nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #1a1208;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
  padding-bottom: 1.25rem; /* override the ::after-related padding */
}

.site-nav.is-open .nav-link:hover {
  color: #fd532a;
  background-color: rgba(0, 0, 0, 0.04);
}

.site-nav.is-open .nav-link.active {
  color: #fd532a;
}

.site-nav.is-open .nav-link::after {
  display: none;
}

/* "Call Now" inside mobile nav — hide in favor of clean link-only layout */
.nav-call-btn {
  display: none;
}

/* "Call Us" in header — desktop only.
   Higher specificity (.header-inner > .header-cta = 0,2,0) beats .btn (0,1,0)
   so display:none isn't overridden by .btn { display:inline-flex } which comes later. */
.header-inner > .header-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  transition: transform var(--t-base), opacity var(--t-fast);
  transform-origin: center;
  border-radius: 1px;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------
   BUTTONS
   -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--s3) var(--s6);
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.btn-primary {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-text);
}
.btn-primary:hover {
  background: var(--c-primary-hover);
  border-color: var(--c-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px oklch(63% 0.20 33 / 0.4);
}

.btn-outline {
  background: transparent;
  border-color: oklch(68% 0.006 75 / 0.5);
  color: var(--c-text);
}
.btn-outline:hover {
  border-color: var(--c-text);
  background: oklch(96% 0.007 75 / 0.08);
}

.btn-gold {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-text-inverse);
}
.btn-gold:hover {
  background: oklch(88% 0.14 78);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: var(--text-base);
  padding: var(--s4) var(--s8);
  min-height: 52px;
}

.btn-full { width: 100%; }

/* --------------------------------
   HERO (Homepage)
   -------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--s16);
  padding-top: var(--s8);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/banner.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(13% 0.012 30 / 0.25) 0%,
    oklch(13% 0.012 30 / 0.45) 35%,
    oklch(13% 0.012 30 / 0.82) 70%,
    oklch(13% 0.012 30 / 0.97) 100%
  );
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s5);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}

.hero-subtitle {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--c-text);
  margin-bottom: var(--s2);
  max-width: 44ch;
  line-height: 1.35;
}

.hero-desc {
  font-size: var(--text-base);
  color: var(--c-text-muted);
  margin-bottom: var(--s8);
  max-width: 42ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

/* --------------------------------
   CALL STRIP
   -------------------------------- */
.call-strip {
  background: var(--c-gold);
  padding: var(--s5) var(--s5);
}

.call-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: flex-start;
}

.call-strip-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-text-inverse);
  opacity: 0.7;
}

.call-strip-phone {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--c-text-inverse);
  letter-spacing: 0.02em;
  line-height: 1;
  transition: opacity var(--t-fast);
}

.call-strip-phone:hover {
  opacity: 0.8;
}

/* --------------------------------
   CONTENT SECTIONS
   -------------------------------- */
.section {
  padding: var(--s16) var(--s5);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--s3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: var(--s4);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--c-text-muted);
  max-width: 55ch;
  line-height: 1.65;
  margin-bottom: var(--s10);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

.feature-item {
  background: var(--c-surface);
  padding: var(--s8) var(--s6);
  border-radius: var(--r-md);
}

.feature-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: var(--s4);
  line-height: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-gold);
  margin-bottom: var(--s2);
}

.feature-desc {
  color: var(--c-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* --------------------------------
   FOOD SECTION
   -------------------------------- */
.food-section {
  background: var(--c-surface);
  padding: var(--s16) var(--s5);
}

.food-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}

.food-actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-top: var(--s8);
}

.food-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.food-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------
   PAGE HERO (interior pages)
   -------------------------------- */
.page-hero {
  background: var(--c-surface);
  padding: var(--s16) var(--s5) var(--s12);
  border-bottom: 1px solid var(--c-border);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-tag {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-sm);
  margin-bottom: var(--s4);
}

.page-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: var(--s4);
}

.page-desc {
  font-size: var(--text-lg);
  color: var(--c-text-muted);
  max-width: 55ch;
  line-height: 1.55;
}

/* --------------------------------
   MENU GALLERY
   -------------------------------- */
.menu-section {
  padding: var(--s12) var(--s5);
}

.menu-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.menu-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.menu-image-wrapper {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  position: relative;
  min-height: 200px;
}

/* Skeleton shimmer */
.menu-image-wrapper.skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--c-surface) 0%,
    var(--c-surface-raised) 50%,
    var(--c-surface) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  z-index: 1;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.menu-image-wrapper.loaded::before {
  display: none;
}

.menu-image {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  position: relative;
  z-index: 2;
}

/* Page count badge */
.menu-page-badge {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  background: oklch(13% 0.012 30 / 0.75);
  color: var(--c-text-muted);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s1) var(--s2);
  border-radius: var(--r-sm);
  z-index: 3;
}

/* --------------------------------
   LIGHTBOX
   -------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(5% 0.005 30 / 0.93);
  align-items: center;
  justify-content: center;
  padding: var(--s4);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90svh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 16px 64px oklch(0% 0 0 / 0.6);
}

.lightbox-close {
  position: absolute;
  top: var(--s4);
  right: var(--s4);
  width: 44px;
  height: 44px;
  background: var(--c-surface-raised);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-text);
  font-size: var(--text-xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--c-surface);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--c-surface-raised);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-text);
  font-size: var(--text-xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}

.lightbox-nav:hover {
  background: var(--c-surface);
}

.lightbox-prev { left: var(--s4); }
.lightbox-next { right: var(--s4); }

.lightbox-counter {
  position: absolute;
  bottom: var(--s5);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

/* --------------------------------
   CONTACT PAGE
   -------------------------------- */
.contact-section {
  padding: var(--s12) var(--s5);
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

.contact-block {
  background: var(--c-surface);
  padding: var(--s8) var(--s6);
  border-radius: var(--r-md);
}

.contact-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--s4);
}

.contact-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-text);
  transition: color var(--t-fast);
  display: block;
}

a.contact-value:hover {
  color: var(--c-gold);
}

.contact-sub {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-top: var(--s3);
  line-height: 1.5;
}

.contact-action {
  margin-top: var(--s6);
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  margin-top: var(--s2);
}

.hours-table th,
.hours-table td {
  padding: var(--s2) 0;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

.hours-table th {
  font-weight: 400;
  color: var(--c-text-muted);
  width: 50%;
  font-family: var(--font-body);
}

.hours-table td {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-text);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
  color: var(--c-gold);
}

/* --------------------------------
   FOOTER
   -------------------------------- */
.site-footer {
  background: oklch(10% 0.012 30);
  border-top: 1px solid var(--c-border);
  padding: var(--s12) var(--s5) var(--s8);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  margin-bottom: var(--s10);
}

.footer-logo img {
  height: 38px;
  width: auto;
  opacity: 0.75;
}

.footer-group-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s3);
}

.footer-text {
  color: var(--c-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--t-fast);
  display: inline-block;
}

.footer-phone:hover {
  color: var(--c-gold);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  list-style: none;
}

.footer-nav-list a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.footer-nav-list a:hover {
  color: var(--c-text);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding-top: var(--s6);
  border-top: 1px solid var(--c-border);
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.footer-bottom a {
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.footer-bottom a:hover {
  color: var(--c-text);
}

/* --------------------------------
   404 PAGE
   -------------------------------- */
.not-found-page {
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + var(--s12)) var(--s5) var(--s12);
}

.not-found-inner {
  max-width: 480px;
}

.not-found-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 9rem);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--s2);
}

.not-found-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--s4);
}

.not-found-desc {
  color: var(--c-text-muted);
  margin-bottom: var(--s8);
  line-height: 1.6;
}

/* --------------------------------
   UTILITIES
   -------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --------------------------------
   RESPONSIVE — sm: 640px
   -------------------------------- */
@media (min-width: 640px) {
  .call-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --------------------------------
   RESPONSIVE — lg: 1024px
   -------------------------------- */
@media (min-width: 1024px) {
  .header-inner {
    padding: 0 var(--s8);
  }

  /* Show desktop nav, hide hamburger */
  .site-nav {
    display: flex;
    align-items: center;
    gap: var(--s8);
    position: static;
    background: transparent;
    height: auto;
    padding: 0;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    gap: var(--s8);
    overflow: visible;
  }

  .nav-link {
    font-size: var(--text-sm);
  }

  .nav-call-btn {
    display: none;
  }

  .header-inner > .header-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: var(--text-6xl);
  }

  /* Sections */
  .section {
    padding: var(--s24) var(--s8);
  }

  .section-title {
    font-size: var(--text-4xl);
  }

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

  .food-section {
    padding: var(--s24) var(--s8);
  }

  .food-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s20);
  }

  .food-visual {
    max-width: 100%;
    margin: 0;
  }

  .page-title {
    font-size: var(--text-6xl);
  }

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

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