/* ============================================================
   Downtown Pizza — global styles
   Mobile-first. No build step. Variables drive theming.
   ============================================================ */

:root {
  --c-red:        #EE3E36;
  --c-red-dark:   #C32A23;
  --c-green:      #2FC36C;
  --c-green-dark: #229355;
  --c-ink:        #1a1a1a;
  --c-ink-soft:   #4a4a4a;
  --c-mute:       #757575;
  --c-line:       #e8e6e2;
  --c-bg:         #ffffff;
  --c-mist:       #faf7f2;
  --c-cream:      #fff8ec;
  --c-shadow:     0 8px 24px rgba(0,0,0,.08);
  --c-shadow-lg:  0 20px 60px rgba(0,0,0,.18);

  --ff-display: 'Bebas Neue', 'Oswald', Impact, Arial Black, sans-serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-pill: 999px;

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
}

/* Reset / base ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-red-dark); }
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  letter-spacing: 1px;
  line-height: 1.05;
  margin: 0 0 .5em;
  color: var(--c-ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
p  { margin: 0 0 1em; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--c-ink); color: #fff;
  padding: 12px 16px; z-index: 100; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--c-green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Location bar — replaces the old utility bar.
   Big, prominent, color-coded so guests always know which shop. */
.loc-bar {
  background: var(--c-ink);
  color: #fff;
  font-size: .9rem;
  padding: 10px 0;
  border-bottom: 4px solid var(--c-red);
}
.loc-bar--spartanburg { border-bottom-color: var(--c-red); }
.loc-bar--inman       { border-bottom-color: var(--c-green); }
.loc-bar--neutral     { border-bottom-color: #ffd84a; background: #1a1a1a; }

.loc-bar .wrap {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.loc-bar a { color: #fff; }
.loc-bar a:hover { color: #ffd84a; }

.loc-bar__chip {
  display: inline-flex; align-items: center; gap: .65rem;
  font-weight: 700; letter-spacing: .3px;
}
.loc-bar__pin { font-size: 1.25rem; line-height: 1; }
.loc-bar__city {
  font-family: var(--ff-display);
  font-size: 1.4rem; letter-spacing: 2px; text-transform: uppercase;
  color: #fff;
}
.loc-bar--spartanburg .loc-bar__city { color: #fff; }
.loc-bar--inman .loc-bar__city { color: #fff; }
.loc-bar__addr { color: #cfcdc8; font-weight: 500; font-size: .92rem; }
.loc-bar__addr a { color: #cfcdc8; text-decoration: underline; text-underline-offset: 2px; }
.loc-bar__addr a:hover { color: #fff; }

.loc-bar__meta {
  display: inline-flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-size: .88rem;
}
.loc-bar__phone, .loc-bar__hours, .loc-bar__switch, .loc-bar__choose {
  display: inline-flex; align-items: center; gap: .4rem;
}
.loc-bar__hours .dot {
  display: inline-block; width: 9px; height: 9px;
  border-radius: 50%; background: var(--c-red);
}
.loc-bar__hours.is-open .dot {
  background: var(--c-green);
  box-shadow: 0 0 0 3px rgba(63,182,96,.25);
}
.loc-bar__switch {
  background: rgba(255,255,255,.1);
  padding: 4px 12px; border-radius: var(--r-pill);
  font-weight: 600; font-size: .82rem;
}
.loc-bar__switch:hover { background: rgba(255,216,74,.2); color: #ffd84a; }

.loc-bar__choose {
  background: rgba(255,255,255,.1);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: .9rem;
  border: 1px solid rgba(255,255,255,.2);
}
.loc-bar__choose:hover {
  background: var(--c-red); color: #fff; border-color: var(--c-red);
}

/* Preview-mode badges shown on test/IONOS-preview hosts so it's
   obvious this is a preview, not a real production domain. */
.loc-bar--preview {
  /* dashed top border + striped tag = visual "preview" cue */
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
.loc-bar--preview::before {
  content: ''; display: block;
  height: 3px;
  background: repeating-linear-gradient(
    -45deg,
    #ffd84a 0 8px, transparent 8px 16px
  );
  margin: -10px 0 8px; /* overlay top edge of bar */
}
.loc-bar__preview-tag {
  display: inline-block;
  background: #ffd84a; color: #1a1a1a;
  font-size: .68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--r-pill);
  margin-right: .35rem;
}
.loc-bar__clear {
  font-size: .78rem; opacity: .65;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.2);
}
.loc-bar__clear:hover { opacity: 1; background: rgba(255,255,255,.1); }

@media (max-width: 700px) {
  .loc-bar .wrap { gap: .5rem; flex-direction: column; align-items: flex-start; }
  .loc-bar__city { font-size: 1.15rem; }
  .loc-bar__meta { gap: .75rem; }
}

/* Menu page location switcher (sticky-ish band under banner) */
.loc-switcher {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  padding: 1rem 0;
  position: sticky; top: 0; z-index: 40;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.loc-switcher .wrap {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
}
.loc-switcher__label {
  font-weight: 600; color: var(--c-ink-soft); font-size: .92rem;
}
.loc-switcher__pills { display: inline-flex; gap: .5rem; flex-wrap: wrap; }
.loc-switcher__pills a {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 8px 16px;
  border: 2px solid var(--c-line);
  border-radius: var(--r-pill);
  color: var(--c-ink-soft);
  font-size: .92rem;
  background: #fff;
  transition: all .15s;
}
.loc-switcher__pills a:hover { border-color: var(--c-red); color: var(--c-red); }
.loc-switcher__pills a.is-active {
  background: var(--c-ink); color: #fff; border-color: var(--c-ink);
}
.loc-switcher__pills a.is-active strong { color: #ffd84a; }
.loc-switcher__pills .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.loc-switcher__pills .dot--red { background: var(--c-red); }
.loc-switcher__pills .dot--green { background: var(--c-green); }

/* Header / nav --------------------------------------------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.site-header .wrap {
  display: flex; align-items: center;
  gap: 1rem;
  padding-top: .75rem; padding-bottom: .75rem;
}
.brand { display: inline-flex; flex-shrink: 0; }
.brand .dp-logo { width: 180px; height: auto; }

.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 1.5rem;
}
.primary-nav a {
  color: var(--c-ink); font-weight: 600; font-size: .95rem;
  padding: 8px 4px; position: relative;
}
.primary-nav a:hover { color: var(--c-red); }
.primary-nav a[aria-current="page"] {
  color: var(--c-red);
}
.primary-nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--c-red); border-radius: 3px;
}

.cta {
  background: var(--c-red);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: var(--c-shadow);
  transition: transform .15s, background .15s;
}
.cta:hover { background: var(--c-red-dark); transform: translateY(-1px); }
.cta.cta--green { background: var(--c-green); }
.cta.cta--green:hover { background: var(--c-green-dark); }
.cta.cta--ghost {
  background: transparent; color: var(--c-ink) !important;
  border: 2px solid var(--c-ink);
  box-shadow: none;
}
.cta.cta--ghost:hover { background: var(--c-ink); color: #fff !important; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 10px;
  margin-left: auto;
}
.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 26px; height: 3px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle .bars { position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ''; position: absolute; left: 0;
}
.nav-toggle .bars::before { top: -8px; }
.nav-toggle .bars::after  { top:  8px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after  { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .site-header .wrap { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .cta { order: 2; margin-left: auto; padding: 10px 16px; font-size: .85rem; }
  .nav-toggle { order: 3; }
  .primary-nav { width: 100%; order: 4; margin: 0; }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .primary-nav.is-open ul { max-height: 500px; padding-top: .5rem; }
  .primary-nav li { border-top: 1px solid var(--c-line); }
  .primary-nav a { display: block; padding: 14px 4px; }
  .primary-nav a[aria-current="page"]::after { display: none; }
  .brand .dp-logo { width: 150px; }
}

/* Sticky bottom CTA on mobile ------------------------------ */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #fff; border-top: 1px solid var(--c-line);
  z-index: 60;
  padding: 6px env(safe-area-inset-right) calc(6px + env(safe-area-inset-bottom)) env(safe-area-inset-left);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.sticky-cta a {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 4px;
  font-size: .72rem; font-weight: 700; color: var(--c-ink);
  text-transform: uppercase; letter-spacing: .5px;
}
.sticky-cta a:nth-child(3) { color: var(--c-red); }
.sticky-cta a:nth-child(3) svg { color: var(--c-red); }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
}

/* Hero ------------------------------------------------------ */
/* Home-page hero only. Pizza photo with a neutral dark left-side
   gradient (no red tint) so the pizza's real colors come through. The
   gradient + text-shadow keep "THIN. CRISPY. WELL-DONE." legible. */
.hero {
  position: relative;
  background:
    linear-gradient(
      100deg,
      rgba(0, 0, 0, .65) 0%,
      rgba(0, 0, 0, .45) 45%,
      rgba(0, 0, 0, .15) 80%,
      rgba(0, 0, 0, 0)   100%
    ),
    url('/assets/images/hero-pizza.jpeg') center/cover no-repeat,
    #1a1a1a;
  color: #fff;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}
.hero h1,
.hero p.lead,
.hero__location-badge {
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}
@media (max-width: 860px) {
  /* Single-column mobile: top-to-bottom dark gradient so text stays
     sharp across the whole hero (no location card on the right to anchor it). */
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, .55) 0%,
        rgba(0, 0, 0, .42) 55%,
        rgba(0, 0, 0, .25) 100%
      ),
      url('/assets/images/hero-pizza.jpeg') center/cover no-repeat,
      #1a1a1a;
  }
  .hero h1,
  .hero p.lead,
  .hero__location-badge {
    text-shadow: 0 2px 16px rgba(0, 0, 0, .7);
  }
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.06) 0, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.05) 0, transparent 30%);
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) {
  .hero .wrap { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
  margin-bottom: 1rem;
}
.hero h1 .accent { color: #ffe76c; display: block; }
.hero p.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  max-width: 56ch;
  opacity: .95;
  margin-bottom: 1.75rem;
}
.hero .lead__deal {
  display: block;
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.25);
  font-weight: 600;
  font-size: .95em;
  color: #ffe76c;
  letter-spacing: .2px;
}
.hero .actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .cta { background: #fff; color: var(--c-red) !important; }
.hero .cta:hover { background: #fff8ec; color: var(--c-red-dark) !important; }
.hero .cta.cta--ghost {
  background: transparent; color: #fff !important; border-color: #fff;
}
.hero .cta.cta--ghost:hover { background: #fff; color: var(--c-red) !important; }
.hero__visual {
  display: flex; justify-content: center; align-items: center;
}
.hero__visual svg { max-width: 360px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }

/* Per-location accent on hero (subtle background tint) */
.hero--spartanburg::after {
  content: '🏛️'; position: absolute; right: 5%; bottom: 8%;
  font-size: 8rem; opacity: .07; pointer-events: none;
}
.hero--inman::after {
  content: '🍕'; position: absolute; right: 5%; bottom: 8%;
  font-size: 8rem; opacity: .08; pointer-events: none;
}

/* Big "you are on the X page" badge above the H1 */
.hero__location-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.2);
}
.hero__location-badge strong {
  font-family: var(--ff-display);
  font-size: 1rem; letter-spacing: 1.5px;
  color: #ffd84a;
  margin-left: 4px;
}

/* Hero location card — shows address/phone/hours/CTA right in the hero */
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  max-width: 380px; width: 100%;
  color: var(--c-ink);
  text-align: left;
  border-top: 6px solid var(--c-red);
}
.hero--inman .hero-card { border-top-color: var(--c-green); }
.hero-card__city {
  display: inline-block;
  font-family: var(--ff-display);
  letter-spacing: 3px; font-size: .82rem;
  color: var(--c-red); text-transform: uppercase;
  margin-bottom: .25rem;
}
.hero--inman .hero-card__city { color: var(--c-green); }
.hero-card__name {
  font-family: var(--ff-display);
  font-size: 2.4rem; line-height: 1; letter-spacing: 2px;
  color: var(--c-ink); margin: 0 0 .5rem;
}
.hero-card__line { color: var(--c-ink-soft); font-size: .92rem; margin-bottom: 1rem; }
.hero-card__addr {
  display: block;
  color: var(--c-ink); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  margin-bottom: 1rem;
  line-height: 1.45;
}
.hero-card__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  border-top: 1px dashed var(--c-line);
  padding-top: 1rem; margin-bottom: 1rem;
  font-size: .92rem;
}
.hero-card__row a { color: var(--c-red); font-weight: 700; }
.hero-card__open {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .82rem; color: var(--c-mute);
}
.hero-card__open .dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--c-red);
}
.hero-card__open.is-open { color: var(--c-green-dark); }
.hero-card__open.is-open .dot {
  background: var(--c-green);
  box-shadow: 0 0 0 3px rgba(63,182,96,.25);
}
.hero-card__cta { text-align: center; }
.hero-card__cta .cta { background: var(--c-red); color: #fff !important; }
.hero--inman .hero-card__cta .cta { background: var(--c-green); }

/* Section primitives --------------------------------------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--mist { background: var(--c-mist); }
.section--ink { background: var(--c-ink); color: #fff; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--ff-display); letter-spacing: 4px; font-size: .9rem;
  color: var(--c-red); margin-bottom: .5rem; text-transform: uppercase;
}
.section-head p { color: var(--c-ink-soft); font-size: 1.05rem; }

/* Cards / grids -------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--c-shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--c-shadow-lg); }
.card h3 { margin-top: 0; }
.card .icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-cream); color: var(--c-red);
  border-radius: var(--r-md); margin-bottom: 1rem;
}
.card .icon svg { width: 26px; height: 26px; }

/* Location cards ------------------------------------------- */
.loc-card {
  display: grid; gap: 1.25rem;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  padding: 2rem;
  box-shadow: var(--c-shadow);
}
.loc-card h3 { font-size: 2rem; margin-bottom: .25rem; }
.loc-card .city {
  font-family: var(--ff-display); letter-spacing: 3px;
  color: var(--c-red); text-transform: uppercase; font-size: .9rem;
}
.loc-card address { font-style: normal; color: var(--c-ink-soft); }
.loc-card .actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .75rem; }
.loc-card .cta { padding: 10px 16px; font-size: .82rem; }
/* Optional storefront photo at the top of a loc-card.
   Aspect ratio 4:3 (was 16:10 — too tight, clipped the signage off the
   top of portrait photos). object-position favors the upper third so the
   building's "DOWNTOWN PIZZA" sign stays visible regardless of whether
   the source photo is landscape (Inman) or portrait (Spartanburg). */
.loc-card__photo {
  margin: -2rem -2rem 1rem;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--c-mist);
}
.loc-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Shop photo on a location detail page */
.shop-photo {
  margin: 0 0 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-mist);
}
.shop-photo img { width: 100%; height: auto; display: block; object-fit: cover; }
.shop-photo figcaption {
  font-size: .85rem;
  color: var(--c-ink-soft);
  padding: .65rem .9rem;
  background: #fff;
  border-top: 1px solid var(--c-line);
}

/* "Follow along" social block on location pages */
.follow-block {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--c-mist);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
}
.follow-block__lead {
  margin: 0 0 .5rem;
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-ink);
  font-size: .95rem;
}
.follow-block ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.follow-block a {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--c-ink);
  font-size: .9rem; font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, color .15s, transform .1s;
}
.follow-block a:hover {
  border-color: var(--c-red);
  color: var(--c-red);
  transform: translateY(-1px);
}

/* Reviews section -------------------------------------------
   Customer quote cards + an aggregate-stats strip across platforms. */
.reviews .section-head { margin-bottom: 2rem; }

.review-stats {
  list-style: none; padding: 0;
  margin: 0 0 2.5rem;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem;
}
.review-stats a {
  display: flex; flex-direction: column; align-items: center;
  padding: .85rem 1.25rem;
  background: var(--c-mist);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--c-ink);
  min-width: 140px;
  transition: border-color .15s, transform .12s;
}
.review-stats a:hover { border-color: var(--c-red); transform: translateY(-2px); }
.review-stats__rating {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--c-red);
  line-height: 1;
}
.review-stats__meta {
  font-size: .78rem;
  color: var(--c-mute);
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}

.review-grid { gap: 1.5rem; }

.review {
  margin: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--c-shadow);
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
}
.review::before {
  content: '\201C'; /* opening quote mark */
  position: absolute;
  top: -.25rem; left: 1rem;
  font-family: 'Bebas Neue', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--c-red);
  opacity: .15;
  pointer-events: none;
}
.review__rating {
  font-family: var(--ff-display);
  letter-spacing: 1.5px;
  color: var(--c-red);
  font-size: 1.05rem;
  margin: 0;
}
.review__quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--c-ink);
  flex: 1;
}
.review__cite {
  font-size: .82rem;
  color: var(--c-mute);
  border-top: 1px solid var(--c-line);
  padding-top: .65rem;
  font-style: normal;
}
.review__cite strong { color: var(--c-ink); }
.review__cite a { color: var(--c-red); }

.review-cta {
  text-align: center;
  margin: 2.5rem 0 0;
  font-size: .92rem;
  color: var(--c-ink-soft);
}
.review-cta a {
  font-weight: 600;
  border-bottom: 1px dotted var(--c-red);
}

/* Order / delivery cards ---------------------------------- */
/* "Coming soon" indicators for locations that aren't open yet ----- */

/* Inline badge — drop next to a city name or address */
.coming-soon-badge {
  display: inline-block;
  background: #ffd84a;
  color: #1a1a1a;
  font-family: var(--ff-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  vertical-align: middle;
  margin-left: .35rem;
}

/* Big top-of-page banner */
.coming-soon-banner {
  background: linear-gradient(135deg, #fff8d2 0%, #fff3b0 100%);
  border-top: 4px solid #f4c430;
  border-bottom: 1px solid #e8d97a;
  color: #5a4400;
  padding: 1.25rem 0;
  text-align: center;
}
.coming-soon-banner .wrap {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .85rem;
}
.coming-soon-banner__icon { font-size: 1.5rem; line-height: 1; }
.coming-soon-banner h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #3d2e00;
}
.coming-soon-banner p {
  margin: 0;
  font-size: .95rem;
  color: #5a4400;
}
.coming-soon-banner a {
  color: #3d2e00;
  border-bottom: 2px solid #f4c430;
  font-weight: 700;
}

/* Now-hiring banner — green, action-positive, distinct from the
   yellow "coming soon" alert. Reuses the coming-soon-banner layout. */
.hiring-banner {
  background: linear-gradient(135deg, #e8f8ee 0%, #cdeed9 100%);
  border-top: 4px solid var(--c-green);
  border-bottom: 1px solid #a9dcbc;
  color: #14502f;
  padding: 1.25rem 0;
  text-align: center;
}
.hiring-banner .wrap {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .9rem;
}
.hiring-banner__icon { font-size: 1.5rem; line-height: 1; }
.hiring-banner h2 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #0f3d24;
}
.hiring-banner p {
  margin: 0;
  font-size: .95rem;
  color: #14502f;
}
.hiring-banner .cta {
  margin-left: .25rem;
}

/* Whole card "coming soon" overlay — still readable but de-emphasized */
.is-coming-soon { position: relative; }
.is-coming-soon .loc-card__photo,
.is-coming-soon .hours,
.is-coming-soon address {
  filter: saturate(.7);
}

/* Yellow warning strip on /order — verify location before clicking out
   to Toast (each shop has its own storefront, no cross-refund). */
.order-warning {
  background: #fff8d2;
  border-top: 4px solid #f4c430;
  border-bottom: 1px solid #e8d97a;
  color: #5a4400;
}
.order-warning .wrap {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-top: 1rem; padding-bottom: 1rem;
}
.order-warning__icon { font-size: 1.5rem; line-height: 1.2; flex-shrink: 0; }
.order-warning p { margin: 0; font-size: .95rem; line-height: 1.55; }
.order-warning strong { color: #3d2e00; }
@media (max-width: 600px) {
  .order-warning .wrap { flex-direction: column; gap: .35rem; }
  .order-warning__icon { font-size: 1.25rem; }
}

.order-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.order-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 1.75rem;
  border-radius: var(--r-lg);
  border: 2px solid var(--c-line);
  background: #fff;
  text-decoration: none;
  color: var(--c-ink);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.order-card:hover {
  border-color: var(--c-red); transform: translateY(-2px);
  box-shadow: var(--c-shadow);
  color: var(--c-ink);
}
.order-card .label {
  font-family: var(--ff-display); font-size: 1.6rem; letter-spacing: 1px;
  margin: .5rem 0 .25rem;
}
.order-card .desc { color: var(--c-ink-soft); font-size: .92rem; }
.order-card .badge {
  display: inline-block; font-size: .72rem; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 700;
  background: var(--c-cream); color: var(--c-red);
  padding: 4px 10px; border-radius: var(--r-pill);
  margin-bottom: .25rem;
}
.order-card[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* Forms ---------------------------------------------------- */
form.dp-form { display: grid; gap: 1.1rem; max-width: 680px; }
form.dp-form .row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { form.dp-form .row { grid-template-columns: 1fr; } }
form.dp-form label { display: block; font-weight: 600; font-size: .92rem; }
form.dp-form .req { color: var(--c-red); }

/* Section divider inside the multi-part employment application */
form.dp-form .form-section {
  margin: 1.5rem 0 .25rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--c-line);
  font-family: var(--ff-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--c-ink);
}
form.dp-form .form-section:first-of-type { margin-top: .5rem; }

/* "Shifts you can work" checkbox group */
form.dp-form .checkrow {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem;
  margin-top: .35rem;
}
form.dp-form .checkrow label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 500; font-size: .9rem;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-pill); padding: .4rem .8rem;
  cursor: pointer;
}
form.dp-form .checkrow input { width: auto; margin: 0; }

/* Certification consent line */
form.dp-form .consent label {
  display: flex; align-items: flex-start; gap: .55rem;
  font-weight: 500; font-size: .9rem; line-height: 1.5;
  background: var(--c-mist); border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: .85rem 1rem;
}
form.dp-form .consent input { width: auto; margin: .2rem 0 0; flex-shrink: 0; }
form.dp-form .muted { color: var(--c-mute); font-weight: 400; }
form.dp-form input,
form.dp-form select,
form.dp-form textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--c-line);
  border-radius: var(--r-md);
  font: inherit;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
form.dp-form input:focus,
form.dp-form select:focus,
form.dp-form textarea:focus {
  border-color: var(--c-red);
  outline: none;
  box-shadow: 0 0 0 4px rgba(232,76,61,.15);
}
form.dp-form textarea { min-height: 140px; resize: vertical; }
form.dp-form .honeypot {
  position: absolute; left: -10000px; top: -10000px; height: 0; width: 0; overflow: hidden;
}
form.dp-form button[type="submit"] {
  background: var(--c-red); color: #fff; border: 0;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
form.dp-form button[type="submit"]:hover { background: var(--c-red-dark); transform: translateY(-1px); }
.form-flash {
  padding: 1rem 1.25rem; border-radius: var(--r-md);
  margin-bottom: 1.5rem;
}
.form-flash.success { background: #e6f7ec; color: var(--c-green-dark); border: 1px solid var(--c-green); }
.form-flash.error   { background: #fdecea; color: var(--c-red-dark); border: 1px solid var(--c-red); }

/* Menu styles ---------------------------------------------- */
.menu-cat { margin-bottom: 3rem; }
.menu-cat h2 {
  display: flex; align-items: center; gap: 1rem;
  border-bottom: 3px solid var(--c-red);
  padding-bottom: .35rem; margin-bottom: 1.5rem;
}
.menu-cat h2 small {
  font-family: var(--ff-body); font-size: .8rem; font-weight: 500;
  color: var(--c-mute); letter-spacing: 0;
}
.menu-list { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.menu-item {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: 1.1rem 1.25rem;
}
.menu-item .row1 {
  display: flex; align-items: baseline; gap: 1rem;
  border-bottom: 1px dotted var(--c-line); padding-bottom: .35rem;
  margin-bottom: .5rem;
}
.menu-item .name { font-family: var(--ff-display); font-size: 1.3rem; letter-spacing: 1px; flex: 1; }
.menu-item .price { font-weight: 700; color: var(--c-red); white-space: nowrap; }
.menu-item .desc { font-size: .92rem; color: var(--c-ink-soft); margin: 0; }
.menu-item .tag {
  display: inline-block; font-size: .68rem; letter-spacing: 1px; text-transform: uppercase;
  background: var(--c-cream); color: var(--c-red); padding: 2px 8px;
  border-radius: var(--r-pill); margin-left: .35rem; vertical-align: middle;
}
.menu-item .meta {
  margin: .35rem 0 0; font-size: .78rem;
  color: var(--c-mute); letter-spacing: .3px;
  text-transform: uppercase; font-weight: 600;
}
.menu-item .meta span + span { margin-left: .25rem; }

/* Catering: ezCater hero CTA -------------------------------- */
.catering-cta {
  background: linear-gradient(135deg, #fff8ec 0%, #fff 100%);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 2.25rem 0;
}
.catering-cta .wrap {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1.6fr auto;
  align-items: center;
}
@media (max-width: 760px) {
  .catering-cta .wrap { grid-template-columns: 1fr; }
}
.catering-cta__copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: .25rem 0 .5rem;
}
.catering-cta__copy .eyebrow {
  font-family: var(--ff-display); letter-spacing: 3px;
  color: var(--c-green-dark); text-transform: uppercase;
  font-size: .85rem;
}
.catering-cta__copy p { margin: .25rem 0; }
.catering-cta__action {
  display: flex; flex-direction: column; gap: .75rem;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .catering-cta__action { align-items: stretch; }
  .catering-cta__action .cta { text-align: center; }
}

/* Hours table ---------------------------------------------- */
.hours { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed var(--c-line);
}
.hours li:last-child { border-bottom: 0; }

/* Map embed ------------------------------------------------ */
.map-embed {
  width: 100%; aspect-ratio: 4/3;
  border: 1px solid var(--c-line); border-radius: var(--r-md);
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Footer --------------------------------------------------- */
.site-footer {
  background: var(--c-ink); color: #f0eee9;
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr 1fr .8fr;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 {
  font-family: var(--ff-display); color: #fff; font-size: 1.2rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer p { color: #c8c5c0; }
.site-footer a { color: #f0eee9; }
.site-footer a:hover { color: var(--c-green); }
.site-footer .footer-logo { width: 200px; margin-bottom: 1rem; }
.site-footer .footer-loc address { line-height: 1.7; margin-bottom: .85rem; }
.site-footer .hours { color: #c8c5c0; }
.site-footer .hours li { border-color: rgba(255,255,255,.1); }
.socials { list-style: none; padding: 0; margin: .75rem 0 0; display: flex; gap: 1rem; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: .5rem; }

.legal {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem; margin-top: 2.5rem;
  font-size: .85rem; color: #999;
}
.legal a { color: #999; }

/* Misc utilities ------------------------------------------ */
.center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.muted { color: var(--c-mute); }
.split { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* Page intro banner ---------------------------------------- */
.page-banner {
  background:
    linear-gradient(135deg, var(--c-ink), #2a2a2a);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: .5rem; }
.page-banner p { max-width: 60ch; margin: 0 auto; color: #c8c5c0; font-size: 1.05rem; }
.crumbs {
  font-size: .82rem; color: #c8c5c0;
  margin-bottom: 1rem; letter-spacing: 1px; text-transform: uppercase;
}
.crumbs a { color: #c8c5c0; }
.crumbs a:hover { color: var(--c-green); }

/* Print ---------------------------------------------------- */
@media print {
  .site-header, .site-footer, .sticky-cta, .utility, .hero .actions { display: none !important; }
  body { color: #000; background: #fff; }
}

/* Reduced motion ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
