:root {
  --bg: #070707;
  --panel: rgba(255,255,255,.075);
  --panel-strong: rgba(255,255,255,.12);
  --text: #f7f2ea;
  --muted: rgba(247,242,234,.68);
  --line: rgba(255,255,255,.14);
  --red: #e11925;
  --red-2: #ff4b3e;
  --gold: #f6c76d;
  --green: #25d366;
  --shadow: 0 24px 70px rgba(0,0,0,.48);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(225,25,37,.22), transparent 30rem),
    linear-gradient(180deg, #050505, #0b0b0d 44rem, #070707);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--red);
  color: white;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,7,.72);
  backdrop-filter: blur(22px);
}
.status {
  padding: .45rem 1rem;
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  background: rgba(225,25,37,.12);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 70px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  text-decoration: none;
  display: grid;
  line-height: 1;
  letter-spacing: -.02em;
}
.brand span { font-size: 1.15rem; font-weight: 900; text-transform: uppercase; }
.brand small { color: var(--red-2); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: .68rem; }
.nav-links { display: none; gap: 1.4rem; color: var(--muted); font-size: .92rem; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.cart-pill {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--panel);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .8rem;
}
.cart-pill strong {
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--red);
  font-size: .8rem;
}
.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: .84;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,5,5,.96), rgba(5,5,5,.67) 42%, rgba(5,5,5,.22)), linear-gradient(0deg, var(--bg), transparent 42%);
}
.hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 9rem 1rem 4.6rem;
}
.kicker {
  margin: 0 0 .85rem;
  color: var(--red-2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(3.15rem, 13vw, 7.4rem);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}
h2 { font-size: clamp(2rem, 8vw, 4.5rem); line-height: .95; letter-spacing: 0; }
h3 { font-size: 1.35rem; line-height: 1.1; }
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 3.7vw, 1.25rem);
}
.hero-actions, .hero-stats { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-stats { margin-top: 1.3rem; color: var(--muted); }
.hero-stats span {
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}
.hero-stats strong { display: block; color: var(--text); }
.btn {
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .9rem 1.2rem;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--red), #ff382f);
  box-shadow: 0 15px 40px rgba(225,25,37,.34);
}
.btn.glass, .btn.small {
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
}
.btn.small { min-height: 2.5rem; padding: .65rem .9rem; font-size: .9rem; }
.btn.full { width: 100%; }
.pulse { animation: pulse 2.6s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 15px 40px rgba(225,25,37,.34); }
  50% { box-shadow: 0 18px 62px rgba(225,25,37,.58); }
}
.trust-strip {
  width: min(100% - 2rem, 1180px);
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  gap: .75rem;
}
.trust-strip div, .glass-card, .review, .menu-card, .offer-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}
.trust-strip div { padding: 1rem; }
.trust-strip span { display: block; color: var(--muted); font-size: .9rem; }
.section {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: 5rem 0 0;
}
.section-head { margin-bottom: 1.4rem; }
.section-head h2 { max-width: 900px; }
.menu-tools {
  position: sticky;
  top: 118px;
  z-index: 20;
  display: grid;
  gap: .75rem;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7,7,7,.78);
  backdrop-filter: blur(22px);
}
.search { display: grid; gap: .35rem; color: var(--muted); font-size: .8rem; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  color: var(--text);
  padding: .88rem .95rem;
  outline: none;
}
input:focus, textarea:focus { border-color: rgba(255,75,62,.7); box-shadow: 0 0 0 4px rgba(225,25,37,.16); }
.filters { display: flex; gap: .45rem; overflow-x: auto; padding-bottom: .15rem; }
.filters button, .toggle {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  padding: .65rem .8rem;
  white-space: nowrap;
}
.filters button.active { color: white; background: var(--red); border-color: var(--red); }
.toggle { display: flex; align-items: center; gap: .45rem; }
.toggle input { width: auto; }
.offer-band {
  margin: 1rem 0;
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}
.offer-band h3 { margin-bottom: 0; }
.menu-grid {
  display: grid;
  gap: .9rem;
}
.category-title {
  grid-column: 1 / -1;
  padding-top: 1.2rem;
  color: var(--text);
}
.category-title h3 { font-size: 1.8rem; margin-bottom: .2rem; }
.category-title p { color: var(--muted); margin: 0; }
.menu-card {
  padding: 1rem;
  display: grid;
  gap: .85rem;
  min-height: 100%;
  transition: transform .2s ease, border-color .2s ease;
}
.menu-card:hover { transform: translateY(-4px); border-color: rgba(255,75,62,.5); }
.card-top { display: flex; justify-content: space-between; gap: .8rem; }
.item-name { margin: 0 0 .25rem; font-size: 1.02rem; }
.item-desc { color: var(--muted); margin: 0; font-size: .92rem; }
.badge {
  align-self: start;
  color: #160606;
  background: var(--gold);
  border-radius: 999px;
  padding: .25rem .5rem;
  font-size: .72rem;
  font-weight: 900;
  white-space: nowrap;
}
.price-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: auto; }
.price { font-weight: 900; color: var(--text); }
.size-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: .45rem; }
.size-options button, .add-btn {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding: .6rem;
  font-weight: 800;
}
.size-options button:hover, .add-btn:hover { background: var(--red); border-color: var(--red); }
.order-card { padding: 1.2rem; display: grid; gap: 1rem; }
.glass-card { padding: 1.2rem; }
.glass-card p, .review p, details p { color: var(--muted); }
.info-grid, .review-grid { display: grid; gap: .9rem; }
.review { padding: 1.1rem; }
.map {
  width: 100%;
  height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: grayscale(.9) invert(.9) contrast(.9);
  background: var(--panel);
}
details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
summary { cursor: pointer; font-weight: 900; }
.footer {
  width: min(100% - 2rem, 1180px);
  margin: 5rem auto 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: .55rem;
}
.footer strong { color: var(--text); }
.footer nav { display: flex; gap: 1rem; }
.floating-actions {
  position: fixed;
  right: .9rem;
  bottom: .9rem;
  z-index: 75;
  display: grid;
  gap: .6rem;
}
.floating-actions a {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: white;
  background: var(--red);
  font-weight: 900;
  box-shadow: var(--shadow);
}
.floating-actions a:last-child { background: var(--green); color: #041b0d; }
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: rgba(0,0,0,.58);
}
.cart-drawer.open { display: block; }
.cart-panel {
  margin-left: auto;
  width: min(100%, 460px);
  min-height: 100%;
  background: #0d0d10;
  border-left: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.cart-head { display: flex; justify-content: space-between; align-items: center; }
.icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 1.5rem;
}
.cart-items { overflow: auto; display: grid; align-content: start; gap: .7rem; }
.cart-line {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem;
  display: grid;
  gap: .55rem;
  background: rgba(255,255,255,.05);
}
.cart-line-top { display: flex; justify-content: space-between; gap: .8rem; }
.qty { display: flex; align-items: center; gap: .45rem; }
.qty button {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}
.cart-form { display: grid; gap: .6rem; }
.payment-choice {
  display: grid;
  gap: .55rem;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.payment-choice p,
.payment-status { margin: 0; }
.payment-choice small,
.payment-status {
  color: var(--muted);
  font-size: .86rem;
}
.payment-status.error { color: #ff9a92; }
.payment-status.success { color: #8df0b0; }
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.segmented button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  padding: .75rem;
}
.segmented button.active { color: white; background: var(--red); border-color: var(--red); }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 1.25rem;
}
.min-note { margin: 0; color: var(--muted); font-size: .9rem; }
.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 130;
  display: none;
  gap: .8rem;
  align-items: center;
  justify-content: space-between;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7,7,7,.9);
  backdrop-filter: blur(18px);
}
.cookie.show { display: flex; }
.cookie p { margin: 0; color: var(--muted); font-size: .9rem; }
.success-page h1 { max-width: 980px; }
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1rem 0;
}
.paid-summary {
  display: grid;
  gap: .5rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.2);
}
.paid-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: .45rem;
}
.paid-summary div:last-child { border-bottom: 0; padding-bottom: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .trust-strip, .info-grid, .review-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-tools { grid-template-columns: minmax(220px, .9fr) 1.6fr auto; align-items: end; }
  .offer-band, .order-card { grid-template-columns: 1fr auto; align-items: center; }
}
@media (min-width: 1040px) {
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .hero { min-height: 720px; }
  .hero-media img { object-position: 72% center; }
  .hero::after { background: linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.72) 70%, rgba(5,5,5,.34)), linear-gradient(0deg, var(--bg), transparent 50%); }
  .hero-content { padding-top: 7.2rem; }
  .cart-pill span { display: none; }
  .size-options { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
