/* ==========================================================================
   Chicago Pizza & Pasta — chicagopizzairving.com
   Brand system: BRAND-FINAL/BRAND-TOKENS.md (approved 2026-08-06)
   Tomato Red #E21D2B · Midnight Navy #082A4C · Warm Cream #FFF6E8
   Dough Gold #E7B647 (never a background) · Steel #66717D
   ========================================================================== */

/* ------------------------------------------------------------------ fonts */

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/bebas-neue-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/fraunces-italic-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(assets/fonts/inter-latin.woff2) format('woff2');
}

/* ----------------------------------------------------------------- tokens */

:root {
  --red: #e21d2b;
  --red-deep: #b81422;
  --navy: #082a4c;
  --navy-soft: #103a63;
  --navy-deep: #051d36;
  --cream: #fff6e8;
  --cream-2: #f8ead6;
  --gold: #e7b647;
  --steel: #66717d;

  --ink: var(--navy);
  --ink-soft: #46525f;
  --line: rgba(8, 42, 76, 0.14);
  --line-soft: rgba(8, 42, 76, 0.08);
  --line-dark: rgba(255, 246, 232, 0.16);

  --display: 'Bebas Neue', 'Anton', Impact, 'Haettenschweiler', sans-serif;
  --body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  --accent: 'Fraunces', Georgia, 'Times New Roman', serif;

  --wrap: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;

  --shadow-1: 0 1px 2px rgba(8, 42, 76, 0.06), 0 6px 18px rgba(8, 42, 76, 0.07);
  --shadow-2: 0 2px 6px rgba(8, 42, 76, 0.08), 0 18px 40px rgba(8, 42, 76, 0.14);

  --nav-h: 76px;
  --tick-h: 34px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------------ reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

address {
  font-style: normal;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  font-weight: 700;
}
.skip:focus {
  left: 12px;
  top: 12px;
}

/* -------------------------------------------------------------- structure */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(56px, 8vw, 104px);
}

.section-tight {
  padding-block: clamp(40px, 6vw, 72px);
}

.band {
  background: var(--navy);
  color: var(--cream);
}
.band-deep {
  background: var(--navy-deep);
  color: var(--cream);
}
.band-paper {
  background: var(--cream-2);
}

/* ------------------------------------------------------------- typography */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.band .eyebrow,
.band-deep .eyebrow {
  color: var(--gold);
}
.band .eyebrow::before,
.band-deep .eyebrow::before {
  background: var(--red);
}

.h1,
h1.h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 0.9;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 0.94;
  letter-spacing: 0.014em;
  text-transform: uppercase;
}

.h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lede {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.66;
  color: var(--ink-soft);
  max-width: 62ch;
}
.band .lede,
.band-deep .lede,
.phero .lede,
.hero .lede {
  color: rgba(255, 246, 232, 0.86);
}

.h2 + .lede,
.h1 + .lede {
  margin-top: 18px;
}

.accent {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(26px, 3vw, 40px);
}
.sec-head .h2 {
  max-width: 20ch;
}
.sec-head-copy {
  max-width: 640px;
}
.rule-gold {
  height: 3px;
  background: var(--gold);
  width: 64px;
  margin-top: 18px;
  border-radius: 2px;
}

.price {
  color: var(--red);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.band .price,
.band-deep .price {
  color: var(--gold);
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    color 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn .btn-ic {
  transition: transform 0.22s var(--ease);
}
.btn:hover .btn-ic {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-2px);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(8, 42, 76, 0.28);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
}
.band .btn-ghost,
.band-deep .btn-ghost,
.phero .btn-ghost,
.hero .btn-ghost {
  color: var(--cream);
  border-color: rgba(255, 246, 232, 0.42);
}
.band .btn-ghost:hover,
.band-deep .btn-ghost:hover,
.phero .btn-ghost:hover,
.hero .btn-ghost:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.btn-sm {
  padding: 11px 19px;
  font-size: 12px;
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-lg {
  padding: 18px 34px;
  font-size: 14.5px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid rgba(226, 29, 43, 0.28);
  padding-bottom: 3px;
  transition: border-color 0.18s var(--ease), gap 0.18s var(--ease);
}
.textlink:hover {
  border-color: var(--red);
  gap: 11px;
}
.band .textlink,
.band-deep .textlink {
  color: var(--gold);
  border-color: rgba(231, 182, 71, 0.35);
}
.band .textlink:hover {
  border-color: var(--gold);
}

/* ----------------------------------------------------------------- chips */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid;
  background: transparent;
}
.chip-halal {
  color: #8a6612;
  border-color: rgba(231, 182, 71, 0.85);
  background: rgba(231, 182, 71, 0.14);
}
.chip-halal .ic {
  color: var(--gold);
}
.chip-late {
  color: var(--navy);
  border-color: rgba(8, 42, 76, 0.3);
  background: rgba(8, 42, 76, 0.05);
}
.chips-dark .chip-halal {
  color: var(--gold);
  border-color: rgba(231, 182, 71, 0.55);
  background: rgba(231, 182, 71, 0.1);
}
.chips-dark .chip-late {
  color: var(--cream);
  border-color: rgba(255, 246, 232, 0.34);
  background: rgba(255, 246, 232, 0.07);
}
.chips-dark .chip-late .ic {
  color: var(--cream);
}

.tagpill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tagpill-red {
  background: var(--red);
  color: #fff;
}
.tagpill-gold {
  background: transparent;
  color: #8a6612;
  border: 1.5px solid var(--gold);
}

/* ---------------------------------------------------------------- ticker */

.ticker {
  background: var(--red);
  color: #fff;
  height: var(--tick-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: sticky;
  top: var(--nav-h);
  z-index: 88;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  animation: tick 38s linear infinite;
}

.tick-item {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-inline: 16px;
}
.tick-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  flex: none;
}

@keyframes tick {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ------------------------------------------------------------------- nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--navy);
  color: var(--cream);
  transition: box-shadow 0.25s var(--ease);
}
.nav.is-compact {
  box-shadow: 0 8px 26px rgba(5, 29, 54, 0.28);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: var(--nav-h);
  transition: height 0.25s var(--ease);
}
.nav.is-compact .nav-inner {
  height: 62px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.brand-mark {
  width: 46px;
  height: auto;
  transition: transform 0.3s var(--ease);
}
.nav.is-compact .brand-mark {
  transform: scale(0.86);
}
.brand:hover .brand-mark {
  transform: rotate(-7deg) scale(1.04);
}
.brand-word {
  display: block;
  line-height: 1;
}
.brand-chicago {
  display: block;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: 0.05em;
  color: var(--red);
  text-transform: uppercase;
}
.nav .brand-chicago {
  color: #ff5a63;
}
.brand-sub {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 3px;
}
.brand-sub .amp {
  color: var(--gold);
}

.nav-links {
  margin-left: auto;
}
.nav-links ul {
  display: flex;
  gap: clamp(12px, 1.8vw, 26px);
  align-items: center;
}
.nav-links a {
  display: block;
  padding: 8px 2px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.86);
  border-bottom: 2px solid transparent;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease);
}
.nav-links a:hover {
  color: #fff;
  border-color: var(--gold);
}
.nav-links a[aria-current='page'] {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 246, 232, 0.9);
}
.nav-phone:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1.5px solid rgba(255, 246, 232, 0.3);
  border-radius: 10px;
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle-bars {
  display: block;
  width: 20px;
}
.nav-toggle-bars i {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  margin: 4px 0;
}

.mobile-menu[hidden] {
  display: none !important;
}
.mobile-menu {
  display: none;
  padding: 10px var(--gutter) 22px;
  background: var(--navy-deep);
  border-top: 1px solid var(--line-dark);
}
.mobile-menu ul {
  margin-bottom: 16px;
}
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
}

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  background: var(--navy-deep);
}

.hero3d-mount {
  position: relative;
  min-height: clamp(540px, 84vh, 840px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* The hero is three stacked layers so the 3D module can take over the picture
   without taking the scrim with it:
     z0  our still photograph, or the module's own stage
     z1  the scrim, always ours, always on
     z2  the copy, ours until the module reports it has its own              */
.hero-still {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero3d-mount > .hero-scrim {
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}
/* Deterministic handoff: hidden outright, never faded, so two heroes can never
   sit stacked whatever a third party module injects into the head after us. */
.hero-still.is-hidden,
.hero-copy.is-hidden {
  display: none !important;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* the one permitted decorative gradient: the hero scrim */
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(5, 29, 54, 0.72) 0%,
      rgba(5, 29, 54, 0.24) 34%,
      rgba(5, 29, 54, 0.68) 72%,
      rgba(5, 29, 54, 0.94) 100%
    ),
    linear-gradient(90deg, rgba(5, 29, 54, 0.82) 0%, rgba(5, 29, 54, 0.16) 62%);
}

.hero-content {
  width: 100%;
  padding-block: clamp(40px, 7vw, 78px);
  color: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: flex-end;
}

.hero-clock {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 16px 8px 12px;
  border: 1.5px solid rgba(255, 246, 232, 0.28);
  border-radius: 999px;
  background: rgba(5, 29, 54, 0.5);
  backdrop-filter: blur(6px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero-clock .ic {
  color: var(--gold);
}
.clock-time {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.clock-city {
  color: rgba(255, 246, 232, 0.62);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.status-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.status-open {
  background: rgba(43, 176, 118, 0.18);
  color: #7bdcae;
}
.status-closed {
  background: rgba(226, 29, 43, 0.22);
  color: #ff9aa1;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(50px, 8.6vw, 122px);
  line-height: 0.84;
  letter-spacing: 0.008em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 6px 34px rgba(5, 29, 54, 0.55);
}
.hero-title .hl {
  color: var(--gold);
}

.hero-sub {
  margin-top: 20px;
  max-width: 46ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255, 246, 232, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 30px;
}

.hero-chips {
  margin-top: 26px;
}

/* retro neon sign */
.neon {
  flex: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 26px 17px;
  border-radius: 14px;
  border: 2px solid rgba(231, 182, 71, 0.5);
  background: rgba(5, 29, 54, 0.42);
  backdrop-filter: blur(4px);
  transform: rotate(-2.2deg);
  box-shadow: 0 0 0 1px rgba(226, 29, 43, 0.24), 0 18px 46px rgba(5, 29, 54, 0.5);
}
.neon-top {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.66);
}
.neon-main {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 0.92;
  letter-spacing: 0.05em;
  color: #fff3e0;
  text-transform: uppercase;
  animation: neon-flicker 6.5s infinite;
  text-shadow: 0 0 6px rgba(255, 226, 190, 0.9), 0 0 18px rgba(226, 29, 43, 0.85),
    0 0 40px rgba(226, 29, 43, 0.6), 0 0 74px rgba(231, 182, 71, 0.4);
}
.neon-rule {
  width: 54px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(226, 29, 43, 0.9);
}

@keyframes neon-flicker {
  0%,
  92%,
  100% {
    opacity: 1;
  }
  93% {
    opacity: 0.62;
  }
  94% {
    opacity: 1;
  }
  96% {
    opacity: 0.75;
  }
  97% {
    opacity: 1;
  }
}

.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 246, 232, 0.14);
  background: rgba(5, 29, 54, 0.62);
}
.hero-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  padding-block: 15px;
  color: rgba(255, 246, 232, 0.82);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hero-strip-inner .ic {
  color: var(--gold);
}

/* ----------------------------------------------------------------- cards */

.grid {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.card:hover {
  border-color: rgba(8, 42, 76, 0.24);
  box-shadow: var(--shadow-2);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.045);
}

.card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-name {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

.card-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--steel);
  margin: 0;
}

.card-foot {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
}
.card-foot .price {
  font-size: 19px;
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

/* designed fallback for an item with no photograph */
.nophoto {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--cream);
}
.nophoto span {
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 246, 232, 0.9);
}
.nophoto::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(231, 182, 71, 0.5);
  border-radius: 10px;
}

/* 3D tilt (best sellers) */
.tilt-wrap {
  perspective: 1000px;
}
.tilt {
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), box-shadow 0.3s var(--ease);
}
.tilt.is-tilting {
  transition: transform 0.08s linear, box-shadow 0.3s var(--ease);
}
.tilt-wrap:hover .tilt {
  --ty: -6px;
  box-shadow: var(--shadow-2);
}

/* --------------------------------------------------------- section tiles */

.tile {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--navy);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tile:hover img {
  transform: scale(1.06);
}
.tile-blank .nophoto {
  position: absolute;
  inset: 0;
}
.tile-blank .tile-veil {
  background: rgba(5, 29, 54, 0.2);
}
.tile-veil {
  position: absolute;
  inset: 0;
  background: rgba(5, 29, 54, 0.5);
  transition: background 0.3s var(--ease);
}
.tile:hover .tile-blank .nophoto {
  position: absolute;
  inset: 0;
}
.tile-blank .tile-veil {
  background: rgba(5, 29, 54, 0.2);
}
.tile-veil {
  background: rgba(5, 29, 54, 0.34);
}
.tile-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px 14px;
  z-index: 2;
  color: var(--cream);
}
.tile-label strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.tile-label span {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* ------------------------------------------------------------ story band */

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 4vw, 62px);
  align-items: center;
}
.story-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(5, 29, 54, 0.86);
  color: var(--cream);
  text-align: center;
  line-height: 1.1;
}
.story-stamp b {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.story-stamp span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.facts {
  display: grid;
  gap: 2px;
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.fact .ic {
  color: var(--gold);
  flex: none;
  margin-top: 2px;
}
.fact b {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.fact p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 246, 232, 0.76);
}
.band-paper .facts,
.paper-facts .facts {
  border-color: var(--line);
}
.band-paper .fact,
.paper-facts .fact {
  border-color: var(--line);
}
.band-paper .fact p,
.paper-facts .fact p {
  color: var(--ink-soft);
}
.band-paper .fact .ic,
.paper-facts .fact .ic {
  color: var(--red);
}

/* ----------------------------------------------------------------- deals */

.deal-block + .deal-block {
  margin-top: clamp(38px, 5vw, 62px);
}
.deal-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--gold);
}
.deal-head .h3 {
  margin-right: auto;
}
.deal-when {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--steel);
}
.band .deal-when,
.band-deep .deal-when {
  color: rgba(255, 246, 232, 0.7);
}

.deal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.deal-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream-2);
}
.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.deal-card:hover .deal-media img {
  transform: scale(1.05);
}
.deal-price {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 18px rgba(5, 29, 54, 0.3);
}
.deal-body {
  padding: 14px 16px 16px;
}
.deal-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}
.deal-body p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
}

/* --------------------------------------------------------------- reviews */

.reviews {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.review {
  padding: 26px 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fffdf8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review .ic {
  color: var(--gold);
}
.review blockquote {
  margin: 0;
  font-family: var(--accent);
  font-style: italic;
  font-size: 20px;
  line-height: 1.42;
  color: var(--navy);
}
.review cite {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: auto;
}

.ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.rating b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.rating .ic {
  color: var(--gold);
  fill: var(--gold);
}

/* ---------------------------------------------------------- hours + map */

.locate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.4vw, 48px);
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.hours-table th {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--navy);
  width: 42%;
}
.hours-table td {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.hours-table tr.is-today th,
.hours-table tr.is-today td {
  color: var(--red);
  font-weight: 700;
}
.hours-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--steel);
}

.map-box {
  position: relative;
  border: 2px dashed rgba(8, 42, 76, 0.3);
  border-radius: var(--r);
  background: var(--cream-2);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 28px 24px;
  text-align: center;
}
.map-box .ic {
  color: var(--red);
}
.map-label {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.map-addr {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 26ch;
}

.contact-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 26px;
}
.contact-card {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fffdf8;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
a.contact-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.contact-card .ic {
  color: var(--red);
  flex: none;
  margin-top: 3px;
}
.contact-card b {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 4px;
}
.contact-card span {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  min-width: 0;
  overflow-wrap: break-word;
}

/* ------------------------------------------------------------- final cta */

.cta {
  text-align: center;
  padding-block: clamp(56px, 8vw, 100px);
}
.cta .h2 {
  max-width: 18ch;
  margin-inline: auto;
}
.cta .lede {
  margin-inline: auto;
  margin-top: 16px;
}
.cta .btn-row {
  justify-content: center;
  margin-top: 30px;
}
.cta .chips {
  justify-content: center;
  margin-top: 28px;
}

/* ------------------------------------------------------------ page hero */

.phero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.phero-img {
  position: absolute;
  inset: 0;
}
.phero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.phero .hero-scrim {
  background: linear-gradient(
      90deg,
      rgba(5, 29, 54, 0.92) 0%,
      rgba(5, 29, 54, 0.62) 52%,
      rgba(5, 29, 54, 0.34) 100%
    ),
    linear-gradient(180deg, rgba(5, 29, 54, 0.5) 0%, rgba(5, 29, 54, 0.2) 45%, rgba(5, 29, 54, 0.7) 100%);
}
.phero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(52px, 8vw, 96px);
}
.phero .lede {
  margin-top: 18px;
}
.phero .btn-row {
  margin-top: 28px;
}
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.6);
  margin-bottom: 18px;
}
.crumbs a:hover {
  color: var(--gold);
}
.crumbs span[aria-hidden] {
  color: var(--red);
}

/* -------------------------------------------------------------- prose */

.prose p {
  margin-bottom: 16px;
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 42px;
  margin-bottom: 14px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose ul {
  margin-bottom: 18px;
  display: grid;
  gap: 10px;
}
.prose li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 66ch;
}
.prose li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}
.prose strong {
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.sidecard {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--cream-2);
  position: sticky;
  top: calc(var(--nav-h) + var(--tick-h) + 20px);
}
.sidecard h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.sidecard p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.ladder-table {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0 20px;
}
.ladder-table th,
.ladder-table td {
  padding: 11px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  text-align: left;
}
.ladder-table th {
  font-weight: 700;
  color: var(--navy);
}
.ladder-table td {
  text-align: right;
  color: var(--red);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.ladder-table caption {
  caption-side: top;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  padding-bottom: 8px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.photo-strip figure {
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------------------- menu page */

.menu-tools {
  position: sticky;
  top: calc(var(--nav-h) + var(--tick-h));
  z-index: 70;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
}
.menu-tools-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
  padding-block: 2px;
  padding-right: 18px;
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 34px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 calc(100% - 34px), transparent 100%);
}
.rail::-webkit-scrollbar {
  display: none;
}
.rail a {
  flex: none;
  padding: 8px 15px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fffdf8;
  transition: background 0.16s var(--ease), color 0.16s var(--ease),
    border-color 0.16s var(--ease);
  white-space: nowrap;
}
.rail a:hover {
  border-color: var(--navy);
}
.rail a.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.search {
  position: relative;
  flex: none;
  width: 240px;
}
.search .ic {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--steel);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  font: inherit;
  font-size: 14px;
  color: var(--navy);
}
.search input::placeholder {
  color: var(--steel);
}
.search input:focus {
  border-color: var(--navy);
  outline: none;
}

.search-count {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}

.msec {
  padding-top: clamp(40px, 5vw, 68px);
}
.msec-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: clamp(20px, 2.4vw, 30px);
  border-bottom: 2px solid var(--gold);
}
.msec-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}
.msec-head p {
  font-size: 14px;
  color: var(--steel);
  max-width: 52ch;
  margin-left: auto;
  text-align: right;
}
.msec-count {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.mgroup {
  margin-bottom: 34px;
}
.mgroup-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.mgroup-head h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.mgroup-head p {
  font-size: 13px;
  color: var(--steel);
}

.mitem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.mitem {
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease),
    border-color 0.24s var(--ease);
}
.mitem:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 42, 76, 0.24);
  box-shadow: var(--shadow-1);
}
.mitem-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  overflow: hidden;
}
.mitem-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.mitem:hover .mitem-media img {
  transform: scale(1.04);
}
.mitem-body {
  padding: 13px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.mitem-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--navy);
}
.mitem-desc {
  font-size: 12.5px;
  line-height: 1.48;
  color: var(--steel);
}
.mitem-price {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  font-size: 17px;
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

/* size ladder inside a pizza card */
.ladder {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 1px;
}
.ladder div {
  min-width: 0;
  text-align: center;
  padding: 2px 0;
}
.ladder dt,
.ladder .lsize {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}
.ladder .lprice {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ladder-2 {
  gap: 8px;
}
.ladder-2 .lsize {
  font-size: 11px;
}
.ladder-2 .lprice {
  font-size: 17px;
}

/* a group with one item gets a wide feature row instead of a lonely card */
.mfeature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}
.mfeature:hover {
  border-color: rgba(8, 42, 76, 0.24);
  box-shadow: var(--shadow-1);
}
.mfeature .mitem-media {
  aspect-ratio: 3 / 2;
}
.mfeature .mitem-body {
  padding: 26px 28px;
  gap: 10px;
  justify-content: center;
}
.mfeature .mitem-name {
  font-size: clamp(26px, 3vw, 36px);
}
.mfeature .mitem-desc {
  font-size: 15px;
  max-width: 46ch;
}
.mfeature .ladder {
  margin-top: 18px;
  max-width: 340px;
  padding-top: 14px;
}
.mfeature .ladder .lsize {
  font-size: 11px;
}
.mfeature .ladder .lprice {
  font-size: 17px;
}
@media (max-width: 720px) {
  .mfeature {
    grid-template-columns: 1fr;
  }
  .mfeature .mitem-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .mfeature .mitem-body {
    padding: 16px 16px 18px;
  }
}

/* list rows (sections with few photos) */
.mlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0 clamp(24px, 3vw, 48px);
}
.mrow {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mrow-main {
  flex: 1;
  min-width: 0;
}
.mrow-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}
.mrow-desc {
  font-size: 13px;
  color: var(--steel);
  margin-top: 2px;
}
.mrow-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(8, 42, 76, 0.28);
  min-width: 18px;
  transform: translateY(-4px);
}
.mrow-price {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mnote {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-sm);
  background: var(--cream-2);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.mnote b {
  color: var(--navy);
}

.no-results {
  padding: 40px 0;
  text-align: center;
  color: var(--steel);
  font-size: 15px;
}

.is-filtered-out {
  display: none !important;
}

/* floating order button (mobile) */
.float-order {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  display: none;
  box-shadow: 0 10px 30px rgba(5, 29, 54, 0.35);
}

/* ---------------------------------------------------------------- footer */

.footer {
  background: var(--navy);
  color: var(--cream);
  padding-top: clamp(46px, 6vw, 76px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(26px, 3vw, 44px);
  padding-bottom: 44px;
}
.footer-badge {
  width: 92px;
  height: auto;
  margin-bottom: 16px;
}
.footer-tag {
  font-family: var(--accent);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-nap {
  display: grid;
  gap: 9px;
  font-size: 14.5px;
  color: rgba(255, 246, 232, 0.82);
  line-height: 1.5;
}
.footer-nap a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--line-dark);
  border-radius: 10px;
  color: var(--cream);
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-hours {
  display: grid;
  gap: 7px;
}
.fh-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 246, 232, 0.8);
  font-variant-numeric: tabular-nums;
}
.fh-row span:first-child {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-links {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 246, 232, 0.82);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-base {
  border-top: 1px solid var(--line-dark);
  padding-block: 20px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 246, 232, 0.56);
}

/* ---------------------------------------------------------------- motion */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.62s var(--ease), transform 0.62s var(--ease);
}
.js .reveal[data-delay='1'].is-in {
  transition-delay: 0.07s;
}
.js .reveal[data-delay='2'].is-in {
  transition-delay: 0.14s;
}
.js .reveal[data-delay='3'].is-in {
  transition-delay: 0.21s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal,
  .js .reveal.is-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ticker-track {
    animation: none;
  }
  .neon-main {
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
  }
  .nav-phone {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: 0;
    flex: none;
  }
  .nav-cta {
    margin-left: auto;
  }
  .mobile-menu {
    display: block;
  }
  .story {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .sidecard {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 66px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .neon {
    align-self: flex-start;
  }
  .locate {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .msec-head p {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .search {
    width: 100%;
  }
  .menu-tools-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .rail {
    order: 2;
  }
  .search-count {
    display: none;
  }
  .float-order {
    display: flex;
  }
  body.has-float-order .footer {
    padding-bottom: 76px;
  }
  .mitem-grid {
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  }
  .mitem-name {
    font-size: 17px;
  }
  .ladder .lprice {
    font-size: 12px;
  }
  .ladder dt,
  .ladder .lsize {
    font-size: 8.5px;
  }
  .grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .hero-title {
    font-size: clamp(42px, 12vw, 66px);
  }
  .neon {
    padding: 15px 20px 13px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .story-stamp {
    width: 86px;
    height: 86px;
  }
  .story-stamp b {
    font-size: 24px;
  }
  .review blockquote {
    font-size: 18px;
  }
}

@media (max-width: 620px) {
  .nav-inner {
    gap: 10px;
  }
  .brand {
    gap: 8px;
  }
  .brand-mark {
    width: 38px;
  }
  .brand-chicago {
    font-size: 21px;
  }
  .brand-sub {
    font-size: 9px;
    letter-spacing: 0.15em;
  }
  .nav-cta .btn {
    padding: 9px 13px;
    font-size: 10.5px;
    letter-spacing: 0.07em;
  }
  .nav-cta .btn .btn-ic {
    display: none;
  }
  .nav-toggle {
    padding: 8px 9px;
  }
  .phero .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(5, 29, 54, 0.82) 0%,
      rgba(5, 29, 54, 0.6) 40%,
      rgba(5, 29, 54, 0.88) 100%
    );
  }
  .phero-img img {
    opacity: 0.26;
  }
}

/* Two up cards are too narrow for a five column ladder, so the ladder becomes
   a stacked size and price list. */
@media (max-width: 620px) {
  .mitem .ladder {
    grid-auto-flow: row;
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }
  .mitem .ladder div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
    padding: 0;
  }
  .mitem .ladder .lsize {
    font-size: 9.5px;
  }
  .mitem .ladder .lprice {
    margin-top: 0;
    font-size: 13px;
  }
}

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