:root {
  --cheese: #ffcb35;
  --cheese-soft: #fff2bd;
  --cheese-dark: #e79b16;
  --chili: #e5382d;
  --leaf: #28784a;
  --ink: #201713;
  --muted: #766d68;
  --cream: #fff9ed;
  --paper: #ffffff;
  --line: #f0dfc5;
  --shadow: 0 24px 70px rgba(68, 43, 15, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}
body.nav-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 237, 0.94);
  border-bottom: 1px solid rgba(240, 223, 197, 0.86);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cheese);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(32, 23, 19, 0.14);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; line-height: 1.15; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 12px; }
.main-nav { display: flex; align-items: center; gap: 22px; color: #4d4039; font-size: 14px; font-weight: 800; }
.main-nav a { padding: 10px 0; }
.header-order, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-order, .btn-primary { color: var(--ink); background: var(--cheese); box-shadow: 0 14px 30px rgba(231,155,22,.25); }
.btn-secondary { color: var(--ink); background: var(--paper); border-color: var(--line); }
.header-order:hover, .btn:hover { transform: translateY(-2px); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 73px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
}
.hero-copy { max-width: 720px; }
.eyebrow { margin: 0 0 12px; color: var(--chili); font-size: 12px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; max-width: 760px; font-size: clamp(46px, 8vw, 104px); line-height: .91; letter-spacing: 0; }
.hero-text { max-width: 620px; color: #5c5049; font-size: clamp(16px, 2vw, 20px); line-height: 1.7; }
.hero-actions, .location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-stats span { display: grid; gap: 2px; min-width: 138px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.68); color: var(--muted); font-size: 13px; }
.hero-stats strong { color: var(--ink); font-size: 20px; }
.hero-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: auto; object-fit: contain; background: transparent; }

.quick-info { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.quick-info article { padding: clamp(22px, 4vw, 42px); border-right: 1px solid var(--line); }
.quick-info article:last-child { border-right: 0; }
.quick-info span { color: var(--chili); font-weight: 900; }
.quick-info h2, .cart h2, .site-footer h2 { margin: 8px 0; font-size: 18px; }
.quick-info p, .section-heading p, .experience-grid p, .promo-card p, .location-copy p, .site-footer p { color: var(--muted); line-height: 1.7; }
.section { padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 690px; margin-bottom: 30px; }
.section-heading h2, .location-copy h2 { margin-bottom: 12px; font-size: clamp(31px, 5vw, 58px); line-height: 1; }

.menu-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: start; gap: 22px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.filter-btn { min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: #574941; cursor: pointer; font-weight: 900; }
.filter-btn.active { border-color: var(--ink); background: var(--ink); color: var(--cheese); }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.menu-card, .cart, .promo-card, .experience-grid article, .testimonial-grid blockquote, .contact-links a, .contact-form { border: 1px solid var(--line); border-radius: 8px; background: var(--paper); box-shadow: 0 16px 40px rgba(68,43,15,.08); }
.menu-card { overflow: hidden; display: flex; flex-direction: column; }
.menu-card.unavailable { opacity: .62; }
.menu-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #fff3d4; }
.menu-card-body { display: grid; gap: 10px; padding: 16px; flex: 1; }
.menu-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.menu-card h3 { margin: 0; font-size: 18px; }
.menu-card p { min-height: 46px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.tag { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: #fff1c5; color: #865a00; font-size: 11px; font-weight: 900; white-space: nowrap; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { font-size: 18px; font-weight: 900; }
.card-actions { display: flex; gap: 8px; }
.add-btn, .detail-btn { min-height: 38px; padding: 0 13px; border: 0; border-radius: 999px; cursor: pointer; font-weight: 900; }
.add-btn { background: var(--chili); color: #fff; }
.detail-btn { border: 1px solid var(--line); background: #fff8e6; }
.add-btn:disabled { cursor: not-allowed; opacity: .55; }

.cart { position: sticky; top: 94px; padding: 18px; }
.cart-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.icon-btn { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff6e3; cursor: pointer; color: var(--ink); font-size: 20px; line-height: 1; font-weight: 900; }
.cart-items { display: grid; gap: 10px; max-height: 310px; overflow: auto; padding-right: 4px; }
.empty-cart { margin: 0; padding: 16px; border: 1px dashed var(--line); border-radius: 8px; color: var(--muted); line-height: 1.6; }
.cart-item { display: grid; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fffaf0; }
.cart-item strong { display: block; margin-bottom: 2px; }
.cart-item small { color: var(--muted); line-height: 1.45; }
.qty-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qty-controls { display: inline-flex; align-items: center; gap: 8px; }
.qty-controls button { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; font-weight: 900; }
.field { display: grid; gap: 7px; margin-top: 14px; color: var(--ink); font-size: 13px; font-weight: 900; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 12px 13px; background: #fffaf0; color: var(--ink); resize: vertical; }
.cart-total, .modal-total { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 18px 0 12px; padding-top: 16px; border-top: 1px solid var(--line); font-weight: 900; }
.cart-total strong, .modal-total strong { font-size: 24px; }
.checkout { width: 100%; }
.checkout.disabled { pointer-events: none; opacity: .55; }

.promo-section { background: #23150f; color: #fff; }
.promo-section .section-heading p, .promo-card p { color: rgba(255,255,255,.76); }
.promo-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.promo-card { min-height: 260px; padding: 24px; border-color: rgba(255,255,255,.14); background: linear-gradient(140deg, rgba(255,203,53,.16), rgba(229,56,45,.16)), #342016; color: #fff; }
.promo-main { background: linear-gradient(135deg, rgba(255,203,53,.96), rgba(229,56,45,.86)), #ffcb35; color: var(--ink); }
.promo-main p, .promo-main small { color: rgba(32,23,19,.72); }
.promo-card span { display: inline-flex; margin-bottom: 34px; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.18); font-size: 12px; font-weight: 900; }
.promo-card h3 { margin-bottom: 10px; font-size: 26px; line-height: 1.05; }
.promo-card small { color: rgba(255,255,255,.66); line-height: 1.5; }

.experience-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.experience-grid article { padding: 18px; }
.experience-grid img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; margin-bottom: 18px; border-radius: 8px; background: #fff5d8; }
.experience-grid h3 { margin-bottom: 8px; font-size: 22px; }
.testimonials { padding-top: 0; }
.testimonial-grid blockquote { margin: 0; padding: 24px; }
.testimonial-grid p { color: #41342d; font-size: 18px; line-height: 1.6; }
.testimonial-grid cite { color: var(--chili); font-style: normal; font-weight: 900; }

.location-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr); align-items: stretch; gap: 22px; background: #fff4d7; }
.location-copy { align-self: center; }
.service-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.service-list li { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.75); font-weight: 900; }
.map-embed { min-height: 380px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fffaf0; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

.contact-section { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.contact-links { display: grid; gap: 12px; }
.contact-links a { display: grid; gap: 6px; padding: 18px; }
.contact-links strong { font-size: 18px; }
.contact-links span { color: var(--muted); }
.contact-form { padding: 20px; }
.contact-form .btn { margin-top: 16px; }

.product-modal { position: fixed; inset: 0; z-index: 40; display: none; }
.product-modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20, 12, 8, .62); }
.modal-panel { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(240px, .78fr) minmax(0, 1fr); width: min(920px, calc(100% - 28px)); max-height: calc(100vh - 28px); margin: 14px auto; overflow: auto; border-radius: 8px; background: var(--paper); box-shadow: var(--shadow); }
.modal-panel > img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; background: var(--cheese-soft); }
.modal-content { padding: clamp(20px, 4vw, 34px); }
.modal-content h2 { margin: 14px 0 10px; font-size: clamp(28px, 4vw, 46px); line-height: 1; }
.modal-content p { color: var(--muted); line-height: 1.7; }
.modal-close { position: absolute; right: 12px; top: 12px; z-index: 2; }
.option-group { display: grid; gap: 10px; margin-top: 18px; }
.option-group > strong { font-size: 14px; }
.option-list { display: flex; flex-wrap: wrap; gap: 10px; }
.option-pill { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: #fffaf0; cursor: pointer; font-weight: 800; }
.option-pill input { accent-color: var(--chili); }

.site-footer { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 28px; padding: 42px clamp(18px, 5vw, 72px); background: var(--ink); color: #fff; }
.site-footer .brand-mark { background: var(--cheese); color: var(--ink); }
.site-footer small, .site-footer p, .site-footer a { color: rgba(255,255,255,.72); }
.site-footer a { display: block; margin: 9px 0; }

@media (max-width: 1180px) {
  .menu-layout, .hero, .location-section { grid-template-columns: 1fr; }
  .cart { position: static; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .main-nav, .header-order { display: none; }
  body.nav-open .main-nav { position: fixed; inset: 73px 12px auto; display: grid; gap: 6px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); box-shadow: var(--shadow); }
  body.nav-open .main-nav a { padding: 14px; border-radius: 8px; background: #fff7e5; }
  .hero { min-height: auto; }
  .quick-info, .promo-grid, .experience-grid, .testimonial-grid, .contact-layout, .site-footer { grid-template-columns: 1fr; }
  .quick-info article { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-info article:last-child { border-bottom: 0; }
  .modal-panel { grid-template-columns: 1fr; }
  .modal-panel > img { min-height: 260px; max-height: 320px; }
}
@media (max-width: 560px) {
  .brand strong { font-size: 13px; }
  .brand small { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-actions, .location-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-stats span { width: 100%; }
  .cart-items { max-height: none; }
  .price-row { align-items: flex-start; flex-direction: column; }
  .card-actions { width: 100%; }
  .card-actions button { flex: 1; }
}
