@font-face {
  font-family: "DailyQuick";
  src: url("assets/DailyQuick-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #ef2435;
  --deep-red: #b90e1c;
  --yellow: #ffda22;
  --warm-white: #fffaf0;
  --white: #ffffff;
  --ink: #090b0a;
  --muted: #5d312d;
  --line: #090b0a;
  --blue-hit: #11a7d9;
  --shadow: 0 18px 0 rgba(9, 11, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

h1,
h2 {
  margin: 0;
  font-family: "DailyQuick", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.8rem, 16vw, 13rem);
}

h2 {
  font-size: clamp(3.3rem, 8vw, 7.5rem);
}

p {
  margin: 0;
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(9, 11, 10, 0.18), rgba(9, 11, 10, 0));
  color: var(--white);
}

.nav-brand {
  font-family: "DailyQuick", Impact, sans-serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 0.9;
  text-shadow: 3px 3px 0 var(--ink);
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(9, 11, 10, 0.16);
  backdrop-filter: blur(8px);
}

.site-nav nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav nav a[aria-current="page"],
.site-nav nav a:hover {
  background: var(--white);
  color: var(--red);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: min(100svh, 980px);
  padding: 7rem clamp(1rem, 4vw, 4rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.32) 0 0.4rem, transparent 0.45rem),
    linear-gradient(90deg, var(--red) 0 50%, var(--yellow) 50% 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20vh;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.4) 50% 75%, transparent 75%) 0 0 / 4rem 4rem,
    var(--yellow);
  opacity: 0.35;
}

.hero-wordmark {
  position: absolute;
  inset: 5.5rem auto auto 3vw;
  color: var(--yellow);
  font-family: "DailyQuick", Impact, sans-serif;
  font-size: clamp(7rem, 20vw, 18rem);
  line-height: 0.72;
  opacity: 0.95;
  text-shadow: 8px 8px 0 var(--ink);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: min(calc(100svh - 7rem), 820px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 1.22fr);
  align-items: end;
  gap: clamp(1rem, 4vw, 4rem);
}

.hero-copy {
  align-self: center;
  max-width: 38rem;
  padding-bottom: 3rem;
  text-shadow: 3px 3px 0 var(--ink);
}

.eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-kicker {
  max-width: 30rem;
  margin-top: 1rem;
  font-size: clamp(1.3rem, 2.7vw, 2.4rem);
  font-weight: 950;
  line-height: 1.05;
}

.hero-actions,
.product-copy .button {
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.05rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
}

.button-light {
  margin-left: 0.75rem;
  background: var(--white);
  color: var(--ink);
}

.hero-art {
  position: relative;
  min-height: min(68vw, 47rem);
}

.hero-food {
  position: absolute;
  right: 2vw;
  bottom: 7vh;
  width: min(56vw, 52rem);
  border: 5px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.mascot {
  filter: drop-shadow(8px 8px 0 rgba(9, 11, 10, 0.24));
}

.mascot-hero {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(28vw, 24rem);
  transform: rotate(5deg);
}

.ticker {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 2rem;
  width: calc(100% + 8rem);
  margin: 0 -4rem;
  padding: 0.8rem 4rem;
  overflow: hidden;
  border-block: 4px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  content: " /";
  color: var(--red);
}

.intro-block {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr) minmax(16rem, 0.7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 4px solid var(--ink);
  background: var(--warm-white);
}

.intro-mark {
  align-self: start;
  display: grid;
  place-items: center;
  width: 8rem;
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 7px 7px 0 var(--red);
}

.intro-block h2 {
  color: var(--red);
}

.intro-block > p {
  align-self: end;
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 42rem;
  background: var(--red);
}

.photo-panel,
.type-panel {
  min-width: 0;
}

.photo-panel img,
.side-photo img,
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.type-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  border-left: 4px solid var(--ink);
}

.red-panel {
  background: var(--red);
  color: var(--yellow);
}

.red-panel p:last-child {
  max-width: 25rem;
  margin-top: 1rem;
  color: var(--white);
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 38rem;
  border-block: 4px solid var(--ink);
  background: var(--yellow);
}

.side-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  border-right: 4px solid var(--ink);
}

.side-copy h2 {
  color: var(--red);
}

.side-copy p:last-child {
  margin-top: 1rem;
  font-weight: 850;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--warm-white);
  border-bottom: 4px solid var(--ink);
}

.poster-grid article {
  min-height: 22rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-right: 4px solid var(--ink);
}

.poster-grid article:nth-child(2) {
  background: var(--red);
  color: var(--white);
}

.poster-grid article:nth-child(3) {
  background: var(--yellow);
}

.poster-grid article:last-child {
  border-right: 0;
}

.poster-grid span {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 950;
}

.poster-grid h2 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.poster-grid p {
  margin-top: 1rem;
  max-width: 20rem;
  font-weight: 850;
}

.product-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 43rem;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.product-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7rem;
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
}

.mascot-stamp {
  position: absolute;
  z-index: 2;
  top: 2rem;
  left: 4vw;
  width: min(19vw, 14rem);
  transform: rotate(-7deg);
}

.product-photo {
  position: relative;
  z-index: 1;
  min-height: 32rem;
}

.product-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(2rem, 5vw, 5rem);
  text-shadow: 3px 3px 0 var(--ink);
}

.product-copy h2 {
  color: var(--yellow);
}

.visit-band {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  background: var(--yellow);
  border-block: 4px solid var(--ink);
}

.visit-band h2 {
  color: var(--red);
}

.hours {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  min-width: min(100%, 22rem);
}

.hours span {
  display: block;
  padding: 0.8rem 1rem;
  border: 3px solid var(--ink);
  background: var(--white);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--red);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.menu-page {
  background:
    linear-gradient(90deg, rgba(239, 36, 53, 0.08) 0 50%, transparent 50%) 0 0 / 4rem 4rem,
    var(--warm-white);
}

.menu-hero {
  padding: 8rem clamp(1rem, 5vw, 5rem) clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(90deg, var(--red) 0 46%, var(--yellow) 46% 100%);
  color: var(--white);
  border-bottom: 4px solid var(--ink);
  text-shadow: 3px 3px 0 var(--ink);
}

.menu-hero h1 {
  max-width: 12ch;
}

.menu-hero p:last-child {
  margin-top: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 950;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1rem, 5vw, 5rem);
}

.menu-column {
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--red);
}

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

.menu-column h2 {
  padding: 1.1rem 1rem 0.85rem;
  border-bottom: 4px solid var(--ink);
  background: var(--yellow);
  color: var(--red);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.05rem 1rem;
  border-bottom: 3px solid var(--ink);
}

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

.menu-item h3 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.menu-item span {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.9;
  color: var(--red);
}

.menu-note {
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 4px solid var(--ink);
  background: var(--red);
  color: var(--white);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 var(--yellow);
}

@media (max-width: 920px) {
  .hero {
    padding-top: 6rem;
  }

  .hero-grid,
  .intro-block,
  .feature-collage,
  .split-band,
  .product-band,
  .poster-grid,
  .menu-board {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
  }

  .hero-wordmark {
    inset: 7rem 0 auto 1rem;
    font-size: clamp(6rem, 29vw, 12rem);
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-art {
    min-height: 34rem;
  }

  .hero-food {
    right: auto;
    left: 0;
    bottom: 4.5rem;
    width: min(91vw, 44rem);
  }

  .mascot-hero {
    width: min(44vw, 18rem);
  }

  .intro-block {
    padding-top: 4rem;
  }

  .type-panel,
  .side-copy,
  .poster-grid article {
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }

  .poster-grid article:last-child {
    border-bottom: 0;
  }

  .feature-collage,
  .split-band,
  .product-band {
    min-height: auto;
  }

  .photo-panel,
  .side-photo,
  .product-photo {
    min-height: 28rem;
  }

  .mascot-stamp {
    width: 8rem;
  }

  .menu-column-wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-nav {
    align-items: flex-start;
    width: 100vw;
    padding: 0.7rem;
  }

  .site-nav nav {
    position: absolute;
    top: 3.2rem;
    left: 0.7rem;
    right: auto;
    gap: 0.1rem;
    max-width: calc(100vw - 1.4rem);
    overflow-x: auto;
  }

  .site-nav nav a {
    min-height: 2rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.7rem, 13.5vw, 3.45rem);
  }

  .hero {
    min-height: auto;
    width: 100vw;
    max-width: 100vw;
    padding-inline: 0.8rem;
  }

  .hero-copy {
    padding-top: 6.2rem;
  }

  .hero-kicker {
    max-width: 17rem;
  }

  .button {
    min-height: 2.7rem;
    padding: 0.65rem 0.82rem;
    font-size: 0.72rem;
  }

  .button-light {
    margin-left: 0;
    margin-top: 0.8rem;
  }

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

  .hero-art {
    min-height: 28rem;
  }

  .hero-food {
    bottom: 5.6rem;
    width: calc(100vw - 1.6rem);
  }

  .mascot-hero {
    width: 12rem;
  }

  .ticker {
    flex-wrap: wrap;
    gap: 0.62rem 0.9rem;
    margin-inline: -0.8rem;
    width: calc(100% + 1.6rem);
    padding-inline: 1rem;
    font-size: 0.75rem;
    white-space: normal;
  }

  .intro-block,
  .feature-collage,
  .split-band,
  .product-band,
  .poster-grid,
  .visit-band,
  .menu-hero,
  .menu-board {
    width: 100vw;
    max-width: 100vw;
  }

  .menu-board {
    justify-items: start;
  }

  .menu-column {
    width: min(calc(100vw - 2rem), 358px);
    max-width: calc(100vw - 2rem);
  }

  .menu-note {
    width: min(calc(100vw - 2rem), 358px);
    max-width: calc(100vw - 2rem);
    margin-inline: 1rem;
  }

  .intro-block,
  .type-panel,
  .side-copy,
  .poster-grid article,
  .product-copy,
  .visit-band,
  .menu-board {
    padding-inline: 1rem;
  }

  .intro-mark {
    width: 6.8rem;
  }

  .photo-panel,
  .side-photo,
  .product-photo {
    min-height: 20rem;
  }

  .visit-band,
  .site-footer {
    flex-direction: column;
  }

  .menu-hero {
    padding-top: 9rem;
  }

  .menu-hero h1 {
    max-width: 7ch;
  }

  .menu-hero p:last-child {
    max-width: 16rem;
    font-size: 1.18rem;
  }

  .menu-item {
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-item h3,
  .menu-item p,
  .intro-block p {
    overflow-wrap: anywhere;
  }

  .intro-block > p {
    max-width: 30ch;
  }

  .menu-item span {
    justify-self: start;
    font-size: 2.1rem;
  }
}
