/* ============================================
   MASKOTS PIZZA & GRILL — Premium Rebuild
   Food-first · Warm editorial · Big appetite
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rye&family=Barlow:wght@400;600;700&display=swap');

:root {
  --crust: #F5E6C8;
  --crust-dark: #E8D4A8;
  --warm: #D6E6FF;
  --warm-deep: #C8DDFF;
  --sauce: #C41E1E;
  --sauce-dark: #8B1515;
  --sauce-glow: rgba(196,30,30,0.15);
  --pepper: #0D7194;
  --pepper-dark: #085A78;
  --pepper-light: #139ABD;
  --gold: #F7FFA8;
  --gold-rich: #D4C844;
  --ink: #1A1208;
  --ink-light: #5C4F3A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26,18,8,0.08);
  --shadow-md: 0 4px 20px rgba(26,18,8,0.12);
  --shadow-lg: 0 8px 40px rgba(26,18,8,0.16);
  --font-display: 'Rye', 'Georgia', serif;
  --font-body: 'Barlow', 'Helvetica Neue', system-ui, sans-serif;
  --max-w: 1600px;
  --brand-blue: #1B4F8F;
  --radius: 10px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; height: 100%; }

body {
  font-family: var(--font-body);
  background: var(--warm);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  /* iOS safe area support */
  padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom) 0;
}
html, body { width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pepper); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pepper-dark); text-decoration: underline; }

/* iOS Safari 100vh fix */
@supports (height: 100dvh) {
  .hero-food-mosaic { height: calc(100dvh - 60px); }
}
@supports not (height: 100dvh) {
  .hero-food-mosaic { height: calc(100vh - 60px); }
}

.skip-link {
  position: absolute; top: -50px; left: 0;
  background: var(--pepper); color: var(--white);
  padding: 8px 16px; z-index: 200; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============================================
   NAVIGATION — Warm crust bar
   ============================================ */
.site-header {
  background: var(--brand-blue);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(26,18,8,0.2);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.5rem; display: flex;
  align-items: center; justify-content: space-between;
  height: 60px;
}
.header-inner .main-nav { margin: 0 auto; }
.header-phone {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--gold);
  text-decoration: none; letter-spacing: 1px;
  font-weight: 700;
  transition: color .2s;
}
.header-phone:hover { color: var(--white); text-decoration: none; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.65rem; color: var(--gold);
  letter-spacing: 3px; text-decoration: none;
  transition: opacity .2s;
}
.logo-wordmark:hover { opacity: 0.85; text-decoration: none; }

/* Mobile toggle */
.menu-toggle {
  display: block; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--gold);
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); margin: 5px 0;
  transition: all .3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.main-nav {
  display: none; position: absolute;
  top: 60px; left: 0; right: 0;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.1);
}
.main-nav.open { display: block; }
.main-nav ul { list-style: none; padding: 1rem 1.5rem; }
.main-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.main-nav li:last-child { border-bottom: none; }
.main-nav a {
  display: block; padding: 0.85rem 0;
  color: rgba(255,255,255,0.85); font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: 1.5px;
  transition: color .2s;
}
.main-nav a:hover { color: var(--gold); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--gold); }

.nav-badge {
  background: var(--sauce); color: var(--white) !important;
  padding: 0.2rem 0.7rem; border-radius: 4px;
  font-size: 0.8rem; font-weight: 700;
  display: inline-block; letter-spacing: 1px;
  animation: badge-pulse 2s infinite;
}
@keyframes badge-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.75; } }

/* ============================================
   HERO — Food mosaic + floating logo plate
   ============================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
}

.hero-food-mosaic {
  position: relative; overflow: hidden;
  height: calc(100vh - 60px);
  min-height: 540px;
  width: 100vw;
  pointer-events: none;
}

.mosaic-track {
  display: flex; gap: 4px; height: 100%;
  width: max-content;
  animation: mosaic-scroll 40s linear infinite;
}
.mosaic-track:hover { animation-play-state: paused; }

@keyframes mosaic-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mosaic-item {
  flex: 0 0 auto; width: 260px; height: 100%;
  overflow: hidden; position: relative;
}
.mosaic-item.tall { width: 320px; }
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
  transition: filter .6s, transform .6s;
}
.mosaic-item:hover img {
  filter: none;
  transform: scale(1.05);
}

/* Dark overlay gradient for text readability */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,18,8,0.3) 0%,
    rgba(26,18,8,0.15) 40%,
    rgba(26,18,8,0.55) 75%,
    rgba(26,18,8,0.85) 100%
  );
  pointer-events: none; z-index: 2;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
  pointer-events: none;
}
.hero-overlay a { pointer-events: auto; }

.hero-hiring {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 6;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.35rem 0.35rem 0.55rem;
  background: rgba(255,255,255,0.65);
  border-radius: 14px;
  border: 2px solid rgba(26,18,8,0.12);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.hero-hiring img {
  height: 260px; width: auto;
  display: block;
}
.hero-hiring:hover {
  transform: translateY(-3px) rotate(-1deg);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.55));
}

.hero-map {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
  z-index: 6;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.35rem 0.35rem 0.55rem;
  background: rgba(255,255,255,0.65);
  border-radius: 14px;
  border: 2px solid rgba(26,18,8,0.12);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.hero-map img {
  height: 260px; width: auto;
  display: block;
}
.hero-map:hover {
  transform: translateY(-3px) rotate(1deg);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.55));
}

.hero-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  padding: 0.35rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.4rem;
  text-align: center;
  text-shadow: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: 2px solid rgba(26,18,8,0.12);
}

.hero-logo-plate { width: 26vw; max-width: 26vw;
  margin-top: -3.5rem;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6));
  position: relative; z-index: 5;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--gold);
  margin-top: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  line-height: 1.35;
}

.hero-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  text-decoration: none;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
  transition: transform .2s ease, filter .2s ease;
}
.hero-menu img {
  width: 415px;
  height: auto;
  display: block;
}
.hero-menu:hover {
  transform: translateY(-3px) rotate(-1deg);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.55));
}

/* ============================================
   TRIO GRID — Food photo cards
   ============================================ */
.trio-grid {
  display: grid; gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
  padding: 2rem 1.5rem;
}
.trio-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  display: block; text-decoration: none;
  background: var(--ink);
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.trio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.trio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .3s;
  filter: none;
}
.trio-card:hover img {
  transform: scale(1.06);
  filter: none;
}
.trio-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,18,8,0.75) 100%);
  pointer-events: none;
}
.trio-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 1.5rem;
  color: var(--white);
}
.trio-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; margin-bottom: 0.35rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  line-height: 1.2;
}
.trio-cta {
  font-size: 0.95rem; font-weight: 600;
  color: var(--gold); letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   FEATURE SPLIT — Sign + Kid K hiring CTA
   ============================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin: 2.5rem auto 0;
  max-width: var(--max-w);
  padding: 0 1.5rem;
}
.feature-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-md);
}
.feature-mascot {
  display: flex; justify-content: center;
}
.mascot-card {
  position: relative;
  background: var(--warm-deep);
  border-radius: 18px;
  padding: 2rem 2rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255,255,255,0.85);
}
.kidk-wrap {
  position: relative;
  display: inline-block;
  padding-top: 0.25rem;
}
.mascot-card .kidk {
  width: 230px; max-width: 70%;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}
.speech-bubble {
  position: absolute;
  top: -22px;
  right: -12px;
  transform: rotate(-4deg);
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1.15rem;
  border-radius: 18px;
  font-family: var(--font-display);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  border: 2px solid rgba(26,18,8,0.08);
}
.speech-bubble p {
  font-size: 1.15rem;
  margin: 0 0 0.15rem;
  letter-spacing: 0.5px;
}
.speech-bubble span {
  font-size: 0.9rem;
  color: var(--pepper);
}
.speech-bubble::after {
  content: '';
  position: absolute;
  left: 18px; bottom: -12px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--white);
  transform: rotate(12deg);
}
.speech-bubble::before {
  content: '';
  position: absolute;
  left: 17px; bottom: -15px;
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid rgba(26,18,8,0.12);
  transform: rotate(12deg);
}
.hire-btn { display: inline-block; margin-top: 1rem; }

@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; }
  .feature-photo img { height: auto; }
  .speech-bubble {
    top: -18px; right: -6px;
    transform: rotate(-3deg);
  }
  .hero-hiring,
  .hero-map {
    bottom: 6vh;
  }
  .hero-hiring { right: 1.5rem; }
  .hero-map { left: 1.5rem; }
  .hero-hiring img,
  .hero-map img {
    height: 100px; width: auto;
  }
  .hero-label {
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
  }
}
@media (max-width: 520px) {
  .speech-bubble {
    top: -14px; right: -2px;
    font-size: 0.95rem;
  }
  .hero-hiring,
  .hero-map {
    bottom: 2vh;
  }
  @supports (height: 1dvh) {
    .hero-hiring, .hero-map { bottom: 2dvh; }
  }
  .hero-hiring { right: 0.75rem; }
  .hero-map { left: 0.75rem; }
  .hero-hiring img,
  .hero-map img {
    height: 80px; width: auto;
  }
  .hero-menu img {
    width: 85vw;
  }
  .hero-label {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
  }
}


/* ============================================
   FOOD GALLERY — Horizontal strip
   ============================================ */
.food-gallery {
  background: var(--warm-deep);
  padding: 2.5rem 2rem 2rem;
}
.gallery-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--pepper);
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}
.gallery-track-wrapper {
  position: relative; padding: 0 3.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.gallery-track {
  display: flex; gap: 1rem;
  overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0.5rem;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  width: 280px; height: 190px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  transition: transform .3s, box-shadow .3s;
  filter: none;
}
.gallery-track img:hover { transform: scale(1.04); }

.gallery-arrow {
  display: none; position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--white); border: none;
  border-radius: 50%; cursor: pointer; z-index: 5;
  font-size: 1.3rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
  align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.gallery-arrow:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.gallery-arrow.prev { left: 0.25rem; }
.gallery-arrow.next { right: 0.25rem; }

/* ============================================
   JOBS STRIP — Minimal red bar
   ============================================ */
.jobs-strip {
  background: var(--sauce);
  color: var(--white);
  text-align: center;
  padding: 1.1rem 2rem;
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.5px;
}
.jobs-strip a { color: var(--gold); font-weight: 700; text-decoration: underline; }
.jobs-strip a:hover { color: var(--white); }

/* ============================================
   BOTTOM CTA — Directions + Facebook
   ============================================ */
.bottom-cta {
  max-width: var(--max-w); margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex; align-items: center;
  justify-content: center; gap: 2rem;
  flex-wrap: wrap;
}
.bottom-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--ink); color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem; border-radius: var(--radius);
  text-decoration: none; letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.bottom-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--sauce-dark);
  text-decoration: none;
}
.bottom-btn.fb {
  background: #1877F2; padding: 0.75rem 1.5rem;
}
.bottom-btn.fb img { height: 30px; width: auto; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--brand-blue);
  color: rgba(255,255,255,0.9);
  text-align: center; padding: 1.5rem 1rem;
  font-size: 0.95rem;
}
.site-footer a { color: var(--white); }
.site-footer p { margin-bottom: 0.25rem; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88);
  display: none; align-items: center; justify-content: center;
  z-index: 300; padding: 2rem;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: var(--white);
  font-size: 3rem; cursor: pointer; line-height: 1;
}

/* ============================================
   INNER PAGES — Shared
   ============================================ */
main { max-width: var(--max-w); margin: 0 auto; }

/* Full-bleed sections break out of main container */
.hero,
.page-banner,
.food-gallery,
.jobs-strip,
.site-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Ensure full-bleed sections don't force horizontal scroll */
.hero,
.page-banner,
.food-gallery,
.jobs-strip,
.site-footer {
  overflow-x: clip;
}

/* Page hero for inner pages */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.55) saturate(1.1);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,18,8,0.2) 0%, rgba(26,18,8,0.7) 100%);
  pointer-events: none;
}
.page-hero-text {
  position: relative; z-index: 2; padding: 3rem 1.5rem;
}
.page-hero-text h1 {
  font-family: var(--font-display);
  font-size: 2.6rem; color: var(--gold);
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}
.page-hero-text p {
  color: rgba(255,255,255,0.9); font-size: 1.15rem;
}

/* Simple page wrapper */
.simple-page {
  max-width: 900px; margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

/* Buttons (shared) */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  background: var(--sauce); color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem; border-radius: var(--radius);
  text-decoration: none; letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--sauce-dark);
  text-decoration: none;
}

/* Page banner (inner pages — matches menu-header style) */
.page-banner {
  position: relative; overflow: hidden;
  background: var(--brand-blue); color: var(--white);
  padding: 3rem 1.5rem; text-align: center;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: 2.4rem; color: var(--white); margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  letter-spacing: 2px;
}
.page-banner p {
  opacity: 0.9; font-size: 1.05rem;
  font-family: var(--font-body);
}

/* Section title (inner pages — fallback, now redirected to page-banner) */
.section-title {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--pepper);
  text-align: center; margin: 2rem 0 1rem;
  letter-spacing: 1px;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-header {
  position: relative; overflow: hidden;
  background: var(--brand-blue); color: var(--white);
  padding: 2.5rem 1.5rem; text-align: center;
}
.menu-header h1 {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--white); margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.menu-header p { opacity: 0.9; font-size: 1.05rem; }
.menu-header .phone-big {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--white);
  margin-top: 0.5rem;
  text-decoration: none;
}
.menu-header .phone-big:hover { color: var(--gold); text-decoration: none; }

.menu-container {
  background: var(--warm);
  padding: 2rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.menu-columns { display: grid; gap: 1.5rem; }
.menu-col {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--crust);
}
.menu-col h3 {
  font-family: var(--font-display); color: var(--sauce);
  font-size: 1.4rem; text-align: center;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.5rem; margin-bottom: 1rem;
}
.menu-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(26,18,8,0.1);
  font-size: 1.05rem;
  gap: 0.15rem 0;
}
.menu-item:last-child { border-bottom: none; }
.menu-item .name {
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 0.5rem;
}
.menu-item .name .desc {
  display: inline;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-top: 0;
}
.menu-item .name.desc {
  width: 100%;
  flex-basis: 100%;
  line-height: 1.4;
}
.menu-item .price {
  font-weight: 700;
  color: var(--sauce);
  white-space: nowrap;
  flex: 0 0 auto;
  text-align: right;
}
.menu-item > .desc {
  width: 100%;
  flex-basis: 100%;
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-top: 0.15rem;
}
.menu-footer {
  text-align: center; margin-top: 2rem;
  padding-top: 1.5rem; border-top: 2px solid var(--crust);
  font-size: 0.9rem; color: var(--ink-light);
}

/* ============================================
   CATERING PAGE
   ============================================ */
.catering-hero { text-align: center; margin: 0; }
.catering-hero img {
  width: 100%; max-height: 400px;
  object-fit: cover;
}
.catering-grid { display: grid; gap: 1.5rem; margin: 2rem 1.5rem; }
.catering-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  border: 1px solid var(--crust);
}
.catering-card img {
  width: 100%; height: 230px; object-fit: cover;
  object-position: center 70%;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: none;
}
.catering-card img.any-party { object-position: center 70%; }
.catering-card img.team-packages { object-position: center 45%; }
.catering-card img.call-today { object-position: center 35%; }
.catering-card h3 {
  font-family: var(--font-display); color: var(--pepper);
  font-size: 1.4rem; margin: 1rem 1.25rem 0.5rem;
}
.catering-card p {
  flex: 1; font-size: 1.05rem; line-height: 1.6;
  margin: 0 1.25rem 1rem; color: var(--ink-light);
}
.catering-card .btn { margin: 0 1.25rem 1.25rem; }

/* ============================================
   TEAM PARTY PAGE
   ============================================ */
.party-layout {
  display: grid; gap: 2rem;
  margin: 1.5rem; padding-bottom: 2rem;
}
.party-info { text-align: center; }
.party-info img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); margin: 0 auto;
}
.party-info p {
  font-size: 1.1rem; max-width: 600px;
  margin: 1rem auto 0; color: var(--ink-light);
}

.party-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--crust);
}
.party-form-wrap h2 {
  font-family: var(--font-display); color: var(--pepper);
  font-size: 1.6rem; text-align: center; margin-bottom: 1rem;
}

.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block; margin-bottom: 0.35rem;
  font-weight: 700; font-size: 1rem; color: var(--ink);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid var(--crust);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1.05rem;
  background: var(--white); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--pepper);
  box-shadow: 0 0 0 3px rgba(13,113,148,0.15);
  outline: none;
}
.form-row textarea { resize: vertical; min-height: 100px; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.party-photos {
  display: grid; gap: 1rem; margin: 2rem 0;
}
.party-photos img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  width: 100%; height: 260px;
  object-fit: cover;
  object-position: center 70%;
}
.party-photos img.photo-1 { object-position: center 70%; }
.party-photos img.photo-2 { object-position: center 35%; }
.party-photos img.photo-3 { object-position: center 40%; }
.party-photos img.photo-4 { object-position: center 35%; }

/* ============================================
   JOBS PAGE
   ============================================ */
.job-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-md);
  text-align: center; margin: 2rem 1.5rem;
  border: 1px solid var(--crust);
}
.jobs-layout {
  display: grid; gap: 2rem;
  margin: 2rem 1.5rem 3rem;
}
.jobs-panel { display: flex; justify-content: center; }
.jobs-panel .job-card { margin: 0; max-width: 520px; width: 100%; }
.job-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1rem; }
.btn.ghost { background: transparent; color: var(--sauce); border: 2px solid var(--sauce); box-shadow: none; }
.btn.ghost:hover { background: var(--sauce); color: var(--white); }
.jobs-photo {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--crust);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.jobs-photo img { width: 100%; height: 100%; display: block; object-fit: cover; max-height: 360px; }
.jobs-caption { padding: 1rem 1.25rem; font-size: 0.98rem; color: var(--ink-light); text-align: center; }
.job-card h2 {
  font-family: var(--font-display); color: var(--sauce);
  font-size: 1.8rem; margin-bottom: 1rem;
}
.job-card p { font-size: 1.05rem; margin-bottom: 0.75rem; line-height: 1.6; }
.job-card .btn { margin-top: 1rem; }

/* ============================================
   STORE / COMING SOON
   ============================================ */
.coming-soon-bubble {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3rem; box-shadow: var(--shadow-md);
  text-align: center; margin: 2rem 1.5rem;
  border: 1px solid var(--crust);
}
.coming-soon-bubble h2 {
  font-family: var(--font-display); color: var(--pepper);
  font-size: 2rem; margin-bottom: 1rem;
}
.coming-soon-bubble p { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.6; }
.coming-soon-bubble img {
  border-radius: var(--radius); margin: 0 auto 1.5rem; max-width: 400px;
}

/* ============================================
   MAP PAGE
   ============================================ */
.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--white);
  margin: 1.5rem;
}
.map-container iframe {
  width: 100%; height: 450px; border: 0; display: block;
}
.map-layout { display: grid; gap: 2rem; margin: 2rem 1.5rem 3rem; }
.map-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-md);
  border: 1px solid var(--crust);
  text-align: center;
}
.map-card h2 { font-family: var(--font-display); color: var(--pepper); margin-bottom: 0.5rem; }
.map-note { text-align: center; color: var(--ink-light); font-size: 0.98rem; margin-top: 0.75rem; }
.map-panel { display: flex; flex-direction: column; gap: 1rem; }

/* ============================================
   RESPONSIVE — Desktop breakpoint
   ============================================ */
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .main-nav {
    display: block !important; position: static;
    background: none; border: none;
  }
  .main-nav ul {
    display: flex; gap: 2rem; padding: 0;
    align-items: center; justify-content: center;
  }
  .main-nav li { border: none; }
  .main-nav a {
    display: inline; padding: 0;
    font-family: var(--font-display);
    font-size: 1.1rem; letter-spacing: 1.5px;
  }
  .header-inner { justify-content: center; position: relative; }
  .header-phone { position: absolute; left: 1.5rem; top: 50%; transform: translateY(-50%); }

  /* Hero taller on desktop */
  .hero-food-mosaic { min-height: 500px; }
  .mosaic-item { width: 370px; }
  .mosaic-item.tall { width: 440px; }
  .hero-tagline { font-size: 1.7rem; }

  /* Trio grid: 3 columns */
  .trio-grid { grid-template-columns: repeat(3, 1fr); padding: 3rem 2rem; }
  .trio-card { aspect-ratio: 3/4; }
  .trio-body h2 { font-size: 1.8rem; }

  .gallery-arrow { display: flex; }

  .menu-columns { grid-template-columns: repeat(3, 1fr); }
  .catering-grid { grid-template-columns: repeat(3, 1fr); }
  .party-photos { grid-template-columns: repeat(2, 1fr); }
  .party-layout { grid-template-columns: 1fr 1fr; align-items: start; margin: 2rem; }
}

@media (min-width: 1100px) {
  .hero-tagline { font-size: 1.9rem; }
  .hero-mascot { width: 200px; }
  .trio-grid { padding: 3.5rem 3rem; }
  .gallery-track img { width: 320px; height: 220px; }
  .jobs-layout { grid-template-columns: 1fr 1.1fr; align-items: center; }
  .map-layout { grid-template-columns: 1fr 1.2fr; align-items: center; }
}

@media (max-width: 767px) {
  /* Mobile hero: full viewport height, content centered */
  .hero-food-mosaic { height: calc(100vh - 60px); min-height: 420px; }
  @supports (height: 100dvh) {
    .hero-food-mosaic { height: calc(100dvh - 60px); }
  }
  .hero-overlay {
    justify-content: flex-start;
    padding: 30px 1.25rem 0;
  }
  .hero-tagline { font-size: 1.05rem; }
  .hero-logo-plate { width: 78vw; max-width: 78vw; margin-top: 0; }
  .hero-menu { margin-top: 0.5rem; }
  .hero-menu img { width: 78vw; }
  .hero-hiring, .hero-map { bottom: 2vh; }
  @supports (height: 1dvh) {
    .hero-hiring, .hero-map { bottom: 2dvh; }
  }
  .hero-hiring img, .hero-map img { max-width: 40vw; }
  .trio-grid { gap: 2rem; padding: 2.5rem 1.25rem; }
  .trio-card { aspect-ratio: 3/4; }
  .trio-body { padding: 1.25rem; }
  .food-gallery { padding: 3rem 1.25rem 2.5rem; }
  .gallery-track-wrapper { padding: 0 2.5rem; }
  .gallery-track img { width: 220px; height: 155px; }
  .bottom-cta { padding: 3rem 1.25rem; }
  .page-banner { padding: 2rem 1rem; }
  .page-banner h1 { font-size: 1.8rem; }
  /* Pro Shop: keep image contained on small screens */
  .coming-soon-bubble img { max-width: 100%; height: auto; }
}