/* ───────────────────────────────────────────────────────────────
   Quick Out — Convenience & Smoke
   Warm neighborhood-deli signage aesthetic
   ─────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Archivo+Black&family=Anton&family=Domine:wght@400..700&family=Public+Sans:wght@300..800&family=Caveat:wght@500..700&display=swap');

:root {
  /* Palette — "Panera Lime" on white (default) */
  --cream: #FFFFFF;          /* primary page bg — now white */
  --cream-2: #F5F2E8;        /* subtle warm-cream alt section */
  --paper: #FFFFFF;          /* cards */
  --brick: #C5D729;          /* primary CTA / accent — olive-lime */
  --brick-dark: #A8B91F;
  --forest: #1F2615;         /* deep olive (footer, dark sections) */
  --forest-2: #2A3320;
  --mustard: #D6E440;        /* bright lime — secondary accent */
  --mustard-dark: #B6C92F;
  --ink: #14180A;
  --ink-2: #2A3320;
  --ink-soft: rgba(20, 24, 10, 0.62);
  --border: rgba(20, 24, 10, 0.12);
  --border-strong: rgba(20, 24, 10, 0.28);

  /* On-color text — computed by JS so it flips when palette swaps. */
  --on-brick: var(--ink);
  --on-mustard: var(--ink);

  /* Type */
  --font-display: 'Archivo', 'Anton', system-ui, sans-serif;
  --font-head: 'Archivo', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', 'Bradley Hand', cursive;
  --font-serif: 'Domine', Georgia, serif;

  /* Layout */
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 40px);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
a { color: inherit; }

/* Layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
section.tight { padding: clamp(56px, 7vw, 88px) 0; }

/* ───────────────────────────── Typography ───────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 14px 0 0;
  text-wrap: balance;
  color: var(--ink);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.01em;
}

.h-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.script {
  font-family: var(--font-script);
  font-weight: 600;
  font-style: italic;
}

.lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}

/* ───────────────────────────── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  transition: transform .08s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn-primary { background: var(--brick); color: var(--on-brick); }
.btn-primary:hover { background: var(--brick-dark); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--forest); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--paper); }

/* ───────────────────────────── Top bar ───────────────────────────── */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
  flex-wrap: wrap;
}
.topbar .status { display: inline-flex; align-items: center; gap: 8px; }
.topbar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}
.topbar .links { display: inline-flex; gap: 22px; align-items: center; }
.topbar a { text-decoration: none; opacity: 0.85; }
.topbar a:hover { opacity: 1; }

/* ───────────────────────────── Header / Nav ───────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brick);
  color: var(--on-brick);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.18), 0 2px 0 var(--brick-dark);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  position: relative;
}
.nav a:hover { background: var(--cream-2); }
.nav a.is-active {
  color: var(--ink);
}
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 3px;
  background: var(--brick);
  border-radius: 2px;
}

/* Page banner — used on inner pages instead of full hero */
.page-banner {
  padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 5vw, 72px);
  border-bottom: 1px solid var(--border);
}
.page-banner-title {
  font-size: clamp(54px, 7vw, 96px);
  margin-top: 18px;
  white-space: pre-line;
}

/* ─── Menu page ─── */
.menu-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-nav a {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: background .12s, color .12s;
}
.menu-nav a:hover { background: var(--ink); color: var(--paper); }

.menu-cat {
  padding: clamp(60px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--border);
}
.menu-cat-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 800px) { .menu-cat-head { grid-template-columns: 1fr; } }

.menu-cat-art {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-cat-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--brick);
  color: var(--on-brick);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.menu-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(24px, 4vw, 48px);
}
@media (max-width: 760px) { .menu-rows { grid-template-columns: 1fr; } }

.menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--border);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row-name { min-width: 0; flex: 1; }
.menu-row-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.menu-row-desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 3px;
  line-height: 1.4;
}
.menu-row-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--brick);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Add-ons grid */
.addons-grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 880px) { .addons-grid { grid-template-columns: 1fr !important; } }

.veg-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.veg-card-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 8px;
}
.veg-card-list {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ─── Specials page schedule ─── */
.schedule-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
  align-items: baseline;
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-time {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--brick);
  letter-spacing: -0.01em;
}
.schedule-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.schedule-detail {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 3px;
}

/* ─── Smoke page ─── */
.smoke-banner {
  padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
}
.smoke-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .smoke-detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .smoke-detail-grid { grid-template-columns: 1fr; } }

.smoke-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
}
.smoke-card-meta {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
}
.smoke-card-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.smoke-card-desc {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}

.compliance-note {
  margin-top: 48px;
  background: var(--cream-2);
  padding: 22px 26px;
  border-radius: var(--radius);
  border-left: 4px solid var(--brick);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 80ch;
}

/* ─── Catering page ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease;
}
.cat-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.cat-card-stripe { height: 8px; }
.cat-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.cat-card-meta {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cat-card-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 2px 0;
}
.cat-card-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: var(--brick);
  margin: 6px 0 14px;
  letter-spacing: -0.02em;
}
.cat-card-contents {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.cat-card-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
}

.cat-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin: 12px 0;
  align-items: baseline;
}
.cat-step-n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  color: var(--brick);
}

/* ─── Hours page ─── */
.closed-notice {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}
.addr-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.addr-pin {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brick); color: var(--on-brick);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.addr-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.addr-lines {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}
.addr-links {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.addr-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  color: var(--brick);
  text-decoration: none;
}
.parking-note {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--cream-2);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-2);
}

/* ─── Contact page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-phone-card {
  background: var(--brick);
  color: var(--on-brick);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 40px 32px;
  box-shadow: 8px 8px 0 var(--ink);
}
.contact-phone-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brick);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.contact-phone-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.contact-phone-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 68px);
  line-height: 1;
  margin: 8px 0 14px;
  letter-spacing: -0.02em;
  color: var(--on-brick);
  text-decoration: none;
}
.contact-phone-sub {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
  color: rgba(20,24,10,0.78);
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-block {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.contact-block-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 10px;
}
.contact-block-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 800;
  font-size: 14px;
  color: var(--brick);
  text-decoration: none;
}
.contact-block-socials {
  display: flex; flex-direction: column; gap: 12px;
}
.contact-social {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  background: var(--cream-2);
  transition: background .12s;
}
.contact-social:hover { background: var(--mustard); }
.contact-social span { display: flex; flex-direction: column; font-size: 14px; }
.contact-social span b { font-weight: 800; font-size: 16px; }
.contact-social span small { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* ─── Call-Ahead band (shared bottom of inner pages) ─── */
.call-band {
  background: var(--brick);
  color: var(--on-brick);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.call-band .eyebrow { color: var(--forest); }

.header-right { display: inline-flex; align-items: center; gap: 12px; }

/* Hamburger button (mobile only) */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.hamburger:hover { background: var(--cream-2); }
.hamburger:focus-visible { outline: 2px solid var(--brick); outline-offset: 2px; }
.hb-bar {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hb-bar-1 { transform: translateY(7px) rotate(45deg); }
.hb-bar-2 { opacity: 0; }
.hb-bar-3 { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    padding: 12px var(--pad) 20px;
    gap: 4px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--border);
    z-index: 60;
  }
  .nav.is-open a {
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
  }
  .nav.is-open a:hover { background: var(--cream-2); }
  .nav.is-open a.is-active { background: var(--brick); color: var(--on-brick); }
  .hamburger { display: inline-flex; }
}
@media (max-width: 480px) {
  /* On very narrow screens, drop the Call Ahead button text down */
  .header-right .btn-primary span { display: none; }
}
.header { position: relative; }

/* ───────────────────────────── Hero ───────────────────────────── */
.hero {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(64px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-eyebrow { color: var(--brick); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(54px, 8.4vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  color: var(--ink);
}
.hero-title em {
  font-style: normal;
  color: var(--brick);
}
.hero-title .underline {
  display: inline-block;
  position: relative;
}
.hero-title .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 8px;
  background: var(--mustard);
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.55;
}
.hero-ctas {
  margin-top: 32px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-phone {
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-phone strong { color: var(--ink); font-weight: 700; }

.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 var(--paper) inset, 0 30px 60px -30px rgba(26,22,17,0.25);
}

/* "open sign" hero badge */
.open-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--forest);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px -6px rgba(31, 59, 45, 0.45);
}
.open-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #6FE89F; box-shadow: 0 0 0 3px rgba(111,232,159,0.3); }

/* ───────────────────────────── Photo slots ───────────────────────────── */
.photo-slot {
  position: relative;
  background: linear-gradient(135deg, var(--cream-2), #E8D9B5);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink-2);
  overflow: hidden;
}
.photo-slot::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(184, 52, 27, 0.08), transparent 50%);
}
.photo-slot .ps-inner {
  position: relative;
  padding: 20px;
  max-width: 80%;
}
.photo-slot .ps-cap {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 6px;
}
.photo-slot .ps-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
}
.photo-slot[data-mood="dark"] {
  background: linear-gradient(135deg, var(--forest), #14271E);
  color: var(--cream);
}
.photo-slot[data-mood="brick"] {
  background: linear-gradient(135deg, var(--brick), var(--brick-dark));
  color: var(--on-brick);
}
.photo-slot[data-mood="mustard"] {
  background: linear-gradient(135deg, var(--mustard), #C68F1E);
  color: var(--ink);
}

/* ───────────────────────────── Specials / Tickets ───────────────────────────── */
.specials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.daypart-toggle {
  display: inline-flex;
  background: var(--ink);
  color: var(--cream);
  padding: 4px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.daypart-toggle button {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--cream);
  opacity: 0.55;
}
.daypart-toggle button[data-on="1"] {
  background: var(--mustard);
  color: var(--ink);
  opacity: 1;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1180px) { .specials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .specials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .specials-grid { grid-template-columns: 1fr; } }

/* TICKET card style (default) — coupon with notched edges */
.ticket {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  min-height: 320px;
  overflow: hidden;
}
.ticket .ticket-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  overflow: hidden;
}
.ticket .ticket-photo img,
.ticket .ticket-photo .photo-slot,
.ticket .ticket-photo .smart-photo {
  border-radius: 0 !important;
}
.ticket .ticket-eyebrow,
.ticket h3,
.ticket .desc,
.ticket .price-row { padding-left: 24px; padding-right: 24px; }
.ticket .ticket-stripe {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--brick) 0 10px,
    var(--paper) 10px 20px
  );
}
.ticket.green .ticket-stripe { background: repeating-linear-gradient(-45deg, var(--forest) 0 10px, var(--paper) 10px 20px); }
.ticket.mustard .ticket-stripe { background: repeating-linear-gradient(-45deg, var(--mustard) 0 10px, var(--paper) 10px 20px); }
.ticket.ink .ticket-stripe { background: repeating-linear-gradient(-45deg, var(--ink) 0 10px, var(--paper) 10px 20px); }

.ticket .ticket-eyebrow {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ticket h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.ticket .desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
  flex: 1;
}
.ticket .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--border-strong);
}
.ticket .price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brick);
}
.ticket .price small {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.ticket.green .price { color: var(--forest); }
.ticket.mustard .price { color: var(--mustard-dark); }
.ticket.ink .price { color: var(--ink); }
.ticket .when {
  font-family: var(--font-script);
  font-size: 22px;
  line-height: 1;
  color: var(--ink-2);
  transform: rotate(-3deg);
  display: inline-block;
}

/* POSTER variant — bold backgrounds */
.specials-grid[data-style="poster"] .ticket {
  background: var(--brick);
  color: var(--on-brick);
  border-color: var(--ink);
}
.specials-grid[data-style="poster"] .ticket.green { background: var(--forest); color: var(--cream); }
.specials-grid[data-style="poster"] .ticket.green .ticket-eyebrow { color: rgba(244,238,219,0.65); }
.specials-grid[data-style="poster"] .ticket.green .price { color: var(--mustard); }
.specials-grid[data-style="poster"] .ticket.green .desc { color: rgba(244,238,219,0.85); }
.specials-grid[data-style="poster"] .ticket.green .price-row { border-top-color: rgba(244,238,219,0.3); }
.specials-grid[data-style="poster"] .ticket.mustard { background: var(--mustard); color: var(--ink); }
.specials-grid[data-style="poster"] .ticket.ink { background: var(--ink); color: var(--cream); }
.specials-grid[data-style="poster"] .ticket.ink .ticket-eyebrow { color: rgba(244,238,219,0.65); }
.specials-grid[data-style="poster"] .ticket.ink .price { color: var(--mustard); }
.specials-grid[data-style="poster"] .ticket.ink .desc { color: rgba(244,238,219,0.85); }
.specials-grid[data-style="poster"] .ticket.ink .price-row { border-top-color: rgba(244,238,219,0.3); }
.specials-grid[data-style="poster"] .ticket .ticket-eyebrow { color: rgba(20,24,10,0.6); }
.specials-grid[data-style="poster"] .ticket.mustard .ticket-eyebrow { color: rgba(20,24,10,0.6); }
.specials-grid[data-style="poster"] .ticket .price { color: var(--on-brick); }
.specials-grid[data-style="poster"] .ticket.mustard .price { color: var(--brick); }
.specials-grid[data-style="poster"] .ticket .desc { color: rgba(20,24,10,0.78); }
.specials-grid[data-style="poster"] .ticket.mustard .desc { color: var(--ink-2); }
.specials-grid[data-style="poster"] .ticket .price-row { border-top-color: rgba(20,24,10,0.18); }
.specials-grid[data-style="poster"] .ticket.mustard .price-row { border-top-color: rgba(26,22,17,0.25); }

/* CLEAN variant — minimal card */
.specials-grid[data-style="clean"] .ticket {
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: none;
}
.specials-grid[data-style="clean"] .ticket .ticket-stripe { display: none; }
.specials-grid[data-style="clean"] .ticket { padding-top: 24px; }

/* ───────────────────────────── Menu preview ───────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(36px, 5vw, 56px);
}
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 0 0 0 var(--ink);
}
.menu-tile:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.menu-tile .tile-photo {
  aspect-ratio: 4/3;
  position: relative;
}
.menu-tile .tile-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1.5px solid var(--ink);
}
.menu-tile h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.menu-tile .tile-meta {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.menu-tile .tile-arrow {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}
.menu-tile .tile-arrow svg { transition: transform .15s; }
.menu-tile:hover .tile-arrow svg { transform: translateX(4px); }

/* ───────────────────────────── Smoke section ───────────────────────────── */
.smoke {
  background: var(--ink);
  color: var(--cream);
}
.smoke .section-title { color: var(--cream); }
.smoke .lede { color: rgba(251, 244, 228, 0.75); }
.smoke .age-gate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.smoke-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .smoke-head { grid-template-columns: 1fr; gap: 16px; } }

.smoke-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 540px;
}
.smoke-grid > div:nth-child(1) { grid-row: 1 / 3; }
@media (max-width: 800px) {
  .smoke-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .smoke-grid > div:nth-child(1) { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/10; }
  .smoke-grid > div { aspect-ratio: 4/3; }
}

.smoke-cat {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--cream);
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
}
.smoke-cat .ps-tag {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  position: relative; z-index: 2;
}
.smoke-cat .ps-tag small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

/* ───────────────────────────── Call Ahead section ───────────────────────────── */
.call-section {
  background: var(--brick);
  color: var(--on-brick);
  overflow: hidden;
  position: relative;
}
.call-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(242,180,65,0.18), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(31,59,45,0.25), transparent 40%);
}
.call-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}
@media (max-width: 880px) { .call-grid { grid-template-columns: 1fr; } }

.call-section .section-title { color: var(--on-brick); }
.call-section .eyebrow { color: var(--forest); }

.phone-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: 8px 8px 0 var(--ink);
  border: 2px solid var(--ink);
}
.phone-card .phone-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1.5px dashed var(--border-strong);
}
.phone-card .phone-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brick);
  color: var(--on-brick);
  display: grid;
  place-items: center;
}
.phone-card .phone-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.phone-card .phone-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.steps {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: baseline;
}
.step-n {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brick);
  line-height: 1;
}
.step b { font-weight: 700; }
.step .step-desc { font-size: 14px; color: var(--ink-2); }

/* ───────────────────────────── Catering / Hours ───────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.hours-block {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  font-family: var(--font-head);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row.today { font-weight: 700; }
.hours-row.today::after {
  content: "TODAY";
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--brick);
  color: var(--on-brick);
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 10px;
}
.hours-row span:first-child { color: var(--ink); }
.hours-row span:last-child { color: var(--ink-2); font-variant-numeric: tabular-nums; }

.location-block { display: flex; flex-direction: column; gap: 16px; }
.map-art {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #E8DDC2, #DAC79C);
}
.map-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49%, rgba(26,22,17,0.13) 49%, rgba(26,22,17,0.13) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(26,22,17,0.13) 49%, rgba(26,22,17,0.13) 51%, transparent 51%);
  background-size: 60px 60px;
}
.map-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 64%, rgba(31, 59, 45, 0.22) 0 6%, transparent 6.1%),
    radial-gradient(circle at 72% 36%, rgba(31, 59, 45, 0.18) 0 4%, transparent 4.1%);
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.map-pin .pin-body {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brick);
  border: 4px solid var(--paper);
  box-shadow: 0 12px 24px -8px rgba(184, 52, 27, 0.6);
  position: relative;
}
.map-pin .pin-body::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--paper);
}

/* ───────────────────────────── Footer ───────────────────────────── */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--mustard);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { text-decoration: none; opacity: 0.85; font-size: 15px; }
.footer a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 244, 228, 0.18);
  font-size: 13px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 12px;
}

/* ───────────────────────────── Sticky phone FAB ───────────────────────────── */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  background: var(--brick);
  color: var(--on-brick);
  border-radius: 999px;
  padding: 14px 22px 14px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 30px -8px rgba(184, 52, 27, 0.6), 0 2px 0 var(--brick-dark);
  border: 2px solid var(--ink);
  transition: transform .15s ease;
}
.fab:hover { transform: translateY(-2px); }
.fab .fab-ring {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--brick);
  display: grid;
  place-items: center;
  animation: ring 1.6s ease-in-out infinite;
}
.fab .fab-sub {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  10% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  30% { transform: rotate(-12deg); }
}
@media (max-width: 560px) {
  .fab { padding: 12px 16px 12px 12px; font-size: 14px; }
  .fab .fab-sub { display: none; }
}

/* ───────────────────────────── Marquee strip ───────────────────────────── */
.marquee {
  background: var(--mustard);
  color: var(--ink);
  padding: 12px 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-track span::after {
  content: "✦";
  font-size: 14px;
  opacity: 0.5;
  margin-left: 40px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───────────────────────────── Utility ───────────────────────────── */
.row { display: flex; align-items: center; gap: 10px; }
.col { display: flex; flex-direction: column; gap: 10px; }
.muted { color: var(--ink-soft); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cream-2);
  color: var(--ink-2);
}
.tag.brick { background: var(--brick); color: var(--on-brick); }
.tag.forest { background: var(--forest); color: var(--cream); }
.tag.mustard { background: var(--mustard); color: var(--ink); }
