:root {
  --black: #15100d;
  --black-2: #211713;
  --cream: #fff5e4;
  --cream-2: #f6dfb9;
  --paper: #fffaf1;
  --ember: #c53122;
  --orange: #ec7430;
  --gold: #f5bd3d;
  --teal: #0f766e;
  --teal-2: #0b4f4b;
  --olive: #556b35;
  --ink: #211713;
  --muted: rgba(33, 23, 19, 0.72);
  --line: rgba(33, 23, 19, 0.14);
  --white: #fff;
  --shadow: 0 24px 70px rgba(21, 16, 13, 0.2);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hanken Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 200;
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 16, 13, 0.93);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { box-shadow: 0 18px 54px rgba(0,0,0,0.28); }
.header-shell {
  width: min(100%, 1340px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 260px;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 10px;
  padding: 4px;
}
.brand span {
  display: grid;
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}
.brand em {
  color: var(--gold);
  font-style: normal;
  font-size: 0.82rem;
}
.status-pill {
  justify-self: start;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
}
.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-weight: 850;
  padding: 10px 11px;
  border-radius: 8px;
  font-size: 0.92rem;
}
.site-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-toggle, .mobile-call { display: none; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffd86a);
  color: var(--black);
  box-shadow: 0 18px 38px rgba(245, 189, 61, 0.22);
}
.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-outline {
  background: rgba(255,255,255,0.09);
  color: var(--white);
  border-color: rgba(255,255,255,0.36);
}
.btn-muted {
  background: rgba(33,23,19,0.08);
  color: var(--ink);
  border-color: var(--line);
}
.btn-add {
  width: 100%;
  margin-top: 18px;
  background: var(--black);
  color: var(--white);
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--ember);
  font-weight: 950;
  text-decoration-thickness: 2px;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(15,118,110,0.45), transparent 32%),
    radial-gradient(circle at 18% 42%, rgba(197,49,34,0.56), transparent 34%),
    linear-gradient(90deg, rgba(21,16,13,0.96) 0%, rgba(21,16,13,0.78) 48%, rgba(21,16,13,0.46) 100%),
    linear-gradient(0deg, rgba(21,16,13,0.95) 0%, transparent 52%);
}
.ingredient {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  opacity: 0.58;
  filter: blur(0.2px);
}
.ingredient-a {
  width: 70px;
  height: 70px;
  left: 7%;
  bottom: 22%;
  border: 3px solid var(--gold);
}
.ingredient-b {
  width: 42px;
  height: 118px;
  right: 18%;
  top: 24%;
  background: linear-gradient(var(--teal), var(--olive));
  transform: rotate(28deg);
}
.ingredient-c {
  width: 90px;
  height: 32px;
  right: 8%;
  bottom: 26%;
  background: var(--ember);
  transform: rotate(-16deg);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: end;
  min-height: 790px;
  padding: 120px 0 88px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero .eyebrow,
.story-section .eyebrow,
.site-footer .eyebrow,
.order-section .eyebrow {
  color: var(--gold);
}
h1, h2 {
  font-family: Fraunces, "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}
h1 {
  max-width: 900px;
  margin: 0;
  font-size: 3.25rem;
  line-height: 0.98;
  font-weight: 950;
}
.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-strip span {
  border: 1px solid rgba(255,255,255,0.23);
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 11px;
  color: rgba(255,255,255,0.92);
  font-weight: 850;
}
.hero-card {
  background: rgba(255,250,241,0.94);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}
.hero-card p { color: var(--muted); }
.card-kicker {
  color: var(--teal);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.sizzle-seam {
  position: relative;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 26px 0 12px;
}
.sizzle-seam::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember), var(--gold), var(--teal), transparent);
  box-shadow: 0 0 24px rgba(245,189,61,0.7);
}
.sizzle-seam strong {
  position: relative;
  z-index: 2;
  background: var(--black);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.steam {
  position: absolute;
  bottom: 18px;
  width: 12px;
  height: 28px;
  border-radius: 999px;
  border-left: 2px solid rgba(255,245,228,0.42);
  animation: steamRise 2600ms ease-in-out infinite;
}
.steam-one { left: 46%; }
.steam-two { left: 50%; animation-delay: 400ms; }
.steam-three { left: 54%; animation-delay: 800ms; }

.quick-bar {
  width: min(var(--max), calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.quick-bar a {
  min-height: 126px;
  display: grid;
  gap: 7px;
  align-content: center;
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(21,16,13,0.13);
  text-decoration: none;
}
.quick-bar strong { font-size: 1.02rem; line-height: 1.1; }
.quick-bar span { color: var(--muted); font-size: 0.86rem; }

.section,
.menu-section,
.reviews-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}
.section-head {
  margin-bottom: 34px;
}
.split-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: end;
}
.section-head h2,
.menu-head h2,
.order-section h2,
.catering-section h2,
.location-section h2,
.rewards-section h2,
.story-section h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.04;
}
.section-head p:last-child,
.menu-head p,
.signature p,
.reviews-section p {
  color: var(--muted);
  margin: 0;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.dish-panel {
  min-height: 370px;
  display: grid;
  align-content: end;
  padding: 24px;
  border-radius: 14px;
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.dish-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
}
.dish-panel span,
.dish-panel h3,
.dish-panel p {
  position: relative;
  z-index: 1;
}
.dish-panel span {
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--gold);
}
.dish-panel h3 {
  margin: 10px 0 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}
.dish-panel p { margin: 0; color: rgba(255,255,255,0.82); }
.ember-panel {
  background:
    radial-gradient(circle at 26% 20%, rgba(245,189,61,0.35), transparent 24%),
    linear-gradient(135deg, #6d1a12, var(--ember), var(--orange));
}
.teal-panel {
  background:
    radial-gradient(circle at 70% 28%, rgba(245,189,61,0.28), transparent 24%),
    linear-gradient(135deg, #092f2f, var(--teal), var(--olive));
}
.gold-panel {
  background:
    radial-gradient(circle at 48% 18%, rgba(255,245,228,0.28), transparent 24%),
    linear-gradient(135deg, var(--black), #6d4514, var(--gold));
  color: var(--cream);
}

.menu-section {
  background: var(--black);
  color: var(--white);
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
}
.menu-head p { color: rgba(255,255,255,0.75); max-width: 820px; }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 26px;
}
.filter {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
  cursor: pointer;
}
.filter.is-active {
  background: var(--gold);
  color: var(--black);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.menu-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  background: #fff8ec;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px;
}
.menu-card.is-hidden { display: none; }
.menu-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--teal);
  font-weight: 950;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.menu-card h3 {
  margin: 16px 0 8px;
  font-size: 1.38rem;
  line-height: 1.12;
}
.menu-card p {
  margin: 0;
  color: var(--muted);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
}
.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  color: rgba(33,23,19,0.72);
  font-weight: 850;
  font-size: 0.74rem;
}

.order-section,
.catering-section,
.location-section,
.rewards-section,
.story-section {
  padding: 92px max(20px, calc((100% - var(--max)) / 2));
}
.order-section {
  background:
    linear-gradient(135deg, rgba(255,245,228,0.97), rgba(246,223,185,0.88)),
    url("../img/warm-pattern.svg");
}
.order-layout,
.catering-section,
.location-section,
.rewards-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}
.order-section p,
.catering-section p,
.location-section p,
.rewards-section p { color: var(--muted); }
.order-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.small-note {
  font-size: 0.92rem;
}
.order-bag,
.catering-form,
.rewards-form,
.hours-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.bag-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.bag-head h3 {
  margin: 0;
  font-size: 1.55rem;
}
.bag-count {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-weight: 950;
}
.bag-items {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.empty-bag {
  margin: 0;
  color: var(--muted);
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 10px;
}
.bag-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}
.bag-row strong { display: block; }
.qty-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-tools button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  font-weight: 950;
}
.bag-total {
  font-weight: 900;
  color: var(--teal) !important;
}
.request-form,
.catering-form,
.rewards-form {
  display: grid;
  gap: 10px;
}
label {
  font-weight: 900;
}
input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 11px 12px;
}
textarea { resize: vertical; }
.form-note {
  margin: 0;
  min-height: 22px;
  color: var(--teal) !important;
  font-weight: 850;
}

.kitchen-stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.kitchen-card {
  min-height: 500px;
  border-radius: 14px;
  padding: 34px;
  display: grid;
  align-content: end;
  color: var(--white);
  box-shadow: var(--shadow);
}
.kitchen-card h2 { margin: 0; font-size: 2.4rem; line-height: 1.04; }
.kitchen-card p { color: rgba(255,255,255,0.82); }
.kitchen-card.mexican {
  background:
    linear-gradient(0deg, rgba(21,16,13,0.76), rgba(21,16,13,0.26)),
    radial-gradient(circle at 35% 20%, rgba(245,189,61,0.32), transparent 28%),
    linear-gradient(135deg, #5d1610, var(--ember), var(--orange));
}
.kitchen-card.mediterranean {
  background:
    linear-gradient(0deg, rgba(21,16,13,0.78), rgba(21,16,13,0.24)),
    radial-gradient(circle at 68% 20%, rgba(245,189,61,0.24), transparent 28%),
    linear-gradient(135deg, #082f2f, var(--teal), var(--olive));
}

.story-section {
  background: var(--black);
  color: var(--white);
}
.story-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 270px 1fr;
  gap: 28px;
  align-items: center;
}
.story-section p { color: rgba(255,255,255,0.78); }
.story-points {
  display: grid;
  gap: 12px;
}
.story-points article {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px;
}
.story-points strong { display: block; }
.story-points span { color: rgba(255,255,255,0.75); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 16px 44px rgba(21,16,13,0.08);
}
.review-grid span {
  display: block;
  color: var(--teal);
  font-weight: 950;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.catering-section {
  background:
    radial-gradient(circle at 14% 22%, rgba(197,49,34,0.14), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(15,118,110,0.14), transparent 28%),
    var(--cream);
}
.check-list {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 850;
}
.check-list li { margin: 7px 0; }

.location-section {
  background: var(--paper);
}
.nap {
  display: grid;
  gap: 6px;
  font-style: normal;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 16px 44px rgba(21,16,13,0.08);
  margin: 22px 0;
}
.nap a { color: var(--ember); font-weight: 950; }
.hours-card ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.map-wrap {
  min-height: 520px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--black);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.rewards-section {
  background: var(--black);
  color: var(--white);
}
.rewards-section p { color: rgba(255,255,255,0.78); }

.site-footer {
  background: #0f0b09;
  color: var(--white);
  padding: 58px max(20px, calc((100% - var(--max)) / 2)) 92px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.8fr;
  gap: 32px;
  margin-top: 36px;
}
.footer-grid img {
  width: 142px;
  height: 92px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 12px;
  padding: 7px;
}
.footer-grid h2,
.footer-grid h3 { margin: 12px 0; }
.footer-grid p { color: rgba(255,255,255,0.72); }
.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.82);
  margin: 8px 0;
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
}

.floating-bag {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow);
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.floating-bag span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
}
.mobile-action-bar { display: none; }

.legacy-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(197,49,34,0.16), transparent 28%),
    radial-gradient(circle at 82% 65%, rgba(15,118,110,0.16), transparent 28%),
    var(--paper);
}
.legacy-card {
  width: min(680px, 100%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 34px;
}
.legacy-card h1 {
  color: var(--black);
  font-size: 2.5rem;
}
.legacy-card p { color: var(--muted); }

@keyframes steamRise {
  0% { opacity: 0; transform: translateY(12px) scale(0.9); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-16px) scale(1.2); }
}

@media (min-width: 900px) {
  h1 { font-size: 4.55rem; }
}
@media (min-width: 1220px) {
  h1 { font-size: 5.45rem; }
}
@media (max-width: 1180px) {
  .header-shell {
    grid-template-columns: auto auto 1fr auto;
  }
  .status-pill { display: none; }
  .quick-bar { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .header-shell {
    grid-template-columns: auto 1fr auto auto;
    padding: 8px 14px;
    gap: 10px;
  }
  .brand { min-width: 0; }
  .brand img { width: 48px; height: 48px; }
  .brand span { font-size: 0.98rem; }
  .brand em { font-size: 0.74rem; }
  .nav-toggle,
  .mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    display: grid;
    place-content: center;
    gap: 4px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--white);
  }
  .nav-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .mobile-call {
    min-height: 48px;
    padding: 0 13px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 950;
  }
  .site-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  body.nav-open .site-nav { display: grid; }
  .site-nav a {
    background: rgba(255,255,255,0.08);
    padding: 14px 13px;
    font-size: 1rem;
  }
  .site-nav .nav-order {
    background: var(--gold);
    color: var(--black);
  }
  .hero { min-height: 780px; }
  .hero-inner {
    width: min(100% - 28px, var(--max));
    min-height: 780px;
    grid-template-columns: 1fr;
    padding: 86px 0 72px;
  }
  .hero-card { display: none; }
  h1 { font-size: 3.1rem; }
  .lead { font-size: 1.05rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .trust-strip { display: grid; grid-template-columns: 1fr; }
  .quick-bar {
    width: min(100% - 28px, var(--max));
    margin-top: 16px;
    grid-template-columns: 1fr 1fr;
  }
  .quick-bar a { min-height: 112px; }
  .section,
  .reviews-section {
    width: min(100% - 28px, var(--max));
    padding: 64px 0;
  }
  .menu-section,
  .order-section,
  .catering-section,
  .location-section,
  .rewards-section,
  .story-section,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
  .menu-section,
  .order-section,
  .catering-section,
  .location-section,
  .rewards-section,
  .story-section { padding-top: 64px; padding-bottom: 64px; }
  .split-head,
  .signature-grid,
  .menu-grid,
  .order-layout,
  .kitchen-stories,
  .story-inner,
  .review-grid,
  .catering-section,
  .location-section,
  .rewards-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .menu-head h2,
  .order-section h2,
  .catering-section h2,
  .location-section h2,
  .rewards-section h2,
  .story-section h2,
  .kitchen-card h2 {
    font-size: 2.12rem;
  }
  .dish-panel,
  .kitchen-card { min-height: 330px; }
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .filter { white-space: nowrap; }
  .order-buttons { display: grid; grid-template-columns: 1fr; }
  .hours-card li { align-items: start; }
  .map-wrap,
  .map-wrap iframe { min-height: 360px; }
  .footer-bottom { display: grid; }
  .floating-bag {
    right: 14px;
    bottom: 76px;
  }
  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .mobile-action-bar a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 950;
  }
  .mobile-action-bar a:first-child {
    background: var(--gold);
    color: var(--black);
  }
}
@media (max-width: 430px) {
  h1 { font-size: 2.64rem; }
  .quick-bar { grid-template-columns: 1fr; }
  .brand span { max-width: 160px; }
  .sizzle-seam strong { max-width: 230px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-video { display: none; }
}
