/*
 * The Counter — refined retro-diner Americana.
 * Mid-century menu-board typography, chrome-stool details, elevated not kitschy.
 *
 * AA-checked pairs (WCAG 2.1 relative-luminance math):
 *   cream #F2E8D5 on espresso #201712  ≈ 13.9:1
 *   ink   #241A12 on paper    #F7EFDE  ≈ 13.5:1
 *   red   #B03427 as text on paper     ≈ 5.4:1  (and 5.1:1 on cream)
 *   cream #F2E8D5 on red      #B03427  ≈ 5.1:1
 *   cream-dim #CBBBA0 on espresso      ≈ 9.3:1
 *   ink-soft  #5A4735 on paper/cream   ≈ 7.7:1 / 7.3:1
 *   taupe #8A7A62 — hairlines & dot leaders only, never text.
 */

:root {
  --espresso: #201712;
  --espresso-lift: #33261D;
  --cream: #F2E8D5;
  --cream-dim: #CBBBA0;
  --paper: #F7EFDE;
  --ink: #241A12;
  --ink-soft: #5A4735;
  --red: #B03427;
  --red-dark: #8F291E;
  --taupe: #8A7A62;
  --header-h: 64px;
  --shadow-hard: 5px 5px 0 rgba(32, 23, 18, 0.1);
  --display: 'Zilla Slab', 'Rockwell', serif;
  --body-face: 'Work Sans', system-ui, sans-serif;
}

html { scroll-padding-top: calc(var(--header-h) + 1rem); }

body {
  font-family: var(--body-face);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

::selection { background: var(--red); color: var(--cream); }

h1, h2, h3 { font-family: var(--display); line-height: 1.15; }

/* ---------- shared bits ---------- */

.micro-label {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  line-height: 1.2;
  padding: 0.72rem 1.35rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-red {
  background: var(--red);
  color: var(--cream);
  border-color: rgba(242, 232, 213, 0.35);
}
.btn-red:hover { background: var(--red-dark); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost:hover { background: rgba(242, 232, 213, 0.14); }
.btn-dark {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--taupe);
}
.btn-dark:hover { background: var(--espresso-lift); }

/* base.css draws focus rings with currentColor; these cream-text controls sit on
   paper/cream backgrounds, so recolor the ring (red is >=3:1 on both surfaces).
   Header/hero buttons sit on espresso and keep the cream currentColor ring. */
.hours-ctas .btn:focus-visible,
.map-facade-play:focus-visible,
.social-card-play:focus-visible {
  outline-color: var(--red);
}

/* Ticket-stub zigzag divider (espresso teeth over the paper). */
.ticket-edge {
  height: 12px;
  background-image:
    linear-gradient(135deg, var(--espresso) 50%, transparent 50%),
    linear-gradient(225deg, var(--espresso) 50%, transparent 50%);
  background-size: 12px 12px;
  background-repeat: repeat-x;
}
.ticket-edge--flip { transform: scaleY(-1); }

/* Chrome-stool rule — thin metallic divider, decor only. */
.chrome-rule {
  height: 6px;
  max-width: 320px;
  margin: clamp(2rem, 4vw, 2.8rem) auto;
  border: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, #F6F3EC 0%, #C9C2B4 38%, #837B6D 58%, #E4DFD3 100%);
}

/* Menu-board section headers: full-width dark bars, thin double borders. */
.board-bar {
  background: var(--espresso);
  color: var(--cream);
  border-top: 5px double var(--taupe);
  border-bottom: 5px double var(--taupe);
  padding: 1.15rem 1.1rem 1.2rem;
  text-align: center;
}
.board-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}
.board-sub {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 3.5rem) 1.1rem;
}
.section-inner--tight { padding-top: 0; }

.col-label { color: var(--ink-soft); margin-bottom: 0.9rem; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--espresso);
  color: var(--cream);
  border-bottom: 1px solid rgba(138, 122, 98, 0.45);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 1.1rem;
  padding-left: max(1.1rem, env(safe-area-inset-left));
  padding-right: max(1.1rem, env(safe-area-inset-right));
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-logo { width: 42px; height: 42px; border-radius: 50%; }
.brand-word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.05;
}
.brand-est {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.15rem;
}

.site-nav { display: flex; align-items: center; gap: 1.15rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.site-nav a:hover {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.nav-phone { font-variant-numeric: tabular-nums; }
.header-order { padding: 0.55rem 1rem; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1px solid var(--taupe);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  padding: 0.5rem 0.75rem;
}
.nav-toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--cream);
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

@media (max-width: 919px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--espresso);
    border-bottom: 1px solid var(--taupe);
    padding: 0.6rem 1.1rem 1.1rem;
    box-shadow: 0 14px 24px rgba(32, 23, 18, 0.35);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a {
    padding: 0.8rem 0.2rem;
    border-bottom: 1px dotted rgba(138, 122, 98, 0.4);
    font-size: 0.95rem;
  }
  .site-nav a:last-child { border-bottom: 0; }
}

@media (max-width: 479px) {
  .brand-est { display: none; }
  .brand-logo { width: 36px; height: 36px; }
  .brand-word { font-size: 1.12rem; }
  .header-order { padding: 0.5rem 0.7rem; font-size: 0.72rem; letter-spacing: 0.05em; }
  .header-inner { gap: 0.55rem; }
}

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

.hero {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 46%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(32, 23, 18, 0.97) 0%,
      rgba(32, 23, 18, 0.93) 40%,
      rgba(32, 23, 18, 0.55) 68%,
      rgba(32, 23, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(32, 23, 18, 0.5) 0%, rgba(32, 23, 18, 0) 28%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 11vw, 8rem) 1.1rem clamp(4rem, 10vw, 7rem);
}
.hero-kicker { color: var(--cream-dim); }
.hero-title {
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  line-height: 1.02;
  margin: 0.8rem 0 0;
  max-width: 12ch;
}
.hero-title::after {
  content: '';
  display: block;
  width: 86px;
  height: 5px;
  background: var(--red);
  margin-top: 1.1rem;
}
.hero-tagline {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  margin-top: 1.1rem;
}
.hero-sub {
  max-width: 52ch;
  margin-top: 0.8rem;
  font-size: 1rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.7rem;
}
.hero-call {
  color: var(--cream);
  font-weight: 600;
  text-decoration: underline dotted;
  text-underline-offset: 4px;
}
.hero-call:hover { text-decoration: underline solid; }

@media (max-width: 719px) {
  .hero-scrim {
    background:
      linear-gradient(180deg,
        rgba(32, 23, 18, 0.95) 0%,
        rgba(32, 23, 18, 0.88) 55%,
        rgba(32, 23, 18, 0.72) 100%);
  }
}

/* ---------- status ticket ---------- */

.status-wrap { padding: 1.5rem 1.1rem 0.25rem; }
.status-ticket {
  max-width: 860px;
  margin: 0 auto;
  background: var(--red);
  padding: 6px;
  box-shadow: var(--shadow-hard);
}
.status-strip {
  border: 2px dashed rgba(242, 232, 213, 0.55);
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem 0.9rem;
  padding: 0.75rem 1.1rem;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
}
.status-state { display: inline-flex; align-items: center; gap: 0.5rem; }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: transparent;
  flex: none;
}
.status-state.is-open .status-dot { background: var(--cream); }
.status-special strong { font-weight: 700; }

/* ---------- favorites ---------- */

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.fav-card {
  background: var(--cream);
  border: 1px solid rgba(138, 122, 98, 0.5);
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
}
.fav-media { aspect-ratio: 4 / 3; overflow: hidden; }
.fav-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.fav-card:hover .fav-media img { transform: scale(1.045); }
.fav-body { padding: 1rem 1.1rem 1.25rem; }
.fav-name { font-weight: 700; font-size: 1.18rem; }
.fav-price {
  font-family: var(--display);
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  margin: 0.15rem 0 0.45rem;
}
.fav-blurb { font-size: 0.92rem; color: var(--ink-soft); }

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

.story-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}
.story-headline {
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin-bottom: 1.1rem;
  max-width: 24ch;
}
.story-paragraphs p + p { margin-top: 1rem; }
.story-photos { display: grid; gap: 1.2rem; }
.story-figure {
  border: 1px solid rgba(138, 122, 98, 0.5);
  background: var(--cream);
  box-shadow: var(--shadow-hard);
  padding: 8px;
}
.story-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story-caption {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.2rem 0.15rem;
  text-align: center;
}

.pull-quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.1rem clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
}
.pull-quote-text {
  font-family: var(--display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.3;
  color: var(--red);
}
.pull-quote-text::before { content: '\201C'; }
.pull-quote-text::after { content: '\201D'; }
.pull-quote-cite {
  margin-top: 0.7rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.timeline-label { text-align: center; color: var(--ink-soft); margin-bottom: 1.4rem; }
.timeline {
  max-width: 760px;
  margin: 0 auto;
  border-left: 3px solid var(--taupe);
  padding-left: 1.7rem;
  display: grid;
  gap: 1.15rem;
}
.tl-item { position: relative; }
.tl-item::before {
  content: '';
  position: absolute;
  left: calc(-1.7rem - 3px - 4px);
  top: 0.45em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--paper);
}
.tl-year {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-size: 0.95rem;
}
.tl-text { font-size: 0.97rem; }

@media (max-width: 819px) {
  .story-layout { grid-template-columns: 1fr; }
  .story-photos { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (max-width: 559px) {
  .story-photos { grid-template-columns: 1fr; }
}

/* ---------- specials chalkboard card ---------- */

.specials-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--taupe);
  box-shadow: 6px 6px 0 rgba(32, 23, 18, 0.16);
}
.specials-head {
  background: var(--red);
  color: var(--cream);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.65rem 1rem;
  border-bottom: 5px double rgba(242, 232, 213, 0.5);
}
.specials-sub {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.82rem;
  padding: 0.75rem 1rem 0;
}
.specials-list {
  padding: 0.9rem 1.35rem 0.4rem;
  display: grid;
  gap: 0.6rem;
}
.special-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
}
.special-day {
  flex: none;
  min-width: 2.9em;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
}
.special-name { flex-shrink: 1; }
.special-dots {
  flex: 1 1 auto;
  min-width: 1rem;
  border-bottom: 2px dotted rgba(138, 122, 98, 0.85);
  transform: translateY(-4px);
}
.special-price { font-variant-numeric: tabular-nums; white-space: nowrap; }
.special-today-badge {
  background: var(--red);
  color: var(--cream);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.14rem 0.45rem;
  border-radius: 2px;
  margin-left: 0.45rem;
  vertical-align: 0.14em;
}
.specials-foot {
  text-align: center;
  font-style: italic;
  color: var(--cream-dim);
  font-size: 0.84rem;
  padding: 0.5rem 1.35rem 1.15rem;
}

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

.menu-root { max-width: 880px; margin: 0 auto; }

.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 10;
  background: var(--paper);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(138, 122, 98, 0.5);
  margin-bottom: 1.7rem;
}
.menu-nav-link {
  background: transparent;
  border: 1px solid var(--taupe);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.35rem 0.7rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
/* On phones the wrapped pill grid grows to ~3 rows and eats the screen while
   it's stuck to the top. Collapse it to one horizontally-scrollable row. */
@media (max-width: 640px) {
  .menu-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.6rem;
  }
  .menu-nav-link { flex: 0 0 auto; white-space: nowrap; }
}
.menu-nav-link:hover { border-color: var(--red); color: var(--red); }

.menu-cat {
  margin-bottom: 2.4rem;
  scroll-margin-top: calc(var(--header-h) + 5.5rem);
}
.menu-cat-title {
  background: var(--espresso);
  color: var(--cream);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 1.12rem;
  padding: 0.55rem 0.95rem;
  border-top: 4px double var(--taupe);
  border-bottom: 4px double var(--taupe);
}
.menu-cat-note {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 0.6rem;
}
.menu-items { margin-top: 1rem; display: grid; gap: 0.75rem; }
.menu-item-name { font-weight: 600; }
.menu-item-dots {
  border-bottom: 2px dotted rgba(138, 122, 98, 0.9);
  transform: translateY(-4px);
}
.menu-item-price { font-family: var(--display); font-weight: 700; }
.menu-item-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-top: 0.15rem;
}
.menu-item-badge {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.12rem 0.45rem;
  border-radius: 2px;
  vertical-align: 0.16em;
  white-space: nowrap;
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.gallery-item {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(138, 122, 98, 0.45);
  background: var(--cream);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(7),
.gallery-item:nth-child(11) {
  grid-column: span 8;
  aspect-ratio: 8 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 719px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(11) {
    grid-column: auto;
    aspect-ratio: 1 / 1;
  }
}

/* ---------- social & reviews ---------- */

.social-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 819px) {
  .social-layout { grid-template-columns: 1fr; }
}

.social-card {
  background: var(--cream);
  border: 1px solid rgba(138, 122, 98, 0.5);
  box-shadow: var(--shadow-hard);
}
.social-card-body { padding: 1.2rem 1.2rem 1.3rem; }
.social-card.is-playing .social-card-body { padding: 0; }
.social-card-brand {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.social-card-label { font-weight: 700; font-size: 1.25rem; }
.social-card-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0.3rem 0 1rem;
}
.social-card-play {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--taupe);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 0.6rem 0.95rem;
  transition: background-color 0.15s ease;
}
.social-card-play:hover { background: var(--espresso-lift); }
.social-card-link {
  display: block;
  padding: 0.8rem 1.2rem;
  border-top: 1px dotted var(--taupe);
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}
.social-card-link:hover { text-decoration: underline; }

.testimonial {
  border-left: 4px solid var(--red);
  padding: 0.15rem 0 0.15rem 1.1rem;
  margin-bottom: 1.4rem;
}
.testimonial-quote {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.45;
}
.testimonial-cite {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.review-links { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.5rem; }
.review-link {
  display: grid;
  gap: 0.05rem;
  min-width: 132px;
  padding: 0.7rem 0.95rem;
  background: var(--cream);
  border: 1px solid var(--taupe);
  box-shadow: 3px 3px 0 rgba(32, 23, 18, 0.08);
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.review-link:hover { border-color: var(--red); }
.review-link-score {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.review-link-name { font-weight: 600; font-size: 0.92rem; }
.review-link-detail { font-size: 0.78rem; color: var(--ink-soft); }
.ratings-asof { margin-top: 0.9rem; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- hours & location ---------- */

.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 819px) {
  .hours-layout { grid-template-columns: 1fr; }
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px dotted rgba(138, 122, 98, 0.6);
}
.hours-day { font-family: var(--display); font-weight: 600; }
.hours-time {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hours-note-line {
  display: block;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-soft);
  white-space: normal;
}
.hours-table tr.is-today { background: var(--cream); }
.hours-table tr.is-today .hours-day { color: var(--red); }
.hours-today-tag {
  background: var(--red);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.14rem 0.45rem;
  border-radius: 2px;
  margin-left: 0.55rem;
  vertical-align: 0.14em;
}

.hours-note { margin-top: 0.95rem; font-size: 0.95rem; }
.hours-note-strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--red);
  margin-top: 1.3rem;
}
.hours-note-dim { color: var(--ink-soft); font-size: 0.88rem; }
.pickup-label { margin-top: 2rem; }

.map-facade {
  background: var(--cream);
  border: 1px solid var(--taupe);
  box-shadow: var(--shadow-hard);
  padding: 1.2rem;
}
.map-facade.is-playing { padding: 0; }
.map-facade-addr {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.map-facade-play {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--taupe);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 0.6rem 0.95rem;
  transition: background-color 0.15s ease;
}
.map-facade-play:hover { background: var(--espresso-lift); }
.map-facade-link {
  display: inline-block;
  margin-left: 0.9rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
}
.hours-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.2rem; }

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

.site-footer {
  background: var(--espresso);
  color: var(--cream);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.8rem 1.1rem 2.3rem;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-line { font-size: 0.95rem; }
.footer-line a { color: var(--cream); }
.footer-since { color: var(--cream-dim); margin-top: 0.7rem; }
.footer-proto {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dotted rgba(138, 122, 98, 0.5);
  font-size: 0.78rem;
  color: var(--cream-dim);
}

/* ---------- print: a diner menu gets printed / saved to PDF ---------- */
@media print {
  .site-header, .nav-toggle, .hero-scrim, .ticket-edge,
  .map-facade, .social-cards, .hero-ctas, .hours-ctas { display: none !important; }
  body { background: #fff; color: #000; }
  .hero-photo, .story-figure img, .gallery { break-inside: avoid; }
  /* Dark bars would print as near-white text on white — force ink-on-paper. */
  .board-bar, .board-title, .board-sub,
  .menu-cat-title, .specials-card, .specials-head, .specials-sub, .specials-foot,
  .specials-list, .status-ticket, .status-strip, .hero, .hero-inner, .site-footer {
    background: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
  }
  .menu-cat-title { border-top: 2px solid #000; border-bottom: 2px solid #000; }
  a { color: #000 !important; text-decoration: underline; }
  .menu-item-price, .fav-price, .sc-price { color: #000 !important; }
}
