/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0a0007;
  --bg-2:      #110011;
  --bg-3:      #1a0020;
  --bg-4:      #0d000f;
  --cream:     #f0e6f8;
  --cream-2:   #d4b8e8;
  --cream-3:   #9a7ab0;
  --accent:    #8b2fc9;
  --accent-2:  #6b20a0;
  --accent-light: #b06be0;
  --accent-glow: rgba(139,47,201,0.25);
  --gold:      #c49a5b;
  --line:      rgba(176,107,224,0.15);
  --line-2:    rgba(176,107,224,0.08);
  --sans:      'Inter', system-ui, sans-serif;
  --serif:     'Fraunces', Georgia, serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gutter:    clamp(1.25rem, 5vw, 4rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
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; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; }
::selection { background: var(--accent); color: var(--cream); }
:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.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; font-size: 14px;
}
.skip-link:focus { top: 1rem; }
.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;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.display-xl {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
}
.display-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.05;
}
.display-md {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
}
.body-text {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--cream-2);
  line-height: 1.7;
}
.meta-text {
  font-size: 13px;
  color: var(--cream-3);
  letter-spacing: 0.04em;
}

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(176,107,224,0.4);
}
.btn-ghost:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* Platform pills */
.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  color: var(--cream-2);
  background: rgba(139,47,201,0.08);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}
.platform-pill:hover {
  border-color: var(--accent-light);
  color: var(--cream);
  background: rgba(139,47,201,0.15);
  transform: translateY(-1px);
}
.platform-pill svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Section divider */
.divider {
  height: 1px;
  background: var(--line);
  border: none;
}

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}
.nav.is-scrolled {
  background: rgba(10,0,7,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-light);
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color 0.25s;
  text-decoration: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent-light);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 40px;
  background: var(--accent);
  color: var(--cream);
  border: 1px solid var(--accent);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  display: none;
}
.nav-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.nav-burger {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,0,7,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.nav-mobile.is-open { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-style: italic;
  color: var(--cream-2);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--accent-light); }
.nav-mobile .nav-mobile-cta {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 40px;
  background: var(--accent);
  color: var(--cream);
}

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  animation: splashFade 0.7s ease-out 2.5s forwards;
}
.splash-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  animation: splashPulse 1.5s ease-in-out infinite;
}
.splash-logo img { width: 100%; height: 100%; object-fit: cover; }
.splash-name {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.splash-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: dotBlink 1.4s ease-in-out infinite;
}
@keyframes splashFade { to { opacity: 0; pointer-events: none; } }
@keyframes splashPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}
@keyframes dotBlink { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 540px) {
  .hero-bg img { object-position: 30% 30%; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10,0,7,0.97) 0%, rgba(10,0,7,0.7) 40%, rgba(10,0,7,0.25) 70%, rgba(10,0,7,0.4) 100%),
    linear-gradient(to right, rgba(10,0,7,0.8) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-inner {
  max-width: 680px;
}
.hero-eyebrow {
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.025em;
  color: var(--cream);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.hero-title em {
  color: var(--accent-light);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--cream-2);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}
.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================================
   8. Sections — shared
   ============================================================= */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.section-dark { background: var(--bg); }
.section-mid  { background: var(--bg-2); }
.section-card { background: var(--bg-4); }
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .eyebrow { margin-bottom: 0.75rem; display: block; }

/* =============================================================
   9. Música — EP
   ============================================================= */
.ep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.ep-cover-wrap {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.ep-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px var(--accent-glow);
}
.ep-badge {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--accent);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.ep-info .eyebrow { display: block; margin-bottom: 0.75rem; }
.ep-title { margin-bottom: 0.5rem; }
.ep-year { margin-bottom: 2rem; }
.tracklist {
  list-style: none;
  margin-bottom: 2rem;
}
.tracklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  transition: color 0.25s;
}
.tracklist li:first-child { border-top: 1px solid var(--line-2); }
.tracklist li:hover { color: var(--accent-light); }
.track-num {
  font-size: 12px;
  color: var(--cream-3);
  font-variant-numeric: tabular-nums;
  min-width: 20px;
}
.track-name {
  font-size: 15px;
  color: var(--cream-2);
  flex: 1;
}
.tracklist li:hover .track-name { color: var(--cream); }

/* Singles grid — cards */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 1.5rem;
}
@media (min-width: 540px) { .singles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .singles-grid { grid-template-columns: repeat(6, 1fr); } }

.single-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s;
  cursor: pointer;
}
.single-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px var(--accent-glow);
  border-color: rgba(176,107,224,0.35);
}
.single-card.upcoming {
  border-color: rgba(196,154,91,0.25);
  cursor: default;
  pointer-events: none;
}
.single-card-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
  filter: saturate(0.9);
}
.single-card:hover .single-card-cover {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.single-card-info {
  padding: 10px 12px 12px;
}
.single-card-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 4px;
}
.single-card-meta {
  font-size: 10px;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}
.single-card.upcoming .single-card-meta {
  color: var(--gold);
}
.single-card-meta svg {
  width: 10px; height: 10px; fill: currentColor; flex-shrink: 0;
}

/* Videos */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 2.5rem;
}
.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px var(--accent-glow);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,0,7,0.35);
  transition: background 0.3s;
}
.video-card:hover .video-play { background: rgba(10,0,7,0.2); }
.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.video-card:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(139,47,201,0.5);
}
.play-btn svg { width: 20px; height: 20px; fill: var(--cream); margin-left: 3px; }
.video-info {
  padding: 16px 20px;
}
.video-type {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 4px;
}
.video-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}

/* =============================================================
   10. Nosotros
   ============================================================= */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.duo-member {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.duo-photo {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 1px solid var(--line);
  filter: saturate(0.9) contrast(1.05);
  transition: filter 0.4s;
}
.duo-photo:hover { filter: saturate(1.1) contrast(1.05); }
.duo-role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  display: block;
}
.duo-name { margin-bottom: 1rem; }
.duo-bio { color: var(--cream-2); line-height: 1.75; }

.origin-block {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(139,47,201,0.05);
}
.origin-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.origin-block cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: center;
}

/* =============================================================
   11. Shows privados
   ============================================================= */
.shows-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.shows-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.shows-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,0,7,0.92) 0%, rgba(10,0,7,0.5) 100%);
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}
@media (max-width: 540px) {
  .shows-hero-img { aspect-ratio: 4/3; object-position: 70% 40%; }
  .shows-hero-overlay {
    align-items: flex-end;
    padding-bottom: 1.5rem;
    background: linear-gradient(to top, rgba(10,0,7,0.97) 0%, rgba(10,0,7,0.6) 55%, rgba(10,0,7,0.2) 100%);
  }
}
.shows-hero-text { max-width: 480px; width: 100%; }
.shows-hero-text .eyebrow { margin-bottom: 0.75rem; display: block; }

.shows-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 2.5rem;
}
.show-card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(139,47,201,0.05);
  transition: border-color 0.3s, background 0.3s;
}
.show-card:hover {
  border-color: rgba(176,107,224,0.35);
  background: rgba(139,47,201,0.1);
}
.show-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139,47,201,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 18px;
}
.show-card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.show-card-desc {
  font-size: 14px;
  color: var(--cream-2);
  line-height: 1.6;
}

/* =============================================================
   12. Repertorio
   ============================================================= */
.rep-eras { margin-top: 2rem; }
.rep-era {
  border-bottom: 1px solid var(--line-2);
}
.rep-era-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.25s;
}
.rep-era-header:hover { color: var(--accent-light); }
.rep-era-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-2);
}
.rep-era-header:hover .rep-era-title { color: var(--cream); }
.rep-era-chevron {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
}
.rep-era.is-open .rep-era-chevron { transform: rotate(180deg); }
.rep-era-songs {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-soft);
}
.rep-era.is-open .rep-era-songs { max-height: 600px; }
.rep-song {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
  gap: 1rem;
}
.rep-song-title { font-size: 14px; color: var(--cream-2); }
.rep-song-artist {
  font-size: 12px;
  color: var(--accent-light);
  text-align: right;
  flex-shrink: 0;
}
.rep-folklore-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(196,154,91,0.2);
  background: rgba(196,154,91,0.04);
  font-size: 14px;
  color: var(--cream-2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.rep-folklore-note .note-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* =============================================================
   13. Galería
   ============================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: saturate(0.85);
}
.gallery-item.wide img { aspect-ratio: 16/7; }
.gallery-item.tall img { aspect-ratio: auto; min-height: 200px; }
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

/* =============================================================
   14. Contacto
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.form-input {
  background: rgba(139,47,201,0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--cream);
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus { border-color: var(--accent-light); }
.form-input::placeholder { color: var(--cream-3); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit {
  padding: 14px;
  border-radius: 40px;
  background: var(--accent);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(139,47,201,0.12);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  color: var(--accent-light);
}
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 3px;
  display: block;
}
.contact-info-val {
  font-size: 15px;
  color: var(--cream);
}
.contact-info-val a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s;
}
.contact-info-val a:hover { color: var(--accent-light); }

/* =============================================================
   14b. Hitos / Timeline
   ============================================================= */
.timeline {
  position: relative;
  margin: 3rem 0 0;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,47,201,0.2);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-date {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 3px;
}
.timeline-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.timeline-desc {
  font-size: 13px;
  color: var(--cream-3);
  line-height: 1.5;
}

/* Show highlights */
.show-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 720px) {
  .show-highlights { grid-template-columns: 1fr 1fr; }
}
.show-highlight-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.show-highlight-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.show-highlight-photos.single { grid-template-columns: 1fr; }
.show-highlight-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  filter: saturate(0.85);
}
.show-highlight-photos img.align-bottom {
  object-position: center bottom !important;
}
.show-highlight-card:hover .show-highlight-photos img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
.show-highlight-info {
  padding: 18px 20px 20px;
}
.show-highlight-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(139,47,201,0.1);
  border: 1px solid rgba(139,47,201,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.show-highlight-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.3;
}
.show-highlight-desc {
  font-size: 13px;
  color: var(--cream-2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.show-highlight-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.show-highlight-source:hover { color: var(--cream); }
.show-highlight-source::before { content: '↗'; font-size: 12px; }

/* Press / menciones */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 2.5rem;
}
@media (min-width: 540px) { .press-grid { grid-template-columns: repeat(3, 1fr); } }
.press-card {
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(139,47,201,0.04);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.press-card:hover {
  border-color: rgba(176,107,224,0.35);
  background: rgba(139,47,201,0.1);
  transform: translateY(-3px);
}
.press-card-source {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.press-card-text {
  font-size: 13px;
  color: var(--cream-2);
  line-height: 1.55;
  flex: 1;
}
.press-card-arrow {
  font-size: 16px;
  color: var(--accent-light);
  align-self: flex-end;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 2.5rem;
}
@media (min-width: 540px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-stars {
  color: #f5c842;
  font-size: 13px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 13px;
  color: var(--cream-2);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  font-size: 12px;
  color: var(--cream-3);
  letter-spacing: 0.04em;
}
.testimonial-source {
  font-size: 10px;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================================
   14d. Jingles
   ============================================================= */
.jingles-header-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 720px) {
  .jingles-header-inner { grid-template-columns: 1fr auto; }
}
.jingles-logo-wrap {
  display: none;
}
@media (min-width: 720px) {
  .jingles-logo-wrap {
    display: block;
    max-width: 220px;
    opacity: 0.75;
    filter: saturate(0);
    transition: opacity 0.4s, filter 0.4s;
  }
  .jingles-logo-wrap:hover { opacity: 1; filter: saturate(1); }
  .jingles-logo-wrap img { width: 100%; }
}

/* Steps */
.jingles-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 3rem;
}
@media (min-width: 720px) {
  .jingles-steps { grid-template-columns: repeat(4, 1fr); }
}
.jingle-step {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(139,47,201,0.05);
}
.jingle-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(139,47,201,0.15);
  border: 1px solid rgba(139,47,201,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.jingle-step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}
.jingle-step-desc {
  font-size: 12px;
  color: var(--cream-3);
  line-height: 1.55;
}

/* Player cards */
.jingles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .jingles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .jingles-grid { grid-template-columns: repeat(3, 1fr); }
  .jingle-card.featured { grid-column: span 3; }
}
.jingle-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-3);
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.jingle-card:hover,
.jingle-card.is-playing {
  border-color: rgba(176,107,224,0.4);
  background: rgba(139,47,201,0.1);
}
.jingle-card.featured {
  border-color: rgba(176,107,224,0.3);
  background: rgba(139,47,201,0.08);
  padding: 22px 24px;
}
.jingle-card-play {
  flex-shrink: 0;
  cursor: pointer;
}
.jingle-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.jingle-card:hover .jingle-play-btn,
.jingle-card.is-playing .jingle-play-btn {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(139,47,201,0.5);
}
.jingle-play-btn svg {
  width: 18px; height: 18px;
  fill: var(--cream);
  margin-left: 3px;
}
.jingle-card.is-playing .jingle-play-btn svg {
  /* pause icon via clip-path trick */
  clip-path: none;
}
.jingle-card-info {
  flex: 1;
  min-width: 0;
}
.jingle-card-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 3px;
}
.jingle-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jingle-card.featured .jingle-card-title { font-size: 17px; }
.jingle-card-rubro {
  font-size: 12px;
  color: var(--cream-3);
  margin-top: 2px;
}
.jingle-card-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 80px;
}
.jingle-card-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  min-width: 60px;
}
.jingle-card-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-light);
  border-radius: 2px;
  transition: width 0.25s linear;
}
.jingle-card-time {
  font-size: 11px;
  color: var(--cream-3);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* =============================================================
   14c. Apoyá el proyecto
   ============================================================= */
.support-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(139,47,201,0.08) 0%, rgba(10,0,7,0) 60%);
}
@media (min-width: 720px) {
  .support-block { grid-template-columns: 1fr auto; }
}
.support-btns-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.support-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 480px) {
  .support-btns { flex-direction: row; flex-wrap: wrap; }
}
.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  min-width: 200px;
}
.support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.support-btn-cafecito {
  background: rgba(255,199,0,0.06);
  border-color: rgba(255,199,0,0.2);
}
.support-btn-cafecito:hover {
  background: rgba(255,199,0,0.12);
  border-color: rgba(255,199,0,0.4);
}
.support-btn-mp {
  background: rgba(0,122,255,0.06);
  border-color: rgba(0,122,255,0.2);
}
.support-btn-mp:hover {
  background: rgba(0,122,255,0.12);
  border-color: rgba(0,122,255,0.4);
}
.support-btn-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.support-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.support-btn-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}
.support-btn-sub {
  font-size: 11px;
  color: var(--cream-3);
  letter-spacing: 0.06em;
}
.support-deco {
  display: none;
}
@media (min-width: 720px) {
  .support-deco {
    display: block;
    width: 180px;
    flex-shrink: 0;
  }
  .support-deco img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--line);
    opacity: 0.7;
    filter: saturate(0.7);
    transition: opacity 0.4s, filter 0.4s;
  }
  .support-block:hover .support-deco img {
    opacity: 0.9;
    filter: saturate(1);
  }
}

/* =============================================================
   15. Footer
   ============================================================= */
.footer {
  background: var(--bg-4);
  border-top: 1px solid var(--line-2);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--cream);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-2);
  transition: all 0.3s;
  text-decoration: none;
  font-size: 15px;
}
.footer-social-link:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-3);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-copy {
  font-size: 12px;
  color: var(--cream-3);
}

/* =============================================================
   16. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px; margin: -2.5px;
  background: var(--cream); border-radius: 50%;
}
.cursor-ring {
  width: 32px; height: 32px; margin: -16px;
  border: 1px solid rgba(176,107,224,0.6); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 52px; height: 52px; margin: -26px; }
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor [data-cursor] { cursor: none; }

/* =============================================================
   17. Lightbox
   ============================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10,0,7,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 1rem;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-3);
  color: var(--cream);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.lightbox-close:hover { border-color: var(--accent-light); color: var(--accent-light); }

/* =============================================================
   18. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .shows-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-burger { display: none; }
  .ep-grid { grid-template-columns: 1fr 1fr; }
  .duo-member { grid-template-columns: 280px 1fr; }
  .duo-member:nth-child(even) { direction: rtl; }
  .duo-member:nth-child(even) > * { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .videos-grid { grid-template-columns: repeat(4, 1fr); }
  .shows-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* =============================================================
   19. Reduced motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash { animation: none; }
  .splash-logo { animation: none; }
  .splash-dot { animation: none; }
}
