/* Three-column header: nav | logo | actions, all clustered tight to the
   logo. The 1fr columns flank the inner trio with empty space on the
   outer left/right edges. justify-self pulls nav toward the logo on its
   right side and pulls actions toward the logo on their left side. */
/* Navbar is transparent at the top of the page so it visually blends
   into the hero — looks like ONE continuous section, no seam. When the
   user scrolls past the hero, the header gets its own red gradient +
   shadow and tightens up (smaller logo + padding). */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.15rem clamp(0.75rem, 2vw, 1.5rem);
  background: transparent;
  color: var(--color-cream);
  transition: background .3s var(--ease-out), padding .3s var(--ease-out),
              box-shadow .3s var(--ease-out);
}
.site-header.is-scrolled {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 4px 18px rgba(14, 14, 14, 0.18);
}
/* Logo + nav + action buttons shrink in lockstep when scrolled. */
.site-header.is-scrolled .site-logo img { height: 64px; }
.site-header.is-scrolled .site-nav { font-size: 0.78rem; gap: 0.75rem; }
.site-header.is-scrolled .site-actions__order { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
.site-header.is-scrolled .site-actions__call { padding: 0.45rem 0.9rem; font-size: 0.82rem; }

/* Standalone pages (Catering, Franchise) have no hero — give the page
   a solid red top so the transparent header still sits on a red field
   that matches the rest of the brand, and push the first section below
   the fixed header. */
.standalone-page {
  background: linear-gradient(135deg,
    #E04E37 0%,
    var(--color-red) 28%,
    var(--color-red-dark) 65%,
    #5E170F 100%);
  padding-top: 9rem;
}
.standalone-page > section:first-child { padding-top: 2rem; }

/* Nav underline accent — gold pops on the red. */
.site-header .site-nav a::after { background: var(--color-gold); }
/* Override base.css's global `a:hover { color: red }` — red-on-red is
   invisible against the header. Use gold to match the underline accent. */
.site-header .site-nav a:hover,
.site-header .site-nav a:focus { color: var(--color-gold); }

/* Menu pill — cream-on-red for legibility against the header. */
.site-header .site-nav__cta {
  background: var(--color-cream);
  color: var(--color-red-dark);
  box-shadow: 0 6px 16px rgba(14, 14, 14, 0.25);
}
.site-header .site-nav__cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* ── Action buttons visible on the red navbar ── */
/* Order Now (the .btn--primary pill) — flip to cream pill so it's legible
   against the red hero/header. Hover lifts to gold for energy. */
.site-header .site-actions__order {
  background: var(--color-cream);
  color: var(--color-red-dark);
  box-shadow: 0 8px 22px rgba(14, 14, 14, 0.25);
}
.site-header .site-actions__order::before { display: none; } /* kill shimmer overlay */
.site-header .site-actions__order:hover {
  background: var(--color-gold);
  color: var(--color-black);
}
/* Call Us — was red border + red text (invisible). Cream outline instead. */
.site-header .site-actions__call {
  border-color: var(--color-cream);
  color: var(--color-cream);
}
.site-header .site-actions__call:hover,
.site-header .site-actions__call:focus {
  background: var(--color-cream);
  color: var(--color-red-dark);
  border-color: var(--color-cream);
}
/* Social icons — cream on red. */
.site-header .site-socials a { color: var(--color-cream); }
.site-header .site-socials a:hover { color: var(--color-gold); }
.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.site-logo img {
  height: 116px;
  width: auto;
  display: block;
  transition: transform .5s var(--ease-out);
}
.site-logo:hover img { animation: logo-wiggle 0.6s var(--ease-in-out); }
@keyframes logo-wiggle {
  0%, 100% { transform: rotate(0) scale(1); }
  25%      { transform: rotate(-6deg) scale(1.06); }
  50%      { transform: rotate(5deg) scale(1.08); }
  75%      { transform: rotate(-3deg) scale(1.04); }
}
.site-nav { display: flex; gap: 0.9rem; font-size: 0.82rem; font-weight: 600; align-items: center; flex-wrap: nowrap; white-space: nowrap; }
.site-nav__socials { display: none; }
/* The nav group sits in its 1fr column. justify-self: start pins it to
   the LEFT edge of that column; the margin-inline-start shifts the whole
   group rightward (toward the logo) as a single unit — internal gap
   between links is unchanged. */
.site-nav--left {
  justify-self: start;
  margin-inline-start: clamp(3rem, 12vw, 11rem);
}
.site-nav a { position: relative; padding: 0.25rem 0; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.site-nav a:hover::after { transform: scaleX(1); }

/* Highlighted nav item — pinned at the end of the link group as a
   red pill so the Menu CTA reads as the primary action of the nav. */
.site-nav__cta {
  margin-inline-start: 0.4rem;
  padding: 0.45rem 1rem !important;
  background: var(--color-red);
  color: var(--color-cream);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(200, 55, 45, 0.32);
  transition: background .25s var(--ease-out), color .25s, transform .25s, box-shadow .25s;
}
.site-nav__cta:hover {
  background: var(--color-red-dark);
  color: var(--color-cream);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(200, 55, 45, 0.45);
}
/* Suppress the default underline-on-hover affordance for the pill — it
   already has a hover state of its own. */
.site-nav__cta::after { display: none !important; }

/* Mobile drawer variant. The drawer links sit on a dark glass background,
   so the same pill style with a brighter shadow reads cleanly there too. */
.site-drawer__cta {
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem !important;
  background: var(--color-red) !important;
  color: var(--color-cream) !important;
  border-radius: 999px;
  font-weight: 700;
  align-self: flex-start;
  box-shadow: 0 10px 24px rgba(200, 55, 45, 0.4);
}

/* Right-side actions: Order Now (primary), Call Us (ghost), socials.
   Pinned to the RIGHT edge of its 1fr column, then margin-inline-end
   shifts the whole cluster leftward (toward the logo) as one unit —
   mirrors what the nav group does on the other side. */
.site-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
  margin-inline-end: clamp(3rem, 12vw, 11rem);
  flex-wrap: nowrap;
  white-space: nowrap;
}
.site-actions__order {
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  border-radius: 999px;
}
.site-actions__order .site-actions__icon { display: none; }
.site-actions__contact,
.site-actions__call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background .2s var(--ease-out), color .2s, border-color .2s, transform .2s;
}
.site-actions__contact {
  border: 1.5px solid var(--color-black);
  background: transparent;
  color: var(--color-black);
}
.site-actions__contact:hover,
.site-actions__contact:focus {
  background: var(--color-black);
  color: var(--color-cream);
  transform: translateY(-1px);
}
.site-actions__call {
  border: 1.5px solid var(--color-red);
  background: transparent;
  color: var(--color-red);
}
.site-actions__call:hover,
.site-actions__call:focus {
  background: var(--color-red);
  color: var(--color-cream);
  border-color: var(--color-red);
  transform: translateY(-1px);
}
.site-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.25rem;
}
.site-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: transparent;
  color: var(--color-black);
  border: 1.5px solid color-mix(in srgb, var(--color-black) 18%, transparent);
  transition: background .2s var(--ease-out), color .2s, border-color .2s, transform .2s;
}
.site-socials a:hover {
  background: var(--color-red);
  color: var(--color-cream);
  border-color: var(--color-red);
  transform: translateY(-1px);
}
/* Greyed-out state for icons whose URL hasn't been set yet. Stays visible
   so the user knows the slot exists; doesn't navigate on click. */
.site-socials a.is-empty {
  opacity: 0.35;
  cursor: not-allowed;
}
.site-socials a.is-empty:hover {
  background: transparent;
  color: var(--color-black);
  border-color: color-mix(in srgb, var(--color-black) 18%, transparent);
  transform: none;
}

@media (max-width: 1100px) {
  /* Keep socials visible — just shrink them. */
  .site-socials a { width: 30px; height: 30px; }
  .site-nav { gap: 1.1rem; font-size: 0.92rem; }
}
@media (max-width: 940px) {
  .site-actions__order { padding: 0.55rem 1rem; font-size: 0.86rem; }
  .site-nav { gap: 0.95rem; font-size: 0.88rem; }
}
@media (max-width: 900px) {
  .site-logo img { height: 88px; }
}

.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  position: relative;
  z-index: 60;
}
.site-nav__bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-black);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s;
}
.site-nav__toggle[aria-expanded="true"] .site-nav__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] .site-nav__bar:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] .site-nav__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding: 0.4rem 0.6rem;
  }
  .site-nav__toggle { display: flex; justify-self: start; }
  .site-nav { display: none; }
  /* On mobile there's no nav group on the left to balance, so cancel
     the desktop margin-inline-end and pin the actions to the right edge
     of the header. With the hamburger pinned left and the actions pinned
     right, the logo (auto-column) sits exactly between them. */
  .site-actions {
    justify-self: end;
    min-width: 0;
    gap: 0.4rem;
    margin-inline-end: 0;
  }
  .site-actions__order,
  .site-actions__call {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    line-height: 1;
  }
  .site-actions__order .order-text,
  .site-actions__call .call-text { display: none; }
  .site-actions__order .site-actions__icon { display: block; }
  .site-actions__call { border-width: 1.5px; }
  .site-actions__call svg,
  .site-actions__order .site-actions__icon { width: 16px; height: 16px; }
  .site-socials { display: none; }
}

.site-drawer {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(80vw, 320px);
  flex-direction: column;
  background: var(--color-cream);
  box-shadow: 8px 0 40px rgba(14,14,14,0.22);
  transform: translateX(-105%);
  transition: transform .35s var(--ease-out);
  z-index: 60;
  overflow-y: auto;
  padding: 1rem 1rem 1.5rem;
}
.site-drawer.is-open { transform: translateX(0); }
.site-drawer__close {
  align-self: flex-start;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin-bottom: 0.75rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-drawer__close .site-nav__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-drawer__close .site-nav__bar:nth-child(2) { opacity: 0; }
.site-drawer__close .site-nav__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.site-drawer__nav { display: flex; flex-direction: column; gap: 0; font-weight: 600; }
.site-drawer__nav a {
  padding: 0.95rem 1rem;
  text-align: left;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  color: var(--color-black);
  text-decoration: none;
}
.site-drawer__nav a:hover { background: rgba(200,55,45,0.08); color: var(--color-red); }
.site-drawer__socials {
  display: flex;
  gap: 0.6rem;
  padding: 1rem 0.5rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(14,14,14,0.1);
}
.site-drawer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--color-black);
  border: 1.5px solid color-mix(in srgb, var(--color-black) 18%, transparent);
  padding: 0;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.site-drawer__socials a:hover {
  background: var(--color-red);
  color: var(--color-cream);
  border-color: var(--color-red);
  transform: translateY(-1px);
}
.site-drawer__socials a.is-empty { opacity: 0.35; cursor: not-allowed; }
.site-drawer__socials a.is-empty:hover {
  background: transparent;
  color: var(--color-black);
  border-color: color-mix(in srgb, var(--color-black) 18%, transparent);
  transform: none;
}
.site-drawer__backdrop {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
  z-index: 55;
}
.site-drawer__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  /* Two-tier viewport height:
       • 100vh is the fallback for older browsers.
       • 100dvh tracks the *dynamic* viewport (mobile address-bar resize).
     We also push the hero 2px past the viewport bottom (margin-bottom)
     so sub-pixel rounding never exposes the next section's top edge as
     a hairline on first paint — the symptom you were seeing on load. */
  min-height: 100vh;
  min-height: 100dvh;
  margin-bottom: -2px;
  padding: 8rem clamp(1rem, 4vw, 3rem) 5rem;
  background: var(--color-red-dark);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
}

/* Clean single-tone red gradient (logo palette) — soft warm light from
   the upper-left, settling into deeper logo-red toward the bottom-right.
   No stripes / dashed rings / sparkles — a minimal, modern hero where
   the product is the focus. */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* warm highlight glow, top-left */
    radial-gradient(60rem 44rem at 18% 18%, rgba(255, 130, 100, 0.45), transparent 65%),
    /* gentle deeper pool, bottom-right, anchors the product */
    radial-gradient(48rem 36rem at 82% 78%, rgba(80, 18, 14, 0.45), transparent 70%),
    /* base diagonal red wash — bright at top-left, deep at bottom-right */
    linear-gradient(135deg,
      #E04E37 0%,
      var(--color-red) 28%,
      var(--color-red-dark) 65%,
      #5E170F 100%);
  animation: hero-glow 18s var(--ease-in-out) infinite;
}
/* Decorations removed for a cleaner, modern look. */
.hero::before,
.hero::after,
.hero__inner::before,
.hero__inner::after { content: none; display: none; }

@keyframes hero-glow {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.05); }
}

/* Two-column layout: text on the left, object on the right.
   Slightly more weight to the right column now that the product image
   is larger. */
.hero__inner {
  position: relative;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 620px;
}

/* Object image on the right. Floats and casts a soft elliptical shadow
   on the ground. Image is transparent-background by contract; the floor
   shadow lives in CSS so any uploaded PNG looks grounded. */
.hero__object {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
/* Subtle warm bloom behind the product (no harsh gold halo). */
.hero__object::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(96%, 480px);
  height: min(96%, 480px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,170,0.20) 0%, rgba(255,140,100,0.08) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}
/* Gentle ground shadow under the product. */
.hero__object::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: min(72%, 380px);
  height: 26px;
  background: radial-gradient(ellipse, rgba(14,14,14,0.35) 0%, rgba(14,14,14,0.08) 55%, transparent 78%);
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}
.hero__object-img {
  display: block;
  max-width: 100%;
  width: clamp(320px, 46vw, 680px);
  height: auto;
  margin-left: clamp(1rem, 5vw, 5rem);
  filter: drop-shadow(0 30px 40px rgba(14,14,14,0.40));
  animation: hero-object-bob 5.5s ease-in-out infinite;
}
@keyframes hero-object-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-1deg); }
}

/* On narrower viewports stack: text on top, object below, both centered. */
@media (max-width: 900px) {
  .hero { text-align: center; padding-top: 7rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__text { align-items: center; text-align: center; margin: 0 auto; }
  .hero__heading::after { margin: 1.25rem auto 0; }
  .hero__subheading { margin: 0 auto 2.5rem; }
  .hero__object { min-height: 280px; }
  .hero__object-img { width: clamp(220px, 60vw, 360px); margin-left: 0; }
  .hero::after { width: 320px; height: 320px; top: -120px; right: -100px; }
}
/* Clean, minimal eyebrow — small bold label, no pill / border / glow. */
.hero__eyebrow {
  display: inline-block;
  font-family: 'Permanent Marker', var(--font-display);
  font-size: clamp(1.1rem, 1.6vw + 0.6rem, 1.75rem);
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--color-cream);
  opacity: 0.95;
  margin-bottom: 1.25rem;
  text-transform: none;
  transform: rotate(-2deg);
  transform-origin: left center;
}
/* Solid bold headline in cream — no rainbow shimmer, no underline bar.
   Lets the gradient background and the product image do the talking. */
.hero__heading {
  font-size: clamp(3rem, 9vw + 1rem, 9rem);
  line-height: 0.95;
  color: var(--color-cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 22px rgba(14,14,14,0.25);
  /* Disable any leftover gradient text from earlier rules */
  background: none;
  -webkit-background-clip: border-box;
          background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}
.hero__heading::after { content: none; display: none; }
.hero__heading-line {
  display: block;
  white-space: nowrap;
}
/* Brand-colored heading: "BIGBIRDZ" red, "HOT CHICKEN" gold — like the logo.
   -webkit-text-fill-color must be set too, since .hero__heading forces it. */
.hero__heading-line--brand {
  color: #2a0a06;
  -webkit-text-fill-color: #2a0a06;
}
.hero__heading-line--chicken {
  color: var(--color-gold);
  -webkit-text-fill-color: var(--color-gold);
}

.hero__subheading {
  font-family: 'Permanent Marker', var(--font-display);
  font-size: clamp(1.2rem, 1.8vw + 0.6rem, 2rem);
  max-width: 48ch;
  margin: 0 0 2.5rem;
  color: var(--color-cream);
  opacity: 0.95;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(14,14,14,0.25);
  transform: rotate(-1deg);
  transform-origin: left center;
}

.about {
  /* Reduced top/bottom padding so the whole section fits closer to one
     viewport when scrolled to from the nav. */
  padding: var(--space-7) clamp(1rem, 4vw, 3rem);
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.about::before, .about::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.about::before {
  background: var(--color-red);
  top: -120px;
  left: -140px;
  animation: blob-drift-a 14s var(--ease-in-out) infinite;
}
.about::after {
  background: var(--color-gold);
  bottom: -160px;
  right: -120px;
  animation: blob-drift-b 18s var(--ease-in-out) infinite;
}
.about__inner { position: relative; z-index: 1; }
@keyframes blob-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes blob-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, -30px) scale(1.15); }
}
/* About: stacked layout — text on top spans wide horizontally, image
   below is large and fits the same width as the text block. Reads
   naturally as a story you scroll through. */
.about__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}
.about__text {
  /* Wide text block — body text stays left-aligned for readability,
     but the heading is centered (matches every other section title). */
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.about__text h2 {
  color: var(--color-black);
  margin-bottom: 0.75rem;
  text-align: center;
}
.about__text h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: var(--color-red);
  margin: 0.75rem auto 0;   /* centered underline */
  border-radius: 4px;
}
.about__body { font-size: var(--fs-lg); color: var(--color-charcoal); margin-top: var(--space-5); }
.about__body p + p { margin-top: 1rem; }

/* Image: smaller and centered so the whole section fits in one viewport. */
.about__image {
  width: 100%;
  max-width: 720px;
  margin: var(--space-5) auto 0;
  line-height: 0;
  font-size: 0;
}
.about__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .about__text { text-align: center; }
  .about__image { max-width: 100%; }
}

.menu {
  padding: var(--space-9) clamp(1rem, 4vw, 3rem);
  background: var(--color-black);
  color: var(--color-cream);
}
.menu__header { text-align: center; max-width: 720px; margin: 0 auto var(--space-6); }
.menu__header h2 { color: var(--color-gold); }
/* "Pick your heat" — uses Permanent Marker (a totally different font
   from the chunky Bowlby One used in "THE MENU"), with a clear gap
   above it to separate from the title, and a warm-gradient shimmer
   that ties to the heat scale below. */
.menu__subheading {
  margin-top: 1.75rem;   /* clear gap from the menu title */
  font-family: 'Permanent Marker', var(--font-display);
  font-weight: 400;
  /* Roughly half of h2's --fs-2xl clamp. */
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2.5rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    #F0913B 25%,
    var(--color-red) 50%,
    #F0913B 75%,
    var(--color-gold) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: menu-subheading-shimmer 6s linear infinite;
}
@keyframes menu-subheading-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .menu__subheading { animation: none; }
}

.menu__filters {
  width: var(--container);
  margin: 0 auto var(--space-7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.menu__filter {
  appearance: none;
  border: 1.5px solid rgba(232, 184, 75, 0.45);
  background: transparent;
  color: var(--color-cream);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .2s var(--ease-out), color .2s, border-color .2s, transform .2s, box-shadow .25s;
}
.menu__filter:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-1px);
}
.menu__filter.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-cream);
  box-shadow: 0 10px 24px rgba(200, 55, 45, 0.35);
}
.menu__category.is-hidden { display: none; }

.menu__category {
  width: var(--container);
  margin: 0 auto var(--space-8);
}
.menu__category-name {
  color: var(--color-red);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-red);
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
}
.menu__category-name::before {
  content: '';
  position: absolute;
  left: -2px;
  bottom: -2px;
  height: 2px;
  width: 40%;
  background: var(--color-gold);
  animation: cat-slide 3s var(--ease-in-out) infinite;
}
@keyframes cat-slide {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(150%); }
  100% { transform: translateX(0); }
}
.menu__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.menu-card {
  background: var(--color-charcoal);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  border: 1px solid rgba(232,184,75,0.15);
  position: relative;
  isolation: isolate;
}
.menu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(232,184,75,0.28) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .9s var(--ease-out);
  pointer-events: none;
}
.menu-card:hover::after { transform: translateX(110%); }
.menu-card:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: 0 24px 48px rgba(200,55,45,0.4);
  border-color: var(--color-gold);
}
/* Fixed-height frame so every card is uniform regardless of the source
   image's aspect ratio. `object-fit: cover` fills the box and crops the
   overflow rather than letterboxing or distorting. */
.menu-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-charcoal);
}
.menu-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.menu-card__image img,
.menu-card__image picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease-out);
}
.menu-card:hover .menu-card__image img { transform: scale(1.08); }
.menu-card__body { padding: 1.25rem; }
/* Align name + price at the top so long names wrap cleanly without
   pushing the price up or down relative to other cards. */
.menu-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: nowrap;
}
.menu-card__name {
  flex: 1 1 auto;
  min-width: 0;
  /* Slightly smaller so the full name fits on one line; never truncated.
     Long names break/wrap as a safety net rather than getting cut off. */
  font-size: clamp(0.82rem, 0.7rem + 0.55vw, 1rem);
  line-height: 1.2;
  color: var(--color-cream);
  letter-spacing: 0.005em;
  overflow-wrap: anywhere;
}
.menu-card__price {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: var(--fs-md);
  line-height: 1.2;
}
.menu-card__desc { margin-top: 0.5rem; font-size: var(--fs-sm); opacity: 0.8; line-height: 1.45; }

/* Spice scale banner — bold skewed display type on the dark menu
   background, color-graded cool→hot. Purely decorative signage; the
   per-item heat indicators were removed. */
.spice-scale {
  width: 100%;
  margin: 0 auto var(--space-7);
  padding-inline: clamp(0.5rem, 3vw, 2rem);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.6vw, 1.2rem);
  text-align: center;
  white-space: nowrap;
}
.spice-scale__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 4.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  transform: skewX(-8deg);
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.45);
}
.spice-scale__item--none   { color: #E8C84B; }
.spice-scale__item--medium { color: #F0913B; }
.spice-scale__item--hot    { color: #ED3B2F; }
.spice-scale__item--extra  { color: #C8372D; }
.spice-scale__sep {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 3.4vw, 2.6rem);
  color: rgba(245, 236, 217, 0.4);
  transform: skewX(-8deg);
}

.gallery {
  padding: var(--space-7) 0 var(--space-8);
  background: var(--color-cream-dark);
  overflow: hidden;
}
.gallery h2 {
  text-align: center;
  margin-bottom: var(--space-5);
  color: var(--color-black);
  padding: 0 clamp(1rem, 4vw, 3rem);
}
/* Edge-to-edge gallery. Auto-scrolls via JS (so user interaction can
   take over seamlessly). Native overflow-x:auto makes touch swipe and
   mouse wheel/drag work for free; JS pauses auto-scroll while the user
   is hovering or dragging. The track is duplicated server-side so the
   JS can wrap scrollLeft at the halfway point for a seamless loop. */
.gallery__marquee {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;             /* Firefox */
  -ms-overflow-style: none;          /* IE / old Edge */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  scroll-behavior: auto;             /* JS sets scrollLeft frame-by-frame */
  -webkit-overflow-scrolling: touch; /* momentum scroll on iOS */
}
.gallery__marquee::-webkit-scrollbar { display: none; } /* Chrome / Safari */
.gallery__marquee.is-dragging { cursor: grabbing; user-select: none; }

.gallery__track {
  display: flex;
  width: max-content;
  gap: var(--space-3);
}
.gallery__item {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 360px);
  height: clamp(180px, 22vw, 280px);
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0;
  background: var(--color-cream);
  box-shadow: 0 4px 14px rgba(14,14,14,.06);
  cursor: zoom-in;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(14,14,14,.18);
}
.gallery__marquee.is-dragging .gallery__item { cursor: grabbing; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* clicks bubble to the figure for the lightbox */
}

/* ----- Lightbox (click-to-enlarge gallery image) ----- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease-out), visibility 0s linear .25s;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s var(--ease-out);
}
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  transform: scale(0.96);
  transition: transform .25s var(--ease-out);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--color-cream);
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease-out), transform .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__img { transition: none; }
}

/* ===== Order Now section ===== */
.order {
  padding: var(--space-9) clamp(1rem, 4vw, 3rem);
  background: var(--color-cream);
  color: var(--color-black);
}
.order__inner {
  width: var(--container);
  margin-inline: auto;
}
.order__header { text-align: center; max-width: 720px; margin: 0 auto var(--space-7); }
.order__header h2 { color: var(--color-black); }
.order__sub { margin-top: 0.85rem; font-size: var(--fs-lg); color: var(--color-charcoal); }
.order__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
}
.order__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-cream-dark);
  color: var(--color-black);
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .25s var(--ease-out), border-color .2s, box-shadow .25s;
  box-shadow: var(--shadow-soft, 0 6px 18px rgba(14,14,14,0.06));
}
.order__card:hover {
  transform: translateY(-3px);
  border-color: var(--color-red);
  box-shadow: 0 18px 40px rgba(200,55,45,0.18);
}
/* Pin colors across all states — the global a:hover rule in base.css
   would otherwise turn the cream text red on this red background and
   make it invisible. */
.order__card--pickup,
.order__card--pickup:hover,
.order__card--pickup:focus,
.order__card--pickup:visited {
  background: var(--color-red);
  color: var(--color-cream);
}
.order__card--pickup:hover { border-color: var(--color-gold); }
/* Same for the default (non-pickup) card — it's also an <a> so a:hover
   would tint its text red. Keep it readable. */
.order__card,
.order__card:hover,
.order__card:focus,
.order__card:visited { color: var(--color-black); }
.order__card--pickup,
.order__card--pickup:hover,
.order__card--pickup:focus,
.order__card--pickup:visited { color: var(--color-cream); }
.order__card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, currentColor 14%, transparent);
}
.order__card h3 {
  font-size: var(--fs-2xl, 1.6rem);
  margin: 0;
  font-family: var(--font-display, inherit);
}
.order__card p {
  margin: 0;
  font-size: var(--fs-md);
  opacity: 0.9;
}
.order__card-cta {
  margin-top: auto;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Delivery card holds two third-party buttons stacked vertically. */
.order__delivery-buttons {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.order__delivery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 140px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s, filter .15s;
  text-align: center;
}
.order__delivery-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
/* Pin the text color in both states — base.css's global a:hover would
   otherwise turn the DoorDash button text red on its red background,
   making it invisible. */
.order__delivery-btn--doordash,
.order__delivery-btn--doordash:hover,
.order__delivery-btn--doordash:focus { background: #ef2a39; color: #ffffff; }
.order__delivery-btn--ubereats,
.order__delivery-btn--ubereats:hover,
.order__delivery-btn--ubereats:focus { background: #06c167; color: #0a0a0a; }
.order__delivery-empty {
  margin: 0;
  font-style: italic;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .order__cards { grid-template-columns: 1fr; }
}

.testimonials {
  padding: var(--space-9) clamp(1rem, 4vw, 3rem);
  background: var(--color-cream-dark);
  text-align: center;
}
.testimonials h2 {
  color: var(--color-black);
  margin-bottom: var(--space-7);
}
.testimonials__slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.testimonials__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonials__track {
  display: flex;
  transition: transform .6s var(--ease-out);
  will-change: transform;
}
.testimonial {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--color-white);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1rem;
  text-align: center;
  justify-items: center;
}
.testimonial__stars {
  display: flex;
  gap: 4px;
  font-size: 1.25rem;
  color: #d4d4d8;
}
.testimonial__stars span.on { color: var(--color-gold); }
.testimonial__comment {
  font-size: var(--fs-lg);
  color: var(--color-charcoal);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
  max-width: 40ch;
}
.testimonial__name {
  font-weight: 700;
  color: var(--color-red);
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.testimonials__arrow:hover {
  background: var(--color-red);
  color: var(--color-cream);
  transform: scale(1.05);
}
.testimonials__dots {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: var(--space-5);
}
.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(14,14,14,0.2);
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.testimonials__dot:hover { background: rgba(14,14,14,0.4); }
.testimonials__dot.is-active {
  background: var(--color-red);
  transform: scale(1.2);
}
@media (max-width: 640px) {
  .testimonials__slider { grid-template-columns: 1fr; }
  .testimonials__arrow { display: none; }
}

.location {
  padding: var(--space-9) clamp(1rem, 4vw, 3rem);
  background: var(--color-cream);
}
.location__inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.location__text h2 { margin-bottom: 1.5rem; color: var(--color-red); }
.location__address { font-size: var(--fs-lg); margin-bottom: 1.5rem; }
.location__hours { width: 100%; border-collapse: collapse; font-size: var(--fs-md); }
.location__hours th, .location__hours td {
  padding: 0.75rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(14,14,14,0.12);
}
.location__hours th { font-family: var(--font-display); font-weight: 400; color: var(--color-black); }
.location__map { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__map-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: var(--color-charcoal); color: var(--color-cream);
}
@media (max-width: 860px) {
  .location__inner { grid-template-columns: 1fr; }
}

.site-footer {
  background: var(--color-black);
  color: var(--color-cream);
  padding: var(--space-7) clamp(1rem, 4vw, 3rem);
  text-align: center;
}
.site-footer__inner { max-width: 700px; margin-inline: auto; display: grid; gap: var(--space-4); }
.site-footer__tagline { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--color-gold); }
.site-footer__socials { list-style: none; padding: 0; display: flex; gap: var(--space-5); justify-content: center; }
.site-footer__socials a { font-weight: 600; }
.site-footer__small { font-size: var(--fs-xs); opacity: 0.6; }
.site-footer__credit {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: 0.1rem;
  justify-content: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity .3s;
}
.site-footer__credit:hover { opacity: 1; }
.site-footer__credit img {
  height: 150px;
  width: auto;
  display: inline-block;
  margin-left: -0.75rem;
}

.newsletter {
  padding: var(--space-9) clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 30% 40%, rgba(232,184,75,0.22), transparent 60%),
    var(--color-black);
  color: var(--color-cream);
  text-align: center;
}
.newsletter__inner { max-width: 620px; margin-inline: auto; }
.newsletter h2 { color: var(--color-gold); margin-bottom: 1rem; }
.newsletter__sub { font-size: var(--fs-lg); opacity: 0.85; margin-bottom: 2rem; }
.newsletter__form {
  display: flex;
  gap: 0.5rem;
  background: var(--color-cream);
  border-radius: 999px;
  padding: 0.4rem;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.newsletter__form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--color-black);
  outline: none;
  min-width: 0;
}
.newsletter__form button { padding: 0.75rem 1.5rem; white-space: nowrap; }
.newsletter__msg { margin-top: 1rem; min-height: 1.2em; font-size: var(--fs-sm); }
.newsletter__msg[data-state=ok] { color: var(--color-gold); }
.newsletter__msg[data-state=err] { color: #ffb4ae; }

.contact {
  padding: var(--space-9) clamp(1rem, 4vw, 3rem);
  background: var(--color-cream);
}
.contact__inner { max-width: 640px; margin-inline: auto; }
.contact h2 { margin-bottom: 1rem; color: var(--color-black); }
.contact__sub { font-size: var(--fs-lg); margin-bottom: 2rem; opacity: 0.8; }
.contact__form { display: grid; gap: 1rem; }
.contact__form label { display: grid; gap: 0.35rem; font-size: var(--fs-sm); font-weight: 600; }
.contact__form input, .contact__form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(14,14,14,0.15);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  transition: border-color .2s;
}
.contact__form input:focus, .contact__form textarea:focus {
  outline: none;
  border-color: var(--color-red);
}
.contact__form textarea { resize: vertical; }
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__form .btn { justify-self: start; }
.contact__msg { min-height: 1.2em; font-size: var(--fs-sm); }
.contact__msg[data-state=ok] { color: var(--color-red); }
.contact__msg[data-state=err] { color: #b91c1c; }
@media (max-width: 640px) {
  .contact__row { grid-template-columns: 1fr; }
}

/* --- Catering & Franchise -------------------------------------------------
   Two new sections that follow the contact pattern but get their own
   identity: catering is cream w/ two photo tiles + form; franchise is a
   deep charcoal panel, no images, single column form. */
.catering {
  padding: var(--space-9) clamp(1rem, 4vw, 3rem);
  background: var(--color-cream-dark);
  border-top: 1px solid rgba(14, 14, 14, 0.06);
  position: relative;
  overflow: hidden;
}
.catering__inner {
  width: var(--container);
  margin-inline: auto;
}
.catering__text { text-align: center; margin-bottom: var(--space-6); }
.catering__text h2 { color: var(--color-black); margin-bottom: 0.75rem; }
.catering__sub { font-size: var(--fs-lg); opacity: 0.8; margin-bottom: 1.25rem; }
.catering__body { font-size: var(--fs-md); color: var(--color-charcoal); max-width: 60ch; margin-inline: auto; }
.catering__body p + p { margin-top: 0.85rem; }

/* Two photos side by side, directly under the centered title/subtitle. */
.catering__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: var(--space-6);
}
.catering__media-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(232, 184, 75, 0.3);
}
.catering__media-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.catering__media-tile:hover img { transform: scale(1.05); }

.catering__form {
  display: grid;
  gap: 1rem;
  width: 100%;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(14, 14, 14, 0.08);
  backdrop-filter: blur(6px);
}
.catering__form label { display: grid; gap: 0.35rem; font-size: var(--fs-sm); font-weight: 600; }
.catering__form input,
.catering__form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(14, 14, 14, 0.15);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  transition: border-color .2s;
}
.catering__form input:focus,
.catering__form textarea:focus { outline: none; border-color: var(--color-red); }
.catering__form textarea { resize: vertical; }
.catering__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.catering__form .btn { justify-self: start; }
.catering__msg { min-height: 1.2em; font-size: var(--fs-sm); }
.catering__msg[data-state=ok] { color: var(--color-red); }
.catering__msg[data-state=err] { color: #b91c1c; }

@media (max-width: 640px) {
  .catering__media { grid-template-columns: 1fr; }
  .catering__media-tile img { min-height: 240px; }
  .catering__row { grid-template-columns: 1fr; }
}

.franchise {
  padding: var(--space-9) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(165deg, #141414 0%, #1f1614 100%);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.franchise::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(30rem 22rem at 12% 18%, rgba(200, 55, 45, 0.18), transparent 65%),
    radial-gradient(28rem 20rem at 88% 82%, rgba(232, 184, 75, 0.14), transparent 65%);
  pointer-events: none;
}
.franchise__inner {
  position: relative;
  width: min(820px, 92vw);
  margin-inline: auto;
}
.franchise__text { text-align: center; margin-bottom: var(--space-6); }
.franchise__text h2 { color: var(--color-gold); margin-bottom: 0.6rem; }
.franchise__sub { font-size: var(--fs-lg); opacity: 0.9; margin-bottom: 1rem; }
.franchise__body { font-size: var(--fs-md); opacity: 0.85; }
.franchise__body p + p { margin-top: 0.85rem; }

.franchise__form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(232, 184, 75, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.franchise__form label {
  display: grid;
  gap: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(245, 236, 217, 0.9);
}
.franchise__form input,
.franchise__form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font: inherit;
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-cream);
  transition: border-color .2s, box-shadow .2s;
}
.franchise__form input:focus,
.franchise__form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.18);
}
.franchise__form textarea { resize: vertical; }
.franchise__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.franchise__form .btn { justify-self: start; }
.franchise__msg { min-height: 1.2em; font-size: var(--fs-sm); }
.franchise__msg[data-state=ok] { color: var(--color-gold); }
.franchise__msg[data-state=err] { color: #ffb4ae; }
@media (max-width: 640px) {
  .franchise__row { grid-template-columns: 1fr; }
  .franchise__text { text-align: center; }
}

.custom-block { background: var(--color-cream); }

@media (max-width: 640px) {
  .site-header { padding: 0.5rem 1rem; }
  .site-logo img { height: 66px; }

  .hero {
    padding: 5rem 1rem 2rem;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100dvh;
    text-align: center;
  }
  .hero__inner {
    align-items: center;
    text-align: center;
  }
  .hero__eyebrow {
    font-size: 1.05rem;
    transform: rotate(-2deg);
  }
  .hero__subheading { font-size: 1.15rem; transform: rotate(-1deg); }
  .hero__heading { text-align: center; }
  .hero__heading::after { width: 64px; height: 4px; margin: 1rem auto 0; }
  .hero__subheading { margin: 0 auto 1.75rem; text-align: center; }

  .about,
  .menu,
  .gallery,
  .testimonials,
  .location,
  .newsletter,
  .contact {
    padding: var(--space-7) 1rem;
    text-align: center;
  }

  .about h2, .menu h2, .gallery h2,
  .testimonials h2, .location h2,
  .newsletter h2, .contact h2 {
    text-align: center;
  }
  .about__text h2::after,
  .location__text h2::after,
  .menu__category-name::after {
    margin-left: auto;
    margin-right: auto;
  }
  .about__text, .location__text { text-align: center; }
  .about__text h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .menu__category-name {
    text-align: center;
    border-bottom: none;
    position: relative;
    padding-bottom: 0.75rem;
  }
  .menu__category-name::before { display: none; }
  .menu__category-name::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 0.5rem auto 0;
    background: var(--color-red);
    border-radius: 4px;
  }
  .about__body { text-align: center; }
  .location__address, .location__hours { text-align: center; margin-left: auto; margin-right: auto; }
  .location__hours th, .location__hours td { text-align: center; }

  .about__inner { gap: var(--space-5); }
  .about__image { max-width: 100%; }
  .about__image img { aspect-ratio: auto; height: auto; width: 100%; object-fit: contain; }

  .menu__category { margin-bottom: var(--space-6); }
  .menu__items {
    /* Two compact cards per row on phones (instead of one giant card) +
       tighter sizing throughout so the items feel right on a small screen. */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .menu-card { border-radius: 12px; }
  /* Phone uses a shorter fixed-height frame; cover + center keeps cards
     uniform with the 1:1 smart-cropped source served via <picture>. */
  .menu-card__image { height: 160px; }
  .menu-card__body { padding: 0.65rem 0.7rem 0.75rem; }
  .menu-card__row { gap: 0.4rem; }
  .menu-card__name { font-size: 0.82rem; line-height: 1.15; }
  .menu-card__price { font-size: 0.85rem; }
  .menu-card__desc { font-size: 0.72rem; margin-top: 0.3rem; line-height: 1.35; }
  /* Soften hover lift on touch devices (no real hover) */
  .menu-card:hover { transform: none; box-shadow: none; }

  .gallery__track { animation-duration: 30s; gap: 0.5rem; }
  .gallery__marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .gallery__item {
    width: calc((100vw - 1rem) / 3);
    height: calc((100vw - 1rem) / 3);
    border-radius: var(--radius-sm);
  }

  .testimonials h2 { margin-bottom: var(--space-5); }
  .testimonial {
    padding: var(--space-5) 1rem;
  }
  .testimonial__comment { font-size: var(--fs-md); }

  .location__inner { gap: var(--space-5); }
  .location__map { aspect-ratio: 1/1; }

  .newsletter__form {
    flex-direction: column;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 0.75rem;
  }
  .newsletter__form input {
    background: var(--color-cream);
    border-radius: 999px;
    text-align: center;
  }
  .newsletter__form button {
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
  }

  .contact__form .btn { justify-self: stretch; text-align: center; justify-content: center; }

  .site-footer { padding: var(--space-6) 1rem; }
  .site-footer__credit img { height: 120px; }
}

.fire-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.fire-core {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    #ffffff 0%,
    #ffe9a8 18%,
    #ffb347 38%,
    rgba(200, 55, 45, 0.55) 60%,
    rgba(200, 55, 45, 0) 75%
  );
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(0.4);
  filter: blur(2px);
  animation: fire-core-flash 300ms cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}
@keyframes fire-core-flash {
  0%   { opacity: 1;  transform: translate(-50%, -50%) scale(0.35); }
  40%  { opacity: 0.95; transform: translate(-50%, -50%) scale(1.1); }
  100% { opacity: 0;  transform: translate(-50%, -50%) scale(1.8); }
}

.fire-flame {
  position: fixed;
  width: 16px;
  height: 26px;
  transform: translate(-50%, -60%) scale(var(--scale, 1));
  mix-blend-mode: screen;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 85% at 50% 70%,
    #ffffff 0%,
    #fff2a8 18%,
    #ffd166 32%,
    #ff8c2a 55%,
    #c8372d 78%,
    rgba(200, 55, 45, 0) 100%
  );
  border-radius: 50% 50% 50% 50% / 65% 65% 35% 35%;
  filter: blur(1px) drop-shadow(0 0 10px rgba(255, 140, 40, 0.9));
  animation: fire-flame-rise var(--duration, 900ms) cubic-bezier(0.22, 0.7, 0.25, 1) forwards;
}
@keyframes fire-flame-rise {
  0% {
    opacity: 0;
    transform:
      translate(-50%, -60%)
      scale(calc(var(--scale, 1) * 0.4))
      skewX(0deg);
  }
  15% {
    opacity: 1;
    transform:
      translate(-50%, -70%)
      scale(calc(var(--scale, 1) * 1.1))
      skewX(-4deg);
  }
  55% {
    opacity: 0.9;
    transform:
      translate(calc(-50% + var(--drift, 0px) * 0.5), calc(-60% + var(--rise, -100px) * 0.55))
      scale(calc(var(--scale, 1) * 0.85))
      skewX(3deg);
  }
  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--drift, 0px)), calc(-60% + var(--rise, -100px)))
      scale(calc(var(--scale, 1) * 0.2))
      skewX(-2deg);
  }
}

.fire-ember {
  position: fixed;
  width: var(--size, 3px);
  height: var(--size, 3px);
  background: radial-gradient(circle, #ffffff 0%, #ffd166 40%, #ff7a29 70%, rgba(200,55,45,0) 100%);
  border-radius: 50%;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #ff9a3c, 0 0 14px #ff7a29;
  animation: fire-ember-float var(--duration, 1100ms) cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
@keyframes fire-ember-float {
  0%   { opacity: 0;   transform: translate(-50%, -50%) scale(0.3); }
  15%  { opacity: 1; }
  80%  { opacity: 0.9; }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--drift, 0px)), calc(-50% + var(--rise, -140px))) scale(0.2);
  }
}

.fire-smoke {
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 40, 20, 0.28) 0%, rgba(80, 40, 20, 0.12) 45%, rgba(80, 40, 20, 0) 70%);
  filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.4);
  animation: fire-smoke 580ms ease-out forwards;
  pointer-events: none;
}
@keyframes fire-smoke {
  0%   { opacity: 0;    transform: translate(-50%, -50%) scale(0.3); }
  25%  { opacity: 0.6; }
  100% { opacity: 0;    transform: translate(-50%, -180%) scale(1.6); }
}

/* ============================================================
   Mobile defensive layer.
   Catches anything that slipped through other media queries.
   ============================================================ */

/* Kill horizontal scroll. If anything overflows by accident, clip it
   instead of letting the user scroll sideways. */
html, body { overflow-x: clip; }
body { max-width: 100%; }

/* Anything with an image inside should never burst its container. */
img, video, iframe { max-width: 100%; height: auto; }

@media (max-width: 640px) {
  /* Slightly tame the hero heading on small phones. */
  .hero__heading { font-size: clamp(2.4rem, 11vw, 4rem); }

  /* Spice scale: let it wrap and shrink so it never runs off-screen. */
  .spice-scale {
    flex-wrap: wrap;
    white-space: normal;
    row-gap: 0.25rem;
  }
  .spice-scale__item { font-size: clamp(0.95rem, 6vw, 1.6rem); }
  .spice-scale__sep { font-size: clamp(0.8rem, 5vw, 1.4rem); }

  /* Newsletter: pill-shape doesn't work in a tiny viewport, switch to
     stacked input + full-width button. */
  .newsletter__form {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.6rem;
    gap: 0.6rem;
  }
  .newsletter__form input,
  .newsletter__form button {
    width: 100%;
    border-radius: var(--radius-sm);
  }

  /* Order section: stack delivery buttons vertically so they don't squish. */
  .order__delivery-buttons { flex-direction: column; }
  .order__delivery-btn { flex: 1 1 auto; width: 100%; }

  /* Order cards: trim padding so content fits on narrow screens. */
  .order__card { padding: var(--space-5); }
  .order__card h3 { font-size: clamp(1.4rem, 9vw, 2rem); }

  /* Location hours: compact column padding so a 24-char day name doesn't
     push the time off-screen. */
  .location__hours { font-size: var(--fs-sm); }
  .location__hours th, .location__hours td { padding: 0.55rem 0.35rem; }

  /* Contact form labels tighten up. */
  .contact__form input, .contact__form textarea { padding: 0.7rem 0.85rem; }

  /* About text padding — keep the section side gutters consistent with
     the image edge. */
  .about__text h2::after { margin-left: auto; margin-right: auto; }

  /* Footer credit image shouldn't overflow tiny phones. */
  .site-footer__credit img { height: 104px; }

  /* Touch targets: every clickable thing should be ≥ 40px tall on mobile. */
  .btn, .site-actions__order, .site-actions__call,
  .order__card-cta, .order__delivery-btn,
  .testimonials__arrow, .testimonials__dot {
    min-height: 40px;
  }
}

@media (max-width: 400px) {
  /* On the very smallest phones, let the call button collapse to icon. */
  .site-actions__call { padding: 0.45rem 0.55rem; gap: 0; }
  .site-actions__call svg { margin-right: 0; }
  .site-actions__call .call-text { display: none; }
  /* Order Now stays — it's the primary CTA. Tighten it. */
  .site-actions__order { padding: 0.45rem 0.7rem; font-size: 0.78rem; }
  .site-logo img { height: 56px; }
}
