/* ═══════════════════════════════════════════════════════════════════
   LIL NAAY – LANDING PAGE STYLES
   Urban / Dark / Premium / Neon Trap
═══════════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --red:          #e00000;
  --red-dark:     #8b0000;
  --red-bright:   #ff2020;
  --red-glow:     rgba(224, 0, 0, 0.6);
  --black:        #080808;
  --black-rich:   #0d0d0d;
  --gray-900:     #111111;
  --gray-800:     #1a1a1a;
  --gray-700:     #242424;
  --gray-400:     #666666;
  --white:        #ffffff;
  --white-dim:    rgba(255,255,255,0.08);

  --font-display: 'Black Ops One', cursive;
  --font-condensed:'Bebas Neue', cursive;
  --font-body:    'Barlow Condensed', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1280px;
  --radius:      4px;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── SCREEN READER ONLY ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__kenburns { animation: none !important; }
  .marquee__track { animation-play-state: paused !important; }
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ═══════════════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════════════ */
@media (pointer: fine) {
  body { cursor: none; }
}
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .2s, height .2s, opacity .2s;
  will-change: transform;
}
.cursor--grow { width: 36px; height: 36px; opacity: .6; }
.cursor-trail {
  position: fixed;
  width: 28px; height: 28px;
  border: 1px solid rgba(224,0,0,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: transform .12s var(--ease-out-expo);
}

/* ═══════════════════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  will-change: opacity, transform;
}
.loader__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 6px;
  color: var(--white);
  text-shadow: 0 0 40px var(--red-glow);
  animation: loaderPulse 1s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  from { text-shadow: 0 0 20px var(--red-glow); }
  to   { text-shadow: 0 0 60px var(--red-glow), 0 0 100px rgba(224,0,0,.3); }
}
.loader__sub {
  font-family: var(--font-condensed);
  letter-spacing: 6px;
  font-size: .85rem;
  color: var(--gray-400);
  margin-top: 16px;
  animation: loaderBlink 1s steps(1) infinite;
}
@keyframes loaderBlink { 50% { opacity: 0; } }
.loader__bar {
  width: 200px; height: 2px;
  background: var(--gray-800);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.loader__bar::after {
  content: '';
  position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: loaderBar 1.2s linear infinite;
}
@keyframes loaderBar {
  to { left: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: clamp(16px, 4vw, 32px);
  right: clamp(16px, 4vw, 32px);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  letter-spacing: 2px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform .3s var(--ease-out-back), box-shadow .3s;
  will-change: transform;
}
.wa-fab:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}
.wa-fab__icon { width: 22px; height: 22px; flex-shrink: 0; }
.wa-fab__label { white-space: nowrap; }
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
}
.wa-fab__pulse--2 { animation-delay: 1s; }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 700;
  padding: 16px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,.9) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, padding .3s;
}
.header--scrolled {
  background: rgba(8,8,8,.95);
  padding-top: 10px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(224,0,0,.15);
}
.header__logo {
  display: flex; align-items: center; gap: 10px;
}
.header__logo-img {
  height: 36px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--red-glow));
}
.header__logo-text {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: var(--white);
}
.header__nav {
  display: flex; align-items: center; gap: 28px;
}
.header__link {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.header__link:hover { color: var(--red); }
.header__cta {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--white);
  background: var(--red);
  padding: 8px 20px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background .2s, transform .2s;
}
.header__cta:hover { background: var(--red-bright); transform: scale(1.04); }

@media (max-width: 640px) {
  .header__nav { gap: 14px; }
  .header__link { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── BG Layers ── */
.hero__bg-layer {
  position: absolute; inset: 0;
  pointer-events: none;
}
/* Layer 0 – Flyer with Ken Burns */
.hero__bg-layer--0 {
  overflow: hidden;
  will-change: transform;
}
.hero__kenburns {
  width: 100%; height: 100%;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0%, 0%); }
  33%  { transform: scale(1.08) translate(-1.5%, 1%); }
  66%  { transform: scale(1.06) translate(1.5%, -1%); }
  100% { transform: scale(1.12) translate(-1%, 1.5%); }
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Layer 1 – Dark vignette */
.hero__bg-layer--1 {
  background:
    radial-gradient(ellipse at center top, rgba(0,0,0,.15) 0%, rgba(0,0,0,.7) 70%),
    linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.2) 40%, rgba(0,0,0,.85) 100%);
}

/* Layer 2 – Red tint glow */
.hero__bg-layer--2 {
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(120,0,0,.45) 0%, transparent 70%);
  animation: redGlowPulse 3s ease-in-out infinite alternate;
}
@keyframes redGlowPulse {
  from { opacity: .7; }
  to   { opacity: 1; }
}

/* ── Smoke Canvas ── */
.hero__smoke {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: screen;
}

/* ── Scanlines ── */
.hero__scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,.15) 3px, rgba(0,0,0,.15) 4px
  );
  pointer-events: none;
  animation: scanMove 10s linear infinite;
}
@keyframes scanMove {
  to { background-position-y: 100px; }
}

/* ── Grain ── */
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .05;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: grainShift 0.4s steps(1) infinite;
}
@keyframes grainShift {
  0%  { background-position: 0 0; }
  25% { background-position: -20px 10px; }
  50% { background-position: 10px -20px; }
  75% { background-position: -10px -10px; }
}

/* ── Glitch Overlay ── */
.hero__glitch-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,0,0,.05) 0px, rgba(255,0,0,.05) 1px,
    transparent 1px, transparent 4px
  );
  mix-blend-mode: overlay;
}
.hero__glitch-overlay.active {
  animation: glitchFlash .3s steps(2) forwards;
}
@keyframes glitchFlash {
  0%,100% { opacity: 0; transform: translate(0); }
  20%     { opacity: 1; transform: translate(-3px, 1px); }
  40%     { opacity: .8; transform: translate(3px, -2px); }
  60%     { opacity: 1; transform: translate(-2px, 3px); }
  80%     { opacity: .6; transform: translate(2px, -1px); }
}

/* ── Corners ── */
.hero__corner {
  position: absolute;
  width: 40px; height: 40px;
  pointer-events: none;
}
.hero__corner--tl { top: 16px; left: 16px; border-top: 2px solid var(--red); border-left: 2px solid var(--red); animation: cornerPulse 3s infinite; }
.hero__corner--tr { top: 16px; right: 16px; border-top: 2px solid var(--red); border-right: 2px solid var(--red); animation: cornerPulse 3s .5s infinite; }
.hero__corner--bl { bottom: 48px; left: 16px; border-bottom: 2px solid var(--red); border-left: 2px solid var(--red); animation: cornerPulse 3s 1s infinite; }
.hero__corner--br { bottom: 48px; right: 16px; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); animation: cornerPulse 3s 1.5s infinite; }
@keyframes cornerPulse { 50% { opacity: .3; } }

/* ── Hero Content ── */
.hero__content {
  position: relative; z-index: 10;
  text-align: center;
  padding: clamp(80px, 10vh, 120px) 20px clamp(60px, 8vh, 100px);
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(16px, 3vh, 24px);
  width: 100%;
}

/* Badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-condensed);
  font-size: clamp(.75rem, 1.5vw, .95rem);
  letter-spacing: 5px;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(224,0,0,.4);
  padding: 6px 18px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  opacity: 0;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: dotBlink 1.2s steps(1) infinite;
}
@keyframes dotBlink { 50% { opacity: 0; } }

/* Name */
.hero__name-wrap {
  position: relative;
  opacity: 0;
}
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 12rem);
  line-height: .88;
  letter-spacing: -2px;
  color: var(--white);
  -webkit-text-stroke: 1px rgba(255,255,255,.2);
  text-shadow:
    0 0 30px var(--red-glow),
    0 0 80px rgba(224,0,0,.3),
    6px 6px 0 var(--red-dark),
    12px 12px 0 rgba(60,0,0,.5);
  position: relative;
  display: inline-block;
  will-change: transform;
}

/* Glitch ghost layers */
.hero__name-ghost {
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  pointer-events: none;
  display: block;
}
.hero__name-ghost--r {
  color: var(--red);
  clip-path: polygon(0 25%, 100% 25%, 100% 50%, 0 50%);
  animation: ghostR 5s infinite 1.5s;
  opacity: 0;
}
.hero__name-ghost--b {
  color: #00d4ff;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  animation: ghostB 5s infinite 2s;
  opacity: 0;
}
@keyframes ghostR {
  0%,92%,100% { opacity:0; transform:translate(0); }
  93% { opacity:1; transform:translate(-5px, 2px); }
  95% { opacity:1; transform:translate(5px, -2px); }
  97% { opacity:0; transform:translate(0); }
}
@keyframes ghostB {
  0%,88%,100% { opacity:0; transform:translate(0); }
  89% { opacity:.7; transform:translate(4px, 3px); }
  91% { opacity:.7; transform:translate(-4px, -1px); }
  93% { opacity:0; transform:translate(0); }
}

/* Glow underlay */
.hero__name-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 12rem);
  line-height: .88;
  letter-spacing: -2px;
  color: var(--red);
  filter: blur(40px);
  opacity: .5;
  pointer-events: none;
  animation: nameGlowPulse 2.5s ease-in-out infinite alternate;
  white-space: nowrap;
}
@keyframes nameGlowPulse {
  from { opacity: .3; filter: blur(40px); }
  to   { opacity: .7; filter: blur(60px); }
}

/* Subtitle */
.hero__subtitle-wrap {
  display: flex; align-items: center; gap: 16px;
  opacity: 0;
}
.hero__subtitle {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 6px;
  color: var(--white);
  white-space: nowrap;
}
.hero__subtitle-line {
  height: 1px;
  width: clamp(20px, 5vw, 60px);
  background: linear-gradient(to right, transparent, var(--red), transparent);
  flex-shrink: 0;
}

/* Booking number */
.hero__booking {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  opacity: 0;
}
.hero__booking-label {
  font-family: var(--font-condensed);
  font-size: clamp(.75rem, 1.5vw, .95rem);
  letter-spacing: 9px;
  color: rgba(255,255,255,.45);
}
.hero__booking-num {
  display: flex; align-items: center; gap: 2px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4.5rem);
  letter-spacing: 3px;
  color: var(--white);
  text-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(224,0,0,.4);
  transition: color .2s, text-shadow .2s;
  will-change: transform;
  animation: numPulse 2.5s ease-in-out infinite;
}
.hero__booking-num:hover {
  color: var(--red);
  text-shadow: 0 0 50px rgba(224,0,0,1), 0 0 100px rgba(224,0,0,.7);
}
@keyframes numPulse {
  0%,100% { text-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(224,0,0,.4); }
  50%     { text-shadow: 0 0 60px rgba(224,0,0,1),  0 0 120px rgba(224,0,0,.6); }
}
.hero__digit {
  display: inline-block;
  transition: transform .15s var(--ease-out-back), color .15s;
}
.hero__booking-dash {
  opacity: .4;
  margin: 0 4px;
  font-size: .7em;
}

/* CTAs */
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  opacity: 0;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-condensed);
  font-size: .7rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,.35);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, rgba(224,0,0,.6), transparent);
  animation: scrollLineDrop 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}
@keyframes scrollLineDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  letter-spacing: 3px;
  padding: 14px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-out-back), box-shadow .25s;
  will-change: transform;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn:hover { transform: scale(1.04) translateY(-2px); }
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 30px rgba(224,0,0,.5);
}
.btn--primary:hover { box-shadow: 0 8px 50px rgba(224,0,0,.8); background: var(--red-bright); }
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn--secondary:hover { border-color: var(--red); color: var(--red); }
.btn--lg { font-size: 1.25rem; padding: 18px 42px; }
.btn--xl { font-size: 1.4rem; padding: 22px 52px; }
.btn__icon { flex-shrink: 0; }
.btn__shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
  transform: translateX(-150%);
  transition: none;
}
.btn:hover .btn__shimmer {
  animation: shimmerSlide .6s ease-in-out forwards;
}
@keyframes shimmerSlide {
  to { transform: translateX(150%); }
}

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════════════ */
.marquee-wrap {
  position: relative;
  background: var(--red);
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--red), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--red), transparent); }

.marquee { overflow: hidden; }
.marquee__track {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 18s linear infinite;
  will-change: transform;
}
.marquee__track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 4px;
  color: var(--white);
  padding: clamp(12px, 2vw, 20px) clamp(24px, 4vw, 48px);
  display: inline-block;
}
.marquee__sep {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-header__tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: .8rem;
  letter-spacing: 6px;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  color: var(--white);
}
.section-header__title em {
  color: var(--red);
  font-style: normal;
  -webkit-text-stroke: 1px var(--red);
  color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  -webkit-background-clip: text;
  background-clip: text;
}
.section-header__line {
  width: 60px; height: 2px;
  background: var(--red);
  margin: 16px auto 0;
}

/* ═══════════════════════════════════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════════════════════════════════ */
.booking {
  padding: var(--section-pad) 0;
  background: var(--black-rich);
  position: relative;
}
.booking::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.stat-card {
  background: var(--gray-800);
  border: 1px solid rgba(224,0,0,.15);
  padding: 32px 24px;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: border-color .3s, transform .3s var(--ease-out-back);
  will-change: transform;
}
.stat-card:hover { border-color: var(--red); transform: translateY(-4px); }
.stat-card__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--red);
  display: block;
  text-shadow: 0 0 20px var(--red-glow);
}
.stat-card__label {
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  display: block;
}

/* Booking Card */
.booking-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--gray-800);
  border: 1px solid rgba(224,0,0,.2);
  overflow: hidden;
  position: relative;
}
.booking-card__glow {
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(224,0,0,.12) 0%, transparent 70%);
  pointer-events: none;
  animation: cardGlow 4s ease-in-out infinite alternate;
}
@keyframes cardGlow {
  from { opacity: .6; transform: translateX(0); }
  to   { opacity: 1;  transform: translateX(10%); }
}
.booking-card__content {
  padding: clamp(32px, 5vw, 64px);
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
  position: relative; z-index: 2;
}
.booking-card__pre {
  font-family: var(--font-condensed);
  font-size: .8rem; letter-spacing: 5px;
  color: var(--red);
}
.booking-card__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  text-shadow: 0 0 20px var(--red-glow);
  animation: numPulse 2.5s ease-in-out infinite;
  letter-spacing: 2px;
  transition: color .2s;
}
.booking-card__number:hover { color: var(--red); }
.booking-card__sub {
  font-family: var(--font-condensed);
  font-size: .85rem; letter-spacing: 3px;
  color: rgba(255,255,255,.35);
}
.booking-card__divider {
  width: 40px; height: 2px;
  background: var(--red);
}
.booking-card__artist {
  position: relative;
  overflow: hidden;
}
.booking-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) contrast(1.1);
  transition: transform .8s var(--ease-out-expo), filter .4s;
}
.booking-card:hover .booking-card__img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.2);
}
.booking-card__img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,1) 0%, rgba(8,8,8,.3) 40%, transparent 100%);
}

@media (max-width: 768px) {
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-card__artist {
    height: 280px;
    order: -1;
  }
  .booking-card__img-glow {
    background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,.3) 40%, transparent 100%);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   CITIES
═══════════════════════════════════════════════════════════════════ */
.cities {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}
.city-card {
  position: relative;
  padding: 48px 32px;
  background: var(--gray-800);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s var(--ease-out-back);
  will-change: transform;
}
.city-card:hover { transform: translateY(-6px); }
.city-card__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(224,0,0,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.city-card:hover .city-card__bg { opacity: 1; }
.city-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(224,0,0,.1);
  position: absolute;
  top: 12px; right: 20px;
  line-height: 1;
  transition: color .3s;
}
.city-card:hover .city-card__num { color: rgba(224,0,0,.25); }
.city-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  position: relative; z-index: 1;
  margin-bottom: 8px;
}
.city-card__dept {
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.4);
  position: relative; z-index: 1;
}
.city-card__bar {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width .4s var(--ease-out-expo);
}
.city-card:hover .city-card__bar { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════
   PRODUCE LOGOS
═══════════════════════════════════════════════════════════════════ */
.produce {
  padding: var(--section-pad) 0;
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,.04);
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.logo-card {
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .3s, transform .3s var(--ease-out-back), box-shadow .3s;
  will-change: transform;
}
.logo-card:hover {
  border-color: rgba(224,0,0,.5);
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 8px 40px rgba(224,0,0,.2);
}
.logo-card__inner {
  padding: 40px 32px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.logo-card__mark {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1;
}
.logo-card__mark em {
  color: var(--red);
  font-style: normal;
}
.logo-card__name {
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.45);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  text-align: center;
}
.final-cta__bg {
  position: absolute; inset: 0;
}
.final-cta__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.3) saturate(1.3);
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.final-cta__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(80,0,0,.5) 0%, transparent 70%),
    rgba(0,0,0,.7);
}
.final-cta__smoke {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(100,0,0,.3) 0%, transparent 70%);
  animation: smokeRise 6s ease-in-out infinite alternate;
}
@keyframes smokeRise {
  from { transform: translateY(20px) scaleX(.9); opacity: .5; }
  to   { transform: translateY(-10px) scaleX(1.1); opacity: 1; }
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta__content {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(16px, 3vh, 28px);
}
.final-cta__pre {
  font-family: var(--font-condensed);
  font-size: clamp(.85rem, 1.5vw, 1rem);
  letter-spacing: 6px;
  color: rgba(255,255,255,.55);
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: .9;
  color: var(--white);
  text-shadow:
    0 0 40px var(--red-glow),
    0 0 100px rgba(224,0,0,.3),
    8px 8px 0 var(--red-dark);
}
.final-cta__sub {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,.45);
}
.final-cta__tel {
  font-family: var(--font-condensed);
  font-size: .9rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.final-cta__tel:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════════
   FECHA CONFIRMADA – EVENT DATE SECTION
═══════════════════════════════════════════════════════════════════ */
.event-date {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(224,0,0,.2);
  border-bottom: 1px solid rgba(224,0,0,.2);
}

/* Animated red bg sweep */
.event-date__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(100,0,0,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(80,0,0,.12) 0%, transparent 60%);
  animation: eventBgPulse 4s ease-in-out infinite alternate;
}
@keyframes eventBgPulse {
  from { opacity: .7; }
  to   { opacity: 1; }
}

/* Grid lines decoration */
.event-date__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(224,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,0,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.event-date__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 5vw, 48px);
  position: relative; z-index: 2;
}

/* ── Badge "FECHA CONFIRMADA" ── */
.event-date__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-condensed);
  font-size: clamp(.8rem, 1.5vw, 1rem);
  letter-spacing: 6px;
  color: var(--white);
  background: var(--red);
  padding: 8px 24px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  animation: badgeFlicker 4s ease-in-out infinite;
}
@keyframes badgeFlicker {
  0%,95%,100% { box-shadow: 0 0 20px rgba(224,0,0,.5); }
  96% { opacity: .7; box-shadow: none; }
  97% { opacity: 1; box-shadow: 0 0 40px rgba(224,0,0,.8); }
  98% { opacity: .8; }
}
.event-date__badge-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: dotBlink 1s steps(1) infinite;
  flex-shrink: 0;
}
.event-date__badge-dot--2 {
  animation-delay: .5s;
  opacity: .5;
  width: 5px; height: 5px;
}

/* ── Main date layout ── */
.event-date__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  width: 100%;
  max-width: 900px;
}

/* City */
.event-date__city-wrap {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px;
}
.event-date__city-tag {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(224,0,0,.4);
  animation: cityTagGlow 3s ease-in-out infinite alternate;
}
@keyframes cityTagGlow {
  from { text-shadow: 0 0 20px rgba(224,0,0,.3); }
  to   { text-shadow: 0 0 60px rgba(224,0,0,.7), 0 0 100px rgba(224,0,0,.3); }
}
.event-date__city-bar {
  width: 100%; height: 3px;
  background: linear-gradient(to left, var(--red), transparent);
  animation: barExpand 1s var(--ease-out-expo) 0.5s both;
}
@keyframes barExpand { from { transform: scaleX(0); transform-origin: right; } to { transform: scaleX(1); } }

/* Date Number */
.event-date__date-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  position: relative;
}
.event-date__day-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: .9;
  color: var(--white);
  text-shadow:
    0 0 30px var(--red-glow),
    0 0 80px rgba(224,0,0,.3),
    4px 4px 0 var(--red-dark),
    8px 8px 0 rgba(50,0,0,.4);
  animation: dayNumPulse 2.5s ease-in-out infinite;
  position: relative;
}
/* Glow underlay */
.event-date__day-num::after {
  content: '28';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: inherit;
  color: var(--red);
  filter: blur(35px);
  opacity: .6;
  pointer-events: none;
  animation: dayNumPulse 2.5s ease-in-out infinite;
}
@keyframes dayNumPulse {
  0%,100% { text-shadow: 0 0 30px var(--red-glow), 0 0 80px rgba(224,0,0,.3), 4px 4px 0 var(--red-dark); }
  50%     { text-shadow: 0 0 60px rgba(224,0,0,1),  0 0 120px rgba(224,0,0,.5), 4px 4px 0 var(--red-dark); }
}
.event-date__day-info {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.event-date__weekday {
  font-family: var(--font-condensed);
  font-size: clamp(.9rem, 2vw, 1.2rem);
  letter-spacing: 6px;
  color: var(--red);
}
.event-date__month {
  font-family: var(--font-condensed);
  font-size: clamp(.75rem, 1.5vw, 1rem);
  letter-spacing: 4px;
  color: rgba(255,255,255,.4);
}

/* Venue */
.event-date__venue-wrap {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 8px;
}
.event-date__venue-icon {
  font-size: 1.6rem;
}
.event-date__venue-info {
  display: flex; flex-direction: column; gap: 4px;
}
.event-date__venue-label {
  font-family: var(--font-condensed);
  font-size: .7rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,.3);
  display: block;
}
.event-date__venue-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--white);
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}
.event-date__venue-city {
  font-family: var(--font-condensed);
  font-size: .85rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.4);
  display: block;
}
.event-date__city-bar-right {
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--red), transparent);
}

/* ── Countdown ── */
.event-date__countdown {
  display: flex; align-items: center; gap: clamp(8px, 2vw, 20px);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(224,0,0,.2);
  padding: clamp(16px, 3vw, 28px) clamp(24px, 4vw, 48px);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.event-date__countdown-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: clamp(48px, 8vw, 72px);
}
.event-date__countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 20px var(--red-glow);
  font-variant-numeric: tabular-nums;
  display: block;
  min-width: 2ch; text-align: center;
  transition: color .15s;
}
.event-date__countdown-num.tick { color: var(--red); }
.event-date__countdown-label {
  font-family: var(--font-condensed);
  font-size: .65rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.3);
}
.event-date__countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--red);
  animation: sepBlink 1s steps(1) infinite;
  margin-bottom: 16px;
}
@keyframes sepBlink { 50% { opacity: .2; } }

/* CTA */
.event-date__cta {
  box-shadow: 0 6px 40px rgba(224,0,0,.6);
}

/* Responsive */
@media (max-width: 768px) {
  .event-date__main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }
  .event-date__city-wrap { align-items: center; }
  .event-date__city-bar  { width: 100px; }
  .event-date__venue-wrap { align-items: center; text-align: center; }
  .event-date__countdown { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .event-date__countdown {
    gap: 8px; padding: 16px 20px;
  }
  .event-date__countdown-sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: clamp(40px, 5vw, 60px) 0 clamp(20px, 3vw, 32px);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 3px;
}
.footer__tagline {
  font-family: var(--font-condensed);
  font-size: .75rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.3);
  margin-top: 4px;
}
.footer__contact-label {
  font-family: var(--font-condensed);
  font-size: .75rem;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 8px;
}
.footer__contact-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 2px;
  transition: color .2s;
}
.footer__contact-num:hover { color: var(--red); }
.footer__produce-label {
  font-family: var(--font-condensed);
  font-size: .75rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.footer__produce-names {
  font-family: var(--font-condensed);
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 24px;
  text-align: center;
}
.footer__bottom p {
  font-family: var(--font-condensed);
  font-size: .8rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS (JS-triggered via Intersection Observer)
═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal[data-reveal="up"]    { transform: translateY(50px); }
.reveal[data-reveal="left"]  { transform: translateX(-50px); }
.reveal[data-reveal="right"] { transform: translateX(50px); }
.reveal[data-reveal="scale"] { transform: scale(.85); }

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal[data-delay="0"] { transition-delay: 0s; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */

/* 320px – Small Mobile */
@media (max-width: 380px) {
  .hero__subtitle { letter-spacing: 3px; font-size: .9rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn--primary { width: 100%; justify-content: center; }
  .wa-fab__label { display: none; }
  .wa-fab { padding: 14px; border-radius: 50%; }
}

/* 768px – Tablet */
@media (max-width: 768px) {
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .hero__content { padding-top: 120px; }
}

/* 1440px+ */
@media (min-width: 1440px) {
  :root { --section-pad: 140px; }
}
