:root {
  --black: #111111;
  --cream: #f6f1e7;
  --white: #ffffff;
  --orange: #ff5b22;
  --yellow: #ffc83d;
  --muted: #6d6a64;
  --line: rgba(17,17,17,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
}
a { color: inherit; }
.site-header {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Anton", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-size: 15px; letter-spacing: 1.5px; }
.brand-copy small { font-size: 10px; letter-spacing: 1.3px; color: var(--muted); }
.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a { text-decoration: none; font-weight: 700; font-size: 14px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(255,91,34,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,91,34,.28); }
.button-small { min-height: 44px; padding: 0 20px; font-size: 14px; }
.button-outline {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  box-shadow: none;
}
.hero {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 60px;
  min-height: 620px;
  border-radius: 34px;
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
}
.hero-content {
  padding: clamp(44px, 7vw, 90px);
  align-self: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}
h1, h2 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0;
  line-height: .98;
}
h1 { font-size: clamp(64px, 9vw, 118px); }
h2 { font-size: clamp(46px, 6vw, 76px); }
.hero-copy {
  max-width: 580px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin: 28px 0 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .button-outline { border-color: white; color: white; }
.quick-info {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 700;
}
.hero-art {
  position: relative;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,200,61,.9), transparent 20%),
    linear-gradient(135deg, #ff5b22 0%, #ff7437 55%, #ffc83d 100%);
}
.food-card {
  position: absolute;
  background: white;
  color: var(--black);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.food-card-main {
  left: 9%;
  right: 9%;
  top: 23%;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: rotate(-4deg);
}
.food-card-main span { font-size: 11px; color: var(--orange); font-weight: 900; letter-spacing: 1.5px; }
.food-card-main strong { display: block; font-size: 30px; margin: 6px 0; }
.food-card-main small { color: var(--muted); }
.food-emoji { font-size: 74px; }
.food-card-side {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}
.food-card-side .food-emoji { font-size: 38px; }
.top-card { right: 5%; top: 8%; transform: rotate(6deg); }
.bottom-card { left: 5%; bottom: 12%; transform: rotate(4deg); }

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--yellow);
  padding: 18px 0;
  font-family: "Anton", sans-serif;
  font-size: 25px;
  letter-spacing: 1px;
}
.marquee div { width: max-content; animation: slide 20s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 110px 0;
}
.section-heading { max-width: 720px; margin-bottom: 50px; }
.section-heading > p:last-child { font-size: 18px; color: var(--muted); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.menu-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  min-height: 255px;
}
.menu-icon { font-size: 48px; }
.menu-card h3 { margin: 22px 0 12px; font-size: 23px; }
.menu-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.center-action { text-align: center; margin-top: 42px; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
}
.split-copy, .quote-panel { padding: clamp(58px, 8vw, 110px); }
.split-copy p { color: var(--muted); line-height: 1.75; font-size: 18px; max-width: 660px; }
.text-link { color: var(--orange); font-weight: 900; text-decoration: none; }
.quote-panel {
  background: var(--orange);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-panel blockquote {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.05;
  margin: 0;
}
.quote-panel span { margin-top: 40px; font-weight: 900; letter-spacing: 2px; }

.visit-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 110px 0 140px;
}
.visit-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.visit-card {
  background: var(--black);
  color: white;
  border-radius: 24px;
  padding: 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}
.visit-card span { color: var(--yellow); font-weight: 900; font-size: 12px; letter-spacing: 1.6px; }
.visit-card strong { margin: 24px 0; font-size: 24px; line-height: 1.4; }
.visit-card a { margin-top: auto; color: white; font-weight: 800; }
.visit-card small { color: rgba(255,255,255,.6); }
.visit-card code { color: white; }

footer {
  background: var(--black);
  color: white;
  padding: 36px max(18px, calc((100vw - 1180px)/2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
footer p { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.55); }
.mobile-order-bar { display: none; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 440px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { padding-bottom: 88px; }
  .site-header { min-height: 74px; }
  .site-header > .button { display: none; }
  .brand-mark { width: 46px; height: 46px; font-size: 19px; }
  .hero { margin-top: 8px; border-radius: 24px; min-height: auto; }
  .hero-content { padding: 46px 26px; }
  h1 { font-size: 65px; }
  .hero-art { min-height: 380px; }
  .food-card-main { left: 6%; right: 6%; top: 26%; }
  .food-card-main strong { font-size: 22px; }
  .food-emoji { font-size: 58px; }
  .menu-grid { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .split-copy, .quote-panel { padding: 68px 24px; }
  footer { flex-direction: column; align-items: flex-start; }
  .mobile-order-bar {
    position: fixed;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-top: 1px solid var(--line);
    padding: 12px 14px max(12px, env(safe-area-inset-bottom));
  }
  .mobile-order-bar .button { min-height: 50px; }
  .mobile-call {
    min-width: 75px;
    display: grid;
    place-items: center;
    font-weight: 900;
    text-decoration: none;
    border: 2px solid var(--black);
    border-radius: 999px;
  }
}
