:root {
  --ink: #000000;
  --muted: #1a1a1a;
  --green: #1fa343;
  --green-deep: #0d7a2f;
  --gold: #ffd100;
  --gold-hot: #ffbf00;
  --red: #d62828;
  --red-hot: #ff3b3b;
  --cream: #fff4d6;
  --white: #ffffff;
  --font-display: "Lilita One", Impact, system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #f4f4f4;
  background: #0a0a0a;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 4.75rem;
}

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.75rem clamp(1rem, 4vw, 2rem);
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 50%, var(--red) 100%);
  border-bottom: 4px solid var(--ink);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.45);
}

.logo img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ink);
}

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

.nav a:not(.nav-cta) {
  padding: 0.35rem 0.55rem;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 999px;
}

.nav-cta {
  padding: 0.55rem 0.95rem;
  background: var(--ink);
  color: var(--gold);
  border-radius: 999px;
  border: 2px solid var(--ink);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 0.5rem;
  background: var(--gold);
  display: grid;
  gap: 5px;
  place-content: center;
  cursor: pointer;
}

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

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

.hero {
  display: grid;
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "🔥 HOT HOT HOT";
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.75rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  border: 3px solid var(--ink);
  transform: rotate(-6deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-media img {
  width: 100%;
  min-height: 42vh;
  object-fit: cover;
  border-bottom: 4px solid var(--ink);
}

.hero-copy {
  padding: clamp(1.5rem, 5vw, 2.75rem) clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 209, 0, 0.5), transparent 40%),
    linear-gradient(160deg, #fff8df, #ffe08a);
}

.eyebrow {
  margin: 0;
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  transform: rotate(-2deg);
}

.hero-copy h1 {
  margin: 0.85rem 0 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  line-height: 1;
  color: var(--red);
  text-shadow:
    3px 3px 0 var(--gold),
    -1px -1px 0 var(--ink),
    1px -1px 0 var(--ink),
    -1px 1px 0 var(--ink),
    1px 1px 0 var(--ink);
}

.lede {
  margin: 1rem 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-weight: 700;
  font-size: 1.05rem;
}

.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: 50px;
  padding: 0.7rem 1.2rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn:hover {
  background: var(--green);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-ghost {
  background: var(--gold);
  color: var(--ink);
}

.btn-ghost.light {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--ink);
}

.hours {
  display: grid;
  gap: 0.55rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--ink);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
}

.hours strong {
  color: var(--gold);
}

.rasta-strip {
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0 33.33%,
    var(--gold) 33.33% 66.66%,
    var(--red) 66.66% 100%
  );
  border-block: 3px solid var(--ink);
}

.menu,
.combos {
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1rem, 4vw, 2rem);
}

.section-head h2 {
  margin: 0;
  display: inline-block;
  padding: 0.25rem 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1;
  background: var(--gold);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red);
  transform: rotate(-1.5deg);
}

.section-head p {
  margin: 0.85rem 0 0;
  color: #e6e6e6;
  font-weight: 700;
  max-width: 36ch;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.35rem 0 1.25rem;
  position: sticky;
  top: 4.4rem;
  z-index: 15;
  padding: 0.55rem 0;
  background: #000;
}

.filter {
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
}

.filter.is-active {
  background: var(--green);
  color: #fff;
}

.filter:nth-child(3n).is-active {
  background: var(--red);
}

.filter:nth-child(3n + 2).is-active {
  background: var(--ink);
  color: var(--gold);
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.dish {
  display: grid;
  gap: 0.75rem;
  background: #fff;
  border: 3px solid #000;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 5px 5px 0 #000;
}

.dish[hidden] {
  display: none;
}

.dish img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 3px solid #000;
}

.dish-body {
  padding: 0 1rem 1.1rem;
}

.dish-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
}

.dish-top h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #000;
}

.hot,
.mild,
.veg {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 2px solid #000;
}

.hot {
  background: #000;
  color: #fff;
}

.mild {
  background: #fff;
  color: #000;
}

.veg {
  background: #000;
  color: #fff;
}

.dish-body > p {
  margin: 0.4rem 0 0.85rem;
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
}

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.size {
  min-height: 40px;
  padding: 0.4rem 0.75rem;
  border: 2.5px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font: inherit;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
}

.size.is-active {
  background: #000;
  color: #fff;
  box-shadow: 2px 2px 0 #000;
}

.combo-grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.9rem;
}

.combo {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem;
  background: #fff;
  border: 3px solid #000;
  border-radius: 1rem;
  box-shadow: 4px 4px 0 #000;
}

.combo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 2px solid #000;
}

.combo h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #000;
}

.combo p {
  margin: 0.25rem 0 0.45rem;
  color: #333;
  font-size: 0.92rem;
  font-weight: 600;
}

.combo strong {
  color: #000;
  font-size: 1.15rem;
  font-weight: 900;
}

.order-bar {
  margin: 0 clamp(1rem, 4vw, 2rem) 1.5rem;
  padding: 1.4rem;
  border-radius: 1.4rem;
  background:
    repeating-linear-gradient(
      45deg,
      var(--green) 0 16px,
      var(--gold) 16px 32px,
      var(--red) 32px 48px
    );
  border: 4px solid var(--ink);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.order-inner {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid var(--ink);
  border-radius: 1rem;
}

.order-bar h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--red);
}

.order-bar p {
  margin: 0.4rem 0 0;
  font-weight: 700;
  color: var(--muted);
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer {
  padding: 1.5rem clamp(1rem, 4vw, 2rem) 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  display: grid;
  gap: 0.3rem;
  background: var(--ink);
  color: var(--gold);
}

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

.sticky-order {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.sticky-order a {
  padding: 0.55rem 0.9rem;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  white-space: nowrap;
}

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

  .nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    min-height: 78vh;
  }

  .hero-media img {
    min-height: 100%;
    height: 100%;
    border-bottom: 0;
    border-right: 4px solid var(--ink);
  }

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

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

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

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

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

  .combo img {
    width: 100%;
    height: 160px;
  }

  .order-inner {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

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