/* ============================================================
   ALBERT XL — PRESS KIT
   Sistema de diseño
   -----------------------------------------------------------
   Color
     --ink        #0A0C10  fondo noche (near-black, no negro puro)
     --paper      #F3EEE3  texto principal / blancos cálidos
     --paper-dim  #B9B2A2  texto secundario sobre fondo oscuro
     --cyan       #22D8E8  acento celeste intenso (títulos de sección, links)
     --violet     #6C5CA6  acento secundario (etiquetas "Lado A/B/C/D")
     --line       #2A2D33  líneas divisorias sutiles sobre --ink

   Tipografía
     Display : "Fraunces"       — masthead editorial, con carácter
     Cuerpo  : "Work Sans"      — texto de lectura
     Utility : "IBM Plex Mono"  — etiquetas, géneros, datos, "lados" de vinilo

   Firma visual
     Ecualizador / forma de onda animado (barras) como elemento
     recurrente: en el hero, como separador de secciones y como
     detalle en la navegación al hacer scroll. Referencia directa
     al oficio (DJ set en vivo) sin caer en genérico.
   ============================================================ */

:root {
  --ink: #0a0c10;
  --ink-soft: #12151b;
  --paper: #f3eee3;
  --paper-dim: #b9b2a2;
  --cyan: #22d8e8;
  --cyan-soft: #157e88;
  --violet: #6c5ca6;
  --line: #2a2d33;

  --display: "Fraunces", serif;
  --body: "Work Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--cyan);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Barra de navegación ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: linear-gradient(to bottom, rgba(10, 12, 16, 0.85), transparent);
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(10px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.nav__mark {
  display: block;
  line-height: 0;
}

.nav__mark img {
  height: 70px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  padding-bottom: 3px;
  color: var(--paper-dim);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--paper);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 9px 18px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__cta:hover {
  background: var(--cyan);
  color: var(--ink);
}

.nav__toggle {
  display: none;
}

/* ---------- Hero (loop de video) ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 0%, rgba(10, 12, 16, 0.35) 42%, rgba(10, 12, 16, 0.55) 100%),
    linear-gradient(to right, rgba(10, 12, 16, 0.35), transparent 55%);
}

.hero__coverline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-dim);
  padding: 0 var(--gutter);
  margin-bottom: 18px;
}

.hero__coverline strong {
  color: var(--cyan);
  font-weight: 500;
}

.hero__body {
  padding: 0 var(--gutter) 46px;
}

.hero__title {
  line-height: 0;
}

.hero__title img {
  width: clamp(190px, 46vw, 560px);
  height: auto;
  display: block;
}

.hero__tagline {
  margin-top: 18px;
  max-width: 520px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--paper-dim);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero__tags span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 22px;
  background: var(--violet);
  border-radius: 50%;
  vertical-align: middle;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 34px;
  background: var(--paper-dim);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Ecualizador (firma visual) ---------- */

.eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.eq span {
  width: 3px;
  background: var(--cyan);
  animation: eq 1.1s ease-in-out infinite;
}

.eq span:nth-child(1) { animation-delay: -0.9s; }
.eq span:nth-child(2) { animation-delay: -0.4s; }
.eq span:nth-child(3) { animation-delay: -1.2s; }
.eq span:nth-child(4) { animation-delay: -0.2s; }
.eq span:nth-child(5) { animation-delay: -0.7s; }

@keyframes eq {
  0%, 100% { height: 3px; }
  50% { height: 16px; }
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 var(--gutter);
}

.section-divider .line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---------- Secciones genéricas ---------- */

section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 56px);
}

.section-head .eyebrow {
  margin-bottom: 10px;
  display: block;
}

/* ---------- About / Bio editorial ---------- */

.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gutter);
}

.about__bio {
  font-size: 18px;
  color: var(--paper-dim);
}

.about__portrait {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 25%;
  margin-bottom: 34px;
}

.about__bio h4 {
  font-size: 22px;
  color: var(--paper);
  margin-top: 42px;
  margin-bottom: 16px;
}

.about__bio p {
  margin-bottom: 22px;
}

.about__bio p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 64px;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 6px;
  color: var(--cyan);
}

.about__quote {
  margin: 40px 0;
  padding-left: 24px;
  border-left: 2px solid var(--cyan);
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
}

.about__facts {
  align-self: start;
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--ink-soft);
}

.about__facts dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 20px;
}

.about__facts dt:first-child {
  margin-top: 0;
}

.about__facts dd {
  font-size: 15px;
  color: var(--paper);
  margin-top: 4px;
}

/* ---------- Sides (ciclos / residencias, formato vinilo) ---------- */

.sides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .sides {
    max-width: 60%;
    margin: 0 auto;
  }
}

.side {
  background: var(--ink);
  display: flex;
  flex-direction: column;
}

.side__cover {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-soft);
}

.side__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.side:hover .side__cover img {
  transform: scale(1.04);
}

.side__body {
  padding: 30px 32px 34px;
  transition: background 0.25s ease;
  flex: 1;
}

.side:hover .side__body {
  background: var(--ink-soft);
}

.side__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 14px;
}

.side__body h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.side__body p {
  color: var(--paper-dim);
  font-size: 15px;
}

.side__sets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.side__set-slot {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  border: 1px dashed var(--line);
  background: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.side__set-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side__set-slot:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ---------- Music (embeds) ---------- */

.music {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}

.music__panel h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.embed-frame {
  width: 100%;
  min-height: 180px;
  background: var(--ink-soft);
  border: 1px solid var(--line);
}

.embed-frame:has(iframe) {
  padding: 0;
}

.embed-frame:not(:has(iframe)) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-style: dashed;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--paper-dim);
}

.embed-frame iframe {
  width: 100%;
  display: block;
  border: 0;
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}

.gallery a {
  grid-column: span 3;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.gallery a:nth-child(1) { grid-column: span 4; grid-row: span 3; }
.gallery a:nth-child(2) { grid-column: span 2; }
.gallery a:nth-child(3) { grid-column: span 2; }
.gallery a:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery a:nth-child(5) { grid-column: span 3; grid-row: span 2; }
.gallery a:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.gallery a:nth-child(7) { grid-column: span 2; grid-row: span 2; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(35%);
}

.gallery a:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery .ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--paper-dim);
  border: 1px dashed var(--line);
}

/* ---------- Events ---------- */

.events__list {
  border-top: 1px solid var(--line);
}

.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.event-row .date {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cyan);
}

.event-row .venue h4 {
  font-size: 20px;
  font-weight: 500;
}

.event-row .venue p {
  color: var(--paper-dim);
  font-size: 14px;
  margin-top: 4px;
}

.event-row .venue p a {
  color: var(--cyan);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.event-row .venue p a:hover {
  border-color: var(--cyan);
}

.event-row .status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.events__empty {
  padding: 40px 0;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 13px;
}

/* ---------- Press / EPK ---------- */

.press {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.press p {
  color: var(--paper-dim);
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 2px;
  white-space: nowrap;
}

.btn--solid {
  background: var(--cyan);
  color: var(--ink);
}

.btn--solid:hover {
  background: var(--paper);
}

.btn--outline {
  border: 1px solid var(--paper-dim);
  color: var(--paper);
}

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

/* ---------- Booking ---------- */

.booking {
  background: var(--ink-soft);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: center;
}

.booking__meta {
  display: grid;
  gap: 24px;
}

.booking__meta div {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.booking__meta .diamond {
  color: var(--violet);
}

.booking__meta dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.booking__meta dd {
  font-size: 17px;
  margin-top: 2px;
}

.booking__card {
  border: 1px solid var(--line);
  padding: 44px;
  text-align: center;
}

.booking__card .status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.booking__card .status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(200, 155, 92, 0.2);
}

.booking__card .btn {
  margin: 22px auto 14px;
}

.booking__card small {
  display: block;
  color: var(--paper-dim);
  font-size: 12px;
}

/* ---------- Footer / Follow ---------- */

footer {
  padding: 60px 0 36px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer__mark {
  height: 58px;
  width: auto;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  list-style: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.footer__socials a:hover {
  color: var(--cyan);
}

.footer__bottom {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--paper-dim);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Lightbox simple para galería ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 12, 16, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 26px;
  right: var(--gutter);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 16px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .about,
  .music,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .about__facts {
    position: static;
  }

  .sides {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery a,
  .gallery a:nth-child(1),
  .gallery a:nth-child(2),
  .gallery a:nth-child(3),
  .gallery a:nth-child(4),
  .gallery a:nth-child(5),
  .gallery a:nth-child(6),
  .gallery a:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .press {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  section {
    padding: 80px 0;
  }
}
