/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --color-bg:           #060B1E;
  --color-bg-card:      #0D1535;
  --color-bg-section:   #080E26;
  --color-gold:         #FFB800;
  --color-gold-light:   #FFD454;
  --color-fire:         #FF5722;
  --color-fire-light:   #FF8A50;
  --color-white:        #F0F0F0;
  --color-muted:        #8892B0;
  --color-border:       #1A2240;

  --burst-1: #FF3D6E;
  --burst-2: #00E5FF;
  --burst-3: #76FF03;
  --burst-4: #FFB800;
  --burst-5: #FF6D00;
  --burst-6: #D500F9;

  --font-display: 'Teko', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container-max: 1200px;
  --header-h: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* ============================================================
   2. RESET + BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-fire), #e64a19);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.6);
  background: linear-gradient(135deg, var(--color-fire-light), var(--color-fire));
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: 2px solid var(--color-gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-gold), #e6a200);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(255, 184, 0, 0.4);
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 184, 0, 0.6);
}

.btn-download.pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  margin-top: 0.75rem;
  transition: background var(--transition), transform var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: color var(--transition);
}

.btn-call:hover {
  color: var(--color-gold);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-fire);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-top: 1rem;
  transition: background var(--transition), transform var(--transition);
}

.btn-directions:hover {
  background: var(--color-fire-light);
  transform: translateY(-2px);
}

.btn-pricelist {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-gold);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(255, 184, 0, 0.3);
  position: relative;
}

.btn-pricelist:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.5);
}

/* ============================================================
   6. FIREWORKS CANVAS
   ============================================================ */
#fireworks-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: screen;
}

/* ============================================================
   7. HEADER + NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(6, 11, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 184, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.5));
  animation: logo-sparkle 3s ease-in-out infinite;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 30, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 0.5rem 2rem;
  transition: color var(--transition);
  display: block;
  text-align: center;
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.mobile-close:hover {
  color: var(--color-white);
}

.mobile-cta {
  margin-top: 1rem;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 70%, rgba(255, 87, 34, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255, 184, 0, 0.06) 0%, transparent 50%),
              var(--color-bg);
  padding: 0;
}

/* Noise texture overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Star fields */
.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star-field.layer-1 {
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 25%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 65%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 35%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 75%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 85%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 10%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 90%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 5%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 30%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 60%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 50%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 95%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 3% 30%, rgba(255,255,255,0.8) 0%, transparent 100%);
  animation: starfield-drift 120s linear infinite;
}

.star-field.layer-2 {
  background-image:
    radial-gradient(1.5px 1.5px at 18% 22%, rgba(255,220,100,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 42% 58%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 67% 18%, rgba(255,220,100,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 42%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 8% 88%, rgba(255,220,100,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 52% 72%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 33% 38%, rgba(255,220,100,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 76% 62%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 94% 8%, rgba(255,220,100,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 22% 95%, rgba(255,255,255,0.6) 0%, transparent 100%);
  animation: starfield-drift 90s linear infinite reverse;
}

.star-field.layer-3 {
  background-image:
    radial-gradient(2px 2px at 28% 12%, rgba(255, 184, 0, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 72% 28%, rgba(0, 229, 255, 0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 15% 68%, rgba(255, 61, 110, 0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 58% 82%, rgba(118, 255, 3, 0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 55%, rgba(255, 184, 0, 0.4) 0%, transparent 100%);
  animation: twinkle 4s ease-in-out infinite alternate, starfield-drift 60s linear infinite;
}

/* Ambient sparkles */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
}

.sparkle.s1 { background: var(--burst-1); top: 20%; left: 15%; animation: sparkle-burst 8s ease-in-out infinite; }
.sparkle.s2 { background: var(--burst-2); top: 40%; right: 20%; animation: sparkle-burst 10s ease-in-out infinite 2s; }
.sparkle.s3 { background: var(--burst-3); top: 70%; left: 30%; animation: sparkle-burst 7s ease-in-out infinite 4s; }
.sparkle.s4 { background: var(--burst-4); top: 30%; right: 40%; animation: sparkle-burst 9s ease-in-out infinite 1s; }
.sparkle.s5 { background: var(--burst-6); top: 60%; right: 10%; animation: sparkle-burst 11s ease-in-out infinite 6s; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title .line1 { color: var(--color-white); }
.hero-title .line2 {
  color: var(--color-gold);
  text-shadow: 0 0 40px rgba(255, 184, 0, 0.4);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--color-muted);
  font-size: 1.25rem;
  animation: bounce 2s ease-in-out infinite;
}

/* Scroll reveal */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-up.visible,
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Hero loads instantly */
.hero-content .fade-up {
  animation: hero-reveal 0.6s ease-out forwards;
}
.hero-content .delay-1 { animation-delay: 0.1s; opacity: 0; }
.hero-content .delay-2 { animation-delay: 0.25s; opacity: 0; }
.hero-content .delay-3 { animation-delay: 0.4s; opacity: 0; }
.hero-content .delay-4 { animation-delay: 0.55s; opacity: 0; }

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--color-bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin: 0.25rem 0 1rem;
}

.about-text p {
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number sup {
  font-size: 1.25rem;
  color: var(--color-fire);
}

.stat label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* CSS Night Scene Illustration */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.night-scene {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: linear-gradient(180deg, #010820 0%, #050C25 60%, #0B1530 100%);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 184, 0, 0.1), inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.scene-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
}

.mini-burst {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mini-burst.mb1 {
  background: var(--burst-1);
  top: 25%;
  left: 25%;
  box-shadow: 0 0 10px var(--burst-1);
  animation: mini-burst-anim 3s ease-in-out infinite;
}

.mini-burst.mb2 {
  background: var(--burst-2);
  top: 35%;
  left: 55%;
  box-shadow: 0 0 10px var(--burst-2);
  animation: mini-burst-anim 3s ease-in-out infinite 1s;
}

.mini-burst.mb3 {
  background: var(--burst-4);
  top: 15%;
  left: 70%;
  box-shadow: 0 0 10px var(--burst-4);
  animation: mini-burst-anim 3s ease-in-out infinite 2s;
}

.scene-building {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.building {
  background: linear-gradient(180deg, #0D1535, #060B1E);
  border: 1px solid rgba(255, 184, 0, 0.15);
  position: relative;
}

.building.b1 { width: 60px; height: 80px; border-radius: 2px 2px 0 0; }
.building.b2 { width: 90px; height: 110px; border-radius: 2px 2px 0 0; }
.building.b3 { width: 50px; height: 65px; border-radius: 2px 2px 0 0; }

/* Windows on buildings */
.building::before,
.building::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 10px;
  background: rgba(255, 220, 100, 0.6);
  border-radius: 1px;
}

.building.b1::before { top: 15px; left: 12px; }
.building.b1::after { top: 15px; right: 12px; }
.building.b2::before { top: 20px; left: 15px; box-shadow: 30px 0 0 rgba(255, 220, 100, 0.6); }
.building.b2::after { top: 50px; left: 15px; box-shadow: 30px 0 0 rgba(255, 220, 100, 0.4); }
.building.b3::before { top: 15px; left: 10px; }
.building.b3::after { top: 35px; left: 10px; }

.scene-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(180deg, #0D1535, #060B1E);
  border-top: 1px solid rgba(255, 184, 0, 0.2);
}

.scene-label {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 184, 0, 0.5);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

/* ============================================================
   10. PRICE LIST SECTION
   ============================================================ */
.pricelist-section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.pricelist-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 184, 0, 0.04) 50%, transparent 60%);
  transform: rotate(-5deg);
  pointer-events: none;
}

.pricelist-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(255, 184, 0, 0.08);
  position: relative;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pricelist-card h2 {
  margin: 0.5rem 0 1rem;
}

.pricelist-card p {
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto;
}

.pricelist-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pricelist-features li {
  color: var(--color-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================================
   11. PRODUCTS SECTION
   ============================================================ */
.products-section {
  background: var(--color-bg-section);
}

.products-section .container > .section-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 0.25rem;
}

.products-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  transition: none;
  pointer-events: none;
  z-index: 5;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 184, 0, 0.15);
  border-color: rgba(255, 184, 0, 0.4);
}

.product-card:hover::before {
  animation: card-burst 0.4s ease-out forwards;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--color-bg-card));
}

.p1 { background: linear-gradient(135deg, #1a0a05, #2d1208); }
.p2 { background: linear-gradient(135deg, #0a0520, #14083a); }
.p3 { background: linear-gradient(135deg, #051a10, #0a2d1f); }
.p4 { background: linear-gradient(135deg, #1a1505, #2d2308); }
.p5 { background: linear-gradient(135deg, #1a0a15, #2d0f24); }
.p6 { background: linear-gradient(135deg, #050a1a, #081535); }

.product-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
  position: relative;
  z-index: 1;
}

.badge-wholesale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 87, 34, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.card-body {
  padding: 1.25rem;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--color-white);
}

.card-body p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.price-pill {
  display: inline-block;
  background: rgba(255, 87, 34, 0.15);
  border: 1px solid rgba(255, 87, 34, 0.3);
  color: var(--color-fire-light);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}

.products-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.products-cta p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

/* ============================================================
   12. REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--color-bg);
}

.reviews-section .container > .section-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 0.25rem;
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.agg-stars {
  color: var(--color-gold);
  font-weight: 700;
}

.agg-sep {
  color: var(--color-border);
}

.reviews-link {
  color: var(--color-gold);
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-link:hover {
  color: var(--color-gold-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.review-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.google-icon {
  flex-shrink: 0;
}

.stars {
  color: var(--color-gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.review-card blockquote {
  font-size: 0.9rem;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.review-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255, 184, 0, 0.25);
  line-height: 1;
}

.review-card cite {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold);
  font-style: normal;
}

.review-date {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.2rem;
}

/* ============================================================
   13. FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--color-bg-section);
}

.faq-section .container > .section-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 0.25rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.faq-intro {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(255, 184, 0, 0.3);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--color-gold);
}

.faq-item[open] summary {
  color: var(--color-gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform var(--transition);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 50%;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
}

.faq-answer p { padding-top: 1rem; }

.faq-answer a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.faq-answer a:hover { color: var(--color-gold-light); }

.faq-answer strong { color: var(--color-white); }

/* ============================================================
   14. MAP + CONTACT SECTION
   ============================================================ */
.map-section {
  background: var(--color-bg-section);
  padding-bottom: 0;
}

.map-section .container {
  padding-bottom: 2rem;
}

.map-section h2 {
  text-align: center;
}

.map-wrapper {
  position: relative;
}

.map-overlay-card {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(6, 11, 30, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.map-overlay-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.map-overlay-card address {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.contact-phone {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
  transition: color var(--transition);
}

.contact-phone:hover {
  color: var(--color-gold-light);
}

.contact-hours {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.map-wrapper iframe {
  display: block;
  filter: hue-rotate(180deg) invert(90%) saturate(0.8);
  opacity: 0.85;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
#footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 0;
}

/* Floating embers */
.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
}

.ember.e1  { background: var(--color-gold);  left: 5%;  bottom: 10%; animation: ember-float 3s ease-in-out infinite; }
.ember.e2  { background: var(--color-fire);  left: 12%; bottom: 20%; animation: ember-float 3.5s ease-in-out infinite 0.5s; }
.ember.e3  { background: var(--color-gold);  left: 20%; bottom: 5%;  animation: ember-float 2.8s ease-in-out infinite 1s; width: 3px; height: 3px; }
.ember.e4  { background: var(--burst-1);     left: 30%; bottom: 15%; animation: ember-float 4s ease-in-out infinite 0.2s; }
.ember.e5  { background: var(--color-fire-light); left: 45%; bottom: 8%;  animation: ember-float 3.2s ease-in-out infinite 1.5s; }
.ember.e6  { background: var(--color-gold);  left: 60%; bottom: 18%; animation: ember-float 2.6s ease-in-out infinite 0.8s; width: 5px; height: 5px; }
.ember.e7  { background: var(--burst-6);     left: 70%; bottom: 12%; animation: ember-float 3.8s ease-in-out infinite 0.4s; }
.ember.e8  { background: var(--color-fire);  left: 80%; bottom: 6%;  animation: ember-float 3s ease-in-out infinite 1.2s; }
.ember.e9  { background: var(--color-gold);  left: 88%; bottom: 22%; animation: ember-float 4.2s ease-in-out infinite 0.6s; width: 3px; height: 3px; }
.ember.e10 { background: var(--burst-2);     left: 95%; bottom: 10%; animation: ember-float 3.4s ease-in-out infinite 2s; }

/* Skyshot Stage */
.skyshot-stage {
  position: fixed;
  bottom: 0;
  left: 30px;
  z-index: 100;
  pointer-events: auto;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  cursor: pointer;
}

#cartoon-boy {
  transition: transform 0.3s ease;
}

.skyshot-stage:hover #cartoon-boy {
  transform: scale(1.05);
}

#skyshot-rocket {
  position: absolute;
  bottom: 60px;
  left: 55px;
  transform-origin: center bottom;
  opacity: 0;
  transition: opacity 0.2s;
}

#skyshot-rocket.visible {
  opacity: 1;
}

#skyshot-rocket.launching {
  animation: rocket-launch 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Rocket flame animations */
.flame-1 { animation: flame-flicker 0.15s ease-in-out infinite alternate; }
.flame-2 { animation: flame-flicker 0.12s ease-in-out infinite alternate-reverse; }
.flame-3 { animation: flame-flicker 0.1s ease-in-out infinite alternate; }

/* Header burst particles */
.burst-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 200;
  animation: burst-fly 0.8s ease-out forwards;
}

/* Header exploding flash */
.brand-name.exploding {
  animation: logo-flash 0.5s ease-out forwards;
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-logo-icon {
  font-size: 1.75rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-links a:hover {
  background: rgba(255, 184, 0, 0.1);
  color: var(--color-gold);
  border-color: rgba(255, 184, 0, 0.3);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--color-gold);
}

.footer-col address {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-phone {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.footer-phone:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-bottom a {
  color: var(--color-gold);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--color-gold-light);
}

/* ============================================================
   15. KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes starfield-drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-50px); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@keyframes sparkle-burst {
  0%   { transform: scale(1); opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { transform: scale(8); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes logo-sparkle {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 184, 0, 0.4)); }
  50%       { filter: drop-shadow(0 0 16px rgba(255, 184, 0, 0.8)); }
}

@keyframes mini-burst-anim {
  0%   { transform: scale(1); opacity: 0.3; box-shadow: 0 0 6px currentColor; }
  50%  { transform: scale(4); opacity: 0.8; box-shadow: 0 0 20px currentColor; }
  100% { transform: scale(1); opacity: 0.3; box-shadow: 0 0 6px currentColor; }
}

@keyframes ember-float {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.5; }
  100% { transform: translateY(-120px) scale(0.5) translateX(20px); opacity: 0; }
}

@keyframes flame-flicker {
  0%   { transform: scaleX(1) scaleY(1); }
  100% { transform: scaleX(0.7) scaleY(1.2); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(255, 184, 0, 0.4); }
  50%       { box-shadow: 0 4px 40px rgba(255, 184, 0, 0.7), 0 0 60px rgba(255, 184, 0, 0.2); }
}

@keyframes rocket-launch {
  0%   {
    transform: translate(0, 0) rotate(-5deg);
    opacity: 1;
  }
  20%  {
    transform: translate(-20px, -15vh) rotate(-15deg);
  }
  60%  {
    transform: translate(calc(50vw - 80px), -55vh) rotate(-25deg);
    opacity: 1;
  }
  90%  {
    transform: translate(calc(50vw - 30px), -85vh) rotate(-10deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(calc(50vw - 10px), -90vh) rotate(0deg);
    opacity: 0;
  }
}

@keyframes burst-fly {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--bx, 60px), var(--by, -60px)) scale(0); opacity: 0; }
}

@keyframes logo-flash {
  0%   { text-shadow: 0 0 0px transparent; transform: scale(1); }
  30%  { text-shadow: 0 0 30px var(--color-gold), 0 0 60px var(--color-gold); transform: scale(1.05); }
  100% { text-shadow: 0 0 0px transparent; transform: scale(1); }
}

@keyframes card-burst {
  0%   { width: 0; height: 0; opacity: 0.8; top: 0; left: 50%; }
  100% { width: 60px; height: 60px; margin-left: -30px; margin-top: -30px; opacity: 0; }
}

/* ============================================================
   16. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Medium: 768px–1023px */
@media (max-width: 1023px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    order: -1;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .review-card {
    scroll-snap-align: start;
    min-width: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

/* Small: < 768px */
@media (max-width: 767px) {
  :root { --header-h: 60px; }

  .nav-links,
  .nav-cta .btn-call {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .trust-badges span {
    font-size: 0.75rem;
  }

  .stats-row {
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .pricelist-card {
    padding: 2rem 1.25rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .review-card {
    min-width: 280px;
    scroll-snap-align: start;
  }

  .map-overlay-card {
    position: static;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
  }

  .map-wrapper iframe {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 100px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .skyshot-stage {
    left: 10px;
  }

  #cartoon-boy {
    width: 55px;
    height: 83px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .product-card {
    min-width: 220px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ============================================================
   17. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .star-field,
  .sparkle,
  .ember,
  .flame-1, .flame-2, .flame-3,
  .mini-burst,
  .scroll-indicator,
  .nav-logo-icon {
    animation: none !important;
  }

  .fade-up, .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  #skyshot-rocket {
    display: none !important;
  }

  #cartoon-boy {
    pointer-events: none;
  }
}
