/* ===========================
   Pink Fire Pizza — Theme
   =========================== */
:root {
  /* Brand pink sampled from header wordmark (#fc1c54) and logo icon (#f0144c). */
  --pink: #fc1c54;
  --pink-deep: #f0144c;
  --pink-rich: #d8124a; /* deeper pink for button gradients (avoids orange cast) */
  --pink-soft: #ffe5eb;
  --flame: #ff6a3d;
  --ink: #150c12;
  --ink-2: #2a1a23;
  --paper: #fff7fb;
  --white: #ffffff;
  --muted: #6c5560;
  --line: #f5d0da;
  --shadow: 0 18px 50px rgba(240, 20, 76, 0.18);
  --radius: 18px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.05; margin: 0 0 .4em; }

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

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .52rem 1.25rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: .62rem 1.55rem; font-size: 1rem; }
.btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: var(--pink);
  box-shadow: none;
}
.btn-primary:hover {
  background: #f2f2f2;
  color: var(--pink-rich);
  filter: none;
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--pink-deep);
  border-color: var(--pink);
}
.btn-ghost:hover { background: var(--pink); color: #fff; }
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.35rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s ease, transform .15s ease;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: #ffd9ea;
  font-size: .82rem;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.6rem;
  justify-content: center;
  padding: .5rem 22px;
}
.topbar-item a { color: #fff; }
.topbar-item a:hover { color: var(--pink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 251, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .7rem 22px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.brand-logo { width: 48px; height: 48px; object-fit: contain; }
.brand-wordmark {
  height: 34px;
  width: auto;
  max-width: min(220px, 32vw);
  object-fit: contain;
}
.brand-flame { font-size: 1.7rem; filter: drop-shadow(0 3px 6px rgba(255,106,61,.5)); }
.nav-address {
  font-size: clamp(.68rem, 1.4vw, .82rem);
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.35;
  margin: 0 auto;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-address-short { display: none; }
.nav-address:hover { color: var(--pink-deep); }
.brand-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: .03em;
  color: var(--pink-deep);
  line-height: 1;
  white-space: nowrap;
}
.brand-sub { color: inherit; font-size: inherit; }

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}
.nav-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink-deep);
  background: var(--pink-soft);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.nav-social a:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-1px);
}

.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { font-weight: 600; font-size: .96rem; color: var(--ink-2); }
.nav-links a:not(.btn):hover { color: var(--pink-deep); }
.nav-links a.active { color: var(--pink-deep); }
/* Section shortcuts live in the hamburger menu; keep desktop header lean. */
.nav-links .nav-jump { display: none; }
.nav-order {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--pink);
  color: #fff !important;
  border-color: var(--pink);
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  gap: .4rem;
}
.nav-order::after {
  content: "→";
  font-weight: 700;
  line-height: 1;
}
.nav-order:hover {
  background: var(--pink-rich);
  border-color: var(--pink-rich);
  color: #fff !important;
  filter: none;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--pink-deep); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Main video (client hero) ---------- */
.main-video {
  width: 100%;
  background: var(--ink);
  line-height: 0;
}
.main-video--framed {
  background: #fff;
  padding-block: 16px;
  line-height: normal;
}
.main-video--framed .main-video-player {
  background: var(--ink);
}
.main-video--overlay .main-video-stage {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  min-height: min(64vh, 680px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--ink);
  background-image: url("../video/website3-poster.jpg?v=20260807a");
  background-size: cover;
  background-position: center;
}
.main-video--overlay .main-video-player {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  z-index: 0;
}
.main-video--overlay .hero-overlay {
  z-index: 1;
}
.main-video--overlay .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  padding: clamp(3rem, 8vw, 5rem) 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-video--overlay .hero-inner .btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-title--sm {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
}
.main-video-player {
  display: block;
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: cover;
  background: var(--ink);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.45s ease;
}
.main-video--secondary .main-video-player { max-height: min(64vh, 680px); }
.main-video:not(.main-video--overlay) .main-video-player {
  position: relative;
  max-height: min(78vh, 820px);
}
@media (prefers-reduced-motion: reduce) {
  .main-video-player { max-height: none; }
}

/* ---------- Jet's-style promo duo (gear + franchise) ---------- */
.promo-duo {
  scroll-margin-top: 72px;
  background: #fff;
  padding-block: 16px;
}
.promo-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #fff;
}
.promo-duo-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  scroll-margin-top: 72px;
}
.promo-duo-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-2);
  line-height: 0;
}
.promo-duo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-duo-media--merch {
  position: relative;
  background: #fff;
  padding: 0;
  /* Keep the keychain fully visible on a clean white field. */
  overflow: hidden;
}
.promo-duo-media--merch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(0.4rem, 1.4vw, 0.9rem);
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
}
.promo-duo-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
  text-align: center;
}
.promo-duo-panel--cream {
  background-color: #f3e8dc;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.03) 8px,
    rgba(0, 0, 0, 0.03) 9px
  );
  color: var(--ink);
}
.promo-duo-panel--flame {
  background: #e11d2a;
  color: #fff;
}
.promo-duo-panel h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: .06em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  text-transform: uppercase;
}
.promo-duo-rule {
  display: inline-block;
  width: clamp(1.5rem, 4vw, 2.5rem);
  height: 3px;
  background: currentColor;
  border-radius: 2px;
}
.promo-duo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: .62rem 1.4rem;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 6px;
  transition: transform .15s ease, box-shadow .2s ease, filter .15s ease, background .15s ease;
}
.promo-duo-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.promo-duo-btn--inverse {
  color: #e11d2a;
  border-color: #fff;
  line-height: 1.35;
  max-width: 280px;
}
.promo-duo-btn--inverse:hover {
  filter: brightness(0.9);
}

/* ---------- Legacy full-width feature bands ---------- */
.jets-feature {
  scroll-margin-top: 72px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.jets-feature-media {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: clamp(220px, 40vw, 420px);
  overflow: hidden;
  background: var(--ink-2);
  line-height: 0;
}
.jets-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jets-feature-media--merch {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--pink-soft) 0%, #ffc9e2 100%);
}
.jets-feature-media--merch img {
  width: min(28%, 200px);
  height: auto;
  object-fit: contain;
}
.jets-feature-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: clamp(2.2rem, 5vw, 3.4rem) 1.5rem;
  text-align: center;
}
.jets-feature-panel--cream {
  background-color: #f3e8dc;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.03) 8px,
    rgba(0, 0, 0, 0.03) 9px
  );
  color: var(--ink);
}
.jets-feature-panel--flame {
  background: #e11d2a;
  color: #fff;
}
.jets-feature-panel h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: .06em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  text-transform: uppercase;
}

/* ---------- Jet's-style split promos (sauces / lunch) ---------- */
.jets-split-row {
  scroll-margin-top: 72px;
  background: #fff;
  padding-block: 16px;
}
.jets-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #fff;
  align-items: stretch;
}
.jets-banner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  scroll-margin-top: 72px;
}
.jets-banner-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1.1rem;
  min-height: 64px;
}
.jets-banner-bar--pink {
  background: var(--pink-deep);
  color: #fff;
}
.jets-banner-bar--cream {
  background: #f3e8dc;
  color: var(--ink);
}
.jets-banner-bar h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  letter-spacing: .04em;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}
.jets-banner-arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .7);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .18s ease, background .2s ease, color .2s ease;
}
.jets-banner-arrow:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(2px);
}
.jets-banner-arrow--dark {
  border-color: rgba(21, 12, 18, .45);
  color: var(--ink);
}
.jets-banner-arrow--dark:hover {
  background: var(--ink);
  color: #fff;
}
.jets-banner-media {
  position: relative;
  flex: 1;
  min-height: clamp(320px, 48vw, 520px);
  overflow: hidden;
  line-height: 0;
}
.jets-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jets-banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 8, 12, .55) 0%, rgba(20, 8, 12, .2) 45%, rgba(20, 8, 12, .45) 100%);
  z-index: 1;
  pointer-events: none;
}
.jets-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.jets-banner-overlay p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 22em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.jets-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(280px, 72%);
  width: min(320px, 78%);
  padding: .72rem 1.75rem;
  background: #fff;
  color: var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--pink);
  border-radius: 6px;
  line-height: 1;
  box-shadow: none;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.jets-banner-btn:hover {
  transform: translateY(-2px);
  background: #f2f2f2;
  color: var(--pink-rich);
  filter: none;
  box-shadow: none;
}

/* ---------- Jet's-style rewards row ---------- */
.jets-rewards-row {
  scroll-margin-top: 72px;
  background: #fff;
  padding-block: 16px;
}
.jets-rewards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: clamp(320px, 45vw, 480px);
  background: #fff;
}
.jets-rewards-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  gap: .35rem;
  background: var(--pink-soft);
}
.jets-rewards-kicker {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  color: var(--pink-deep);
  letter-spacing: .01em;
  text-transform: none;
}
.jets-rewards-copy h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: .02em;
  line-height: 1.35;
  margin: 0 0 1rem;
  text-transform: none;
  max-width: 22em;
}
.jets-rewards-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 .8rem;
}
.jets-rewards-photo {
  line-height: 0;
  overflow: hidden;
  background: #fff;
}
.jets-rewards-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 45vw, 480px);
  object-fit: cover;
  display: block;
}

/* ---------- Merchandise placeholder (legacy) ---------- */
.merch-pending {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--pink-soft);
  text-align: center;
  scroll-margin-top: 72px;
}
.merch-pending-text {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
}

/* ---------- Feature grid (sauces / lunch specials) ---------- */
.feature-grid {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--white);
  scroll-margin-top: 72px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.feature-row + .feature-row { margin-top: 2.5rem; }
.feature-block h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: .03em;
  color: var(--pink-deep);
  margin-bottom: .5rem;
}
.feature-block p {
  font-size: 1.08rem;
  color: var(--ink-2);
  margin: 0;
  max-width: 420px;
}
.feature-block--right { text-align: right; }
.feature-block--right p { margin-left: auto; }
.feature-photos { display: grid; gap: 1rem; }
.feature-photos--salads { grid-template-columns: 1fr 1fr; }
.feature-photos img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.feature-photos--pizza img { aspect-ratio: 3 / 2; }

/* ---------- Deals page ---------- */
.page-hero--compact { padding: clamp(2.5rem, 7vw, 4rem) 0; }
.page-hero-lede { color: #ffd9ea; margin: .6rem 0 0; font-size: 1.05rem; }
.deals-page { padding-top: 0; }
.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.deal-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform .18s ease, box-shadow .25s ease;
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(240, 20, 76, 0.24);
}
.deal-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ---------- Footer logo ---------- */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.footer-logo {
  object-fit: contain;
  width: clamp(160px, 18vw, 240px);
  height: auto;
}
.rewards-icon { flex-shrink: 0; object-fit: contain; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  min-height: min(82vh, 720px);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 11vw, 9rem);
  background-color: var(--ink);
  background-image: url("../video/website1-poster.jpg?v=20260807a");
  background-size: cover;
  background-position: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.45s ease;
}
.hero-video.is-loading,
.main-video-player.is-loading {
  opacity: 0;
}
.hero-inner .btn-primary { margin-top: .5rem; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(255,106,61,.35), transparent 60%),
    linear-gradient(180deg, rgba(20,8,12,.35) 0%, rgba(20,8,12,.2) 40%, rgba(42,10,28,.7) 100%);
}
.hero-overlay--light {
  background:
    linear-gradient(180deg, rgba(20,8,12,.15) 0%, rgba(20,8,12,.08) 45%, rgba(20,8,12,.45) 100%);
}
.hero--cta-only {
  align-items: flex-end;
  justify-content: center;
  min-height: min(78vh, 680px);
  padding-bottom: clamp(2.5rem, 8vw, 4.5rem);
}
.hero--cta-only .hero-inner,
.main-video--cta-only .hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-video--cta-only .main-video-stage {
  justify-content: flex-end;
  padding-bottom: clamp(1.5rem, 5vw, 2.75rem);
}
.main-video--cta-only .hero-inner {
  padding-top: 0;
  padding-bottom: 0;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.75); }
.hero .btn-ghost:hover { background: #fff; color: var(--pink-deep); border-color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero { background: linear-gradient(160deg, #2a0a1c 0%, #5c0a35 55%, var(--pink-deep) 130%); }
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 700;
  font-size: .78rem;
  color: var(--pink);
  margin: 0 0 1rem;
}
.eyebrow--light { color: #ffc9e2; }
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  letter-spacing: .02em;
  margin: 0 0 .3em;
}
.text-flame {
  background: linear-gradient(90deg, #ffd166, var(--flame), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: #ffe3f1;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 1.4rem; font-size: .9rem; color: #ffc9e2; }

/* ---------- Promo strip ---------- */
.promo-strip { margin-top: -3.5rem; position: relative; z-index: 5; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.promo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
}
.promo-card h3 { font-size: 1.25rem; color: var(--pink-deep); }
.promo-card p { color: var(--muted); margin: .3rem 0 .8rem; font-size: .95rem; }
.promo-card--feature {
  background: linear-gradient(155deg, var(--pink) 0%, var(--flame) 130%);
  color: #fff;
  border: none;
}
.promo-card--feature h3, .promo-card--feature p { color: #fff; }
.promo-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--flame);
  letter-spacing: .02em;
}
.promo-card--feature .promo-price { color: #fff; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--soft { background: var(--pink-soft); }
.section--dark { background: linear-gradient(160deg, #25091a, #4a0a2c); color: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; }
.section-head h2,
.section--dark h2,
.split-body h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: .02em;
}
.section-head h2 { color: var(--pink-deep); }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.section-cta, .about-cta, .loc-cta, .app-cta { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.section-cta { justify-content: center; }
.about-cta { margin-top: 2.4rem; }

/* ---------- Card grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.food-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform .18s ease, box-shadow .25s ease;
  position: relative;
}
.food-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.food-emoji { font-size: 2.6rem; margin-bottom: .6rem; }
.food-card h3 { font-size: 1.3rem; }
.food-card p { color: var(--muted); font-size: .95rem; margin: 0 0 .9rem; }
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink-deep);
  background: var(--pink-soft);
  padding: .28rem .7rem;
  border-radius: 999px;
}

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-body p { font-size: 1.05rem; }
.section--dark .split-body p { color: #ffd9ea; }
.flame-disc {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(5rem, 16vw, 9rem);
  background: radial-gradient(circle at 50% 35%, rgba(255,106,61,.85), rgba(214,0,110,.35) 60%, transparent 75%);
  box-shadow: inset 0 0 60px rgba(255,106,61,.5);
}
.feature-list { list-style: none; padding: 0; margin: 1.6rem 0; }
.feature-list li { display: flex; align-items: center; gap: .8rem; padding: .55rem 0; font-weight: 500; }
.feature-list span { font-size: 1.3rem; }

/* ---------- App band ---------- */
.app-band { background: linear-gradient(135deg, var(--pink) 0%, var(--flame) 130%); color: #fff; }
.app-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: center; }
.app-band .eyebrow { color: #fff3f9; }
.app-band h2 { font-family: "Bebas Neue", sans-serif; font-size: clamp(2.4rem,6vw,3.6rem); }
.app-band p { font-size: 1.1rem; color: #fff; max-width: 480px; }
.app-mock { display: grid; place-items: center; }
.phone {
  width: 220px;
  height: 380px;
  background: #1c0712;
  border-radius: 34px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.phone-screen {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(165deg, #fff, var(--pink-soft));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  color: var(--ink);
  padding: 1rem;
}
.phone-flame { font-size: 3rem; }
.phone-screen strong { font-family: "Bebas Neue", sans-serif; font-size: 1.6rem; color: var(--pink-deep); letter-spacing: .02em; }
.phone-screen small { color: var(--muted); }
.phone-btn {
  margin-top: .6rem;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  padding: .45rem 1.1rem;
  border-radius: 6px;
  border: 2px solid var(--pink);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.phone-btn:hover {
  background: #f2f2f2;
  color: var(--pink-rich);
  filter: none;
  transform: translateY(-1px);
}

/* ---------- Merch ---------- */
.merch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 320px)); gap: 1.4rem; justify-content: center; }
.merch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform .18s ease, box-shadow .25s ease;
}
.merch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.merch-emoji { font-size: 3rem; margin-bottom: .5rem; }
.merch-card h3 { font-size: 1.2rem; margin-bottom: .3rem; }

/* ---------- Location ---------- */
.address { font-size: 1.15rem; font-weight: 600; }
.link-strong { color: var(--pink-deep); font-weight: 700; }
.hours-table { width: 100%; max-width: 360px; border-collapse: collapse; margin: 1rem 0; }
.hours-table th, .hours-table td { text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.hours-table td { text-align: right; color: var(--muted); }
.map-frame { width: 100%; min-height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Page hero (about) ---------- */
.page-hero {
  background: linear-gradient(160deg, #2a0a1c 0%, #5c0a35 60%, var(--pink-deep) 130%);
  color: #fff;
  text-align: center;
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}
.page-hero h1 { font-family: "Bebas Neue", sans-serif; font-size: clamp(2.8rem, 8vw, 5rem); letter-spacing: .02em; }
.narrow { max-width: 760px; }
.lead { font-size: 1.25rem; color: var(--ink); font-weight: 500; }
.narrow p { font-size: 1.08rem; color: var(--ink-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #f3d7e4; padding: 3.5rem 0 1.6rem; scroll-margin-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-sub { color: inherit; }
.footer-tag { margin-top: .6rem; color: #c89bb0; max-width: 240px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a, .footer-col p { display: block; color: #d8b3c5; margin-bottom: .5rem; font-size: .95rem; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: #b78ca1;
}

/* ---------- Section divider bars (Jet's-style header strips) ---------- */
.divider-bar { position: relative; z-index: 4; scroll-margin-top: 72px; }
.divider-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 22px;
}
.divider-label { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.divider-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 1.35rem;
}
.divider-badge {
  flex: 0 0 auto;
  background: #e11d2a;
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .22rem .55rem;
  border-radius: 4px;
}
.divider-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  letter-spacing: .04em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.divider-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform .18s ease, background .2s ease, color .2s ease;
}
.divider-arrow:hover { background: #fff; color: var(--ink); transform: translateY(3px); }
.divider-bar--pink { background: var(--pink-deep); }
.divider-bar--flame { background: #e05a2b; }
.divider-bar--dark { background: var(--ink-2); }
.divider-bar--ink { background: var(--ink); }

/* ---------- Banners (Jet's-style stacked promo panels) ---------- */
.banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  scroll-margin-top: 72px;
}
.banner-scrim { position: absolute; inset: 0; z-index: 1; }
.banner .container { position: relative; z-index: 2; width: 100%; }
.banner-content { max-width: 520px; }
.banner--right .banner-content { margin-left: auto; }
.banner h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  letter-spacing: .02em;
  line-height: .95;
}
.banner p { font-size: 1.12rem; color: #ffe3f1; margin: 0 0 1.6rem; }
.banner-emoji {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(8rem, 26vw, 22rem);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
  z-index: 1;
  opacity: .96;
}
.banner--right .banner-emoji { right: auto; left: 4%; }

.banner--wings { background: linear-gradient(120deg, #2a0a1c 0%, #7a0f3f 60%, var(--pink-deep) 130%); }
.banner--wings .banner-scrim { background: linear-gradient(90deg, rgba(20,8,12,.65) 0%, transparent 70%); }
.banner--deal { background: linear-gradient(120deg, #3a0a12 0%, #b3471f 70%, #ff6a3d 130%); }
.banner--deal .banner-scrim { background: linear-gradient(270deg, rgba(20,8,12,.6) 0%, transparent 70%); }
.banner--gear { background: linear-gradient(120deg, #20081a 0%, #5c0a35 60%, var(--pink) 130%); }
.banner--gear .banner-scrim { background: linear-gradient(90deg, rgba(20,8,12,.6) 0%, transparent 70%); }
.banner--party { background: linear-gradient(120deg, #2a0a1c 0%, #8a1239 60%, #ff6a3d 130%); }
.banner--party .banner-scrim { background: linear-gradient(270deg, rgba(20,8,12,.6) 0%, transparent 70%); }

/* ---------- Rewards / order-ahead ---------- */
.rewards { background: var(--pink-soft); padding: clamp(3.5rem, 8vw, 6rem) 0; text-align: center; scroll-margin-top: 72px; }
.rewards-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--pink-deep);
  margin-bottom: 2rem;
}
.rewards-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow);
  text-align: left;
}
.rewards-card-body { display: flex; align-items: center; gap: 1.2rem; }
.rewards-flame { font-size: 3rem; }
.rewards-card h3 { font-size: 1.5rem; color: var(--pink-deep); margin-bottom: .2rem; }
.rewards-card p { color: var(--muted); margin: 0; max-width: 420px; }

/* ---------- Video band (Pink Fire 101) ---------- */
.video-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  min-height: 64vh;
  display: flex;
  align-items: center;
  scroll-margin-top: 72px;
}
.video-band-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.video-band-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,8,12,.6), rgba(42,10,28,.78)); }
.video-band-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.video-band h2 { font-family: "Bebas Neue", sans-serif; font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: .02em; }
.video-band p { font-size: 1.12rem; color: #ffe3f1; margin: 0 auto 1.8rem; }

/* ---------- Locations ---------- */
.locations { padding: clamp(3.5rem, 8vw, 6rem) 0; scroll-margin-top: 72px; }
.locations h2 { font-family: "Bebas Neue", sans-serif; font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--pink-deep); }

/* ---------- Footer nav row + app/social ---------- */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-bottom: 1.8rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-nav a { color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; }
.footer-nav a:hover { color: var(--pink); }
.app-badges { display: flex; flex-direction: column; gap: .5rem; }
.app-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: .5rem .9rem;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  max-width: 140px;
}
.app-badge:hover { background: rgba(255,255,255,.12); }
.footer-connect { margin-top: 1.2rem; }
.social { display: flex; gap: .6rem; }
.social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 700;
}
.social a:hover {
  background: var(--pink);
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { flex-wrap: wrap; gap: .55rem .6rem; }
  .brand {
    order: 0;
    flex: 1 1 0;
    min-width: 0;
    gap: .65rem;
  }
  .brand-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .brand-wordmark {
    flex: 1 1 auto;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 28px;
    object-fit: contain;
    object-position: left center;
  }
  .nav-social { order: 1; margin-left: 0; flex-shrink: 0; }
  .nav-social a {
    width: 30px;
    height: 30px;
  }
  /* Keep logo/social on row 1; hamburger + address + Order Now on row 2. */
  .nav::before {
    content: "";
    order: 2;
    flex: 1 0 100%;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .nav-toggle { display: flex; order: 3; flex-shrink: 0; }
  .nav-address {
    order: 4;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 0 .15rem;
    border-top: 0;
    white-space: normal;
    font-size: clamp(.56rem, 2.5vw, .66rem);
    line-height: 1.25;
  }
  .nav-order {
    order: 5;
    margin-left: 0;
    flex-shrink: 0;
    padding: .42rem .95rem;
    font-size: .86rem;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: .6rem 22px 1.2rem;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
  }
  .nav-links .nav-jump { display: block; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .8rem .2rem; border-bottom: 1px solid var(--line); }

  .promo-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .app-inner { grid-template-columns: 1fr; text-align: center; }
  .app-band p { margin-left: auto; margin-right: auto; }
  .app-cta { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo { width: clamp(140px, 32vw, 200px); }

  .banner { min-height: 0; padding: clamp(3.5rem, 12vw, 6rem) 0; text-align: center; }
  .banner-content, .banner--right .banner-content { max-width: 640px; margin: 0 auto; }
  .banner-emoji { position: static; transform: none; display: block; margin: 0 auto 1rem; font-size: clamp(6rem, 30vw, 10rem); }
  .banner--right .banner-emoji { left: auto; }
  .banner-scrim { display: none; }
  .rewards-card { flex-direction: column; text-align: center; }
  .rewards-card-body { flex-direction: column; }
  .rewards-card p { margin: 0 auto; }

  .feature-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-block--right { text-align: left; }
  .feature-block--right p { margin-left: 0; }
  .feature-photos--salads { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  /* Stay side-by-side like Jet's tablet layout; stack only below 560px. */
  .promo-duo-panel {
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem) 1rem;
  }
  .promo-duo-panel h2 {
    font-size: clamp(1.35rem, 3.2vw, 2rem);
  }
  .promo-duo-btn {
    min-width: 0;
    padding: .55rem 1rem;
    font-size: .75rem;
  }
  .jets-split-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .jets-banner-media { min-height: 300px; }
  .jets-rewards-grid { grid-template-columns: 1fr; gap: 16px; }
  .jets-rewards-photo img { min-height: 280px; }
  .jets-rewards-row { padding-block: 16px; }
  .main-video--framed { padding-block: 16px; }
}

@media (max-width: 560px) {
  .topbar-inner { font-size: .75rem; gap: .2rem .9rem; }
  .nav { padding: .65rem 14px; gap: .45rem .5rem; }
  .brand { gap: .4rem; }
  .brand-logo {
    width: 38px;
    height: 38px;
  }
  .brand-wordmark { max-height: 24px; }
  .nav-social { gap: .3rem; }
  .nav-social a {
    width: 28px;
    height: 28px;
  }
  .card-grid, .merch-grid { grid-template-columns: 1fr; }
  .promo-duo-grid { grid-template-columns: 1fr; gap: 16px; }
  .promo-duo-media--merch {
    aspect-ratio: auto;
    height: 240px;
  }
  .promo-duo-media--merch img {
    padding: 0.5rem 0.75rem;
  }
  .nav-address { font-size: .55rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { align-items: center; }
  .footer-logo { width: clamp(160px, 48vw, 220px); }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 400px) {
  .nav-address {
    white-space: nowrap;
    font-size: .72rem;
  }
  .nav-address-full { display: none; }
  .nav-address-short { display: inline; }
}
