:root {
  --bg: #11100f;
  --panel: #1d1a18;
  --text: #fff7ed;
  --muted: #c8b6a6;
  --brand: #f97316;
  --brand-dark: #c2410c;
  --cream: #fff3df;
  --ink: #211713;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 24px 60px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(17,16,15,.94), rgba(17,16,15,.55)),
    radial-gradient(circle at 75% 20%, rgba(249,115,22,.45), transparent 38%),
    url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=1800&q=80') center/cover;
  padding: 24px clamp(18px, 4vw, 72px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: 1180px; margin: 0 auto;
}
.brand { display:flex; align-items:center; gap: 10px; font-weight: 900; font-size: 1.35rem; }
.brand-icon { font-size: 2rem; }
.nav-links { display: flex; gap: 24px; color: var(--muted); font-weight: 700; }
.cart-button, .primary-btn, .secondary-btn, .icon-btn {
  border: 0; cursor: pointer; border-radius: 999px; font-weight: 800;
}
.cart-button { padding: 12px 18px; background: var(--cream); color: var(--ink); }
.cart-button span { background: var(--brand); color: white; padding: 2px 8px; border-radius: 99px; margin-left: 6px; }
.hero-content { max-width: 780px; margin: 145px auto 0; }
.eyebrow { color: var(--brand); text-transform: uppercase; letter-spacing: .18em; font-weight: 900; }
.eyebrow.dark { color: var(--brand-dark); }
h1, h2 { font-family: 'Bebas Neue', Impact, sans-serif; line-height: .95; margin: 0 0 18px; letter-spacing: .03em; }
h1 { font-size: clamp(4rem, 11vw, 9rem); }
h2 { font-size: clamp(2.8rem, 6vw, 5.3rem); }
.hero-text { font-size: 1.25rem; color: var(--muted); max-width: 640px; line-height: 1.7; }
.hero-actions { display:flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.primary-btn { background: var(--brand); color: white; padding: 15px 24px; box-shadow: 0 12px 30px rgba(249,115,22,.28); }
.primary-btn:hover { background: #fb923c; }
.secondary-btn { border: 1px solid var(--line); padding: 14px 23px; color: var(--cream); }
.section { max-width: 1180px; margin: 0 auto; padding: 86px clamp(18px, 4vw, 32px); }
.intro, .contact, .order-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; }
.intro, .order-panel, .contact-card { background: var(--cream); color: var(--ink); border-radius: 34px; padding: clamp(26px, 5vw, 58px); }
.intro { margin-top: -72px; position: relative; box-shadow: var(--shadow); }
.intro p, .order-copy p, .contact p { line-height: 1.7; }
.section-heading { display:flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card { background: var(--panel); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.menu-card img { width: 100%; height: 210px; object-fit: cover; }
.menu-content { padding: 22px; flex: 1; display:flex; flex-direction: column; }
.menu-content h3 { font-size: 1.35rem; margin: 0 0 8px; }
.menu-content p { color: var(--muted); line-height: 1.55; flex: 1; }
.price-row { display:flex; align-items:center; justify-content:space-between; gap: 10px; margin-top: 18px; }
.price { font-size: 1.25rem; font-weight: 900; color: var(--brand); }
.add-btn { background: var(--cream); color: var(--ink); border:0; padding: 11px 15px; border-radius: 999px; font-weight: 900; cursor:pointer; }
.order-panel { margin-top: 20px; }
.steps { display:grid; gap: 16px; }
.steps div { background: white; border-radius: 18px; padding: 18px; font-weight: 900; display:flex; align-items:center; gap: 14px; }
.steps span { background: var(--brand); color:white; width:34px; height:34px; border-radius:50%; display:grid; place-items:center; }
.contact { color: var(--text); }
.contact-card { color: var(--ink); }
.cart-drawer { position: fixed; top:0; right: -430px; width: min(430px, 100%); height:100vh; background: #181512; z-index: 20; transition: right .25s ease; display:flex; flex-direction:column; border-left: 1px solid var(--line); }
.cart-drawer.open { right: 0; }
.cart-header, .cart-footer { padding: 22px; border-bottom: 1px solid var(--line); }
.cart-header { display:flex; justify-content:space-between; align-items:center; }
.icon-btn { width:40px; height:40px; background: var(--cream); color: var(--ink); font-size: 1.5rem; }
.cart-items { flex:1; overflow:auto; padding: 18px; }
.cart-item { border: 1px solid var(--line); border-radius: 18px; padding: 14px; margin-bottom: 12px; }
.cart-item h4 { margin: 0 0 8px; }
.cart-item p { color: var(--muted); margin: 4px 0; font-size: .9rem; }
.remove-item { background: transparent; color: #fca5a5; border:0; padding:0; cursor:pointer; margin-top: 8px; }
.total-row { display:flex; justify-content:space-between; font-size: 1.1rem; margin-bottom: 15px; }
.checkout-form { display:grid; gap: 10px; }
.checkout-form label, .special-label { display:grid; gap: 6px; font-weight: 700; color: var(--muted); }
input, textarea, select { width:100%; padding: 12px; border-radius: 12px; border: 1px solid var(--line); background: #0f0d0c; color: var(--text); }
.full { width:100%; margin-top: 8px; }
.payment-note { color: var(--muted); font-size: .85rem; line-height: 1.5; }
.overlay { position:fixed; inset:0; background:rgba(0,0,0,.62); opacity:0; pointer-events:none; transition:.2s; z-index:10; }
.overlay.show { opacity:1; pointer-events:auto; }
.modal { position: fixed; inset: 0; display:grid; place-items:center; pointer-events:none; z-index: 30; padding: 18px; }
.modal.show { pointer-events:auto; }
.modal-card { width:min(650px, 100%); max-height: 92vh; overflow:auto; background: var(--cream); color: var(--ink); border-radius: 28px; padding: 26px; box-shadow: var(--shadow); transform: scale(.96); opacity:0; transition:.2s; position:relative; }
.modal.show .modal-card { transform: scale(1); opacity:1; }
.modal-close { position:absolute; top: 18px; right: 18px; background: var(--ink); color: white; }
.muted { color: #6b5141; line-height: 1.5; }
.modal-section { margin-top: 20px; }
.option-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.option { border:1px solid rgba(33,23,19,.18); border-radius: 14px; padding: 12px; display:flex; align-items:center; gap: 9px; cursor:pointer; background:white; }
.option input { width:auto; }
.modal-actions { display:flex; justify-content:space-between; align-items:center; margin-top: 24px; gap: 12px; }
.qty-control { display:flex; align-items:center; gap: 12px; font-weight:900; }
.qty-control button { width: 42px; height:42px; border-radius:50%; border:0; background: var(--ink); color:white; font-size:1.3rem; cursor:pointer; }
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .intro, .contact, .order-panel { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .nav { flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; justify-content: center; }
  .hero-content { margin-top: 90px; }
  .menu-grid, .option-grid { grid-template-columns: 1fr; }
}
