/* =====================================================================
   ZANK — Landing oficial
   Sistema visual construido sobre la regla del manual de marca:
   todo el logotipo (y aquí, toda la interfaz) usa ángulos de 0°, 45° y 90°.
   De ahí salen los chaflanes de las tarjetas, botones e imágenes.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Tokens                                                           */
/* ------------------------------------------------------------------ */
:root {
  /* Paleta oficial */
  --scarlet: #FF3117;
  --chili: #E64026;
  --jet: #303030;
  --white: #FFFFFF;

  /* Derivados para fondo oscuro */
  --void: #0B0B0B;
  --surface: #121212;
  --surface-2: #171717;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .24);
  --txt: #F4F4F4;
  --muted: rgba(244, 244, 244, .56);

  /* Tipografía */
  --ff-display: 'Chakra Petch', 'Arial Narrow', system-ui, sans-serif;
  --ff-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --ff-mono: 'IBM Plex Mono', ui-monospace, 'Courier New', monospace;

  /* Métrica */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 56px);
  --sect: clamp(80px, 11vw, 160px);

  /* Chaflán: corte exacto a 45° en dos esquinas opuestas */
  --cut-size: 16px;
  --cut: polygon(0 0,
      calc(100% - var(--cut-size)) 0,
      100% var(--cut-size),
      100% 100%,
      var(--cut-size) 100%,
      0 calc(100% - var(--cut-size)));

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------ */
/* 2. Base                                                             */
/* ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--txt);
  font-family: var(--ff-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.66;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grano sutil: replica la textura de la fotografía oficial de la marca */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* El atributo [hidden] debe imponerse sobre los display de los overlays */
[hidden] {
  display: none !important;
}

img {
  height: auto;
}

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

p {
  margin: 0 0 1.1em;
  color: var(--muted);
}

::selection {
  background: var(--scarlet);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--scarlet);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--scarlet);
  color: #fff;
  padding: 12px 20px;
  font-family: var(--ff-mono);
  font-size: .8rem;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ------------------------------------------------------------------ */
/* 3. Tipografía y utilidades                                          */
/* ------------------------------------------------------------------ */
.h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 1.1rem + 4.2vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  color: var(--white);
}

h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem);
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  color: var(--white);
}

/* Etiqueta técnica, con la barra a 45° del sistema de marca */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1.1em;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 9px;
  background: var(--scarlet);
  transform: skewX(-45deg);
  flex: none;
}

.lead {
  font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem);
  line-height: 1.55;
  color: rgba(244, 244, 244, .74);
  max-width: 60ch;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section {
  padding-block: var(--sect);
  position: relative;
}

.section--flush {
  padding-top: 0;
}

.section--alt {
  background: var(--surface);
}

.head {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.head--row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}

.head--center {
  text-align: center;
}

.head--center .eyebrow {
  justify-content: center;
}

.cut {
  clip-path: var(--cut);
}

/* ------------------------------------------------------------------ */
/* 4. Botones                                                          */
/* ------------------------------------------------------------------ */
.btn {
  --cut-size: 12px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  clip-path: var(--cut);
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn--solid {
  background: var(--scarlet);
  color: var(--white);
}

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

/* Botón "fantasma": el borde a 45° se logra con una capa interior
   de 1px, porque un border normal no sigue el chaflán del clip-path. */
.btn--ghost {
  background: var(--line-2);
  color: var(--white);
  isolation: isolate;
}

.btn--ghost::before {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  background: var(--void);
  clip-path: var(--cut);
  transition: background-color .35s var(--ease);
}

.btn--ghost:hover::before {
  background: var(--jet);
}

.section--alt .btn--ghost::before {
  background: var(--surface);
}

.btn--block {
  width: 100%;
}

/* ------------------------------------------------------------------ */
/* 5. Header + menú                                                    */
/* ------------------------------------------------------------------ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  transition: background-color .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(11, 11, 11, .82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav__progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--scarlet);
  transition: width .1s linear;
}

.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 18px var(--gut);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__logo img {
  width: clamp(110px, 13vw, 150px);
  height: auto;
  transition: opacity .3s var(--ease);
}

.nav__logo:hover img {
  opacity: .7;
}

.nav__links {
  display: none;
  margin-left: auto;
  gap: clamp(18px, 2vw, 28px);
}

.nav__links a {
  position: relative;
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 4px;
  transition: color .3s var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--scarlet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: none;
}

.nav__burger {
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav__burger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--white);
  transition: transform .4s var(--ease), width .4s var(--ease), opacity .3s;
}

.nav__burger span:last-child {
  width: 16px;
}

.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:last-child {
  width: 26px;
  transform: translateY(-4px) rotate(-45deg);
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--void);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 100px var(--gut) 40px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.menu.is-open {
  opacity: 1;
}

.menu__links {
  display: grid;
  gap: 4px;
}

.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 8vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}

.menu__links a span {
  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--scarlet);
}

.menu__foot {
  display: grid;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: .76rem;
  letter-spacing: .1em;
  color: var(--muted);
}

/* ------------------------------------------------------------------ */
/* 6. Hero                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  /* svh evita el salto por la barra del navegador móvil */
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(64px, 12vh, 130px);
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: heroZoom 2.4s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

/* Velo para asegurar contraste del texto */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--void) 2%, rgba(11, 11, 11, .5) 42%, rgba(11, 11, 11, .25) 70%, rgba(11, 11, 11, .6) 100%),
    linear-gradient(to right, rgba(11, 11, 11, .8), transparent 62%);
}

.hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.hero__title {
  margin: 0 0 clamp(20px, 3vw, 30px);
}

.hero__title img {
  width: min(100%, 640px);
  height: auto;
}

.hero__lead {
  font-size: clamp(1.05rem, .95rem + .8vw, 1.5rem);
  line-height: 1.4;
  color: var(--white);
  max-width: 24ch;
  margin-bottom: clamp(26px, 4vw, 40px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__rail {
  display: none;
  position: absolute;
  right: calc(var(--gut) - 6px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  writing-mode: vertical-rl;
  align-items: center;
  gap: 22px;
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__rail span {
  color: var(--scarlet);
}

.hero__rail a {
  transition: color .3s var(--ease);
}

.hero__rail a:hover {
  color: var(--white);
}

.hero__scroll {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--scarlet), transparent);
  animation: scrollCue 2.2s var(--ease) infinite;
}

@keyframes scrollCue {

  0%,
  100% {
    transform: scaleY(.4);
    transform-origin: top;
    opacity: .4;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}

/* Secuencia de entrada del hero */
[data-hero] {
  opacity: 0;
  transform: translateY(26px);
  animation: heroIn .9s var(--ease) forwards;
}

[data-hero="1"] {
  animation-delay: .15s;
}

[data-hero="2"] {
  animation-delay: .28s;
}

[data-hero="3"] {
  animation-delay: .44s;
}

[data-hero="4"] {
  animation-delay: .56s;
}

[data-hero="5"] {
  animation-delay: .9s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------------ */
/* 7. Marquesina                                                       */
/* ------------------------------------------------------------------ */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding-block: 18px;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.ticker__group span {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(.9rem, .8rem + .4vw, 1.1rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(244, 244, 244, .7);
}

.ticker__group img {
  width: 13px;
  height: auto;
  flex: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ------------------------------------------------------------------ */
/* 8. Artista                                                          */
/* ------------------------------------------------------------------ */
.grid-split {
  display: grid;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.portrait {
  --cut-size: 34px;
  margin: 0;
  position: relative;
}

.portrait img {
  width: 100%;
  filter: grayscale(.35) contrast(1.06);
}

.facts {
  list-style: none;
  margin: clamp(28px, 4vw, 40px) 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.facts li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.facts strong {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  min-width: 168px;
}

.facts span {
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--muted);
}

/* ------------------------------------------------------------------ */
/* 9. El show                                                          */
/* ------------------------------------------------------------------ */
.band {
  position: relative;
  margin: 0 0 clamp(48px, 8vw, 96px);
  height: clamp(340px, 62vh, 620px);
  overflow: hidden;
}

.band picture,
.band img {
  width: 100%;
  height: 100%;
}

.band img {
  object-fit: cover;
  object-position: center;
}

.band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--void), rgba(11, 11, 11, .35) 55%, rgba(11, 11, 11, .55));
}

.band__caption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: clamp(24px, 5vw, 56px);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.band__caption .h2 {
  margin-bottom: 0;
}

.cards {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.card {
  --cut-size: 20px;
  background: var(--surface);
  padding: clamp(26px, 3.4vw, 38px);
  transition: background-color .4s var(--ease), transform .5s var(--ease);
}

.card:hover {
  background: var(--surface-2);
  transform: translateY(-4px);
}

.card__idx {
  display: block;
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--scarlet);
  margin-bottom: 22px;
}

.card p {
  margin: 0;
  font-size: .96rem;
}

/* ------------------------------------------------------------------ */
/* 10. Galería                                                         */
/* ------------------------------------------------------------------ */
.gallery {
  columns: 1;
  column-gap: 14px;
}

.gallery figure {
  margin: 0 0 14px;
  break-inside: avoid;
}

.shot {
  --cut-size: 18px;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  clip-path: var(--cut);
}

.shot img {
  width: 100%;
  filter: grayscale(1) contrast(1.1);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}

.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--scarlet);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

.shot:hover img,
.shot:focus-visible img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.04);
}

.shot:hover::after,
.shot:focus-visible::after {
  opacity: .16;
}

/* ------------------------------------------------------------------ */
/* 11. Videos                                                          */
/* ------------------------------------------------------------------ */
.videos {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.vcard {
  --cut-size: 18px;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  clip-path: var(--cut);
  overflow: hidden;
}

.vcard__thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.vcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.8) brightness(.8);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}

.vcard:hover .vcard__thumb img,
.vcard:focus-visible .vcard__thumb img {
  filter: grayscale(0) brightness(.95);
  transform: scale(1.05);
}

.vcard__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.vcard__play i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--scarlet);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform .4s var(--ease), background-color .4s var(--ease);
}

.vcard__play i::before {
  content: '';
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.vcard:hover .vcard__play i {
  transform: scale(1.08);
  background: var(--chili);
}

.vcard__meta {
  display: block;
  padding: 20px 22px 24px;
}

.vcard__meta strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
  margin-bottom: 4px;
}

.vcard__meta span {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------------ */
/* 12. Música                                                          */
/* ------------------------------------------------------------------ */
.music {
  display: grid;
  gap: 18px;
}

.music__player,
.music__track {
  --cut-size: 18px;
  background: var(--surface-2);
  padding: 14px;
}

.music__track {
  margin-bottom: 18px;
}

.music__track .eyebrow {
  margin-bottom: 14px;
}

.platforms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.platforms a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: var(--surface);
  transition: padding-left .4s var(--ease), color .3s var(--ease);
}

.platforms a:hover {
  padding-left: 16px;
  color: var(--scarlet);
}

.platforms span {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.platforms em {
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--muted);
}

/* ------------------------------------------------------------------ */
/* 13. Ruta (timeline)                                                 */
/* ------------------------------------------------------------------ */
.route {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Línea de vuelo */
.route::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.route::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  width: 1px;
  height: calc((100% - 12px) * var(--progress, 0));
  background: var(--scarlet);
  transition: height .2s linear;
}

.wp {
  position: relative;
  padding: 0 0 clamp(34px, 4vw, 48px) 40px;
}

.wp::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: var(--jet);
  border: 1px solid var(--line-2);
  transform: rotate(45deg);
  transition: background-color .4s var(--ease), border-color .4s var(--ease);
}

.wp.is-live::before {
  background: var(--scarlet);
  border-color: var(--scarlet);
}

.wp__code {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--scarlet);
  margin-bottom: 10px;
}

.wp__body p {
  margin: 0;
  font-size: .96rem;
  max-width: 62ch;
}

.wp--now .wp__body h3 {
  color: var(--scarlet);
}

/* ------------------------------------------------------------------ */
/* 14. Redes                                                           */
/* ------------------------------------------------------------------ */
.socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.social {
  --cut-size: 16px;
  display: grid;
  gap: 6px;
  padding: 26px 24px;
  background: var(--surface-2);
  transition: background-color .4s var(--ease), transform .5s var(--ease);
}

.social svg {
  width: 20px;
  height: 20px;
  color: var(--scarlet);
  margin-bottom: 14px;
  transition: transform .4s var(--ease);
}

.social span {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}

.social em {
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--muted);
}

.social:hover {
  background: var(--jet);
  transform: translateY(-4px);
}

.social:hover svg {
  transform: translateY(-2px) scale(1.08);
}

/* ------------------------------------------------------------------ */
/* 15. Contrataciones                                                  */
/* ------------------------------------------------------------------ */
.booking {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.channel {
  --cut-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  padding: 18px 22px;
  background: var(--surface);
  transition: background-color .4s var(--ease);
}

.channel:hover {
  background: var(--jet);
}

.channel__k {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}

.channel__v {
  font-family: var(--ff-mono);
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--muted);
}

.form {
  --cut-size: 24px;
  background: var(--surface);
  padding: clamp(26px, 4vw, 44px);
}

.form__row {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--void);
  border: 1px solid var(--line);
  color: var(--txt);
  font-family: var(--ff-body);
  font-size: 1rem;
  border-radius: 0;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 244, 244, .3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--scarlet);
  background: #0e0e0e;
}

.field__error {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--scarlet);
  min-height: 0;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--scarlet);
}

.form__note {
  margin: 16px 0 0;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--muted);
  text-align: center;
}

.form__note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Campo trampa anti-spam */
.hp {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* ------------------------------------------------------------------ */
/* 16. Footer + WhatsApp                                               */
/* ------------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-top: clamp(48px, 7vw, 88px);
}

.footer__inner {
  display: grid;
  gap: 40px;
  padding-bottom: clamp(40px, 5vw, 64px);
}

.footer__brand img {
  width: 170px;
  margin-bottom: 18px;
}

.footer__brand p {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: .76rem;
  line-height: 1.8;
  letter-spacing: .06em;
}

.footer__nav {
  display: grid;
  gap: 10px;
  align-content: start;
  font-family: var(--ff-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--scarlet);
}

.footer__contact>a {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1rem, .9rem + .5vw, 1.25rem);
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: var(--ff-mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__legal {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

.footer__legal p {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(244, 244, 244, .4);
}

.footer__legal a {
  color: var(--muted);
}

.footer__legal a:hover {
  color: var(--scarlet);
}

.wa {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  z-index: 40;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--scarlet);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background-color .3s var(--ease), visibility .4s;
}

.wa.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.wa:hover {
  background: var(--chili);
}

.wa svg {
  width: 26px;
  height: 26px;
}

/* ------------------------------------------------------------------ */
/* 17. Lightbox y modal de video                                       */
/* ------------------------------------------------------------------ */
.lightbox,
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(16px, 5vw, 60px);
  background: rgba(6, 6, 6, .94);
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.lightbox.is-open,
.vmodal.is-open {
  opacity: 1;
}

.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  text-align: center;
}

.lightbox__figure img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.lightbox__figure figcaption {
  margin-top: 16px;
  font-family: var(--ff-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transition: color .3s var(--ease), transform .3s var(--ease);
}

.lightbox__close {
  top: clamp(10px, 2vw, 24px);
  right: clamp(10px, 2vw, 24px);
  font-size: 1.15rem;
}

.lightbox__nav--prev {
  left: clamp(4px, 2vw, 24px);
  font-size: 2.4rem;
}

.lightbox__nav--next {
  right: clamp(4px, 2vw, 24px);
  font-size: 2.4rem;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  color: var(--scarlet);
  transform: scale(1.12);
}

.vmodal__frame {
  width: min(1100px, 100%);
  aspect-ratio: 16/9;
  background: #000;
}

.vmodal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.is-locked {
  overflow: hidden;
}

/* ------------------------------------------------------------------ */
/* 18. Reveal al hacer scroll                                          */
/* ------------------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------------ */
/* 19. Videos verticales (reels propios)                               */
/* ------------------------------------------------------------------ */
.videos--reels {
  grid-template-columns: repeat(auto-fit, minmax(220px, 320px));
  justify-content: center;
  gap: 18px;
}

/* Formato vertical por tarjeta: un video horizontal conserva su 16:9 */
.vcard--reel .vcard__thumb {
  aspect-ratio: 9/16;
}

.videos--reels .vcard__play i {
  width: 54px;
  height: 54px;
}

/* Duración sobre la miniatura */
.vcard__time {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 9px;
  background: rgba(11, 11, 11, .72);
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

/* Reproductor del modal en formato vertical */
.vmodal__frame--reel {
  width: auto;
  height: min(78vh, 860px);
  aspect-ratio: 9/16;
  max-width: 100%;
}

.vmodal__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* ------------------------------------------------------------------ */
/* 20. ZANK Producciones                                               */
/* ------------------------------------------------------------------ */
.band--prod {
  height: clamp(280px, 46vh, 460px);
}

.prod__intro {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.prod__logo {
  --cut-size: 22px;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: var(--surface);
}

.prod__logo img {
  width: min(230px, 60%);
  height: auto;
}

.prod__text .lead {
  margin-bottom: 1.1em;
}

.services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.services li {
  --cut-size: 16px;
  padding: 26px 24px 28px;
  background: var(--surface);
  clip-path: var(--cut);
  transition: background-color .4s var(--ease), transform .5s var(--ease);
}

.services li:hover {
  background: var(--surface-2);
  transform: translateY(-4px);
}

.services li span {
  display: block;
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--scarlet);
  margin-bottom: 18px;
}

.services li h3 {
  margin-bottom: .35em;
  font-size: 1.02rem;
}

.services li p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
}

/* ------------------------------------------------------------------ */
/* 21. Breakpoints                                                     */
/* ------------------------------------------------------------------ */
@media (min-width: 700px) {
  .hero__scroll {
    display: flex;
  }
}

@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    columns: 2;
  }

  .form__row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

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

@media (min-width: 900px) {
  html {
    scroll-padding-top: 100px;
  }

  .nav__links,
  .nav__cta {
    display: flex;
  }

  .nav__burger {
    display: none;
  }

  .nav__cta {
    margin-left: 4px;
  }

  .hero__rail {
    display: flex;
  }

  .grid-split {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  }

  .gallery {
    columns: 3;
  }

  .videos {
    grid-template-columns: repeat(3, 1fr);
  }

  .music {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 24px;
  }

  .booking {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .footer__inner {
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 48px;
  }

  .cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .prod__intro {
    grid-template-columns: minmax(0, .62fr) minmax(0, 1fr);
  }

  .wp {
    padding-left: 56px;
  }

  .route::before,
  .route::after {
    left: 11px;
  }

  .wp::before {
    left: 7px;
  }
}

@media (min-width: 1100px) {
  .hero__lead {
    max-width: 30ch;
  }
}

/* ------------------------------------------------------------------ */
/* 22. Accesibilidad: movimiento reducido                              */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal],
  [data-hero] {
    opacity: 1;
    transform: none;
  }

  .hero__media img {
    transform: none;
  }
}
