:root {
  --bg: #0b0908;
  --bg-2: #14110f;
  --card: #1b1613;
  --ink: #f6efe6;
  --muted: #b8a99a;
  --line: rgba(246, 239, 230, 0.12);
  --accent: #ff8d08;
  --accent-2: #ff3b1f;
  --cream: #faf0e0;
  --green: #2f6b3a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 100;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 42px; height: 42px;
  border: 1px solid var(--accent);
  transition: transform .15s ease, width .2s, height .2s, background .2s;
}
.cursor.grow { width: 70px; height: 70px; background: rgba(255, 141, 8, .12); }
.cursor-dot { width: 6px; height: 6px; background: var(--accent); }

.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 10px;
  background: rgba(11, 9, 8, .72);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  z-index: 80;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .08em; }
.nav-brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: contain; background: transparent; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.access-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: .04em;
  pointer-events: auto;
  z-index: 81;
}
.access-btn:hover { color: var(--ink); border-color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 8px; }

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.cart-btn svg { width: 20px; height: 20px; margin: 0 auto; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--accent);
  color: #111;
  border-radius: 99px;
  font-size: 11px; font-weight: 800;
  display: grid; place-items: center;
}

.hero {
  min-height: 100svh;
  padding: 130px 24px 80px;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(255,141,8,.18), transparent 60%),
    radial-gradient(700px 400px at 10% 80%, rgba(255,59,31,.12), transparent 55%);
}
.hero-grid {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
h1, h2 { font-family: "Bebas Neue", sans-serif; line-height: .9; }
h1 { font-size: clamp(64px, 10vw, 128px); }
h2 { font-size: clamp(46px, 7vw, 84px); }
.outline {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
  display: inline-block;
}
.hero-lead, .lead { color: var(--muted); max-width: 520px; font-size: 18px; line-height: 1.6; margin: 18px 0 28px; }
.hero-cta, .ig-cta, .order-links { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; }
.hero-stats strong { display: block; font-size: 28px; }
.hero-stats span { color: var(--muted); font-size: 13px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #1a1005; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }

.hero-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 900px;
  position: relative;
}
.burger-3d {
  width: 280px;
  height: 280px;
  position: relative;
  transform-style: preserve-3d;
  animation: burger-spin 1.8s ease-in-out infinite;
  transform-origin: 50% 58%;
}
.burger-3d.fast { animation-duration: .7s; }
.layer { position: absolute; left: 50%; transform: translateX(-50%); border-radius: 50%; }
.bun-top { width: 220px; height: 80px; top: 18px; background: linear-gradient(#e8a45a, #c87a2a); box-shadow: inset 0 -14px 0 #b56a24, 0 16px 24px rgba(0,0,0,.25); border-radius: 110px 110px 40px 40px; }
.sesame { width: 10px; height: 6px; background: #f7e7c6; border-radius: 40%; top: 36px; }
.s1 { margin-left: -40px; }
.s2 { margin-left: 10px; top: 28px; }
.s3 { margin-left: 50px; }
.lettuce { width: 230px; height: 28px; top: 88px; background: #3f8a46; border-radius: 40% 60% 50% 50%; }
.tomato { width: 200px; height: 22px; top: 108px; background: #d63b2f; }
.cheese { width: 210px; height: 18px; top: 122px; background: #f5c542; border-radius: 6px; box-shadow: 20px 10px 0 #f5c542; }
.patty { width: 200px; height: 36px; top: 132px; background: linear-gradient(#5a2c16, #2b140c); }
.p2 { top: 178px; }
.bacon { width: 190px; height: 16px; top: 166px; background: repeating-linear-gradient(90deg, #c0392b 0 18px, #f3d2b5 18px 28px); border-radius: 8px; }
.bun-bot { width: 220px; height: 46px; top: 214px; background: linear-gradient(#c87a2a, #9a5418); border-radius: 40px 40px 90px 90px; }
.shadow-disc { width: 220px; height: 28px; bottom: -10px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.35); filter: blur(10px); border-radius: 50%; }
@keyframes burger-spin {
  0% { transform: rotateY(-38deg) rotateX(10deg); }
  50% { transform: rotateY(38deg) rotateX(14deg); }
  100% { transform: rotateY(-38deg) rotateX(10deg); }
}
.hint { margin-top: 18px; color: var(--muted); font-size: 13px; text-align: center; }

.float-ing span {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  color: rgba(246,239,230,.08);
  animation: drift 10s ease-in-out infinite;
}
.ing-1 { top: 18%; left: 8%; }
.ing-2 { top: 40%; right: 6%; animation-delay: -3s; }
.ing-3 { bottom: 18%; left: 18%; animation-delay: -6s; }
.ing-4 { top: 70%; right: 22%; animation-delay: -2s; }
@keyframes drift {
  50% { transform: translateY(-18px) rotate(-6deg); }
}

.scroll-hint {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px; letter-spacing: .3em; color: var(--muted);
}

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: #120e0c; }
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: slide 22s linear infinite;
  padding: 16px 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--accent);
}
@keyframes slide { to { transform: translateX(-50%); } }

section { padding: 90px 24px; }
.section-head { width: min(1180px, 100%); margin: 0 auto 40px; }
.story-grid, .menu-grid, .combo-grid, .promo-row {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.story-grid { grid-template-columns: repeat(3, 1fr); }
.story-card, .menu-card, .combo-card, .promo-row article {
  background: linear-gradient(180deg, #211b17, #161210);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.story-card .num { color: var(--accent); font-family: "Bebas Neue", sans-serif; font-size: 40px; }
.story-card h3, .menu-card h3 { margin: 8px 0 10px; font-size: 22px; }
.story-card p, .menu-card p, .promo-row p { color: var(--muted); line-height: 1.6; }
.story-banner {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}
.story-visual {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,141,8,.22), transparent 55%),
    #1a1410;
  text-align: center;
  overflow: hidden;
}
.story-logo {
  width: min(108px, 34%);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}
.story-visual p,
.story-caption {
  color: var(--muted);
  width: min(320px, 94%);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
}
.story-copy { padding: 36px; }

.lab { background: radial-gradient(circle at 50% 0, rgba(255,141,8,.12), transparent 50%); }
.lab-wrap { width: min(720px, 100%); margin: 0 auto; display: grid; place-items: center; gap: 18px; }
.smash-pad {
  width: min(340px, 90vw);
  height: 360px;
  border: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,141,8,.18), transparent 46%),
    linear-gradient(#2a1d16, #120d0a);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.smash-svg {
  width: 250px;
  height: 230px;
  margin: 42px auto 0;
  display: block;
  transform-origin: 50% 80%;
  transition: transform .08s ease;
}
.smash-pad.hit .smash-svg { transform: scale(1.18, .62); }
.smash-pad.flat .smash-svg { transform: scale(1.08, .78); }
.smash-score {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: .04em;
}
.smash-score b { font-weight: 400; }
.lab-meta { text-align: center; color: var(--muted); }
.progress { width: min(280px, 80vw); height: 6px; background: #2a211c; border-radius: 99px; margin: 10px auto 0; overflow: hidden; }
.progress i { display: block; height: 100%; width: 0; background: var(--accent); transition: width .2s; }
.layer-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.layer-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
}
.layer-pills span.on { background: var(--accent); color: #1a1005; border-color: var(--accent); }

.filters {
  width: min(1180px, 100%);
  margin: 0 auto 22px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
}
.chip.on { background: var(--accent); color: #1a1005; border-color: var(--accent); }

.menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.menu-card { padding: 0; overflow: hidden; transform-style: preserve-3d; transition: transform .2s ease, box-shadow .2s; }
.menu-card:hover { box-shadow: var(--shadow); }
.menu-card img { height: 150px; width: 100%; object-fit: cover; background: #241c18; }
.menu-card .body { padding: 12px 12px 14px; }
.menu-card h3 { font-size: 16px; }
.menu-card p { font-size: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.price { color: var(--accent); font-weight: 800; font-size: 18px; }
.old { color: var(--muted); text-decoration: line-through; font-size: 13px; margin-right: 8px; }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent-2); color: #fff;
  font-size: 12px; font-weight: 800; padding: 6px 10px; border-radius: 999px;
}
.menu-card { position: relative; }
.add {
  border: 0; background: var(--ink); color: #111;
  width: 36px; height: 36px; border-radius: 50%; font-size: 22px; line-height: 1;
}

.combo-grid { grid-template-columns: repeat(2, 1fr); }
.combo-card img { height: 160px; width: 100%; object-fit: cover; border-radius: 18px; margin-bottom: 14px; }
.promo-row { grid-template-columns: 1fr; margin-top: 18px; }

.ig-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.ig-card { overflow: hidden; border-radius: 22px; position: relative; }
.ig-card.featured { grid-row: span 2; }
.ig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ig-card:hover img { transform: scale(1.08); }
.ig-card span {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(0,0,0,.55); padding: 8px 12px; border-radius: 999px;
}
.ig-cta { width: min(1180px, 100%); margin: 22px auto 0; }

.order-box {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
}
.map-wrap { min-height: 280px; border-radius: 22px; overflow: hidden; position: relative; z-index: 1; isolation: isolate; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 280px; border: 0; filter: grayscale(.4) contrast(1.1); }

.footer { text-align: center; padding: 40px 24px 90px; color: var(--muted); }
.footer img { width: 96px; height: auto; margin: 0 auto 12px; object-fit: contain; }

.drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: min(420px, 100%);
  background: #120e0c;
  border-left: 1px solid var(--line);
  z-index: 70;
  transform: translateX(110%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head, .drawer-foot { padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.drawer-head button { background: none; border: 0; color: var(--ink); font-size: 32px; }
.drawer-body { flex: 1; overflow: auto; padding: 0 20px 20px; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; margin-bottom: 14px; }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.qty { display: flex; gap: 8px; align-items: center; }
.qty button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink); }
.checkout {
  padding: 0 20px 12px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.checkout label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.checkout input[type="text"], .checkout textarea {
  width: 100%;
  background: #1b1613;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  resize: none;
}
.pay-label { font-size: 13px; color: var(--muted); }
.pay-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-opts label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
}
.pay-opts input { accent-color: var(--accent); }
.drawer-foot { flex-wrap: wrap; gap: 10px; }
.drawer-foot .btn { width: 100%; }
.backdrop, .modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none; z-index: 60; transition: opacity .2s;
}
.backdrop.on, .modal.on { opacity: 1; pointer-events: auto; }
.modal { display: grid; place-items: center; padding: 24px; }
.modal-card {
  width: min(560px, 100%);
  background: #171210;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.modal-card img { height: 280px; width: 100%; object-fit: cover; }
.modal-card .pad { padding: 22px; }
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translate(-50%, 120%);
  background: var(--ink); color: #111;
  padding: 12px 18px; border-radius: 999px;
  z-index: 90; font-weight: 700;
  transition: transform .25s ease;
}
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (min-width: 900px) {
  .menu-grid, .combo-grid, .promo-row { grid-template-columns: repeat(3, 1fr); }
  .menu-card img { height: 180px; }
  .menu-card .body { padding: 16px; }
  .menu-card h3 { font-size: 20px; }
  .menu-card p { font-size: 14px; -webkit-line-clamp: 3; }
}
@media (prefers-reduced-motion: reduce) {
  .burger-3d, .marquee-track { animation: none; }
}
@media (max-width: 980px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .hero-grid, .story-grid, .promo-row, .story-banner, .order-box, .ig-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid, .combo-grid { grid-template-columns: repeat(2, 1fr); }
  .story-visual { min-height: 260px; }
  .ig-grid { grid-template-rows: none; }
  .ig-card.featured { grid-row: auto; min-height: 280px; }
  .ig-card { min-height: 180px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    background: #120e0c;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  h1 { font-size: 64px; }
  .hero { padding-top: 110px; }
}

.gate {
  position: fixed; inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.7);
  z-index: 200;
  padding: 24px;
}
.gate.on { display: grid !important; }
.gate-card {
  width: min(380px, 100%);
  background: #171210;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 12px;
}
.gate-card p { color: var(--muted); font-size: 14px; }
.gate-card input, .admin-form input, .admin-form select, .admin-form textarea {
  width: 100%;
  background: #1b1613;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}
.gate-actions { display: flex; gap: 10px; justify-content: flex-end; }

.admin {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 86;
  background: var(--bg);
  overflow: auto;
  padding: 92px 20px 40px;
}
.admin.on { display: block; }
.admin-bar {
  width: min(980px, 100%);
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-form {
  width: min(980px, 100%);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}
.admin-form .full { grid-column: 1 / -1; }
.admin-form label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.admin-form-actions { display: flex; gap: 10px; }
.admin-preview {
  width: 120px; height: 80px;
  object-fit: cover;
  border-radius: 12px;
  display: none;
}
.admin-preview.on { display: block; }
.admin-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.admin-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
}
.admin-row img { width: 72px; height: 56px; object-fit: cover; border-radius: 10px; }
.admin-row strong { display: block; }
.admin-row small { color: var(--muted); }
.admin-row .row-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-row .row-actions button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}
@media (max-width: 720px) {
  .admin-form { grid-template-columns: 1fr; }
  .admin-row { grid-template-columns: 56px 1fr; }
  .admin-row .row-actions { grid-column: 1 / -1; }
}
