:root {
  --ink: #111111;
  --muted: #5c5c5c;
  --mustard: #f5c518;
  --ketchup: #e03131;
  --bun: #fff6e8;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bun);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  background: rgba(255, 246, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.logo img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  border-radius: 0.4rem;
  background: #fff;
  border: 2px solid var(--ink);
}

.nav {
  display: none;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
}

.nav-cta {
  padding: 0.55rem 0.95rem;
  background: var(--ketchup);
  color: #fff;
  border-radius: 0.35rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 6px;
  place-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.nav.is-open {
  display: flex;
  position: absolute;
  inset: 100% 0 auto;
  flex-direction: column;
  padding: 1rem;
  background: var(--bun);
  border-bottom: 2px solid var(--ink);
}

.hero {
  display: grid;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  min-height: 46vh;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  background: var(--mustard);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
  border: 2px solid var(--ink);
}

.hero-copy {
  padding: clamp(1.75rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(245, 197, 24, 0.25), transparent 45%),
    var(--bun);
}

.eyebrow {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ketchup);
}

.hero-copy h1 {
  margin: 0.45rem 0 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.lede {
  margin: 0.9rem 0 0;
  max-width: 40ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 0.35rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  background: var(--ink);
  color: #fff;
}

.btn:hover {
  background: var(--ketchup);
  border-color: var(--ketchup);
}

.btn-ghost {
  background: transparent;
}

.eats,
.menu,
.find {
  padding: clamp(2.25rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.section-head h2,
.section-head.light h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.section-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.shot-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0.6rem;
  background: #000;
}

.shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.shot:hover img {
  transform: scale(1.05);
}

.shot.tall {
  grid-row: span 2;
}

.shot.tall img {
  aspect-ratio: auto;
  min-height: 100%;
}

.shot.wide {
  grid-column: 1 / -1;
}

.shot.wide img {
  aspect-ratio: 21 / 9;
}

.shot figcaption {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.3rem 0.55rem;
  background: var(--mustard);
  border: 2px solid var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.35rem 0 1.2rem;
  position: sticky;
  top: 4.2rem;
  z-index: 15;
  padding: 0.55rem 0;
  background: rgba(255, 246, 232, 0.94);
}

.filter {
  min-height: 40px;
  padding: 0.4rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 0.3rem;
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter.is-active {
  background: var(--mustard);
}

.menu-grid {
  display: grid;
  gap: 0.9rem;
}

.item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 0.6rem;
}

.item[hidden] {
  display: none;
}

.item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 0.4rem;
  border: 2px solid var(--ink);
}

.item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

.item p {
  margin: 0.2rem 0 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.item strong {
  color: var(--ketchup);
  font-size: 1.05rem;
}

.find {
  background: var(--ink);
  color: #fff;
}

.section-head.light p {
  color: rgba(255, 255, 255, 0.7);
}

.today {
  margin-top: 1.4rem;
  padding: 1.25rem;
  background: var(--mustard);
  color: var(--ink);
  border: 3px solid #fff;
  border-radius: 0.75rem;
}

.today-label {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.today h3 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

.today p {
  margin: 0.25rem 0 0.85rem;
}

.map-link {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0.3rem;
  font-weight: 800;
}

.stops {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.stop {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.6rem;
}

.stop.is-live {
  border-color: var(--mustard);
  background: rgba(245, 197, 24, 0.12);
}

.stop.muted {
  opacity: 0.65;
}

.stop-day {
  display: grid;
  place-items: center;
  height: 64px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  border-radius: 0.4rem;
}

.stop h3 {
  margin: 0;
  font-size: 1.05rem;
}

.stop p {
  margin: 0.2rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.pin {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mustard);
}

.map-card {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.map-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.map-copy {
  padding: 0 1rem 1.2rem;
}

.map-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.map-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.map-copy a {
  color: var(--mustard);
  font-weight: 800;
  text-decoration: underline;
}

.site-footer {
  padding: 1.5rem clamp(1rem, 4vw, 2rem) 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  display: grid;
  gap: 0.3rem;
  border-top: 2px solid var(--ink);
}

.site-footer a {
  text-decoration: underline;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 82vh;
  }

  .hero-media img {
    min-height: 100%;
    height: 100%;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .shot-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .shot img,
  .shot.tall img,
  .shot.wide img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }

  .shot.wide {
    grid-column: 2 / 4;
  }

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

  .stops {
    grid-template-columns: 1fr 1fr;
  }

  .map-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .map-copy {
    padding: 1.2rem 1.2rem 1.2rem 0;
  }
}

@media (min-width: 980px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .item {
    grid-template-columns: 1fr;
  }

  .item img {
    width: 100%;
    height: 180px;
  }
}
