:root {
  --ink: #171310;
  --ink-2: #241d18;
  --ink-3: #322821;
  --cream: #fff7df;
  --paper: #f4ecd4;
  --yellow: #f4d735;
  --yellow-2: #ffd94d;
  --red: #ef3c46;
  --wood: #a95727;
  --wood-dark: #6f341b;
  --teal: #49c6b7;
  --muted: #b9ad9f;
  --line: rgba(255, 247, 223, 0.16);
  --shadow: 0 22px 60px rgba(0,0,0,.25);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-paper { background: var(--paper); color: var(--ink); }
.section-wood {
  background:
    linear-gradient(rgba(67,31,16,.18),rgba(67,31,16,.18)),
    repeating-linear-gradient(0deg, var(--wood) 0 44px, #9d4d25 44px 47px, #b7612f 47px 84px);
  color: var(--cream);
  border-block: 1px solid rgba(255,255,255,.13);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; background: currentColor; border-radius: 99px; }
.section-paper .eyebrow { color: #9e341f; }

h1,h2,h3,p { margin-top: 0; }
h1,h2,.display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: .92;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.7rem, 9vw, 8.4rem); margin-bottom: 22px; }
h2 { font-size: clamp(2.7rem, 5vw, 5.4rem); margin-bottom: 20px; }
h3 { line-height: 1.1; }
.lede { max-width: 690px; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: #ded2c6; }
.section-paper .lede { color: #5e5148; }
.muted { color: var(--muted); }
.small { font-size: .86rem; }

.disclosure-bar {
  position: relative;
  z-index: 70;
  background: var(--yellow);
  color: var(--ink);
  border-bottom: 2px solid rgba(0,0,0,.15);
  font-size: .8rem;
  font-weight: 800;
}
.disclosure-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.disclosure-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(23, 19, 16, .91);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 32px rgba(0,0,0,.22); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 46px; height: 46px; transform: rotate(-7deg); }
.brand-type { display: grid; line-height: .9; }
.brand-name { font-family: var(--display); font-size: 1.75rem; letter-spacing: .04em; }
.brand-tag { color: var(--yellow); font-size: .55rem; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a, .nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #e9ded1;
  font-size: .91rem;
  font-weight: 800;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(255,255,255,.08); color: var(--yellow); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.nav-action {
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.nav-action:hover { border-color: var(--yellow); }
.cart-button { position: relative; }
.cart-count {
  min-width: 20px; height: 20px; padding: 0 5px;
  display: inline-grid; place-items: center;
  position: absolute; top: -7px; right: -6px;
  border-radius: 999px; background: var(--red); color: white;
  font-size: .68rem; font-weight: 900;
}
.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 50%;
  background: transparent; cursor: pointer;
}
.mobile-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--cream); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 30px rgba(244,215,53,.15); }
.btn-primary:hover { background: #ffe24f; box-shadow: 0 12px 34px rgba(244,215,53,.24); }
.btn-red { background: var(--red); color: white; }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.24); }
.btn-ghost:hover { border-color: var(--yellow); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: rgba(23,19,16,.28); }
.btn-sm { min-height: 40px; padding-inline: 15px; font-size: .88rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 10px; border-radius: 999px;
  font-size: .69rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase;
}
.badge-public { background: rgba(73,198,183,.14); color: #8be1d7; border: 1px solid rgba(73,198,183,.3); }
.badge-demo { background: rgba(239,60,70,.14); color: #ff8e95; border: 1px solid rgba(239,60,70,.32); }
.badge-history { background: rgba(244,215,53,.12); color: var(--yellow); border: 1px solid rgba(244,215,53,.35); }
.section-paper .badge-public { color: #166a61; background: rgba(20,132,120,.08); border-color: rgba(20,132,120,.24); }
.section-paper .badge-demo { color: #a92731; background: rgba(239,60,70,.08); border-color: rgba(239,60,70,.22); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(244,215,53,.13), transparent 28%),
    radial-gradient(circle at 68% 72%, rgba(239,60,70,.09), transparent 28%),
    var(--ink);
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0;
  height: 10px;
  background: repeating-linear-gradient(90deg,var(--yellow) 0 80px,var(--red) 80px 160px,var(--teal) 160px 240px);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 64px; align-items: center; padding: 66px 0 80px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 .accent { color: var(--yellow); display: block; }
.hero h1 .slash { color: var(--red); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.hero-visual { position: relative; min-height: 530px; }
.hero-photo-shell {
  position: absolute; inset: 36px 8px 28px 42px;
  border-radius: 38px 38px 100px 38px;
  overflow: hidden;
  transform: rotate(2.5deg);
  border: 4px solid var(--cream);
  box-shadow: var(--shadow);
  background: var(--ink-2);
}
.hero-photo-shell img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-shell::after { content: "DEMO PHOTO"; position: absolute; right: 18px; bottom: 16px; padding: 7px 10px; background: rgba(23,19,16,.84); color: var(--cream); border-radius: 999px; font-size: .63rem; font-weight: 900; letter-spacing: .08em; }
.sticker {
  position: absolute;
  z-index: 4;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--display);
  line-height: .9;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.sticker-yellow { width: 134px; height: 134px; top: 4px; left: 4px; background: var(--yellow); color: var(--ink); border-radius: 52% 48% 46% 54% / 56% 43% 57% 44%; transform: rotate(-11deg); font-size: 1.55rem; }
.sticker-red { right: -5px; bottom: 16px; width: 120px; height: 120px; border-radius: 50%; background: var(--red); color: white; transform: rotate(8deg); font-size: 1.35rem; border: 5px solid var(--cream); }
.hero-scribble { position: absolute; right: 3%; top: 22%; width: 72px; height: 150px; border-right: 5px solid var(--yellow); border-radius: 50%; transform: rotate(24deg); opacity: .8; }

.trust-strip { background: #0d0b0a; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-item { padding: 23px 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--yellow); font-size: 1.02rem; }
.trust-item span { color: var(--muted); font-size: .85rem; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.section-head > div { max-width: 760px; }

.public-menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.public-menu-item {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(19,15,12,.9);
  border-radius: var(--radius);
  overflow: hidden;
}
.public-menu-item::after { content: ""; position: absolute; width: 110px; height: 110px; right: -34px; bottom: -38px; border-radius: 50%; border: 16px solid rgba(244,215,53,.08); }
.public-menu-item .number { color: rgba(255,255,255,.16); font-family: var(--display); font-size: 4.4rem; line-height: 1; }
.public-menu-item h3 { margin: 16px 0 8px; font-size: 1.35rem; text-transform: uppercase; }
.public-menu-item .historical-price { color: var(--yellow); font-family: var(--display); font-size: 2rem; letter-spacing: .03em; }

.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #211b17;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(244,215,53,.42); box-shadow: 0 18px 45px rgba(0,0,0,.2); }
.product-card-media { position: relative; aspect-ratio: 1 / .78; overflow: hidden; background: #352820; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-card-media .badge { position: absolute; top: 12px; left: 12px; backdrop-filter: blur(7px); background-color: rgba(23,19,16,.78); }
.product-card-body { display: flex; flex-direction: column; flex: 1; padding: 18px; }
.product-card h3 { margin: 0 0 6px; font-size: 1.15rem; }
.product-desc { color: #c6b9ad; font-size: .9rem; margin-bottom: 18px; flex: 1; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-family: var(--display); color: var(--yellow); font-size: 1.45rem; }
.product-price small { font-family: var(--body); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.brand-story { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.storefront-frame {
  position: relative;
  border: 4px solid var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #2a211b;
  min-height: 360px;
  box-shadow: var(--shadow);
}
.storefront-frame img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.storefront-note { position: absolute; left: 16px; right: 16px; bottom: 14px; padding: 10px 12px; border-radius: 12px; background: rgba(16,13,11,.86); font-size: .76rem; color: #e8ded2; }
.story-points { display: grid; gap: 14px; margin: 30px 0; }
.story-point { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.story-icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--yellow); color: var(--ink); font-weight: 1000; }
.story-point h3 { margin: 2px 0 4px; font-size: 1rem; }
.story-point p { margin: 0; color: #ded0c3; font-size: .92rem; }

.order-band { position: relative; overflow: hidden; background: var(--yellow); color: var(--ink); }
.order-band::before { content: "CRUNCH CRUNCH CRUNCH"; position: absolute; top: -20px; left: -2%; font-family: var(--display); font-size: clamp(5rem,11vw,11rem); color: rgba(23,19,16,.055); white-space: nowrap; }
.order-band-grid { position: relative; display: grid; grid-template-columns: 1.4fr .6fr; gap: 36px; align-items: center; }
.order-band h2 { margin-bottom: 16px; }
.order-band p { max-width: 700px; color: #443b2d; }
.order-band-actions { display: flex; flex-direction: column; gap: 11px; align-items: stretch; }

.location-card { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #201a16; }
.location-copy { padding: 38px; }
.location-copy h3 { font-size: 2rem; margin: 10px 0 18px; }
.location-list { display: grid; gap: 14px; margin: 24px 0; }
.location-line { display: grid; grid-template-columns: 90px 1fr; gap: 14px; font-size: .92rem; }
.location-line strong { color: var(--yellow); }
.map-art {
  min-height: 380px;
  position: relative;
  background:
    linear-gradient(35deg, transparent 45%, rgba(255,247,223,.1) 45% 48%, transparent 48% 60%, rgba(73,198,183,.15) 60% 63%, transparent 63%),
    linear-gradient(135deg, #30261f, #171310);
  overflow: hidden;
}
.map-art::before, .map-art::after { content: ""; position: absolute; border: 14px solid rgba(244,215,53,.12); border-radius: 50%; }
.map-art::before { width: 320px; height: 320px; left: -70px; top: -110px; }
.map-art::after { width: 220px; height: 220px; right: -70px; bottom: -70px; }
.map-pin { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 82px; height: 82px; border-radius: 50% 50% 50% 0; rotate: -45deg; background: var(--red); border: 6px solid var(--cream); box-shadow: 0 20px 45px rgba(0,0,0,.28); }
.map-pin::after { content: ""; position: absolute; width: 24px; height: 24px; border-radius: 50%; background: var(--yellow); left: 23px; top: 23px; }
.map-label { position: absolute; left: 50%; top: calc(50% + 70px); transform: translateX(-50%); padding: 8px 11px; border-radius: 9px; background: var(--cream); color: var(--ink); font-size: .75rem; font-weight: 900; white-space: nowrap; }

.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; text-align: left; padding: 19px 20px; background: transparent; border: 0; cursor: pointer; font-weight: 900; }
.faq-question::after { content: "+"; color: var(--yellow); font-size: 1.4rem; }
.faq-question[aria-expanded="true"]::after { content: "–"; }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p:last-child { margin-bottom: 0; }

.page-hero { padding: 86px 0 72px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 85% 30%, rgba(244,215,53,.11), transparent 26%), var(--ink); }
.page-hero h1 { font-size: clamp(3.5rem,8vw,7.2rem); max-width: 980px; }
.page-hero .lede { margin-bottom: 0; }

.menu-toolbar {
  position: sticky; top: 76px; z-index: 30;
  background: rgba(244,236,212,.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(23,19,16,.12);
}
.menu-toolbar-inner { padding: 16px 0; display: grid; grid-template-columns: minmax(220px,.7fr) 1.3fr; gap: 16px; align-items: center; }
.search-field { position: relative; }
.search-field input {
  width: 100%; min-height: 48px; padding: 0 16px 0 44px;
  border: 1px solid rgba(23,19,16,.16); border-radius: 999px; background: white; color: var(--ink);
}
.search-field::before { content: "⌕"; position: absolute; left: 17px; top: 9px; font-size: 1.35rem; color: #6c6259; }
.filter-pills { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px; }
.filter-pills::-webkit-scrollbar { display: none; }
.filter-btn { flex: 0 0 auto; min-height: 42px; border: 1px solid rgba(23,19,16,.16); border-radius: 999px; background: white; color: var(--ink); padding: 0 15px; font-weight: 850; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.menu-count { color: #665a50; font-size: .88rem; margin-bottom: 18px; }
.menu-grid { grid-template-columns: repeat(3,1fr); }
.no-results { grid-column: 1/-1; padding: 50px 20px; text-align: center; border: 2px dashed rgba(23,19,16,.16); border-radius: var(--radius); color: #6e6258; }

.about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.about-card { min-height: 240px; padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: #211a16; }
.about-card .big { font-family: var(--display); font-size: 3.2rem; color: var(--yellow); line-height: 1; }
.about-card h3 { margin: 18px 0 8px; }
.about-card p { color: var(--muted); font-size: .92rem; }
.truth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.truth-card { padding: 26px; border-radius: var(--radius); background: white; border: 1px solid rgba(23,19,16,.1); }
.truth-card h3 { font-size: 1.15rem; }
.truth-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.truth-list li { position: relative; padding-left: 24px; color: #5c5148; }
.truth-list li::before { content: "•"; position: absolute; left: 4px; top: -1px; color: #a93125; font-size: 1.3rem; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; align-items: start; }
.contact-panel, .form-panel { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #211a16; padding: 30px; }
.contact-actions { display: grid; gap: 12px; margin-top: 26px; }
.contact-action { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 16px; border-radius: 14px; border: 1px solid var(--line); }
.contact-action:hover { border-color: var(--yellow); }
.contact-action small { display: block; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 850; color: #e8ded1; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #16120f;
  color: var(--cream);
  padding: 11px 13px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field .error { min-height: 18px; color: #ff9da3; font-size: .75rem; }
.form-note { margin: 16px 0; color: var(--muted); font-size: .82rem; }

.site-footer { background: #0d0b0a; border-top: 1px solid var(--line); }
.footer-grid { padding: 56px 0 38px; display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: 36px; }
.footer-brand p { max-width: 380px; color: var(--muted); font-size: .9rem; margin: 18px 0; }
.footer-title { margin-bottom: 13px; color: var(--yellow); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #d9cdc1; font-size: .9rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0 26px; display: flex; justify-content: space-between; gap: 18px; color: #94887e; font-size: .76rem; }

.modal-backdrop, .cart-backdrop {
  position: fixed; inset: 0; z-index: 90;
  display: none;
  background: rgba(0,0,0,.67);
  backdrop-filter: blur(6px);
}
.modal-backdrop.open, .cart-backdrop.open { display: grid; }
.modal-backdrop { place-items: center; padding: 18px; }
.modal {
  width: min(720px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  background: #211a16;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.modal-wide { width: min(920px, 100%); }
.modal-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; background: rgba(33,26,22,.97); border-bottom: 1px solid var(--line); }
.modal-head h2 { margin: 0; font-family: var(--body); font-size: 1.12rem; text-transform: none; letter-spacing: 0; line-height: 1.2; }
.icon-btn { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; border-radius: 50%; cursor: pointer; }
.icon-btn:hover { border-color: var(--yellow); }
.modal-body { padding: 22px; }
.modal-product { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.modal-product img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 18px; }
.option-group { margin: 18px 0; }
.option-group legend { margin-bottom: 8px; font-weight: 900; }
.option-list { display: flex; flex-wrap: wrap; gap: 8px; }
.option-chip input { position: absolute; opacity: 0; pointer-events: none; }
.option-chip label { display: inline-flex; min-height: 40px; align-items: center; padding: 0 13px; border-radius: 999px; border: 1px solid var(--line); cursor: pointer; }
.option-chip input:checked + label { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.qty-row { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 42px; height: 40px; border: 0; background: transparent; cursor: pointer; }
.qty-stepper span { min-width: 32px; text-align: center; font-weight: 900; }

.cart-backdrop { justify-items: end; }
.cart-drawer { width: min(440px, 100%); height: 100%; display: flex; flex-direction: column; background: #1c1713; border-left: 1px solid var(--line); box-shadow: -18px 0 50px rgba(0,0,0,.27); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 0; font-family: var(--body); font-size: 1.2rem; text-transform: none; letter-spacing: 0; }
.cart-items { flex: 1; overflow: auto; padding: 16px; display: grid; align-content: start; gap: 11px; }
.cart-empty { padding: 44px 18px; text-align: center; color: var(--muted); }
.cart-item { display: grid; grid-template-columns: 74px 1fr auto; gap: 12px; padding: 11px; border: 1px solid var(--line); border-radius: 14px; }
.cart-item img { width: 74px; height: 74px; object-fit: cover; border-radius: 10px; }
.cart-item h3 { margin: 2px 0 5px; font-size: .93rem; }
.cart-item small { color: var(--muted); display: block; }
.cart-qty { display: flex; gap: 7px; align-items: center; margin-top: 9px; }
.cart-qty button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.cart-remove { border: 0; background: transparent; color: #ff8f96; cursor: pointer; align-self: start; font-size: .8rem; }
.cart-foot { padding: 17px 18px 20px; border-top: 1px solid var(--line); background: #15110f; }
.cart-total { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 13px; }
.cart-total strong { font-family: var(--display); color: var(--yellow); font-size: 1.8rem; }
.cart-foot .btn { width: 100%; }
.cart-disclaimer { margin: 10px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

.toast-region { position: fixed; right: 18px; bottom: 18px; z-index: 120; display: grid; gap: 9px; width: min(360px, calc(100% - 36px)); pointer-events: none; }
.toast { padding: 13px 15px; border-radius: 13px; background: var(--cream); color: var(--ink); box-shadow: 0 16px 44px rgba(0,0,0,.28); font-size: .88rem; font-weight: 750; animation: toastIn .2s ease both; }
.toast strong { display: block; margin-bottom: 2px; }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }

.admin-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 18px 0 24px; }
.metric { padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: #181310; }
.metric small { color: var(--muted); }
.metric strong { display: block; margin-top: 6px; color: var(--yellow); font-family: var(--display); font-size: 1.75rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.admin-table th, .admin-table td { padding: 11px 9px; text-align: left; border-bottom: 1px solid var(--line); }
.admin-table th { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.status-pill { display: inline-flex; padding: 5px 8px; border-radius: 999px; background: rgba(73,198,183,.12); color: #8be1d7; font-size: .7rem; font-weight: 900; }

.back-to-top { position: fixed; right: 18px; bottom: 18px; z-index: 50; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #211a16; color: var(--cream); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s, transform .2s; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: none; }
body:has(.toast-region .toast) .back-to-top { bottom: 88px; }

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-block; }
  .nav-actions .nav-action[data-open-account], .nav-actions .nav-action[data-open-admin] { display: none; }
  .mobile-menu {
    display: none;
    position: fixed; top: 110px; left: 16px; right: 16px; z-index: 65;
    padding: 16px; border: 1px solid var(--line); border-radius: 18px;
    background: #1b1612; box-shadow: var(--shadow);
  }
  .mobile-menu.open { display: grid; }
  .mobile-menu a, .mobile-menu button { min-height: 48px; display: flex; align-items: center; padding: 0 13px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--cream); text-align: left; font-weight: 850; cursor: pointer; }
  .mobile-menu > :last-child { border-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-visual { min-height: 470px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 70px 0; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 500px; max-width: 650px; width: 100%; margin-inline: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 0; }
  .trust-item:last-child { border-bottom: 0; }
  .public-menu-grid { grid-template-columns: 1fr; }
  .brand-story, .location-card, .contact-grid { grid-template-columns: 1fr; }
  .location-card .map-art { order: -1; min-height: 300px; }
  .order-band-grid { grid-template-columns: 1fr; }
  .order-band-actions { flex-direction: row; flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; }
  .truth-grid { grid-template-columns: 1fr; }
  .menu-toolbar { top: 76px; }
  .menu-toolbar-inner { grid-template-columns: 1fr; }
  .filter-pills { margin-inline: -2px; }
  .modal-product { grid-template-columns: 1fr; }
  .modal-product img { aspect-ratio: 16 / 9; }
  .admin-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .disclosure-inner { min-height: 44px; padding-block: 6px; align-items: flex-start; }
  .disclosure-dot { margin-top: 7px; }
  .nav-wrap { min-height: 68px; }
  .brand-name { font-size: 1.5rem; }
  .brand-mark { width: 40px; height: 40px; }
  .nav-actions .btn { display: none; }
  .nav-action.cart-button { display: inline-flex; width: 44px; padding: 0; justify-content: center; }
  .hero-grid { padding: 38px 0 70px; }
  h1 { font-size: clamp(3.4rem,18vw,5.2rem); }
  h2 { font-size: clamp(2.6rem,13vw,4rem); }
  .page-hero h1 { font-size: clamp(2.8rem, 12vw, 3.3rem); overflow-wrap: anywhere; }
  .lede { font-size: 1rem; }
  .hero-visual { min-height: 390px; }
  .hero-photo-shell { inset: 30px 7px 16px 18px; border-radius: 26px 26px 70px 26px; }
  .sticker-yellow { width: 104px; height: 104px; font-size: 1.2rem; }
  .sticker-red { width: 94px; height: 94px; font-size: 1rem; }
  .section-head { align-items: start; flex-direction: column; }
  .product-grid, .menu-grid { grid-template-columns: 1fr; }
  .product-card-media { aspect-ratio: 16 / 10; }
  .brand-story { gap: 28px; }
  .storefront-frame, .storefront-frame img { min-height: 270px; }
  .location-copy, .contact-panel, .form-panel { padding: 22px; }
  .location-line { grid-template-columns: 1fr; gap: 2px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .modal-backdrop { padding: 8px; align-items: end; }
  .modal { width: 100%; max-height: 92vh; border-radius: 22px 22px 10px 10px; }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .admin-table-wrap { overflow-x: auto; }
  .toast-region { left: 12px; right: 12px; bottom: 12px; width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
