:root {
  color-scheme: light dark;
  --gold: #ffbf18;
  --gold-deep: #d98b00;
  --ink: #0b0b08;
  --charcoal: #141414;
  --paper: #f4efe5;
  --cream: #fff7e4;
  --chili: #b93927;
  --muted: #7d7468;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: white;
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-header {
  min-height: 100svh;
  background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.5), rgba(0,0,0,.05)), url("assets/day.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.site-header.is-day {
  background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.5), rgba(0,0,0,.05)), url("assets/day.jpeg");
}
.site-header.is-night {
  background-image: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.52), rgba(0,0,0,.16)), url("assets/night.jpeg");
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  background: var(--gold);
  color: #050505;
  border: 3px solid #050505;
  box-shadow: 4px 4px 0 #050505;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 25px;
  line-height: 1;
  transform: skew(-5deg);
}
.brand-logo {
  width: 112px;
  height: 70px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.brand strong, h1, h2, h3, .button, .nav-links a, .label {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}
.brand small { display: block; font-size: 12px; opacity: .82; letter-spacing: 1px; text-transform: uppercase; }
.brand strong { display: block; font-size: 25px; line-height: .95; }
.site-header .brand strong { color: var(--gold); }
.site-header .brand small { color: rgba(255,255,255,.82); }
.nav-links {
  justify-self: center;
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}
.nav-links a { padding: 10px 0; border-bottom: 3px solid transparent; }
.nav-links a:hover, .nav-links a:focus { color: var(--gold); border-color: var(--gold); }
.nav-toggle { display: none; }

.button, .order-trigger {
  border: 0;
  min-height: 46px;
  border-radius: 7px;
  padding: 0 22px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #090909;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.button.secondary {
  background: rgba(0,0,0,.42);
  color: white;
  border: 1px solid rgba(255,255,255,.42);
}
.button.small { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.button.full { width: 100%; }
.button:hover, .order-trigger:hover { transform: translateY(-1px); }

.hero {
  min-height: calc(100svh - 98px);
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 60px 0 130px;
}
.hero-copy { max-width: 590px; }
.eyebrow, .label {
  color: var(--gold);
  margin: 0 0 12px;
  font-weight: 900;
}
h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 118px);
  line-height: .82;
  text-shadow: 0 7px 1px rgba(0,0,0,.45);
}
h1 span, h2 span { color: var(--gold); }
.hero-text {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.feature-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.9);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 18px max(16px, calc((100vw - 1120px) / 2));
}
.feature-strip article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 12px;
  align-items: center;
}
.feature-strip span { color: var(--gold); font-size: 31px; grid-row: span 2; }
.feature-strip strong { text-transform: uppercase; font-weight: 900; }
.feature-strip small { color: rgba(255,255,255,.74); }

.section { padding: 48px max(18px, calc((100vw - 1120px) / 2)); }
.light { background: var(--paper); color: var(--ink); }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
h2 { margin: 0; font-size: clamp(34px, 5vw, 52px); line-height: .92; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 14px;
}
.menu-item {
  background: #0d0d0d;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
}
.dish-art {
  min-height: 128px;
  display: grid;
  place-items: center;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 3px 3px 0 #080808;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,191,24,.8), transparent 22%),
    radial-gradient(circle at 70% 45%, rgba(185,57,39,.88), transparent 24%),
    linear-gradient(135deg, #6f2b12, #17100b);
}
.menu-item div:not(.dish-art) { padding: 12px; }
.menu-item h3 { margin: 0 0 6px; font-size: 22px; line-height: .96; }
.menu-item h3 span { color: var(--gold); display: block; }
.menu-item p { margin: 0 0 12px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.35; }
.menu-item footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.menu-item button {
  border: 0;
  background: var(--gold);
  color: var(--ink);
  border-radius: 6px;
  min-height: 34px;
  padding: 0 10px;
  font-weight: 900;
  cursor: pointer;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(240px, 310px) 1fr 1.15fr;
  gap: 18px;
  background: #0b0b0b;
  padding: 34px max(18px, calc((100vw - 1120px) / 2));
}
.location-card {
  padding: 20px;
  border: 1px solid var(--line);
}
.location-card address, .location-card p { color: rgba(255,255,255,.82); font-style: normal; line-height: 1.5; }
.date { color: var(--gold) !important; font-weight: 900; text-transform: uppercase; }
.truck-photo {
  min-height: 270px;
  background-image: url("assets/night.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.map-panel {
  min-height: 270px;
  border-radius: 8px;
  background:
    linear-gradient(32deg, transparent 48%, rgba(217,139,0,.32) 49% 51%, transparent 52%),
    linear-gradient(115deg, transparent 45%, rgba(80,80,80,.32) 46% 48%, transparent 49%),
    #ede6d7;
  color: #181818;
  position: relative;
  overflow: hidden;
}
.map-pin {
  position: absolute;
  left: 48%;
  top: 42%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
  color: var(--chili);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery img, .gallery article {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 8px;
}
.gallery article {
  background: #141414;
  color: white;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.gallery article strong { color: var(--gold); text-transform: uppercase; }
.social-card {
  background: var(--gold);
  color: var(--ink);
  border-radius: 8px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  font-weight: 900;
}

.reviews {
  background: #0d0d0d;
  padding: 34px max(18px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}
.reviews article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  min-height: 150px;
}
.reviews strong { color: var(--gold); }
.reviews p { line-height: 1.4; }

.catering {
  background: var(--paper);
  color: var(--ink);
  padding: 34px max(18px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.catering article {
  border-left: 1px solid rgba(0,0,0,.18);
  padding-left: 18px;
}
.catering strong { display: block; text-transform: uppercase; }
.catering small { color: var(--muted); }
.about {
  background: var(--cream);
  color: var(--ink);
  padding: 44px max(18px, calc((100vw - 920px) / 2));
}
.about p { font-size: 18px; line-height: 1.6; }

.footer {
  background: #080808;
  padding: 40px max(18px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: 1.35fr .85fr 1.05fr 1.25fr 1.2fr;
  gap: 28px;
}
.footer h3 { margin: 0 0 12px; color: var(--gold); }
.footer a, .footer p { display: block; color: rgba(255,255,255,.76); margin: 7px 0; }
.footer-intro {
  display: grid;
  gap: 18px;
  align-content: start;
}
.footer .brand { min-width: 0; }
.footer .brand strong { color: var(--gold); }
.partner-card {
  display: grid;
  gap: 8px;
  width: min(260px, 100%);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.partner-card span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
}
.partner-logo {
  width: 100%;
  max-width: 210px;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}
.footer .brand small { max-width: 250px; }
.footer-hours {
  display: grid;
  align-content: start;
  gap: 8px;
}
.footer-hours p {
  line-height: 1.45;
}
.footer-hours strong {
  color: white;
}
.newsletter { display: grid; gap: 10px; align-content: start; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 7px;
  padding: 11px 12px;
}

.catering-panel,
.cart-panel {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.58);
  display: none;
  justify-content: end;
  z-index: 20;
}
.catering-panel.open,
.cart-panel.open { display: flex; }
.catering-shell,
.cart-shell {
  width: min(440px, 100%);
  height: 100%;
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
  padding: 22px;
  box-shadow: var(--shadow);
}
.cart-head, .cart-line, .total-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.icon-button {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0;
  background: #111;
  color: white;
  font-size: 28px;
  cursor: pointer;
}
.cart-items { display: grid; gap: 12px; margin: 18px 0; }
.cart-line {
  background: white;
  border-radius: 8px;
  padding: 12px;
}
.qty {
  display: flex;
  gap: 8px;
  align-items: center;
}
.qty button {
  width: 30px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  cursor: pointer;
}
.catering-form,
.checkout-form { display: grid; gap: 13px; }
.catering-form label,
.checkout-form label { display: grid; gap: 6px; font-weight: 800; }
.total-row {
  border-top: 2px solid #111;
  padding-top: 14px;
  font-size: 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 46px;
    min-height: 46px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.5);
    color: white;
    border-radius: 7px;
    padding: 10px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
  border-radius: 6px;
  object-fit: contain;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-toggle span + span {
    margin-top: 5px;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    display: none;
    background: rgba(0,0,0,.82);
    border-radius: 8px;
    padding: 10px;
  }
  .nav-links.open { display: flex; }
  .order-trigger { grid-column: 1 / -1; width: 100%; }
  .feature-strip, .reviews, .catering, .footer, .location-band {
    grid-template-columns: 1fr 1fr;
  }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 760px;
    background-position: 58% center;
  }
  .hero { align-items: end; padding-bottom: 230px; }
  .hero-actions .button { width: 100%; }
  .feature-strip {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
  .section-head { align-items: stretch; flex-direction: column; }
  .menu-grid, .reviews, .catering, .footer, .location-band, .gallery {
    grid-template-columns: 1fr;
  }
  .catering article { border-left: 0; border-top: 1px solid rgba(0,0,0,.18); padding: 16px 0 0; }
  .brand strong { font-size: 21px; }
  .brand-logo {
    width: 92px;
    height: 58px;
  }

  .footer .brand {
    align-items: start;
    width: 100%;
  }
}









.menu-page {
  background: var(--paper);
  color: var(--ink);
}
.menu-page-header {
  background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58)), url("assets/night.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
}
.full-menu-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 82px;
}
.full-menu-hero h1 {
  max-width: 720px;
}
.full-menu-main {
  padding: 48px max(18px, calc((100vw - 1120px) / 2));
  background: var(--paper);
  color: var(--ink);
}
.full-menu-head {
  border-bottom: 3px solid rgba(0,0,0,.14);
  padding-bottom: 22px;
}
.full-menu-grid {
  display: grid;
  gap: 34px;
}
.full-menu-category h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 40px);
}
.full-menu-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 14px;
}
@media (max-width: 980px) {
  .full-menu-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .full-menu-hero {
    padding: 52px 0 60px;
  }
  .full-menu-items {
    grid-template-columns: 1fr;
  }
}

.form-actions {
  display: grid;
  gap: 10px;
}
.form-note {
  min-height: 20px;
  margin: 0;
  color: #256b37;
  font-weight: 800;
  line-height: 1.35;
}
.catering-shell {
  width: min(520px, 100%);
}












