:root {
  --black: #101010;
  --black-2: #171717;
  --cream: #f7f1e5;
  --white: #ffffff;
  --gold: #f4b942;
  --gold-dark: #d99a1b;
  --red: #b7322c;
  --muted: #6f6a62;
  --line: rgba(16, 16, 16, 0.12);
  --radius: 22px;
  --shadow: 0 20px 60px rgba(0,0,0,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16,16,16,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 34px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  border-radius: 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: .06em;
  transform: rotate(-2deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: .93rem;
  letter-spacing: .07em;
}

.brand-text small {
  margin-top: 5px;
  color: #bbb;
  font-size: .59rem;
  letter-spacing: .16em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: #e9e9e9;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--black);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 2px;
}

.hero {
  background:
    radial-gradient(circle at 75% 30%, rgba(244,185,66,.22), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(183,50,44,.18), transparent 25%),
    var(--black);
  color: white;
  overflow: hidden;
}

.hero-grid {
  width: min(1180px, calc(100% - 34px));
  min-height: 660px;
  margin: 0 auto;
  padding: 76px 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.cta h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  text-transform: uppercase;
  line-height: .93;
  letter-spacing: .015em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7.4rem);
}

.hero h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d2d2d2;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: #ffc954;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  background: rgba(255,255,255,.05);
}

.btn-light {
  background: white;
  color: black;
}

.next-stop {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
}

.next-stop small,
.next-stop strong {
  display: block;
}

.next-stop small {
  color: #aaa;
  font-size: .66rem;
  letter-spacing: .16em;
  font-weight: 700;
}

.next-stop strong {
  margin-top: 2px;
  font-size: .9rem;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(244,185,66,.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(244,185,66,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,185,66,0); }
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background: linear-gradient(160deg, #202020, #111);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  transform: rotate(2deg);
}

.hero-card-top,
.hero-card-bottom {
  padding: 18px 22px;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  color: #aaa;
  font-size: .64rem;
  letter-spacing: .14em;
  font-weight: 800;
}

.hero-card-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-card-bottom strong,
.hero-card-bottom span {
  display: block;
}

.hero-card-bottom strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: .04em;
  color: var(--gold);
}

.hero-card-bottom span {
  color: #bbb;
  font-size: .82rem;
}

.plate-art {
  min-height: 380px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(244,185,66,.14), transparent 48%);
}

.plate {
  width: 305px;
  height: 305px;
  position: relative;
  border-radius: 50%;
  background: #f7f2e6;
  box-shadow:
    inset 0 0 0 18px #d8d2c6,
    inset 0 0 0 24px #eee7da,
    0 30px 40px rgba(0,0,0,.3);
}

.rice,
.protein,
.plantain,
.sauce {
  position: absolute;
  filter: drop-shadow(0 3px 2px rgba(0,0,0,.12));
}

.rice {
  width: 145px;
  height: 118px;
  left: 48px;
  top: 48px;
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(circle at 30% 30%, #fff8dc 0 4px, transparent 5px),
    radial-gradient(circle at 70% 55%, #fff2c5 0 4px, transparent 5px),
    #ead99e;
}

.protein {
  width: 128px;
  height: 103px;
  right: 48px;
  bottom: 64px;
  border-radius: 48% 52% 42% 58%;
  background:
    linear-gradient(30deg, transparent 18%, rgba(255,255,255,.08) 19% 21%, transparent 22%),
    #7a3f2d;
}

.plantain {
  width: 78px;
  height: 27px;
  left: 50px;
  bottom: 70px;
  border-radius: 50%;
  background: linear-gradient(#f0bd48, #c98419);
  border: 2px solid #b57212;
}

.plantain.two {
  transform: translate(39px, 26px) rotate(12deg);
}

.plantain.three {
  transform: translate(83px, 5px) rotate(-7deg);
}

.sauce {
  width: 16px;
  height: 95px;
  top: 106px;
  right: 108px;
  border-radius: 40%;
  background: #d99629;
  transform: rotate(46deg);
  opacity: .85;
}

.section {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: start;
}

.about-copy {
  font-size: 1.08rem;
  color: #413d38;
}

.about-copy p:first-child {
  margin-top: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-stats article {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.about-stats strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: .03em;
}

.about-stats span {
  color: var(--muted);
  font-size: .78rem;
}

.schedule-section {
  border-top: 1px solid var(--line);
}

.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.section-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .85rem;
}

.section-note code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(0,0,0,.06);
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-card {
  display: grid;
  grid-template-columns: 115px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .16s ease, box-shadow .16s ease;
}

.schedule-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.07);
}

.schedule-date {
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-date .month {
  font-size: .69rem;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--red);
}

.schedule-date .day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.schedule-info strong,
.schedule-info span {
  display: block;
}

.schedule-info strong {
  font-size: 1rem;
}

.schedule-info span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .85rem;
}

.schedule-time {
  font-weight: 800;
  font-size: .86rem;
  padding: 8px 11px;
  background: var(--cream);
  border-radius: 9px;
  white-space: nowrap;
}

.schedule-card.today {
  border-color: var(--gold-dark);
  box-shadow: inset 4px 0 0 var(--gold);
}

.no-events {
  padding: 32px;
  border: 1px dashed rgba(16,16,16,.25);
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
}

.menu-section {
  border-top: 1px solid var(--line);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.menu-tab {
  border: 1px solid var(--line);
  background: white;
  padding: 10px 15px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: .82rem;
}

.menu-tab.active {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.menu-item {
  min-height: 148px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.menu-item h3 {
  margin: 0 0 7px;
  font-size: 1.05rem;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.menu-price {
  flex: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--red);
}

.menu-note {
  margin-top: 18px;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 16px;
  background: var(--gold);
}

.menu-note strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: .03em;
}

.menu-note span {
  max-width: 720px;
  font-size: .88rem;
  font-weight: 600;
}

.cta {
  width: min(1180px, calc(100% - 34px));
  margin: 10px auto 96px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: var(--red);
  color: white;
  border-radius: 26px;
}

.cta .eyebrow {
  color: #ffd46b;
}

.cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

footer {
  min-height: 160px;
  padding: 38px max(17px, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--black);
  color: white;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: .05em;
  color: var(--gold);
}

.footer-brand span,
footer p {
  color: #999;
  font-size: .78rem;
}

@media (max-width: 900px) {
  .hero-grid {
    min-height: auto;
    padding: 64px 0;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-card {
    max-width: 560px;
  }

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

  .split-heading {
    display: block;
  }

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

@media (max-width: 700px) {
  .brand-text small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 10px 17px 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .hero-grid,
  .section,
  .cta {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .hero-card {
    transform: none;
  }

  .plate-art {
    min-height: 320px;
  }

  .plate {
    transform: scale(.88);
  }

  .section {
    padding: 72px 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats article {
    min-height: 110px;
  }

  .schedule-card {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .schedule-time {
    grid-column: 2;
    justify-self: start;
  }

  .menu-item {
    min-height: auto;
  }

  .menu-note {
    flex-direction: column;
  }

  .cta {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
