/* =============================================================
   DJ FABRU — Editorial dark · nightlife
   ============================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Palette */
  --bg:        #0B0908;            /* warm near-black, never pure */
  --bg-2:      #110D0A;
  --bg-3:      #19140F;             /* cards / panels */
  --cream:     #F5EFE3;             /* text on dark */
  --cream-2:   #C9C1B0;
  --cream-3:   #8C8273;             /* metadata, captions */
  /* Accent — magenta-violet (matches stage spotlight) */
  --gold:      #B83DC9;             /* primary accent */
  --gold-2:    #8A2BA0;             /* deeper hover variant */
  --gold-soft: rgba(184, 61, 201, 0.18);
  --line:      rgba(245, 239, 227, 0.10);
  --line-2:    rgba(245, 239, 227, 0.18);

  /* Type */
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans:  'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing scale */
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(5rem, 12vw, 9rem);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-weight: 500; }
em { font-style: italic; font-weight: 400; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* ---------- 3. UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  max-width: 18ch;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--gold);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--cream-2);
  max-width: 56ch;
  margin-bottom: 1rem;
}

.accent { color: var(--gold); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out);
  white-space: nowrap;
}
.btn svg { transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: var(--cream);
  box-shadow: 0 10px 30px -10px rgba(184, 61, 201, 0.55);
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(245, 239, 227, 0.35);
}

.btn-ghost {
  color: var(--cream);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 1.15rem 2rem;
  font-size: 1rem;
}

/* ---------- 5. NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gutter);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(11,9,8,0.65), rgba(11,9,8,0.35));
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(11,9,8,0.85);
  border-bottom-color: var(--line);
  padding-block: 0.7rem;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-logo img {
  width: 26px;
  height: 26px;
  filter: invert(1) brightness(1.1);
}
.nav-logo-text {
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--cream);
}
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--cream-2);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: none;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: var(--gutter);
  background: rgba(11,9,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.nav-drawer a {
  color: var(--cream);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.nav-drawer a:hover { color: var(--gold); transform: translateX(6px); }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--gutter) 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(135deg, #18120c 0%, #0b0908 60%, #100a06 100%);
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.1) contrast(1.05);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,9,8,0.2) 0%, rgba(11,9,8,0.55) 55%, rgba(11,9,8,0.92) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(184,61,201,0.20), transparent 60%);
}
.hero-mesh {
  position: absolute;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(40% 30% at 20% 30%, rgba(184,61,201,0.22), transparent 60%),
    radial-gradient(35% 30% at 80% 70%, rgba(138,43,160,0.16), transparent 60%);
  filter: blur(80px) saturate(140%);
  animation: meshDrift 26s var(--ease-soft) infinite alternate;
  pointer-events: none;
}
@keyframes meshDrift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(2%, 1%, 0) scale(1.08); }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='5'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
}

.hero-inner {
  position: relative;
  z-index: 2;                 /* sits above .hero-lights */
  max-width: 880px;
}
.hero-scroll { z-index: 2; }  /* scroll cue stays above lights too */
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: 2rem;
}
.hero-meta .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(184,61,201,0.7);
  animation: pulseDot 2.4s var(--ease-out) infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(184,61,201,0.6); }
  100% { box-shadow: 0 0 0 14px rgba(184,61,201,0); }
}
.hero-meta .sep { opacity: 0.4; }

.hero-title {
  margin-bottom: 2rem;
  line-height: 0;
}
.hero-logo {
  width: 100%;
  max-width: min(880px, 92vw);
  height: auto;
  display: block;
  filter: invert(1) brightness(1.05) drop-shadow(0 14px 40px rgba(0,0,0,0.5));
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 1.4rem;
  max-width: 30ch;
}
.hero-zones {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--cream-3);
  margin-bottom: 2.6rem;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.hero-scroll .line-down {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2.2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0) translateY(40px); }
}

/* ---------- 7. SECTION BASE ---------- */
.section {
  position: relative;
  padding-block: var(--section-y);
}
.section + .section {
  border-top: 1px solid var(--line);
}

/* ---------- 8. SOBRE MÍ ---------- */
.split {
  display: grid;
  gap: 3rem;
}
.split-media {
  position: relative;
}
.frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-3);
}
.frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 1.6s var(--ease-out);
}
.frame:hover img {
  transform: scale(1.04);
  filter: saturate(1.15);
}
.frame-empty {
  background:
    repeating-linear-gradient(45deg, rgba(245,239,227,0.025) 0 12px, transparent 12px 24px),
    var(--bg-3);
}
.frame-empty::after {
  content: "Insertar foto · 4:5";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.caption {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 0.9rem;
}
.split-text p {
  color: var(--cream-2);
  margin-bottom: 1rem;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

/* ---------- 9. TRAYECTORIA ---------- */
.timeline {
  margin: 3rem 0 4rem;
  border-left: 1px solid var(--line-2);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.timeline-item {
  display: grid;
  gap: 0.5rem;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.55rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,61,201,0.16);
}
.timeline-marker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.timeline-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.timeline-item p {
  color: var(--cream-2);
  max-width: 60ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 2rem;
}
.stat {
  background: var(--bg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  font-variation-settings: "SOFT" 50;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.diferencial {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  max-width: 60ch;
}
.diferencial strong {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-right: 0.5rem;
}

/* ---------- 10. SONIDO ---------- */
.mix-embed {
  margin: 3rem 0;
}
.mix-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px var(--line);
}
.mix-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.generos { margin-bottom: 2rem; }
.generos-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 1.2rem;
}
.genero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
  margin-bottom: 2.5rem;
}
.genero-list li {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.genero-list li:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.tipos-evento {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tipos-evento span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  background: var(--bg-3);
  color: var(--cream-2);
  border-radius: 4px;
}

/* ---------- 11. VISUALES (carrusel horizontal) ---------- */
.visuales > .container { margin-bottom: 3rem; }
.gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding: 0 var(--gutter) 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
  cursor: grab;
}
.gallery:active { cursor: grabbing; }
.gallery::-webkit-scrollbar { height: 6px; }
.gallery::-webkit-scrollbar-track { background: transparent; }
.gallery::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 3px;
}
.gallery::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.g-item {
  position: relative;
  flex: 0 0 auto;
  height: clamp(320px, 62vh, 680px);
  overflow: hidden;
  background: var(--bg-3);
  scroll-snap-align: start;
  border-radius: 3px;
}
.g-item video { background: #000; }
.g-item img,
.g-item video {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  transition: transform 1.8s var(--ease-out), filter 1.8s var(--ease-out);
}
.g-item:hover img,
.g-item:hover video {
  transform: scale(1.03);
  filter: saturate(1.1);
}
.g-item.frame-empty {
  width: clamp(280px, 40vw, 420px);
}
.g-item.frame-empty::after {
  content: "Insertar foto";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}
/* Scroll hint */
.gallery-hint {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  text-align: center;
  margin-top: 0.5rem;
}
.gallery-hint::before { content: "← "; color: var(--gold); }
.gallery-hint::after  { content: " →"; color: var(--gold); }

/* ---------- 12. RIDER ---------- */
.rider-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.rider-block {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.7rem;
  transition: border-color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.rider-block:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.rider-block header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.rider-num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
}
.rider-block h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.rider-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-3);
  border: 1px solid var(--line-2);
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  margin-left: auto;
}
.rider-block p {
  color: var(--cream-2);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.rider-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.rider-block ul li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--cream-2);
  line-height: 1.55;
}
.rider-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65rem;
  width: 8px; height: 1px;
  background: var(--gold);
}
.rider-note {
  font-style: italic;
  color: var(--cream-3) !important;
  font-size: 0.92rem;
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}

/* ---------- 13. CONTACTO ---------- */
.contacto {
  text-align: left;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,61,201,0.18), transparent 60%),
    var(--bg);
}
.contacto-inner {
  max-width: 760px;
  text-align: center;
}
.contacto-inner .kicker {
  margin-inline: auto;
  display: inline-flex;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.cta-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--gold);
}
.contacto-inner .lead {
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.contacto-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.contacto-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.c-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.contacto-list a {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--cream);
  transition: color 0.3s var(--ease-out);
  position: relative;
}
.contacto-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.contacto-list a:hover { color: var(--gold); }
.contacto-list a:hover::after { width: 100%; }

/* ---------- 14. FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 3rem;
  text-align: center;
}
.footer-inner { display: grid; gap: 1rem; place-items: center; }
.footer-brand img {
  width: 38px;
  filter: invert(1) brightness(1.1);
  opacity: 0.85;
}
.footer-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--cream-3);
  opacity: 0.7;
}

/* ---------- 15. WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  animation: waPulse 2.6s var(--ease-out) infinite;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.7);
}
@keyframes waPulse {
  0%   { box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37,211,102,0.55); }
  100% { box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.55), 0 0 0 18px rgba(37,211,102,0); }
}

/* ---------- 16. RESPONSIVE ---------- */
@media (min-width: 540px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 720px) {
  .split {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
  }
  .rider-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .nav-links { display: inline-flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero-scroll { display: inline-flex; }
  .hero { padding-inline: clamp(2rem, 6vw, 5rem); }
}

@media (min-width: 1280px) {
  .rider-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Defensive — split-text safety */
.reveal[data-split] { opacity: 1; transform: none; }

/* Reduce motion — only intrusive effects */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh,
  .hero-meta .dot,
  .wa-float,
  .hero-scroll .line-down {
    animation: none !important;
  }
}
