:root {
  --bg: #11100f;
  --surface: #1a1816;
  --surface-2: #24211e;
  --surface-3: #2d2925;
  --text: #f8f4ee;
  --muted: #b9afa3;
  --line: rgba(255,255,255,.1);
  --brand: #d91e2b;
  --brand-2: #ffb000;
  --green: #29a36a;
  --blue: #2b7de9;
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-soft { background: #f5f1eb; color: #201d1a; }
.section-title { margin: 0 0 10px; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; letter-spacing: -.04em; }
.section-lead { color: var(--muted); max-width: 700px; margin: 0 0 34px; font-size: 1.05rem; }
.section-soft .section-lead { color: #6f665e; }
.eyebrow { color: var(--brand-2); text-transform: uppercase; font-weight: 800; letter-spacing: .12em; font-size: .76rem; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  background: rgba(17,16,15,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { font-size: 1.15rem; white-space: nowrap; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav-links a { text-decoration: none; color: #ded6ce; padding: 10px 13px; border-radius: 999px; font-size: .93rem; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-phone { text-decoration: none; background: var(--brand); color: #fff; padding: 11px 16px; border-radius: 999px; font-weight: 800; white-space: nowrap; }
.nav-toggle { display: none; margin-left: auto; border: 1px solid var(--line); color: #fff; background: transparent; border-radius: 12px; width: 44px; height: 44px; }

.hero {
  min-height: 740px;
  display: grid;
  align-items: center;
  padding: 140px 0 80px;
  background:
    linear-gradient(90deg, rgba(14,12,11,.95) 0%, rgba(14,12,11,.76) 45%, rgba(14,12,11,.42) 100%),
    url('../images/bannerbg.jpg') center / cover no-repeat;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); gap: 44px; align-items: center; }
.hero h1 { margin: 10px 0 20px; font-size: clamp(3.4rem, 9vw, 7.1rem); line-height: .88; letter-spacing: -.065em; }
.hero h1 span { color: var(--brand-2); }
.hero-copy { color: #ded5ca; max-width: 650px; font-size: clamp(1.05rem, 2.2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 8px; min-height: 46px; padding: 0 18px; border: 0; border-radius: 13px; text-decoration: none; cursor: pointer; font-weight: 800; transition: .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 26px rgba(217,30,43,.25); }
.btn-secondary { background: #fff; color: #191715; }
.btn-ghost { background: rgba(255,255,255,.08); border: 1px solid var(--line); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-danger { background: #b71924; color: #fff; }
.btn-small { min-height: 38px; padding: 0 13px; font-size: .9rem; }

.hero-panel { background: rgba(26,24,22,.84); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; padding: 26px; box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.hero-panel h3 { margin: 0 0 12px; font-size: 1.4rem; }
.notice { border-left: 4px solid var(--brand-2); background: rgba(255,176,0,.1); padding: 15px 16px; border-radius: 0 13px 13px 0; color: #f5e8cb; margin-top: 14px; }
.open-state { display: flex; align-items: center; gap: 10px; font-weight: 800; margin-top: 18px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(41,163,106,.12); }
.dot.closed { background: var(--brand); box-shadow: 0 0 0 5px rgba(217,30,43,.12); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.about-image { background: #211d1a; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); min-height: 460px; display: grid; place-items: end center; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: #71675e; font-size: 1.08rem; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.feature { border: 1px solid #ded7d0; border-radius: 16px; padding: 16px; background: #fff; }
.feature strong { display: block; color: #211e1b; }
.feature small { color: #776f68; }

.menu-toolbar { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn { border: 1px solid var(--line); background: var(--surface); color: #e8e1da; border-radius: 999px; padding: 10px 15px; cursor: pointer; font-weight: 750; }
.filter-btn.active, .filter-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.menu-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 20px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; }
.menu-card[hidden], .menu-card.is-filtered-out { display: none !important; }
.menu-card:hover { border-color: rgba(255,176,0,.35); background: #1f1c19; }
.menu-card h3 { margin: 0 0 6px; font-size: 1.12rem; }
.menu-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.menu-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 10px; }
.badge { display: inline-flex; align-items: center; min-height: 26px; padding: 0 9px; border-radius: 999px; font-size: .72rem; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; }
.badge-new { background: rgba(217,30,43,.16); color: #ff7c85; }
.badge-sale { background: rgba(255,176,0,.14); color: #ffc94b; }
.badge-allergen { background: rgba(255,255,255,.07); color: #c9bfb5; }
.menu-price { text-align: right; min-width: 108px; }
.menu-price strong { display: block; color: var(--brand-2); font-size: 1.3rem; }
.menu-price del { color: #8f857c; font-size: .85rem; }
.menu-packaging { display: block; margin-top: 4px; color: var(--muted); font-size: .76rem; }
.menu-price form { margin-top: 10px; }
.empty-state { border: 1px dashed var(--line); border-radius: 20px; padding: 32px; text-align: center; color: var(--muted); }

.cart-section { background: #171513; }
.cart-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card-light { background: #fff; color: #211e1b; border-color: #e7e0d8; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: 0; }
.cart-item-title { font-weight: 850; }
.cart-item-note { color: var(--muted); font-size: .9rem; }
.cart-price { font-weight: 900; white-space: nowrap; color: var(--brand-2); }
.inline-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 9px; }
.link-button { border: 0; background: transparent; color: #ff7d86; padding: 0; cursor: pointer; text-decoration: underline; font-size: .88rem; }
.addons { margin-top: 12px; }
.addons summary { cursor: pointer; color: #f2c660; font-weight: 750; }
.addon-grid { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.addon-grid button { border: 1px solid rgba(255,255,255,.13); background: #26221f; color: #eee5dc; border-radius: 999px; padding: 7px 10px; cursor: pointer; font-size: .84rem; }
.cart-total { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 1.25rem; }
.cart-total strong { color: var(--brand-2); font-size: 1.55rem; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #5e554d; font-size: .88rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #dcd4cc; background: #faf8f5; color: #211e1b; border-radius: 12px; min-height: 46px; padding: 10px 12px; outline: none; }
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(217,30,43,.1); }
.form-note { color: #766d66; font-size: .84rem; }
.alert { border-radius: 14px; padding: 13px 15px; margin: 0 0 18px; border: 1px solid transparent; }
.alert-success { background: rgba(41,163,106,.12); border-color: rgba(41,163,106,.32); color: #9ce2bf; }
.alert-error { background: rgba(217,30,43,.12); border-color: rgba(217,30,43,.3); color: #ffb1b7; }
.card-light .alert-success { color: #186d47; }
.card-light .alert-error { color: #9d1620; }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.contact-card h3 { margin-top: 0; }
.contact-lines { display: grid; gap: 5px; color: #cec4ba; }
.contact-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.contact-links a { text-decoration: none; border: 1px solid var(--line); padding: 9px 12px; border-radius: 999px; color: #e5dbd1; }

.footer { border-top: 1px solid var(--line); padding: 30px 0; color: #8f857c; font-size: .88rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer a { color: #c8bdb2; }

.maintenance { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at top, #2c2015, #0f0e0d 60%); text-align: center; }
.maintenance img { width: 120px; margin: 0 auto 20px; }
.maintenance h1 { font-size: clamp(2rem,6vw,4rem); margin: 0 0 12px; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 76px; left: 16px; right: 16px; background: #171513; border: 1px solid var(--line); border-radius: 18px; padding: 10px; box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 12px 14px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-phone { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .about-grid, .cart-layout { grid-template-columns: 1fr; }
  .hero-panel { max-width: 580px; }
  .about-image { min-height: 320px; }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, var(--max)); }
  .section { padding: 64px 0; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(3rem, 18vw, 5rem); }
  .brand span { display: none; }
  .menu-card { grid-template-columns: 1fr; }
  .menu-price { text-align: left; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
  .menu-price form { margin: 0 0 0 auto; }
  .feature-list, .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}
