/* === Big Taquero — Punk Zine Hi-Fi === */

:root {
  --paper: #f1ede2;
  --paper-2: #ebe5d4;
  --ink: #0d0d0d;
  --ink-soft: #1a1815;
  --red: #d92a1c;
  --red-deep: #a81a10;
  --yellow: #f5d800;
  --cream: #fdf8e8;
  --green: #1a8b3c;
  --page-max: 1280px;
  --content-max: 1120px;
  --text-max: 78ch;
  --hero-max: 1040px;
  --pad-x: clamp(14px, 4.5vw, 34px);
  --card-shadow: clamp(3px, 1vw, 6px);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}

*:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

html, body {
  background: #2a2926;
  font-family: "Special Elite", "Courier New", monospace;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
  overflow-x: hidden;
}

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

/* ─── Page column ─────────────────────────────── */

.page-wrap {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(0,0,0,.04) 0, transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(0,0,0,.04) 0, transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.02) 0, transparent 60%);
}

/* paper grain overlay */
.page-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.7;
  z-index: 1;
}

.page-wrap > * { position: relative; z-index: 2; }

/* ─── Typography helpers ──────────────────────── */

.bebas  { font-family: "Bebas Neue", sans-serif; letter-spacing: .02em; }
.marker { font-family: "Permanent Marker", cursive; }
.hand   { font-family: "Caveat", cursive; }
.mono   { font-family: "DM Mono", monospace; }
.type   { font-family: "Special Elite", monospace; }

/* ─── Layout helpers ─────────────────────────── */

.pad { padding-left: var(--pad-x); padding-right: var(--pad-x); }
.row { display: flex; }
.row.between { justify-content: space-between; }
.row.center  { justify-content: center; }
.row.aic     { align-items: center; }

/* ─── Top nav ────────────────────────────────── */

.topnav {
  position: relative;
  z-index: 140;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: max(6px, env(safe-area-inset-top)) var(--pad-x) 0;
  gap: 12px;
}

.topnav-stickers {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.menu-btn {
  position: fixed;
  top: max(6px, env(safe-area-inset-top));
  right: max(var(--pad-x), calc((100vw - var(--page-max)) / 2 + var(--pad-x)));
  z-index: 140;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--cream);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  padding: 8px 12px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--red);
}

/* ─── Mobile nav drawer ──────────────────────── */

.nav-drawer {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  max-width: var(--page-max);
  max-height: 100dvh;
  background: var(--ink);
  color: var(--cream);
  z-index: 200;
  padding: calc(18px + env(safe-area-inset-top)) var(--pad-x) calc(28px + env(safe-area-inset-bottom));
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
  border-bottom: 4px solid var(--red);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-drawer.open {
  transform: translateX(-50%) translateY(0);
}

.nav-drawer-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.nav-drawer-close button {
  font-family: "Bebas Neue";
  font-size: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  min-height: 44px;
  padding: 8px 14px;
  cursor: pointer;
  letter-spacing: .04em;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-links li a {
  display: block;
  font-family: "Bebas Neue";
  font-size: clamp(32px, 10vw, 48px);
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
  letter-spacing: .02em;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.2);
  transition: color .15s;
}

.nav-links li a:hover { color: var(--yellow); }

.nav-links li:last-child a { border-bottom: none; }

/* ─── Logo ───────────────────────────────────── */

.logo-block {
  padding: 14px var(--pad-x) 6px;
  position: relative;
}

.logo-img {
  display: block;
  width: min(72vw, 330px);
  height: auto;
  margin: 0 auto;
  filter: brightness(0) saturate(100%);
}

.logo-rule {
  width: calc(100% + (var(--pad-x) * 2));
  margin-left: calc(var(--pad-x) * -1);
  margin-right: calc(var(--pad-x) * -1);
  margin-top: 14px;
}

.logo-tagline {
  margin-top: 10px;
  font-family: "Special Elite", monospace;
  font-size: clamp(12px, 3.3vw, 15px);
  line-height: 1.35;
  max-width: 320px;
}

/* ─── Hazard tape ────────────────────────────── */

.hazard {
  display: block;
  width: 100%;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 12px,
    var(--yellow) 12px 24px
  );
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}

.hazard.red {
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 10px,
    var(--red) 10px 22px
  );
}

.hazard.thin { height: 10px; }

/* ─── Halftone ───────────────────────────────── */

.halftone {
  position: relative;
}

.halftone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--ink) .8px, transparent 1.2px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
  opacity: .18;
}

/* ─── Sticker ────────────────────────────────── */

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: .04em;
  box-shadow: 2px 2px 0 var(--ink);
}

.sticker.solid  { background: var(--ink); color: var(--cream); }
.sticker.red    { background: var(--red); color: #fff; }
.sticker.yellow { background: var(--yellow); }

/* ─── Washi tape ─────────────────────────────── */

.tape {
  position: absolute;
  width: 70px;
  height: 18px;
  background: rgba(245,216,0,.78);
  border-left:  1px dashed rgba(0,0,0,.2);
  border-right: 1px dashed rgba(0,0,0,.2);
  z-index: 5;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

.tape.red { background: rgba(217,42,28,.62); }

/* ─── Marquee ────────────────────────────────── */

.marquee {
  overflow: hidden;
  border-top:    2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  padding: 8px 0;
  animation: marquee-scroll 35s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee.red { background: var(--red); }
.marquee .star { color: var(--red); margin: 0 14px; }
.marquee.red .star { color: var(--yellow); }

/* ─── Hero ───────────────────────────────────── */

.hero {
  position: relative;
  margin-top: 6px;
  padding: 14px var(--pad-x) 10px;
}

.hero-frame {
  position: relative;
  border: 2.5px solid var(--ink);
  background: var(--ink);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--card-shadow) var(--card-shadow) 0 var(--red);
  max-width: 720px;
  margin: 0 auto;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
  display: block;
}

.hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  padding: clamp(44px, 14vw, 90px) clamp(14px, 4vw, 24px) clamp(14px, 4vw, 24px);
  color: #fff;
}

.hero-tag {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(12px, 3.8vw, 18px);
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 13vw, 78px);
  line-height: .88;
  letter-spacing: .005em;
  margin-top: 4px;
}

.hero-stamp {
  position: absolute;
  top: clamp(10px, 3vw, 18px); right: clamp(10px, 3vw, 18px);
  width: clamp(72px, 22vw, 112px); height: clamp(72px, 22vw, 112px);
  border: 2.5px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(217,42,28,.92);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(13px, 4vw, 20px);
  line-height: .95;
  letter-spacing: .04em;
  transform: rotate(-12deg);
  box-shadow: 0 0 0 2px rgba(255,255,255,.95) inset;
  padding: 6px;
}

/* ─── Today strip ────────────────────────────── */

.today-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 14px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top:    2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.today-strip-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.today-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--yellow);
  overflow-wrap: anywhere;
}

.today-where {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(23px, 7vw, 34px);
  line-height: 1;
}

.today-hours {
  font-family: "Special Elite", monospace;
  font-size: 12px;
  opacity: .8;
  overflow-wrap: anywhere;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 4px 8px;
  background: var(--red);
  border: 1.5px solid #fff;
  white-space: nowrap;
}

.live-badge.closed {
  background: #555;
  color: #fff;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse { 50% { opacity: .35; } }

/* ─── Section title ──────────────────────────── */

.section-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 10px;
  position: relative;
}

.section-num {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  background: var(--ink);
  color: var(--cream);
  padding: 1px 5px;
  flex-shrink: 0;
}

.section-title h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 9vw, 54px);
  line-height: .85;
  letter-spacing: .01em;
  flex: 0 0 auto;
}

.section-rule {
  flex: 1 1 auto;
  min-width: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 10px);
}

/* ─── Paper card ─────────────────────────────── */

.paper {
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

/* ─── Category tabs ──────────────────────────── */

.cat-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cat-tab {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  min-height: 44px;
  flex: 1 1 96px;
  padding: 8px 12px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .12s, transform .12s, box-shadow .12s;
}

.cat-tab.active {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 3px 3px 0 var(--red);
  transform: translate(-1px, -1px);
}

/* ─── Menu card ──────────────────────────────── */

.menu-card {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  padding: 0 14px;
  box-shadow: var(--card-shadow) var(--card-shadow) 0 var(--ink);
}

/* ─── Menu item ──────────────────────────────── */

.menu-item {
  border-bottom: 2px solid var(--ink);
  padding: 14px 0 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  min-width: 0;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(23px, 6.6vw, 32px);
  line-height: .95;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 0;
}

.menu-item-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(23px, 6.6vw, 32px);
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.menu-item-desc {
  font-family: "Special Elite", monospace;
  font-size: 12px;
  line-height: 1.45;
  color: #2a2926;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 4px;
  max-width: 68ch;
}

.menu-item-tags {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 6px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Tags ───────────────────────────────────── */

.tag {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: inline-block;
  white-space: nowrap;
}

.tag.v   { background: var(--green); color: #fff; border-color: var(--green); }
.tag.gf  { background: var(--yellow); }
.tag.allergen {
  background: transparent;
  color: var(--ink);
  border: 1px dashed var(--ink);
  font-size: 8.5px;
  padding: 1px 4px;
  opacity: .78;
}

.tag-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--ink);
  margin: 0 2px;
  opacity: .4;
  align-self: center;
}

/* ─── Spice meter ────────────────────────────── */

.spice {
  display: inline-flex;
  gap: 3px;
  margin-left: 6px;
  align-items: center;
  flex: 0 0 auto;
}

.chilli-on .body  { fill: var(--red);     stroke: var(--ink); stroke-width: .9; }
.chilli-on .leaf  { fill: var(--green);   stroke: var(--ink); stroke-width: .7; }
.chilli-on .stem  { stroke: var(--green); fill: none; }
.chilli-off .body { fill: rgba(0,0,0,.08); stroke: rgba(0,0,0,.35); stroke-width: .9; }
.chilli-off .leaf { fill: rgba(0,0,0,.12); stroke: rgba(0,0,0,.35); stroke-width: .7; }
.chilli-off .stem { stroke: rgba(0,0,0,.35); fill: none; }
.chilli-on .highlight, .chilli-off .highlight { fill: none; stroke: rgba(255,255,255,.55); stroke-width: .9; stroke-linecap: round; }

/* ─── Allergen legend ────────────────────────── */

.menu-legend {
  margin-top: 12px;
  margin-bottom: 28px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--ink);
  text-transform: uppercase;
}

.menu-legend-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.menu-legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}

.legend-row {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 10px;
}

.menu-note {
  margin-top: 8px;
  font-family: "Special Elite", monospace;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  opacity: .65;
}

/* ─── Schedule ───────────────────────────────── */

.schedule-card {
  padding: 14px;
  position: relative;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.schedule-header-loc {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
}

.schedule-header-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.sched-row {
  display: grid;
  grid-template-columns: 50px 70px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px dashed var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 12px;
}

.sched-row:first-of-type { border-top: 2px solid var(--ink); }

.sched-day {
  font-weight: 700;
  font-size: 14px;
}

.sched-where {
  font-family: "Special Elite", monospace;
  font-size: 12px;
}

.sched-row.today {
  background: var(--yellow);
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
}

.sched-row.closed { opacity: .45; }

.schedule-note {
  margin-top: 12px;
  font-family: "Special Elite", monospace;
  font-size: 12px;
  line-height: 1.4;
  padding-top: 8px;
  border-top: 2px solid var(--ink);
}

.schedule-note strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: .04em;
}

/* ─── CTA button ─────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  min-height: 44px;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: .06em;
  cursor: pointer;
  user-select: none;
  box-shadow: 4px 4px 0 var(--red);
  transition: transform .08s, box-shadow .08s;
  text-decoration: none;
  width: 100%;
  margin-top: 14px;
  text-align: center;
}

.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--red); }
.btn.red    { background: var(--red); box-shadow: 4px 4px 0 var(--ink); }
.btn.red:active { box-shadow: 2px 2px 0 var(--ink); }
.btn.ghost  { background: transparent; color: var(--ink); box-shadow: none; }
.btn.half   { width: auto; flex: 1; }

/* ─── Polaroid ───────────────────────────────── */

.polaroid {
  background: #fff;
  padding: 8px 8px 32px;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
}

.polaroid-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
}

.polaroid-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-caption {
  position: absolute;
  left: 12px; right: 12px; bottom: 8px;
  font-family: "Caveat", cursive;
  font-size: 16px;
  line-height: 1;
  color: var(--ink);
}

/* ─── Story ──────────────────────────────────── */

.story-polaroids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.story-text {
  margin-top: 16px;
  font-family: "Special Elite", monospace;
  font-size: clamp(13px, 3.4vw, 16px);
  line-height: 1.55;
}

.story-text p { margin: 0 0 10px; }
.story-text p:last-child { margin: 0; }

.story-drop {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  float: left;
  line-height: .78;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--red);
}

/* ─── Gallery ────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.gallery-cell {
  overflow: hidden;
  border: 1.5px solid var(--ink);
  position: relative;
  aspect-ratio: 1 / 1;
}

.gallery-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.span2,
.span3,
.span4 { grid-column: span 1; }
.row2  { grid-row: span 1; }

.gallery-link {
  display: block;
  margin-top: 10px;
  min-height: 44px;
  padding: 8px 0;
  text-align: center;
  font-family: "Permanent Marker", cursive;
  font-size: 18px;
  color: var(--red);
  text-decoration: underline wavy;
}

/* ─── Merch ──────────────────────────────────── */

.merch-card {
  background: var(--ink);
  color: var(--cream);
  padding: 14px;
  border: 2.5px solid var(--ink);
  position: relative;
}

.merch-badge {
  position: absolute;
  top: -10px; left: 12px;
  background: var(--red);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  padding: 2px 8px;
  border: 1.5px solid #fff;
  letter-spacing: .06em;
}

.merch-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 4px;
}

.merch-header-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.merch-header-sub {
  font-family: "Caveat", cursive;
  font-size: 16px;
  color: var(--yellow);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.merch-item-img {
  background: #fff;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.3);
}

.merch-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-item-info {
  margin-top: 4px;
}

.merch-item-name {
  font-family: "Special Elite", monospace;
  font-size: 10px;
  line-height: 1.2;
  color: var(--cream);
}

.merch-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1px;
}

.merch-item-color {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  opacity: .7;
}

.merch-item-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  color: var(--yellow);
}

/* ─── Book us ────────────────────────────────── */

.book-card {
  padding: 14px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: var(--card-shadow) var(--card-shadow) 0 var(--ink);
}

.book-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 8vw, 44px);
  line-height: .95;
}

.book-text {
  font-family: "Special Elite", monospace;
  font-size: 12.5px;
  margin-top: 8px;
  line-height: 1.45;
}

.book-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.book-btns .btn {
  margin-top: 0;
}

/* ─── Footer ─────────────────────────────────── */

.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 28px var(--pad-x) calc(18px + env(safe-area-inset-bottom));
  margin-top: 22px;
  position: relative;
}

.foot::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 10px,
    var(--red) 10px 22px
  );
}

.foot h3 {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(50px, 14vw, 80px);
  line-height: .9;
  margin: 0;
  color: var(--red);
  letter-spacing: -.01em;
}

.foot-info {
  font-family: "Special Elite", monospace;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

.foot-info a {
  color: var(--yellow);
  text-decoration: none;
}

.foot-info a:hover { text-decoration: underline; }

.foot-socials {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.foot-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  color: var(--cream);
  transition: background .15s;
}

.foot-icon:hover { background: var(--red); border-color: var(--red); }

.foot-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .1em;
  margin-top: 18px;
  opacity: .55;
  text-transform: uppercase;
  border-top: 1px dashed var(--cream);
  padding-top: 10px;
}

/* ─── Overlay backdrop ───────────────────────── */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── Hidden category panels ─────────────────── */

.menu-panel { display: none; }
.menu-panel.active { display: block; }

[hidden] { display: none !important; }

/* ─── Responsive tweaks ──────────────────────── */

@media (max-width: 389px) {
  :root {
    --pad-x: 14px;
  }

  .topnav-stickers {
    max-width: 220px;
  }

  .hero-frame {
    aspect-ratio: 3 / 4;
  }

  .hero-stamp {
    box-shadow: 0 0 0 1.5px rgba(255,255,255,.95) inset;
  }

  .today-strip {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .live-badge {
    margin-top: 2px;
  }

  .menu-card {
    padding: 0 12px;
  }

  .menu-item {
    column-gap: 8px;
  }

  .menu-item-desc {
    max-width: none;
  }

  .menu-legend-grid {
    grid-template-columns: 1fr;
  }

  .schedule-header {
    gap: 8px;
    flex-wrap: wrap;
  }

  .sched-row {
    grid-template-columns: 42px 1fr;
    gap: 3px 8px;
  }

  .sched-where {
    grid-column: 2;
  }

  .book-btns {
    grid-template-columns: 1fr;
  }

  .book-btns .btn.half {
    width: 100%;
  }
}

@media (max-width: 359px) {
  .story-polaroids {
    grid-template-columns: 1fr;
  }

  .polaroid[style] {
    margin-top: 0 !important;
  }

  .merch-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (min-width: 600px) {
  .nav-drawer {
    border-left: 2px solid var(--red);
    border-right: 2px solid var(--red);
  }

  .hero-frame {
    aspect-ratio: 16 / 11;
  }

  .today-strip {
    align-items: center;
  }

  .cat-tabs {
    flex-wrap: nowrap;
  }

  .gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(88px, 13vw, 150px);
  }

  .gallery-cell {
    aspect-ratio: auto;
  }

  .span2 { grid-column: span 2; }
  .span3 { grid-column: span 3; }
  .span4 { grid-column: span 4; }
  .row2  { grid-row: span 2; }

  .merch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .page-wrap {
    margin: 20px auto;
    min-height: auto;
    box-shadow: 0 0 60px rgba(0,0,0,.5);
  }

  .topnav,
  .logo-block,
  .hero,
  .today-strip,
  .pad,
  .foot {
    padding-left: clamp(32px, 6vw, 72px);
    padding-right: clamp(32px, 6vw, 72px);
  }

  .logo-block {
    max-width: var(--content-max);
  }

  .logo-img {
    margin-left: 0;
    margin-right: 0;
  }

  .logo-rule {
    width: calc(100% + (clamp(32px, 6vw, 72px) * 2));
    margin-left: calc(clamp(32px, 6vw, 72px) * -1);
    margin-right: calc(clamp(32px, 6vw, 72px) * -1);
  }

  .hero-frame {
    max-width: var(--hero-max);
  }

  .menu-panel.active.menu-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }

  .menu-card,
  .menu-legend,
  .schedule-card,
  .book-card,
  .merch-card {
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
  }

  .story-polaroids,
  .story-text,
  .gallery,
  .gallery-link {
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
  }

  .story-polaroids {
    gap: 18px;
  }

  .story-text {
    columns: 2;
    column-gap: 34px;
    max-width: var(--text-max);
  }

  .story-text p {
    break-inside: avoid;
  }

  .foot {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 14px 28px;
  }

  .foot-info,
  .foot-socials,
  .foot-meta {
    grid-column: 1 / -1;
  }

  .foot-socials {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    justify-content: flex-end;
  }
}

@media (min-width: 1040px) {
  .page-wrap {
    border-left: 2px solid rgba(255,255,255,.08);
    border-right: 2px solid rgba(255,255,255,.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .marquee-track {
    animation: none !important;
    transform: none !important;
  }
}
