/* ============================================================
   CAPPY'S PIZZA — COMPLETE STYLESHEET
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --red:          #C8291C;
  --red-dark:     #9C1E13;
  --red-light:    #E53A2C;
  --gold:         #F5C800;
  --gold-light:   #FFE033;
  --green:        #3A6B2A;
  --cream:        #FEF9F2;
  --warm-white:   #FFFDF8;
  --dark:         #1C0A04;
  --charcoal:     #2A1208;
  --text:         #2C1810;
  --text-muted:   #7A5245;
  --border:       #EAD8C5;
  --shadow-sm:    0 2px 10px rgba(28, 10, 4, 0.08);
  --shadow-md:    0 6px 24px rgba(28, 10, 4, 0.13);
  --shadow-lg:    0 16px 48px rgba(28, 10, 4, 0.17);
  --font-h:       'Playfair Display', Georgia, serif;
  --font-b:       'Lato', system-ui, -apple-system, sans-serif;
  --nav-h:        74px;
  --mobile-bar-h: 64px;
  --ease:         0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:       8px;
  --radius-lg:    14px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
a, button, [role="button"] { -webkit-tap-highlight-color: transparent; }

/* --- Typography helpers --- */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; color: var(--dark); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.55rem;
}

.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 0.9rem; }
.section-sub   { font-size: 1.02rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* --- Layout --- */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 5.5rem 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--dark); }
.text-center  { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0.72rem 1.6rem;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  touch-action: manipulation;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 41, 28, 0.38);
}
.btn--red:hover { background: var(--red-dark); box-shadow: 0 6px 22px rgba(200, 41, 28, 0.48); }

.btn--gold {
  background: var(--gold);
  color: #1a1000;
  box-shadow: 0 4px 18px rgba(245, 200, 0, 0.5);
}
.btn--gold:hover { background: #d9b000; box-shadow: 0 6px 24px rgba(245, 200, 0, 0.65); }

.btn--white {
  background: #fff;
  color: var(--red);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.btn--white:hover { background: #fff7ec; color: var(--red-dark); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28); }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn--outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline-red:hover { background: var(--red); color: #fff; }

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover { background: var(--dark); color: #fff; }

.btn--lg { padding: 0.9rem 2.1rem; font-size: 0.93rem; }
.btn--xl { padding: 1.05rem 2.3rem; font-size: 1rem; min-height: 60px; border-radius: 8px; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.78rem; }

.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}
.nav.scrolled {
  background: rgba(28, 10, 4, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1.15;
  border: 2px solid rgba(255, 224, 51, 0.7);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  gap: 0.7rem;
  background:
    linear-gradient(135deg, rgba(200, 41, 28, 0.25) 0%, rgba(61, 10, 6, 0.4) 100%),
    rgba(0, 0, 0, 0.35);
  box-shadow:
    0 0 20px rgba(255, 224, 51, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.nav__logo:hover {
  border-color: rgba(255, 224, 51, 1);
  box-shadow:
    0 0 30px rgba(255, 224, 51, 0.35),
    0 6px 24px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
@media (hover: hover) and (pointer: fine) {
  .nav__logo:hover { transform: translateY(-1px); }
}
.nav__logo-name {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 224, 51, 0.2);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
.nav__logo-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFE033;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 0 12px rgba(255, 224, 51, 0.3);
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav__links a {
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--ease);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  -webkit-font-smoothing: antialiased;
}
.nav__links a:hover,
.nav__links a.active { color: #fff; border-bottom-color: #FFD54F; }

.nav__order { margin-left: 0.5rem; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(20, 6, 2, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0;
  z-index: 890;
  border-top: 1px solid rgba(255,255,255,0.07);
  /* Smooth slide-down reveal */
  transform-origin: top;
}
.nav__drawer.open {
  display: flex;
  animation: drawerSlide 0.22s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes drawerSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__drawer a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer .btn--red { margin-top: 0.8rem; justify-content: center; }

/* ============================================================
   STICKY MOBILE BOTTOM BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 880;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  /* Safe area for notched iPhones */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: var(--mobile-bar-h);
}
.mobile-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255,255,255,0.8);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  background: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
  min-height: 44px;
  touch-action: manipulation;
}
.mobile-bar__btn:last-child { border-right: none; }
.mobile-bar__btn:hover,
.mobile-bar__btn:active { background: rgba(255,255,255,0.06); color: #fff; }
.mobile-bar__btn--primary { background: var(--red); color: #fff; }
.mobile-bar__btn--primary:hover { background: var(--red-dark); color: #fff; }
.mobile-bar__icon { font-size: 1.2rem; line-height: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  background: var(--red-dark);
  overflow: hidden;
  padding-bottom: 2.5rem;
}

/* Branded logo banner — padding clears fixed nav; photo stage sits below it */
.hero--brand {
  padding-top: var(--nav-h);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 181, 42, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(58, 107, 42, 0.12) 0%, transparent 50%),
    linear-gradient(155deg, #5C0F0A 0%, #9C1E13 28%, #C8291C 52%, #7A150E 78%, #3D0A06 100%);
}

.hero__brand-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero__glow--gold {
  width: 420px; height: 420px;
  top: -80px; right: -60px;
  background: rgba(245, 181, 42, 0.35);
  animation: glowPulse 6s ease-in-out infinite;
}
.hero__glow--green {
  width: 280px; height: 280px;
  bottom: 15%; left: -40px;
  background: rgba(58, 107, 42, 0.22);
  animation: glowPulse 8s ease-in-out infinite reverse;
}

/* Italian flag background */
.hero__flag {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #00A850 0% 33.33%,
    #FFFFFF 33.33% 66.66%,
    #E8192C 66.66% 100%
  );
  opacity: 0.65;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.08); opacity: 0.7; }
}

/* ============================================================
   REVIEW SLIDESHOW BAR (below hero photo)
   ============================================================ */
.review-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  width: min(100% - 3rem, 1080px);
  padding: 0.45rem 1.5rem;
  min-height: 40px;
  background: rgba(12, 4, 2, 0.72);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: 0 0 14px 14px;
  backdrop-filter: blur(6px);
}

.review-bar__badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.review-bar__stars {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.review-bar__rating {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

.review-bar__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  height: 1.4rem;
  position: relative;
}

.review-bar__slides {
  position: relative;
  height: 100%;
}

.review-bar__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(6px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: reviewSlide 25s ease-in-out infinite;
}
.review-bar__slide q {
  font-size: 0.86rem;
  color: #fff;
  font-style: italic;
  quotes: none;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-font-smoothing: antialiased;
}
.review-bar__slide cite {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  font-style: normal;
  flex-shrink: 0;
  -webkit-font-smoothing: antialiased;
}

.review-bar__slide:nth-child(1) { animation-delay: 0s; }
.review-bar__slide:nth-child(2) { animation-delay: 5s; }
.review-bar__slide:nth-child(3) { animation-delay: 10s; }
.review-bar__slide:nth-child(4) { animation-delay: 15s; }
.review-bar__slide:nth-child(5) { animation-delay: 20s; }

@keyframes reviewSlide {
  0%, 16%   { opacity: 0; transform: translateY(6px); }
  2%, 14%   { opacity: 1; transform: translateY(0); }
  18%, 100% { opacity: 0; transform: translateY(-6px); }
}

.review-bar__link {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  transition: color var(--ease);
}
.review-bar__link:hover { color: #fff; }

@media (max-width: 768px) {
  .review-bar {
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    padding: 0.4rem 1rem;
    min-height: auto;
  }
  .review-bar__badge {
    border-right: none;
    padding-right: 0;
  }
  .review-bar__viewport {
    order: 3;
    flex: 1 1 100%;
    height: 2.6rem;
  }
  .review-bar__slide {
    white-space: normal;
    flex-wrap: wrap;
    align-items: flex-start;
    line-height: 1.35;
  }
  .review-bar__slide q { font-size: 0.78rem; white-space: normal; }
  .review-bar__link { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .review-bar__slide {
    animation: none;
    opacity: 0;
    position: absolute;
  }
  .review-bar__slide:first-child {
    opacity: 1;
    position: relative;
    transform: none;
  }
}

/* ============================================================
   HERO PHOTO CARD
   ============================================================ */
.hero__photo-card {
  position: relative;
  z-index: 3;
  width: min(100% - 3rem, 760px);
  aspect-ratio: 16 / 9;
  margin: 1rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.55),
    0 12px 30px -10px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,247,236,.08);
  animation: cardSettle 0.75s cubic-bezier(0.22,1,0.36,1) both;
}

/* ============================================================
   HERO STAGE — photo backdrop with content overlaid on top.
   Dark hero color frames the stage on all sides.
   ============================================================ */
.hero__stage {
  position: relative;
  z-index: 3;
  width: min(100% - 3rem, 1080px);
  margin: 1rem auto 0;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(440px, 62vh, 600px);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.55),
    0 12px 30px -10px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,247,236,.10);
  animation: cardSettle 0.75s cubic-bezier(0.22,1,0.36,1) both;
}

.hero__stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
  z-index: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Warm color grade — subtle tint, no blur */
.hero__stage-grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,180,90,.1) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(216,38,28,.04), rgba(122,26,20,.08));
  opacity: 0.5;
}

/* Bottom-up dark gradient — readable text overlay */
.hero__stage-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(20, 6, 4, 0.0)   0%,
      rgba(20, 6, 4, 0.0)  35%,
      rgba(20, 6, 4, 0.55) 65%,
      rgba(14, 4, 2, 0.92) 100%);
}

@keyframes cardSettle {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

/* warm colour-grade overlay */
.hero__photo-grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.65;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,180,90,.18) 0%, rgba(0,0,0,0) 50%),
    linear-gradient(180deg, rgba(58,12,12,0) 40%, rgba(58,12,12,.55) 100%),
    linear-gradient(180deg, rgba(216,38,28,.10), rgba(122,26,20,.18));
}

/* vignette overlay */
.hero__photo-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 45%, rgba(0,0,0,0) 55%, rgba(26,6,6,.55) 100%);
}

/* sticker badge — top-left corner */
.hero__photo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #d8261c;
  color: #fff;
  padding: 7px 14px 8px;
  border-radius: 999px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 18px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.25);
  pointer-events: none;
  user-select: none;
}
.hero__photo-badge-star { color: #ffd96a; }

/* Hero content — overlaid at bottom of stage */
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  padding: 1.4rem 1.6rem 1.8rem;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero--intro-done .hero__content,
.hero--no-intro .hero__content {
  opacity: 1;
  transform: translateY(0);
}

.hero__truck-callout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255, 179, 71, 0.45);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  margin: 0 auto 1rem;
  max-width: 520px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s, box-shadow 0.4s ease;
}

.hero--intro-done .hero__truck-callout,
.hero--no-intro .hero__truck-callout {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero--intro-done .hero__truck-callout {
  animation: calloutGlow 2.5s ease 0.2s 2;
}

@keyframes calloutGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(245,181,42,0); }
  50%       { box-shadow: 0 0 28px rgba(245,181,42,0.35); }
}

.hero__truck-callout-icon { font-size: 2rem; line-height: 1; }
.hero__truck-callout-text {
  flex: 1;
  min-width: 180px;
  text-align: left;
}
.hero__truck-callout-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.hero__truck-callout-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

.hero__btn-truck.hero__btn-truck--pulse {
  animation: btnPulse 1.8s ease 2;
  box-shadow: 0 0 0 0 rgba(245, 181, 42, 0.6);
}

@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 181, 42, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(245, 181, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 181, 42, 0); }
}

.hero__skip-intro {
  display: block;
  margin: 1.2rem auto 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--ease);
}
.hero__skip-intro:hover { color: rgba(255,255,255,0.75); }

.hero--intro-done .hero__truck-wrap,
.hero--no-intro .hero__truck-wrap {
  opacity: 1;
  transform: translateX(calc(-50% + 115px));
}

.hero--intro-done .hero__skip-intro,
.hero--no-intro .hero__skip-intro { display: none; }

.hero__tagline {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-weight: 700;
  font-style: italic;
  color: #FFE033;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  -webkit-font-smoothing: antialiased;
}

.hero__sub {
  font-size: clamp(1.2rem, 2.9vw, 1.6rem);
  font-weight: 500;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.005em;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 14px rgba(0, 0, 0, 0.55);
  -webkit-font-smoothing: antialiased;
}
.hero__sub strong {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.012em;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 224, 51, 0.35) 60%, rgba(255, 224, 51, 0.35) 92%, transparent 92%);
  padding: 0 0.06em;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 16px rgba(0, 0, 0, 0.7);
}
.hero__sub-accent {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 700;
  font-size: 1.18em;
  color: #FFE033;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 14px rgba(0, 0, 0, 0.6),
    0 0 22px rgba(255, 224, 51, 0.25);
}

/* Live status pill row */
.hero__status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: 0 auto 1.4rem;
}
.hero__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.hero__status-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}
.hero__status-pill--live { background: rgba(76, 175, 80, 0.15); border-color: rgba(76, 175, 80, 0.4); }
.hero__status-pill--live .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 8px #4CAF50;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}
.hero__status-icon { font-size: 0.95rem; line-height: 1; }

.hero__btns {
  justify-content: center;
  gap: 0.9rem;
}

.hero__btns .btn--xl {
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
  min-height: 64px;
}

/* Stacked label + sub-label CTA layout */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 10px;
  font-weight: 700;
}
.hero__cta-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  line-height: 1.1;
}
.hero__cta-label {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero__cta-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}
.hero__cta--call {
  color: #FFE033;
  box-shadow: 0 10px 30px rgba(200, 41, 28, 0.45),
              0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
.hero__cta--call:hover {
  box-shadow: 0 14px 40px rgba(200, 41, 28, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.hero__cta--call .hero__cta-icon  { color: var(--red); font-size: 1.8rem; }
.hero__cta--call .hero__cta-label { color: #1a0a00; font-style: normal; font-size: 1.25rem; }
.hero__cta--call .hero__cta-sub   { color: #1a0a00; opacity: 0.85; font-size: 0.82rem; }

.hero__cta--order {
  color: #1a1000;
  box-shadow: 0 10px 30px rgba(245, 200, 0, 0.55),
              0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
.hero__cta--order:hover {
  color: #1a1000;
  box-shadow: 0 14px 40px rgba(245, 200, 0, 0.75),
              0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.hero__cta--order .hero__cta-icon  { color: #b88600; }
.hero__cta--order .hero__cta-label { color: #1a1000; }
.hero__cta--order .hero__cta-sub   { color: #6a4d00; opacity: 0.9; }

/* Nav over branded hero — ensure readable before scroll */
.hero--brand ~ .services-strip,
.hero--brand + .services-strip { margin-top: 0; }

.nav:not(.scrolled) .nav__logo-name,
.nav:not(.scrolled) .nav__links a { color: #fff; }


/* ============================================================
   BEST SELLERS
   ============================================================ */
.best-sellers { background: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.product-card__img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.product-card__body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.1rem;
}
.product-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   SPECIALS
   ============================================================ */
.specials { background: var(--warm-white); }

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.special-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.special-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.special-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.special-card__emoji { font-size: 2rem; line-height: 1; margin-bottom: 0.2rem; }
.special-card__title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--dark);
}
.special-card__desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.special-card__price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.3rem;
}
.special-card .btn { margin-top: 0.4rem; justify-content: center; }

/* ============================================================
   FOOD TRUCK / EVENTS
   ============================================================ */
.food-truck { background: var(--dark); overflow: hidden; }
.food-truck .eyebrow { color: var(--gold-light); }
.food-truck .section-title { color: #fff; }
.food-truck .section-sub { color: rgba(255,255,255,0.65); }

.food-truck__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.food-truck__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.food-truck__img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.food-truck__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,10,4,0.7) 0%, transparent 60%);
}
.food-truck__img-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  color: #fff;
}
.food-truck__img-caption strong { display: block; font-family: var(--font-h); font-size: 1.2rem; }
.food-truck__img-caption span { font-size: 0.8rem; opacity: 0.8; }

.event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.event-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  transition: background var(--ease), border-color var(--ease);
}
.event-tag:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.25); }

/* ============================================================
   CATERING / LARGE ORDERS
   ============================================================ */
.catering { background: var(--cream); }

.catering__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.catering-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.catering-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.catering-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(200,41,28,0.12);
  color: var(--red);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

/* ============================================================
   FORMS (shared)
   ============================================================ */
.request-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-dark { background: rgba(255,255,255,0.05); }

.request-form h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  margin-bottom: 1.3rem;
}
.form-dark h3 { color: #fff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.form-dark .form-group label { color: rgba(255,255,255,0.5); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,41,28,0.1);
}

.form-dark .form-group input,
.form-dark .form-group select,
.form-dark .form-group textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.form-dark .form-group input::placeholder,
.form-dark .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-dark .form-group input:focus,
.form-dark .form-group select:focus,
.form-dark .form-group textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(245, 181, 42, 0.15);
}
.form-dark .form-group select option { background: var(--dark); color: #fff; }

.form-submit { margin-top: 1.2rem; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.form-success__icon { font-size: 3rem; margin-bottom: 0.8rem; }
.form-success h4 { font-family: var(--font-h); font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); }
.form-dark .form-success h4 { color: #fff; }
.form-dark .form-success p  { color: rgba(255,255,255,0.6); }

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip {
  background: var(--dark);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2.2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}
.service-card:last-child { border-right: none; }
.service-card:hover,
.service-card--active { background: rgba(255,255,255,0.05); color: #fff; }

.service-card__icon { font-size: 2rem; line-height: 1; }
.service-card__title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: #fff;
  margin-top: 0.2rem;
}
.service-card__desc { font-size: 0.85rem; line-height: 1.6; flex: 1; }
.service-card__cta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.3rem;
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .service-card:last-child { border-bottom: none; }
}

/* ============================================================
   CALLOUT BOX (inside catering)
   ============================================================ */
.callout-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(200,41,28,0.07);
  border: 1px solid rgba(200,41,28,0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-top: 0.5rem;
}
.callout-box__icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.callout-box strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--dark); }
.callout-box p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   COMPACT MENU DISPLAY SLOTS
   ============================================================ */
.menu-display {
  background: var(--warm-white);
  position: relative;
  overflow: visible;
  padding-top: 7rem;
  margin-top: -2rem;
}

/* Gradient blend from hero colors into white menu */
.menu-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  background:
    /* Green glow from left */
    radial-gradient(ellipse 55% 90% at 0% 0%, rgba(0, 168, 80, 0.12) 0%, transparent 55%),
    /* Gold glow from right */
    radial-gradient(ellipse 45% 80% at 100% 0%, rgba(245, 181, 42, 0.14) 0%, transparent 50%),
    /* Red center fade */
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(200, 41, 28, 0.18) 0%, transparent 55%),
    /* Main fade to white */
    linear-gradient(180deg,
      rgba(61, 10, 6, 0.75) 0%,
      rgba(156, 30, 19, 0.35) 20%,
      rgba(200, 41, 28, 0.12) 45%,
      rgba(254, 249, 242, 0.4) 70%,
      var(--warm-white) 100%
    );
}

.menu-display > .container {
  position: relative;
  z-index: 2;
}

.menu-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.menu-slot {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--ease), transform var(--ease);
}
.menu-slot:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.menu-slot__img-wrap { overflow: hidden; }
.menu-slot__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.menu-slot:hover .menu-slot__img { transform: scale(1.05); }

.menu-slot__body {
  padding: 1rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.menu-slot__name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--dark);
}
.menu-slot__items {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   MENU FLIPPER — interactive item carousel per category
   ============================================================ */
.menu-flippers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.menu-flipper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.menu-flipper:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.menu-flipper__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
}
.menu-flipper__count {
  font-family: var(--font-b, var(--font-sans, sans-serif));
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-flipper__viewport {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4ece0;
}

.menu-flipper__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.menu-flipper__slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.menu-flipper__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-flipper__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--gold);
  color: #1c0a04;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.menu-flipper__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), transform var(--ease), color var(--ease);
  z-index: 3;
}
.menu-flipper__arrow:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.menu-flipper__arrow--prev { left: 0.6rem; }
.menu-flipper__arrow--next { right: 0.6rem; }

.menu-flipper__body {
  padding: 1rem 1.2rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.menu-flipper__name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: #2a1810;
  line-height: 1.25;
  margin: 0;
  min-height: 2.6em;
}

.menu-flipper__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-height: 2.4em;
}

.menu-flipper__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem 1rem;
  border-top: 1px dashed var(--border);
  margin-top: 0.5rem;
}

.menu-flipper__price {
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  white-space: nowrap;
}
.menu-flipper__price--muted {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
}

.menu-flipper__order {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.55rem 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--ease);
}
.menu-flipper__order:hover { background: var(--red-dark); }

.menu-flipper__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1.2rem 0.95rem;
}
.menu-flipper__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.menu-flipper__dot.active {
  background: var(--red);
  transform: scale(1.3);
}
.menu-flipper__dot:hover:not(.active) { background: var(--text-muted); }

.menu-display__cta {
  margin-top: 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
}
.menu-display__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.menu-display__cta strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; color: var(--dark); }
.menu-display__cta p { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 800px) {
  .menu-slots { grid-template-columns: repeat(2, 1fr); }
  .menu-flippers { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .menu-display__cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__glow { animation: none; }
  .hero__photo-card { animation: none; }
}

@media (max-width: 480px) {
  .menu-slots { grid-template-columns: 1fr; }
  .menu-flippers { grid-template-columns: 1fr; gap: 1rem; }
  .menu-flipper__arrow { width: 36px; height: 36px; font-size: 1.05rem; }
}

/* ============================================================
   MENU PREVIEW (kept for menu.html)
   ============================================================ */
.menu-preview { background: var(--warm-white); }

.menu-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2.8rem;
}

.menu-cat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  cursor: default;
}
.menu-cat:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.menu-cat__icon { font-size: 2.3rem; margin-bottom: 0.7rem; line-height: 1; }
.menu-cat__name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.menu-cat__desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.menu-cat .btn { width: 100%; justify-content: center; }

.menu-preview__cta {
  margin-top: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.menu-preview__cta p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   LOCAL STORY
   ============================================================ */
.story { background: var(--cream); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story__text .section-sub { margin-bottom: 1rem; max-width: 100%; }
.story__text p + p { margin-top: 0.9rem; }

.story__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}
.story__photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}
.story__photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.story__photo:hover img { transform: scale(1.04); }
.story__photo--wide { grid-column: span 2; }
.story__photo--wide img { height: 220px; }
.story__photo-label {
  padding: 0.5rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0,0,0,0.04);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--dark); }
.reviews .eyebrow { color: var(--gold-light); }
.reviews .section-title { color: #fff; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.3rem;
  margin-top: 2.8rem;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  transition: background var(--ease);
}
.review-card:hover { background: rgba(255,255,255,0.08); }

.review-card__stars { color: var(--gold-light); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.review-card__text {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.review-card__footer { display: flex; align-items: center; gap: 0.75rem; }
.review-card__av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 1rem; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-card__name { color: #fff; font-weight: 700; font-size: 0.87rem; }
.review-card__src { color: rgba(255,255,255,0.35); font-size: 0.75rem; }

.reviews__socials {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 0.55rem 1.2rem;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--ease);
}
.social-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* ============================================================
   CONTACT / LOCATION
   ============================================================ */
.contact { background: var(--warm-white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.8rem; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: box-shadow var(--ease);
}
.contact-card:hover { box-shadow: var(--shadow-sm); }
.contact-card__icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(200,41,28,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.contact-card__val {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--ease);
}
.contact-card__val:hover { color: var(--red); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.65rem 0; font-size: 0.9rem; }
.hours-table td:first-child { font-weight: 700; color: var(--dark); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr.today td { color: var(--red); }

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-box iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #100500;
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer__brand .nav__logo-name { font-size: 1.5rem; margin-bottom: 0.2rem; display: block; }
.footer__brand p { font-size: 0.86rem; line-height: 1.7; margin-top: 0.8rem; max-width: 260px; }

.footer__social { display: flex; gap: 0.65rem; margin-top: 1.3rem; }
.footer__soc-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--ease);
  background: none;
}
.footer__soc-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

.footer__col h4 {
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col ul a { font-size: 0.84rem; transition: color var(--ease); }
.footer__col ul a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom p { font-size: 0.8rem; }
.footer__bottom a { color: var(--gold-light); font-weight: 700; font-size: 0.8rem; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
}
.page-hero .section-title { color: #fff; }
.page-hero .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

.menu-section-block { padding: 4rem 0 0; }
.menu-section-block:last-of-type { padding-bottom: 4rem; }

.menu-section-block__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.menu-section-block__head h2 { font-size: 1.7rem; white-space: nowrap; }
.divider-line { flex: 1; height: 1px; background: var(--border); }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1rem;
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  transition: box-shadow var(--ease);
}
.menu-item-row:hover { box-shadow: var(--shadow-sm); }
.menu-item-row__name { font-family: var(--font-h); font-size: 1.02rem; margin-bottom: 0.25rem; }
.menu-item-row__desc { font-size: 0.81rem; color: var(--text-muted); line-height: 1.5; }
.menu-item-row__price { font-weight: 700; color: var(--red); font-size: 0.92rem; white-space: nowrap; flex-shrink: 0; }

/* ============================================================
   MENU CARDS — photo-rich item cards for menu page
   ============================================================ */
.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-card:hover .menu-card__img { transform: scale(1.06); }

.menu-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--ink, #1c0a04);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.menu-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.2rem 1.2rem;
}

.menu-card__name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text, #2a1810);
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.menu-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 0.9rem;
}

.menu-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.menu-card__price {
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  white-space: nowrap;
}
.menu-card__price--muted {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.menu-card__cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--ease);
}
.menu-card__cta:hover { color: var(--red-dark); }

.menu-card--feature {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, rgba(245, 200, 0, 0.04) 100%);
}

.order-strip {
  background: var(--red);
  padding: 3rem 0;
  text-align: center;
}
.order-strip h2 { font-family: var(--font-h); font-size: 2rem; color: #fff; margin-bottom: 0.5rem; }
.order-strip p { color: rgba(255,255,255,0.78); margin-bottom: 1.8rem; font-size: 0.95rem; }
.order-strip .btn-group { justify-content: center; }
.order-strip .btn--outline-white { border-color: rgba(255,255,255,0.5); }
.order-strip .btn--outline-white:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .food-truck__grid,
  .catering__grid,
  .story__grid,
  .contact__grid { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .nav__links  { display: none; }
  .nav__order  { display: none; } /* available on the sticky bottom bar */
  .nav__burger { display: flex; }
  .mobile-bar  { display: block; }

  /* Account for safe area inset on notched iPhones */
  body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px)); }

  /* Prevent iOS Safari from zooming in on input focus */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }

  /* More breathing room for form inputs on touch */
  .form-group input,
  .form-group select { padding: 0.75rem 0.9rem; min-height: 48px; }
  .form-group textarea { padding: 0.75rem 0.9rem; }

  /* Section spacing */
  .section { padding: 4rem 0; }

  /* Hero */
  .hero__photo-card { width: calc(100% - 2rem); margin-top: 0.75rem; }

  /* Stage falls back to photo-on-top, content-below on small screens */
  .hero__stage {
    width: calc(100% - 1.5rem);
    min-height: 0;
    display: block;
    border-radius: 16px 16px 0 0;
    margin: 0.75rem auto 0;
  }
  .hero__stage-img {
    position: relative;
    aspect-ratio: 16 / 10;
    height: auto;
  }
  .hero__stage-grade,
  .hero__stage-vignette {
    height: auto;
    bottom: auto;
    aspect-ratio: 16 / 10;
  }
  .hero__stage-vignette {
    background: linear-gradient(180deg,
      rgba(20,6,4,0) 60%,
      rgba(20,6,4,0.55) 100%);
  }
  .hero__content {
    padding: 1rem 0.9rem 1.2rem;
    background: linear-gradient(180deg, rgba(20, 6, 4, 0) 0%, rgba(14, 4, 2, 0.4) 100%);
  }
  .hero__btns { gap: 0.55rem; }
  .hero__btns .btn--lg { width: 100%; justify-content: center; }
  .hero__truck-callout { flex-direction: column; text-align: center; }
  .hero__truck-callout-text { text-align: center; }

  /* Review bar */
  .review-bar {
    width: calc(100% - 1.5rem);
    padding: 0.5rem 1rem;
    border-radius: 0 0 12px 12px;
    margin-bottom: 1rem;
  }
  .review-bar__link { display: none; }

  /* Compact logo — must fit inside nav (no bleed into review bar) */
  .nav__inner { align-items: center; }
  .nav__logo {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    max-height: calc(var(--nav-h) - 10px);
    padding: 0.28rem 0.65rem;
    line-height: 1.1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  }
  .nav__logo:hover { transform: none; }
  .nav__logo-img { height: 26px; }
  .nav__logo-name {
    font-size: 1.05rem;
    line-height: 1.1;
  }
  .nav__logo-tag {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
  }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .request-form { padding: 1.5rem 1.25rem; }
  .form-submit .btn { padding: 0.95rem 1.5rem; font-size: 0.9rem; }

  /* Catering */
  .catering-items { grid-template-columns: 1fr 1fr; gap: 0.7rem; }

  /* Story photos */
  .story__photos { grid-template-columns: 1fr; }
  .story__photo--wide { grid-column: auto; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-card { padding: 1rem 1.1rem; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Hero CTAs stack full-width on mobile for thumb reach */
  .hero__btns { gap: 0.7rem; flex-direction: column; align-items: stretch; }
  .hero__btns .btn--xl { width: 100%; justify-content: center; min-height: 64px; }
  .hero__cta { justify-content: center; }
  .hero__cta-stack { align-items: center; }

  .hero__status { gap: 0.45rem; }
  .hero__status-pill { font-size: 0.75rem; padding: 0.45rem 0.85rem; }

  /* Nav drawer touch improvements */
  .nav__drawer a { padding: 1rem 0; min-height: 48px; }

  /* Menu page: section head stacks on mobile */
  .menu-section-block__head { flex-wrap: wrap; gap: 0.75rem; }
  .menu-section-block__head h2 { font-size: 1.4rem; white-space: normal; }
  .divider-line { display: none; }

  /* Burger button larger touch target */
  .nav__burger { padding: 8px; }
}

@media (max-width: 520px) {
  .nav__logo-tag { display: none; }
  .nav__logo-img { display: none; }
  .nav__logo { max-height: calc(var(--nav-h) - 8px); padding: 0.35rem 0.7rem; }
  .nav__logo-name { font-size: 1.12rem; }

  .section { padding: 3.2rem 0; }
  .container { padding: 0 1.1rem; }

  .hero__photo-card { border-radius: 12px; width: calc(100% - 1.5rem); }
  .hero__stage { border-radius: 14px 14px 0 0; width: calc(100% - 1.25rem); }
  .review-bar { width: calc(100% - 1.25rem); border-radius: 0 0 10px 10px; }

  /* Stack ALL btn-groups vertically at small size */
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }

  /* Except the hero skip-intro button group */
  .hero__btns.btn-group { gap: 0.5rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Forms */
  .request-form { padding: 1.25rem 1rem; border-radius: 10px; }

  /* Catering items single column */
  .catering-items { grid-template-columns: 1fr; }

  /* Product and specials grids */
  .product-grid { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { gap: 1rem; }
  .review-card { padding: 1.3rem; }

  /* Services strip smaller padding */
  .service-card { padding: 1.6rem 1.25rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer__top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__brand p { max-width: 100%; }

  /* Callout box */
  .callout-box { flex-direction: column; gap: 0.65rem; }

  /* Contact cards */
  .contact-card__val { font-size: 0.9rem; }

  /* Order strip */
  .order-strip { padding: 2.5rem 0; }
  .order-strip h2 { font-size: 1.6rem; }
  .order-strip .btn-group { flex-direction: column; align-items: center; gap: 0.75rem; }
}

/* Menu cards grid: tablet (2 cols) */
@media (max-width: 980px) {
  .menu-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}

/* Fix menu items grid overflow on mobile */
@media (max-width: 680px) {
  .menu-items-grid { grid-template-columns: 1fr; }

  /* Menu cards: single column on mobile */
  .menu-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
  .menu-card__body { padding: 1rem 1.1rem 1.1rem; }
  .menu-card__name { font-size: 1.02rem; }

  /* Menu jump nav links - more compact on mobile */
  .menu-jump-link { padding: 0.75rem 0.9rem !important; font-size: 0.75rem !important; }

  /* Menu section head */
  .menu-section-block { padding: 3rem 0 0; }
  .menu-section-block__head { margin-bottom: 1.3rem; }
}

/* Very small screens */
@media (max-width: 380px) {
  :root { --nav-h: 52px; --mobile-bar-h: 60px; }

  .container { padding: 0 0.9rem; }
  .section { padding: 2.8rem 0; }

  .nav__logo { padding: 0.3rem 0.6rem; }
  .nav__logo-name { font-size: 1rem; }

  .hero__photo-card { border-radius: 10px; }
  .hero__tagline { font-size: 1rem; }
  .hero__sub { font-size: 0.85rem; }
  .hero__truck-callout { padding: 0.55rem 0.75rem; }
  .hero__truck-callout-icon { font-size: 1.5rem; }
  .hero__status-pill { font-size: 0.7rem; padding: 0.4rem 0.75rem; }
  .hero__cta-label { font-size: 0.95rem; }
  .hero__cta-sub { font-size: 0.65rem; }

  .mobile-bar__btn { font-size: 0.6rem; }
  .mobile-bar__icon { font-size: 1.1rem; }

  .section-title { font-size: clamp(1.45rem, 8vw, 1.9rem); }
  .section-sub { font-size: 0.92rem; }

  .request-form h3 { font-size: 1.15rem; }
  .btn--lg { padding: 0.85rem 1.4rem; font-size: 0.85rem; }
  .service-card { padding: 1.3rem 1rem; }
  .service-card__title { font-size: 1rem; }
}
