:root {
  --ink: #161311;
  --charcoal: #211d1a;
  --charcoal-2: #2e2923;
  --cream: #fff5df;
  --paper: #fffaf0;
  --gold: #f7bd3b;
  --orange: #ee751f;
  --red: #d73727;
  --sage: #8ea47b;
  --mint: #c9d99c;
  --sky: #5e87a8;
  --line: rgba(255, 245, 223, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 44px 44px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.9rem 1.2rem;
  background: rgba(18, 15, 13, 0.72);
  border-bottom: 1px solid rgba(255, 245, 223, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold), var(--orange));
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.35);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.6rem;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.25rem;
}

.brand-copy small {
  color: var(--mint);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a,
.site-nav button {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  color: rgba(255, 245, 223, 0.82);
  background: transparent;
  border: 0;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--cream);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0.9rem 1.05rem;
  border: 0;
  border-radius: var(--radius);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.34);
}

.button:disabled {
  cursor: wait;
  filter: grayscale(0.35);
  opacity: 0.72;
}

.button-hot {
  color: #130d0b;
  background: linear-gradient(180deg, var(--gold), var(--orange));
}

.button-ghost {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 245, 223, 0.25);
}

.button-dark {
  color: var(--cream);
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: 8.5rem 7vw 8rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(22, 19, 17, 0.94) 0%, rgba(22, 19, 17, 0.78) 42%, rgba(22, 19, 17, 0.25) 74%),
    linear-gradient(180deg, rgba(22, 19, 17, 0) 72%, var(--ink) 100%),
    url("assets/images/plate-hero.jpg") center right / cover no-repeat;
  transform: translateY(calc(var(--scroll-y, 0) * 0.05px));
}

.hero::before {
  content: "BOMB FRESHNESS";
  position: absolute;
  right: -1rem;
  bottom: 8.8rem;
  z-index: -1;
  color: rgba(255, 245, 223, 0.05);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 8rem;
  line-height: 0.85;
  white-space: nowrap;
}

.hero-text {
  width: min(680px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-logo {
  width: 360px;
  max-width: 100%;
  margin: 0 0 1.25rem;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4.65rem;
  text-transform: uppercase;
  text-shadow: 0 9px 0 rgba(0, 0, 0, 0.28);
}

.hero-copy {
  max-width: 610px;
  margin: 1.25rem 0 0;
  color: rgba(255, 245, 223, 0.86);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-orbit {
  position: absolute;
  top: 7.7rem;
  right: 5vw;
  width: 42vw;
  min-width: 390px;
  max-width: 620px;
  height: 580px;
  pointer-events: none;
}

.floating-food,
.mascot-card {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(255, 245, 223, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.floating-food img,
.mascot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-food-one {
  top: 2rem;
  right: 4rem;
  width: 260px;
  height: 260px;
  animation: driftA 9s ease-in-out infinite;
}

.floating-food-two {
  right: 16rem;
  bottom: 2rem;
  width: 190px;
  height: 230px;
  animation: driftB 8s ease-in-out infinite;
}

.mascot-card {
  right: 0;
  bottom: 4.5rem;
  width: 280px;
  height: 340px;
  background: var(--paper);
  animation: mascotPop 3.8s ease-in-out infinite;
}

.motion-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.4rem;
  height: 124px;
  overflow: hidden;
}

.road-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 12px;
  background: repeating-linear-gradient(90deg, rgba(255, 245, 223, 0.9) 0 70px, transparent 70px 125px);
  opacity: 0.58;
}

.tiny-truck {
  position: absolute;
  left: -290px;
  bottom: 26px;
  width: 270px;
  height: 94px;
  animation: driveTruck 15s linear infinite;
}

.truck-cab,
.truck-box {
  position: absolute;
  bottom: 18px;
  background: #2d2a25;
  border: 3px solid #0f0d0c;
}

.truck-cab {
  left: 0;
  width: 88px;
  height: 62px;
  border-radius: 8px 18px 6px 6px;
}

.truck-cab::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  width: 34px;
  height: 24px;
  background: var(--sky);
  border: 2px solid #111;
  transform: skewX(-10deg);
}

.truck-box {
  left: 76px;
  width: 178px;
  height: 72px;
  border-radius: 6px;
}

.truck-logo {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #12100e;
  background: var(--gold);
  border-radius: 50%;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
}

.truck-window {
  position: absolute;
  right: 20px;
  top: 14px;
  width: 54px;
  height: 30px;
  background: var(--cream);
  border: 2px solid #111;
  border-radius: 3px;
}

.truck-flame {
  position: absolute;
  width: 25px;
  height: 45px;
  background: var(--red);
  border-radius: 60% 15% 60% 15%;
  transform: rotate(40deg);
}

.truck-flame-one {
  left: 70px;
  top: 13px;
}

.truck-flame-two {
  right: 84px;
  top: 22px;
  width: 18px;
  height: 32px;
  background: var(--sage);
}

.truck-wheel {
  position: absolute;
  bottom: 3px;
  width: 34px;
  height: 34px;
  background: #0f0d0c;
  border: 7px solid #3c3832;
  border-radius: 50%;
  animation: wheelSpin 750ms linear infinite;
}

.truck-wheel-front {
  left: 40px;
}

.truck-wheel-back {
  right: 34px;
}

.served-plate {
  position: absolute;
  right: 50px;
  top: 24px;
  width: 42px;
  height: 42px;
  background: url("assets/images/plate-bright.jpg") center / cover;
  border: 3px solid var(--cream);
  border-radius: 50%;
  opacity: 0;
}

.served-plate-one {
  animation: servePlate 15s ease-in-out infinite;
}

.served-plate-two {
  animation: servePlate 15s ease-in-out 1.1s infinite;
}

.route-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0.85rem 0;
  color: #160f0b;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red), var(--sage));
  border-top: 4px solid #0f0d0c;
  border-bottom: 4px solid #0f0d0c;
  font-weight: 950;
  text-transform: uppercase;
}

.route-marquee {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 28s linear infinite;
}

.route-marquee::after {
  content: "Booking events in Philadelphia  South Jersey  Central Jersey  Locations posted on Instagram  Coming soon across VA, MD, PA, DE, NJ, and NY";
  padding-left: 2rem;
}

.section {
  padding: 6rem 7vw;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.truck-copy h2,
.events-copy h2,
.expansion-copy h2 {
  font-size: 3.3rem;
  text-transform: uppercase;
}

.section-heading p,
.truck-copy p,
.events-copy p,
.expansion-copy p {
  margin: 0;
  color: rgba(255, 245, 223, 0.74);
}

.flavor-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1rem;
}

.flavor-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.flavor-card-tall {
  min-height: 520px;
}

.flavor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.flavor-card:hover img {
  transform: scale(1.06);
}

.flavor-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
}

.flavor-card p,
.flavor-card span,
.reel-card span {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.flavor-card h3 {
  margin-top: 0.2rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.flavor-card span {
  display: block;
  color: rgba(255, 245, 223, 0.8);
  text-transform: none;
}

.truck-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 3rem;
  align-items: center;
  padding: 5rem 7vw;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 245, 223, 0.92), rgba(201, 217, 156, 0.9)),
    repeating-linear-gradient(45deg, rgba(22, 19, 17, 0.08) 0 2px, transparent 2px 18px);
}

.truck-copy p {
  color: rgba(22, 19, 17, 0.78);
  margin: 1.2rem 0 1.5rem;
}

.truck-photo-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 6px solid #171311;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #171311;
}

.truck-photo-stage img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.truck-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid #0f0d0c;
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  font-weight: 950;
  text-transform: uppercase;
}

.truck-tag-one {
  left: 1rem;
  top: 1rem;
}

.truck-tag-two {
  right: 1rem;
  top: 40%;
  background: var(--sage);
}

.truck-tag-three {
  left: 1.2rem;
  bottom: 1.2rem;
  background: var(--orange);
}

.menu-section {
  background:
    radial-gradient(circle at top left, rgba(247, 189, 59, 0.14), transparent 28rem),
    var(--ink);
}

.menu-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.7rem 0 1.4rem;
}

.menu-switch button {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 950;
  text-transform: uppercase;
}

.menu-switch button.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: transparent;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
  gap: 1rem;
  align-items: start;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.15rem;
  background: linear-gradient(180deg, #2a251f, #181512);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.menu-card h3 {
  font-size: 2rem;
  color: var(--gold);
  text-transform: uppercase;
}

.menu-card header span {
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 950;
  text-align: right;
  text-transform: uppercase;
}

.menu-card dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.menu-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: end;
  border-bottom: 1px dashed rgba(255, 245, 223, 0.28);
}

.menu-card dt,
.menu-card dd {
  margin: 0;
  font-weight: 900;
}

.menu-card dd {
  color: var(--gold);
}

.menu-card p {
  margin: 1rem 0 0;
  color: rgba(255, 245, 223, 0.72);
}

.menu-board {
  position: sticky;
  top: 96px;
  overflow: hidden;
  background: #050505;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-board img {
  width: 100%;
}

.reel-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(255, 245, 223, 0.88)),
    repeating-linear-gradient(90deg, rgba(211, 55, 39, 0.16) 0 12px, transparent 12px 48px);
}

.reel-section .section-kicker,
.reel-section .section-heading h2 {
  color: var(--ink);
}

.reel-section .section-heading p {
  color: rgba(22, 19, 17, 0.72);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 310px;
  gap: 1rem;
}

.reel-card {
  position: relative;
  overflow: hidden;
  background: #0f0d0c;
  border: 4px solid #171311;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reel-card-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.reel-card video,
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.reel-card strong {
  display: block;
  margin-top: 0.2rem;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.events-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  padding: 6rem 7vw;
  background:
    linear-gradient(120deg, rgba(22, 19, 17, 0.96), rgba(46, 41, 35, 0.96)),
    url("assets/images/plate-wood.jpg") center / cover no-repeat;
}

.events-copy p {
  margin: 1.2rem 0 0;
}

.booking-email a {
  color: var(--gold);
  font-weight: 950;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.availability span {
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: var(--mint);
  border-radius: var(--radius);
  font-weight: 950;
  text-transform: uppercase;
}

.events-button {
  margin-top: 1.5rem;
}

.booking-preview {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border: 4px solid #0f0d0c;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  border: 2px solid #171311;
  border-radius: var(--radius);
}

.booking-preview p {
  margin: 0;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.booking-preview span {
  display: block;
  margin-top: 0.8rem;
  color: rgba(22, 19, 17, 0.7);
  font-weight: 950;
  text-transform: uppercase;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(255, 250, 240, 0.94);
  border: 4px solid #0f0d0c;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid #171311;
  border-radius: 6px;
}

.booking-form textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.full-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: rgba(22, 19, 17, 0.78);
  font-weight: 800;
  text-transform: none;
}

.form-status.is-success {
  color: #23622f;
}

.form-status.is-error {
  color: #b22218;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(13, 11, 10, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal {
  position: relative;
  width: min(940px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 245, 223, 0.96)),
    repeating-linear-gradient(45deg, rgba(215, 55, 39, 0.12) 0 10px, transparent 10px 44px);
  border: 5px solid #0f0d0c;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.modal-heading {
  padding: 1.25rem 4rem 0 1.25rem;
}

.modal-heading .eyebrow {
  color: var(--red);
}

.modal-heading h2 {
  color: var(--ink);
  font-size: 3rem;
  text-transform: uppercase;
}

.modal-heading p {
  margin: 0.75rem 0 0;
  color: rgba(22, 19, 17, 0.72);
  font-weight: 800;
}

.modal-heading a {
  color: #a81d15;
  font-weight: 950;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 10px;
  width: 22px;
  height: 3px;
  background: var(--cream);
  border-radius: 999px;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.booking-modal .booking-form {
  margin: 1.1rem 1.25rem 1.25rem;
  box-shadow: none;
}

.expansion-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: 6rem 7vw;
  background: var(--charcoal-2);
}

.expansion-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.expansion-map span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--gold);
  border: 4px solid #0f0d0c;
  border-radius: 50%;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.24);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 3rem;
  animation: statePulse 4s ease-in-out infinite;
}

.expansion-map span:nth-child(2n) {
  background: var(--sage);
  animation-delay: 400ms;
}

.expansion-map span:nth-child(3n) {
  background: var(--orange);
  animation-delay: 800ms;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 7vw;
  color: rgba(255, 245, 223, 0.78);
  background: #0d0b0a;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.8rem;
}

.site-footer p {
  margin: 0.25rem 0 0;
}

.site-footer div:last-child {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-align: right;
}

.site-footer a {
  color: var(--cream);
  font-weight: 950;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(-12px, 18px, 0) rotate(3deg);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(4deg);
  }
  50% {
    transform: translate3d(16px, -12px, 0) rotate(-5deg);
  }
}

@keyframes mascotPop {
  0%,
  100% {
    transform: translateY(0) rotate(2deg) scale(1);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg) scale(1.03);
  }
}

@keyframes driveTruck {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 350px));
  }
}

@keyframes wheelSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes servePlate {
  0%,
  38%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }
  44% {
    opacity: 1;
  }
  52% {
    opacity: 1;
    transform: translate3d(86px, -34px, 0) scale(1);
  }
  58% {
    opacity: 0;
    transform: translate3d(118px, -48px, 0) scale(0.9);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes statePulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 3.6rem;
  }

  .hero-orbit {
    right: 2vw;
    opacity: 0.86;
  }

  .floating-food-two {
    right: 13rem;
  }

  .section-heading h2,
  .truck-copy h2,
  .events-copy h2,
  .expansion-copy h2 {
    font-size: 2.7rem;
  }

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

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    background: rgba(18, 15, 13, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav button {
    width: 100%;
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding: 7.2rem 1rem 7rem;
  }

  .hero::before {
    right: auto;
    left: 1rem;
    bottom: 6rem;
    font-size: 3.8rem;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(22, 19, 17, 0.9) 0%, rgba(22, 19, 17, 0.78) 52%, rgba(22, 19, 17, 0.96) 100%),
      url("assets/images/plate-hero.jpg") center / cover no-repeat;
  }

  .hero-orbit {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    height: 360px;
    margin-top: 2rem;
  }

  .floating-food-one {
    width: 170px;
    height: 170px;
    right: 0;
  }

  .floating-food-two {
    width: 150px;
    height: 180px;
    left: 0;
    right: auto;
    bottom: 1rem;
  }

  .mascot-card {
    width: 210px;
    height: 255px;
    right: 1rem;
    bottom: 0;
  }

  .section,
  .truck-section,
  .events-section,
  .expansion-section {
    padding: 4rem 1rem;
  }

  .section-heading,
  .truck-section,
  .events-section,
  .expansion-section,
  .menu-layout {
    grid-template-columns: 1fr;
  }

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

  .flavor-card,
  .flavor-card-tall {
    min-height: 360px;
  }

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

  .menu-board {
    position: static;
  }

  .truck-photo-stage,
  .truck-photo-stage img {
    min-height: 520px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-preview {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .booking-preview p {
    font-size: 1.55rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer div:last-child {
    justify-items: start;
    text-align: left;
  }
}

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

  .brand-copy small {
    display: none;
  }

  .hero-logo {
    width: 270px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .motion-track {
    bottom: 1rem;
    height: 102px;
  }

  .tiny-truck {
    width: 220px;
    transform: scale(0.84);
    transform-origin: bottom left;
  }

  .section-heading h2,
  .truck-copy h2,
  .events-copy h2,
  .expansion-copy h2 {
    font-size: 2.05rem;
  }

  .reel-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .reel-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .expansion-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .expansion-map span {
    font-size: 2.2rem;
  }

  .truck-tag {
    max-width: 180px;
    font-size: 0.78rem;
  }

  .booking-preview {
    grid-template-columns: 1fr;
  }

  .booking-preview img {
    max-height: 220px;
  }

  .modal-backdrop {
    padding: 0.5rem;
  }

  .modal-heading {
    padding: 1rem 3.8rem 0 1rem;
  }

  .modal-heading h2 {
    font-size: 2rem;
  }

  .booking-modal .booking-form {
    margin: 1rem;
    padding: 0.75rem;
  }
}

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