:root {
  --cream: #F5DFA8;
  --cream-light: #FBEFD4;
  --cream-dark: #E8D5A0;
  --ink: #1a1a1a;
  --ink-light: #2d2d2d;
  --orange: #E07020;
  --orange-light: #F08C4A;
  --red: #C73E1D;
  --red-dark: #A83216;
  --white: #ffffff;
  --max: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream-light);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}
h1, h2, h3, .brand-name, .dish-name, .badge-name { font-family: 'Anton', 'Arial Narrow', sans-serif; letter-spacing: .01em; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.5rem;
  background: rgba(245, 223, 168, .95);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 4px 20px rgba(26,26,26,.1);
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); transition: transform .15s ease; }
.brand:hover { transform: scale(1.02); }
.brand-badge svg { width: 42px; height: 42px; display: block; filter: drop-shadow(2px 2px 0 rgba(224,112,32,.3)); }
.brand-name { font-size: 1.4rem; }
.brand-name span { color: var(--orange); }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav-link { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; position: relative; transition: color .15s ease; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
.nav-link:hover { color: var(--orange); }
.nav-link:hover::after { width: 100%; }
.burger { display: none; background: none; border: 0; font-size: 2rem; cursor: pointer; transition: transform .15s ease; }
.burger:hover { transform: scale(1.1); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: .85rem 1.6rem; border: 3px solid var(--ink);
  font-weight: 700; text-decoration: none; color: var(--ink); font-size: .95rem;
  transition: all .15s ease; position: relative; overflow: hidden;
}
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255,255,255,.2); transition: left .3s ease; }
.btn:hover::before { left: 100%; }
.btn:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--ink); }
.btn-fill { background: var(--orange); color: #fff; border-color: var(--ink); }
.btn-fill:hover { background: var(--orange-light); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: rgba(224,112,32,.1); }

/* ---------- hero ---------- */
.hero { background: var(--cream); border-bottom: 4px solid var(--ink); overflow: hidden; position: relative; }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 4rem 1.5rem 5rem; text-align: center; position: relative; z-index: 1; }
.hero-logo { display: flex; justify-content: center; margin-bottom: 2rem; }
.badge { position: relative; width: 200px; height: 200px; filter: drop-shadow(4px 4px 0 rgba(26,26,26,.15)); }
.badge-svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 40s linear infinite; }
.badge-text-top, .badge-text-bot { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 700; fill: var(--ink); letter-spacing: .18em; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.badge-grill { width: 90px; }
.badge-name { font-size: 1.3rem; background: var(--ink); color: #fff; padding: .15rem .6rem; }

.hero-title { font-size: clamp(2.8rem, 8vw, 5.2rem); line-height: .95; text-transform: uppercase; text-shadow: 4px 4px 0 rgba(224,112,32,.2); }
.hero-title em { font-family: 'Caveat', cursive; font-style: normal; color: var(--red); font-size: 1.15em; text-shadow: 3px 3px 0 rgba(199,62,29,.2); }
.hero-sub { max-width: 580px; margin: 1.2rem auto 2rem; font-size: 1.1rem; opacity: .85; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-marquee { border-top: 3px solid var(--ink); background: var(--ink); color: var(--cream); overflow: hidden; padding: .7rem 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 26s linear infinite; font-family: 'Anton', sans-serif; letter-spacing: .12em; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 4rem 1.5rem; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; }
.section-sub { margin-top: .4rem; opacity: .75; font-size: 1.05rem; }
.kicker { font-family: 'JetBrains Mono', monospace; font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; font-weight: 700; }

/* ---------- stats bar ---------- */
.stats-bar { background: var(--ink); color: var(--cream); border-bottom: 3px solid var(--orange); }
.stats-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 1.5rem; }
.stat { text-align: center; }
.stat strong { font-family: 'Anton'; font-size: 2rem; color: var(--orange); display: block; }
.stat span { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }

/* ---------- menu ---------- */
.menu { max-width: var(--max); margin: 0 auto; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 760px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }
.dish {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  background: var(--white); border: 3px solid var(--ink);
  transition: all .15s ease; position: relative; overflow: hidden;
}
.dish::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--red)); opacity: 0; transition: opacity .15s ease; }
.dish:hover { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 var(--ink); }
.dish:hover::before { opacity: 1; }
.dish-img {
  display: block; aspect-ratio: 1; background-size: cover; background-position: center;
  background-color: var(--cream-dark); border-bottom: 3px solid var(--ink);
  position: relative; transition: transform .3s ease;
}
.dish:hover .dish-img { transform: scale(1.05); }
.dish-img::after {
  content: ""; position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; font-size: 4rem; opacity: .2;
  background: linear-gradient(135deg, rgba(224,112,32,.1), rgba(199,62,29,.1));
}
.dish-img[style*=".jpg"]::after { display: none; }
.dish-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 4rem; opacity: .3; }
.dish-img[style*=".jpg"] .dish-placeholder { display: none; }
.dish-info { display: flex; justify-content: space-between; align-items: baseline; padding: .9rem 1rem; gap: .5rem; background: var(--white); }
.dish-name { text-transform: uppercase; font-size: 1.1rem; }
.dish-price { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--orange); font-size: 1.05rem; }

.divider { border-top: 3px dashed var(--ink); margin: 3rem 0 1.8rem; position: relative; }
.divider::before { content: '🔥'; position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); background: var(--cream-light); padding: 0 1rem; font-size: 1.5rem; }
.brush-title { font-family: 'Caveat', cursive; font-size: 2.4rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--red); }
.share-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .share-grid { grid-template-columns: 1fr 1fr; } }
.dish.wide .dish-img { aspect-ratio: 21/9; }

.extras { list-style: none; max-width: 500px; margin: 0 auto; background: var(--white); border: 3px solid var(--ink); padding: 1.5rem; }
.extras li { display: flex; align-items: baseline; gap: .8rem; padding: .6rem 0; font-weight: 600; font-size: 1.05rem; }
.extras .dots { flex: 1; border-bottom: 3px dotted var(--ink); transform: translateY(-4px); }

/* ---------- why ---------- */
.why { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.why::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(224,112,32,.1), transparent 50%); }
.why-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.why .kicker { color: var(--orange); }
.why-lede { max-width: 640px; margin-top: 1.2rem; opacity: .92; font-size: 1.05rem; }
.why-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
@media (min-width: 760px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: rgba(251,239,212,.05); border: 2px solid var(--cream); padding: 1.5rem; text-align: center; transition: all .15s ease; }
.why-card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--orange); border-color: var(--orange); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: .5rem; color: var(--orange); }
.why-card p { font-size: .95rem; opacity: .85; line-height: 1.6; }

/* ---------- location ---------- */
.location { max-width: var(--max); margin: 0 auto; }
.location-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-map iframe { width: 100%; height: 400px; border: 3px solid var(--ink); display: block; }
.location-details { display: flex; flex-direction: column; gap: 1rem; }
.location-card { background: var(--white); border: 3px solid var(--ink); padding: 1.3rem 1.2rem; transition: all .15s ease; position: relative; overflow: hidden; }
.location-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--red)); }
.location-card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.location-card h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: .5rem; color: var(--red); }
.big-link { font-family: 'Anton'; font-size: 1.3rem; color: var(--orange); text-decoration: none; word-break: break-word; transition: color .15s ease; }
.big-link:hover { color: var(--red); }
.muted { opacity: .7; font-size: .95rem; margin-top: .3rem; }

/* ---------- catering ---------- */
.catering { background: var(--ink); color: var(--cream); text-align: center; }
.catering-inner { max-width: 700px; margin: 0 auto; }
.catering .kicker { color: var(--orange); }
.catering p { margin-top: 1rem; font-size: 1.1rem; opacity: .9; }
.catering-ctas { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.catering .btn { border-color: var(--cream); }
.catering .btn-fill { background: var(--orange); color: var(--ink); border-color: var(--cream); }
.catering .btn-fill:hover { background: var(--orange-light); }
.catering .btn-ghost { color: var(--cream); border-color: var(--cream); }
.catering .btn-ghost:hover { background: rgba(245,223,168,.1); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--cream); text-align: center; padding: 2.5rem 1.5rem; border-top: 4px solid var(--orange); }
.footer-brand { font-family: 'Anton'; font-size: 1.5rem; letter-spacing: .06em; }
.footer-brand span { color: var(--orange); font-size: .95rem; letter-spacing: .2em; }
.footer .muted { color: var(--cream); opacity: .65; margin-top: .4rem; font-size: .95rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--cream); text-decoration: none; font-weight: 600; font-size: .9rem; opacity: .8; transition: opacity .15s ease; }
.footer-links a:hover { opacity: 1; color: var(--orange); }

/* ---------- responsive nav ---------- */
@media (max-width: 680px) {
  .nav { position: absolute; top: 100%; right: 0; flex-direction: column; align-items: stretch;
         background: var(--cream); border: 3px solid var(--ink); padding: 1.2rem 1.5rem; gap: 1.2rem; display: none; box-shadow: 4px 4px 0 var(--ink); }
  .nav.open { display: flex; }
  .burger { display: block; }
  .hero-inner { padding: 3rem 1.2rem 4rem; }
  .badge { width: 160px; height: 160px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  section { padding: 3rem 1.2rem; }
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .badge-svg, .marquee-track, .story-gear { animation: none; }
  .dish, .location-card, .why-card, .btn { transition: none; }
}
