:root {
  --black: #070606;
  --black-2: #100b0b;
  --panel: rgba(18, 12, 10, .82);
  --panel-2: rgba(27, 18, 13, .92);
  --gold: #ffd400;
  --gold-2: #d4af37;
  --orange: #ff8a00;
  --red: #e53935;
  --red-2: #8e0906;
  --cream: #fff4d0;
  --muted: #d8cba9;
  --line: rgba(255, 212, 0, .25);
  --shadow: 0 28px 80px rgba(0, 0, 0, .52);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 36px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(229, 57, 53, .22), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(255, 212, 0, .16), transparent 30%),
    linear-gradient(180deg, #050404 0%, #100806 42%, #050404 100%);
  font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }

.top-line {
  border-bottom: 1px solid rgba(255, 212, 0, .12);
  background: rgba(0,0,0,.74);
  color: var(--muted);
  font-size: .78rem;
}
.top-line-inner { display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; }
.top-line a { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(8, 6, 6, .88);
  border-bottom: 1px solid rgba(255, 212, 0, .18);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.nav-wrap { display: flex; align-items: center; gap: 22px; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { border-radius: 16px; filter: drop-shadow(0 0 18px rgba(255,212,0,.25)); }
.brand strong {
  display: block;
  color: var(--gold);
  font-weight: 1000;
  letter-spacing: -.04em;
  font-size: 1.55rem;
  line-height: .92;
  text-shadow: 0 2px 0 var(--red-2);
}
.brand small { display: block; color: #fff; text-transform: uppercase; letter-spacing: .22em; font-size: .63rem; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; }
.main-nav a {
  position: relative;
  padding: 10px 12px;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  border-radius: 999px;
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(255, 212, 0, .08); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-pill {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.38);
  font-weight: 900;
  font-size: .86rem;
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: rgba(0,0,0,.4);
  border-radius: 12px;
  padding: 8px 11px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-weight: 1000;
  letter-spacing: -.01em;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: 9px 15px; font-size: .86rem; }
.btn-gold { color: #170b00; background: linear-gradient(135deg, var(--gold), var(--orange)); box-shadow: 0 0 26px rgba(255, 212, 0, .18); }
.btn-red { color: #fff; background: linear-gradient(135deg, #f34a32, #970b08); border-color: rgba(255,255,255,.15); box-shadow: 0 0 30px rgba(229,57,53,.32); }
.btn-outline { color: #fff; background: rgba(0,0,0,.34); border-color: rgba(255,255,255,.28); }
.btn-outline:hover { border-color: var(--gold); box-shadow: 0 0 28px rgba(255,212,0,.15); }

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 108, 0, .22), transparent 36%),
    radial-gradient(circle at 22% 28%, rgba(229,57,53,.24), transparent 38%),
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.88) 46%, rgba(0,0,0,.72) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('../images/hero-reference.webp') center / cover no-repeat;
  opacity: .24;
  transform: scale(1.02);
  filter: saturate(1.15) contrast(1.08);
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(transparent, var(--black));
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 44px; align-items: center; padding: 60px 0; }
.opening-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 212, 0, .44);
  background: rgba(0,0,0,.62);
  box-shadow: 0 0 28px rgba(255,212,0,.11);
  margin-bottom: 18px;
}
.opening-badge span, .eyebrow {
  color: var(--gold);
  font-size: .77rem;
  font-weight: 1000;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.opening-badge strong { color: #fff; font-size: .92rem; }
.script-line {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255,255,255,.18);
}
.hero h1 { margin: 0 0 18px; line-height: .82; }
.hero h1 span {
  display: block;
  color: var(--gold);
  font-size: clamp(4rem, 9vw, 8.5rem);
  letter-spacing: -.075em;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow:
    -2px -2px 0 var(--red), 2px -2px 0 var(--red), -2px 2px 0 var(--red), 2px 2px 0 var(--red),
    0 7px 0 var(--red-2), 0 24px 44px rgba(0,0,0,.7), 0 0 28px rgba(255,212,0,.22);
}
.hero h1 small {
  display: block;
  margin-top: 10px;
  color: #fff;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.55rem);
  text-shadow: 0 0 20px rgba(255,212,0,.25);
}
.hero-text { max-width: 650px; color: var(--cream); font-size: 1.14rem; margin: 0; }
.hero-actions, .button-row, .contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-actions { margin-top: 28px; }
.compact-actions { margin-top: 20px; justify-content: center; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,212,0,.22);
  background: rgba(0,0,0,.58);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
}
.hero-showcase { display: grid; gap: 16px; }
.stack-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,212,0,.28);
  background: #0b0807;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.06);
}
.stack-card img { width: 100%; height: 420px; object-fit: cover; }
.hero-offer-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,212,0,.38);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,212,0,.18), transparent 32%),
    linear-gradient(135deg, rgba(128,0,0,.82), rgba(10,5,5,.96));
  text-align: center;
  box-shadow: 0 0 42px rgba(229,57,53,.16);
}
.hero-offer-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-weight: 1000; font-size: .75rem; }
.hero-offer-card strong { display: block; color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); line-height: .92; text-shadow: 0 3px 0 #5e0504; margin: 6px 0; }
.hero-offer-card small { color: var(--cream); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }

.category-strip {
  position: sticky;
  top: 116px;
  z-index: 30;
  background: rgba(7,6,6,.88);
  backdrop-filter: blur(14px);
  border-block: 1px solid rgba(255,212,0,.18);
}
.category-marquee {
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.category-loop {
  display: flex;
  width: max-content;
  animation: categoryMarquee 26s linear infinite;
}
.category-strip:hover .category-loop { animation-play-state: paused; }
.category-track { display: flex; gap: 14px; padding-inline: 7px; }
.category-pill {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.42);
  background: linear-gradient(180deg, rgba(18,18,18,.94), rgba(5,5,5,.85));
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 1000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 8px 22px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}
.category-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.14), transparent 75%);
  transform: translateX(-120%);
  animation: pillShine 3.8s linear infinite;
}
.category-pill:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 18px rgba(255,212,0,.24), 0 12px 28px rgba(0,0,0,.28);
}
.category-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,212,0,.94), rgba(255,138,0,.95));
  color: #1a0b00;
  font-size: 1rem;
  box-shadow: 0 0 16px rgba(255,212,0,.28);
}
@keyframes categoryMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pillShine {
  from { transform: translateX(-120%); }
  to { transform: translateX(140%); }
}

.section { padding: 78px 0; position: relative; }
.section-title { text-align: center; max-width: 820px; margin: 0 auto 34px; }
h2, h3, h1 { letter-spacing: -.035em; }
.section-title h2, .panel h2, .launch-copy h2, .offer-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  color: #fff;
}
.section-title h2 { text-shadow: 0 0 28px rgba(255,212,0,.12); }
.panel {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,212,0,.05), transparent 30%),
    rgba(12, 8, 7, .82);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.04);
}
.panel p { color: var(--muted); }
.split-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); gap: 30px; align-items: center; }
.launch-grid, .offer-layout, .brand-grid, .contact-grid { display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr); gap: 30px; align-items: center; }
.launch-poster, .offer-image, .invite-card, .venue-card, .image-stack, .brand-board {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,212,0,.28);
  background: #080606;
  box-shadow: var(--shadow);
}
.launch-poster img, .offer-image img, .invite-card img, .venue-card img, .image-stack img, .brand-board img { width: 100%; height: 100%; object-fit: cover; }
.launch-poster img { aspect-ratio: 1 / 1.04; }
.invite-card img { max-height: 760px; object-fit: cover; object-position: top; }
.offer-ticket, .event-box {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,212,0,.28);
  background: rgba(0,0,0,.45);
  margin: 22px 0;
}
.offer-ticket strong, .event-box strong { color: var(--gold); font-size: 1.25rem; }
.offer-ticket span, .event-box span { color: #fff; }
.offer-ticket small, .event-box small { color: var(--muted); }
.launch-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 22px 0; }
.launch-items article {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,212,0,.2);
  background: rgba(0,0,0,.34);
}
.launch-items strong { display: block; color: #fff; }
.launch-items span { color: var(--gold); font-size: 1.3rem; font-weight: 1000; }

.specialty-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.specialty-chip { display: grid; justify-items: center; gap: 12px; color: #fff; }
.specialty-chip img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 24px rgba(255,212,0,.18);
}
.specialty-chip span { text-transform: uppercase; color: #fff; letter-spacing: .12em; font-weight: 1000; font-size: .82rem; }

.dark-panel-section {
  background:
    linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.08)),
    radial-gradient(circle at 50% 0, rgba(255,212,0,.1), transparent 40%);
  border-block: 1px solid rgba(255,212,0,.12);
}
.signature-grid, .wide-poster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.poster-card, .wide-poster, .menu-card, .price-card, .offer-card, .feature-card, .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,212,0,.22);
  background: rgba(13, 9, 8, .88);
  box-shadow: 0 22px 54px rgba(0,0,0,.38);
}
.poster-card img, .wide-poster img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .45s ease; }
.poster-card:hover img, .wide-poster:hover img, .gallery-item:hover img, .menu-card:hover img { transform: scale(1.045); }
.poster-card::after, .wide-poster::after, .gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  pointer-events: none;
}
.poster-card div, .wide-poster span, .gallery-item span {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
}
.poster-card div span { display: block; color: var(--gold); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.poster-card h3 { margin: 6px 0 8px; color: #fff; font-size: 1.45rem; line-height: 1; }
.poster-card a { color: var(--gold); font-weight: 1000; }

.venue-section .split-grid { grid-template-columns: minmax(0, 1fr) 420px; }
.check-list { margin: 18px 0 24px; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--cream); }
.check-list li::before { content: "✓"; color: var(--gold); margin-right: 9px; font-weight: 1000; }

.cta-band { padding: 28px 0; background: linear-gradient(90deg, #790806, #090606 45%, #7d0906); border-block: 1px solid rgba(255,212,0,.25); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.cta-inner span { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; font-weight: 1000; }
.cta-inner h2 { margin: 2px 0 0; font-size: clamp(1.5rem, 3vw, 2.7rem); line-height: 1; }

.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.86)),
    url('../images/brand-board.webp') center / cover no-repeat;
}
.page-hero h1 {
  margin: 10px 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .88;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: -2px -2px 0 var(--red), 2px 2px 0 var(--red-2), 0 20px 40px rgba(0,0,0,.55);
}
.page-hero p { max-width: 760px; margin: 0 auto; color: var(--cream); font-size: 1.12rem; }
.poster-hero { background-image: linear-gradient(rgba(0,0,0,.76), rgba(0,0,0,.88)), url('../images/pizza-poster.webp'); }
.offers-hero { background-image: linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.88)), url('../images/launch-offer.webp'); }
.about-hero { background-image: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.88)), url('../images/shop-front.webp'); }
.gallery-hero { background-image: linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.88)), url('../images/website-reference.webp'); }
.contact-hero { background-image: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.88)), url('../images/shop-front.webp'); }

.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.filter-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(0,0,0,.55);
  border-radius: 999px;
  padding: 11px 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 1000;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.filter-btn:hover { transform: translateY(-2px); box-shadow: 0 0 16px rgba(255,212,0,.16); }
.filter-btn.active, .filter-btn:hover { color: #130900; border-color: var(--gold); background: linear-gradient(135deg, var(--gold), var(--orange)); }
.filter-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  font-size: .92rem;
}
.filter-btn.active .filter-icon, .filter-btn:hover .filter-icon { background: rgba(19,9,0,.12); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card[hidden] { display: none; }
.menu-card { transition: .2s ease; }
.menu-image { overflow: hidden; }
.menu-image img { width: 100%; aspect-ratio: 1.15 / .82; object-fit: cover; transition: transform .45s ease; }
.menu-content { padding: 20px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #130900;
  background: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .68rem;
  font-weight: 1000;
}
.badge-red { color: #fff; background: var(--red); }
.menu-card h2 { margin: 0 0 8px; font-size: 1.42rem; line-height: 1.05; }
.menu-card p { margin: 0; color: var(--muted); }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 18px; }
.price-row strong { color: var(--gold); font-size: 1.45rem; }
.price-row a { color: #fff; font-weight: 1000; }
.price-row a:hover { color: var(--gold); }
.wide-poster span { color: #fff; text-transform: uppercase; letter-spacing: .12em; font-weight: 1000; }

.offer-copy .giant-offer {
  margin: 20px 0;
  padding: 18px;
  border-radius: 20px;
  color: var(--gold);
  background: linear-gradient(135deg, #8d0a06, #220604);
  border: 1px solid rgba(255,212,0,.38);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: .78;
  font-weight: 1000;
  text-shadow: 0 4px 0 #4b0504;
}
.offer-copy .giant-offer span { color: #fff; font-size: .52em; }
.muted { color: var(--muted); }
.price-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.price-card img { width: 100%; aspect-ratio: 1 / .88; object-fit: cover; }
.price-card div { padding: 16px; }
.price-card h3 { margin: 0 0 8px; line-height: 1.05; }
.price-card strong { display: block; color: var(--gold); font-size: 1.8rem; margin-bottom: 8px; }
.price-card a { color: #fff; font-weight: 1000; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card { padding: 26px; min-height: 260px; }
.offer-card::before, .feature-card::before, .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 25% 0, rgba(255,212,0,.14), transparent 32%);
}
.offer-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 1000; }
.offer-card h2 { margin: 10px 0 12px; font-size: 2.15rem; line-height: 1; }
.offer-card p { color: var(--muted); }
.offer-card a { color: var(--gold); font-weight: 1000; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.stats-grid div { padding: 16px; border-radius: 18px; background: rgba(0,0,0,.35); border: 1px solid rgba(255,212,0,.18); }
.stats-grid strong { display: block; color: var(--gold); font-size: 2rem; line-height: 1; }
.stats-grid span { color: var(--muted); font-size: .85rem; }
.palette-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.palette-row span {
  position: relative;
  display: inline-flex;
  align-items: end;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding-bottom: 10px;
  border-radius: 999px;
  color: #fff;
  font-size: .68rem;
  font-weight: 1000;
  text-shadow: 0 1px 2px #000;
  background: var(--swatch);
  border: 2px solid rgba(255,255,255,.65);
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { padding: 24px; }
.feature-card span { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #120900; background: var(--gold); font-weight: 1000; margin-bottom: 15px; }
.feature-card strong { display: block; font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); margin: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { min-height: 360px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item span { display: grid; gap: 4px; color: #fff; font-weight: 1000; font-size: 1.12rem; }
.gallery-item em { color: var(--gold); font-style: normal; text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; }

.contact-grid { align-items: start; }
.contact-info p { color: var(--muted); }
.contact-info a { color: #fff; font-weight: 900; }
.map-card { margin-top: 22px; padding: 18px; border: 1px solid rgba(255,212,0,.25); border-radius: 18px; background: linear-gradient(135deg, rgba(255,212,0,.08), rgba(0,0,0,.4)); }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(12, 8, 7, .88);
  box-shadow: var(--shadow);
}
.contact-form h2 { margin: 0; font-size: 2rem; }
.contact-form label { display: grid; gap: 6px; color: var(--cream); font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.42);
  color: #fff;
  padding: 12px 14px;
  outline: none;
}
.contact-form textarea { min-height: 128px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,212,0,.12); }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.notice { border-radius: 14px; padding: 12px 14px; font-weight: 900; }
.notice.success { color: #dfffe5; background: rgba(0, 120, 30, .28); border: 1px solid rgba(96,255,139,.3); }
.notice.error { color: #ffe1df; background: rgba(180, 20, 20, .28); border: 1px solid rgba(255,100,100,.35); }

.footer {
  padding: 54px 0 0;
  background:
    radial-gradient(circle at 20% 0, rgba(255,212,0,.12), transparent 30%),
    #050404;
  border-top: 1px solid rgba(255,212,0,.2);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1fr; gap: 34px; }
.footer h3 { margin: 0 0 14px; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .9rem; }
.footer p { color: var(--muted); margin: 0 0 10px; }
.footer-link { display: block; color: var(--muted); margin: 7px 0; }
.footer-link:hover, .footer a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--gold); background: rgba(0,0,0,.45); font-weight: 1000; }
.footer-bottom { margin-top: 40px; padding: 16px max(18px, calc((100vw - 1180px) / 2)); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: linear-gradient(90deg, #7d0906, #0a0706 55%, #7d0906); color: #fff; font-size: .86rem; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 16px 34px rgba(0,0,0,.4);
}
.mobile-bottom-bar { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .main-nav { position: fixed; top: 111px; left: 18px; right: 18px; display: none; flex-direction: column; padding: 18px; border-radius: 20px; background: rgba(8,6,6,.96); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .header-actions { display: none; }
  .hero-grid, .split-grid, .launch-grid, .offer-layout, .brand-grid, .contact-grid, .venue-section .split-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-showcase { max-width: 620px; }
  .specialty-row { grid-template-columns: repeat(4, 1fr); }
  .signature-grid, .wide-poster-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 26px, 1180px); }
  body { padding-bottom: 76px; }
  .top-line-inner { flex-direction: column; gap: 3px; text-align: center; }
  .nav-wrap { min-height: 72px; }
  .brand strong { font-size: 1.2rem; }
  .brand small { font-size: .55rem; }
  .brand img { width: 48px; height: 48px; }
  .main-nav { top: 111px; }
  .hero-grid { padding: 42px 0; gap: 28px; }
  .hero h1 span { font-size: clamp(3.2rem, 18vw, 5rem); text-shadow: -1px -1px 0 var(--red), 1px 1px 0 var(--red-2), 0 5px 0 var(--red-2), 0 16px 28px rgba(0,0,0,.7); }
  .hero h1 small { letter-spacing: .22em; }
  .script-line { font-size: 2rem; }
  .hero-text { font-size: 1rem; }
  .hero-actions .btn, .button-row .btn, .contact-buttons .btn { width: 100%; }
  .trust-row span { width: calc(50% - 5px); justify-content: center; text-align: center; font-size: .78rem; }
  .stack-card img { height: 300px; }
  .category-strip { top: 111px; }
  .section { padding: 54px 0; }
  .launch-items, .signature-grid, .wide-poster-grid, .menu-grid, .price-grid, .offer-grid, .feature-grid, .gallery-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
  .specialty-row { grid-template-columns: repeat(2, 1fr); }
  .specialty-chip img { width: 120px; height: 120px; }
  .page-hero { min-height: 320px; }
  .page-hero h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }
  .gallery-item { min-height: 300px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-inner .btn { width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
  .whatsapp-float { display: none; }
  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(6, 5, 5, .96);
    border-top: 1px solid rgba(255,212,0,.22);
    backdrop-filter: blur(14px);
  }
  .mobile-bottom-bar a { display: grid; place-items: center; gap: 2px; color: var(--gold); padding: 9px 4px; font-size: 1.08rem; }
  .mobile-bottom-bar span { color: #fff; font-size: .64rem; font-weight: 800; }
}


@media (max-width: 860px) {
  .category-marquee { mask-image: none; }
  .category-loop { animation-duration: 18s; }
  .category-pill { min-height: 48px; padding: 9px 16px; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .category-loop, .category-pill::before { animation: none !important; }
}

/* Updates: premium launch offer panel + bigger signature picks */
.launch-premium {
  position: relative;
  isolation: isolate;
  padding: clamp(18px, 2.6vw, 30px);
  border-radius: 30px;
  border: 1px solid rgba(255, 212, 0, .22);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 212, 0, .12), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(229, 57, 53, .16), transparent 34%),
    linear-gradient(135deg, rgba(18, 8, 7, .78), rgba(5, 4, 4, .72));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
}

.launch-premium::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 0, .22), transparent 68%);
  animation: premiumPulse 3.8s ease-in-out infinite;
  z-index: -1;
}

.launch-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.06), transparent 62% 100%);
  transform: translateX(-120%);
  animation: premiumSweep 5.5s linear infinite;
  z-index: -1;
}

.premium-offer-ticket {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 212, 0, .32);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, .08), rgba(229, 57, 53, .06)),
    rgba(0, 0, 0, .44);
  margin: 22px 0 16px;
  box-shadow: 0 0 24px rgba(255, 212, 0, .08);
}

.ticket-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #140700;
  font-size: 1.6rem;
  box-shadow: 0 0 28px rgba(255, 212, 0, .28);
  animation: iconBounce 2.4s ease-in-out infinite;
}

.premium-offer-ticket strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.1;
}

.premium-offer-ticket small {
  display: block;
  margin-top: 6px;
  color: #fff;
  line-height: 1.45;
}

.launch-highlight-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.launch-highlight-row article,
.premium-launch-items article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, .24);
  background: rgba(0, 0, 0, .42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}

.launch-highlight-row article {
  padding: 16px;
  border-radius: 20px;
}

.launch-highlight-row article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 212, 0, .14);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.launch-highlight-row strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.launch-highlight-row small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: .68rem;
}

.premium-launch-items {
  gap: 12px;
}

.premium-launch-items article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.premium-launch-items article:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(255, 212, 0, .16);
}

.item-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 212, 0, .96), rgba(255, 138, 0, .92));
  color: #170800;
}

.signature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.view-more-wrap .btn {
  min-width: 210px;
}

@keyframes premiumPulse {
  0%, 100% { transform: scale(.88); opacity: .55; }
  50% { transform: scale(1.08); opacity: .95; }
}

@keyframes premiumSweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-4deg); }
}

@media (max-width: 1100px) {
  .signature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .launch-premium { padding: 18px; }
  .launch-highlight-row,
  .premium-launch-items,
  .signature-grid { grid-template-columns: 1fr; }
  .premium-offer-ticket { align-items: flex-start; }
}
