/* ============================================================
   LADMIRO — cartel de gira editorial
   ============================================================ */
:root {
  --ink: #16100c;
  --ink-soft: #241a12;
  --cream: #f2e7d0;
  --cream-soft: #eaddc2;
  --clay: #bf4b2b;
  --clay-deep: #9c3a20;
  --sun: #e9a13b;
  --blue: #4aa3ff;
  --teal: #2f6e54;
  --display: 'Anton', sans-serif;
  --serif: 'Fraunces', serif;
  --body: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }

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

img { max-width: 100%; display: block; }
em { font-family: var(--serif); font-style: italic; font-weight: 600; }

::selection { background: var(--clay); color: var(--cream); }

/* grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ PRELOADER ============ */
.loader {
  position: fixed; inset: 0;
  z-index: 3000;
  background: var(--ink);
  color: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .8rem;
}
.loader__word { font-family: var(--display); font-size: clamp(3rem, 10vw, 7rem); letter-spacing: .04em; display: flex; overflow: hidden; }
.loader__word span { display: inline-block; transform: translateY(120%); }
.loader__sub { font-family: var(--serif); font-style: italic; font-size: 1.1rem; opacity: 0; color: var(--sun); }
.loader.is-done { pointer-events: none; }

/* ============ CURSOR ============ */
.cursor, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 2500; opacity: 0; }
body.has-mouse .cursor, body.has-mouse .cursor-ring { opacity: 1; }
.cursor {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--clay);
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--clay);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  transition: width .25s ease, height .25s ease, background-color .25s ease, border-color .25s ease;
  background: transparent;
}
.cursor-ring span {
  font-family: var(--body); font-weight: 700; font-size: .85rem;
  color: var(--cream);
  opacity: 0; transition: opacity .2s ease;
}
.cursor-ring.is-active {
  width: 74px; height: 74px;
  background: var(--ink);
  border-color: var(--ink);
}
.cursor-ring.is-active span { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ============ BOTONES ============ */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9rem 1.9rem;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.3,1.4,.5,1), background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-3px) rotate(-1.2deg) scale(1.02); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--fill { background: var(--ink); color: var(--cream); border: 2px solid var(--ink); }
.btn--fill:hover { background: var(--clay); border-color: var(--clay); }
.btn--line { background: transparent; color: var(--cream); border: 2px solid var(--cream); }
.btn--line:hover { background: var(--cream); color: var(--clay); }
.btn--small { font-size: .8rem; padding: .5rem 1.2rem; background: var(--ink); color: var(--cream); border: 2px solid var(--ink); }
.btn--small:hover { background: var(--clay); border-color: var(--clay); }
.btn--big { font-size: 1.3rem; padding: 1.05rem 2.8rem; border: none; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  transition: background .35s ease, box-shadow .35s ease, transform .4s ease;
}
.nav.is-scrolled { background: rgba(242,231,208,.9); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(22,16,12,.08); }
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo { font-family: var(--display); font-size: 1.5rem; letter-spacing: .08em; color: var(--ink); text-decoration: none; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem; position: relative; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--clay); transition: width .25s ease; }
.nav__links a:hover::after { width: 100%; }
.nav__progress {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  background: var(--clay);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 7.5rem 1.5rem 0;
  position: relative;
  background: var(--clay);
  color: var(--cream);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 3; }
.hero__kicker {
  font-size: .85rem; font-weight: 700;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--sun);
  margin-bottom: .6rem;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(4.2rem, 16.5vw, 15rem);
  line-height: .92;
  letter-spacing: .015em;
  color: var(--cream);
  text-shadow: 0 10px 0 rgba(22,16,12,.18);
}
.h-l { display: inline-block; will-change: transform; }
.hero__tag { font-size: clamp(1.15rem, 2.6vw, 1.7rem); font-weight: 700; margin-top: 1.1rem; }
.hero__tag em { color: var(--sun); font-size: 1.12em; }
.hero__cta { display: flex; gap: 1rem; margin-top: 2.1rem; flex-wrap: wrap; justify-content: center; }

.hero__photo {
  width: min(660px, 86vw);
  margin-top: 3.2rem;
  position: relative;
  z-index: 2;
  transform: rotate(-1.5deg);
}
.hero__photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 34px 70px rgba(22,16,12,.4);
  filter: saturate(.92) contrast(1.02);
}
.hero__tape {
  position: absolute; width: 110px; height: 34px;
  background: rgba(242,231,208,.75);
  top: -14px;
  box-shadow: 0 2px 8px rgba(22,16,12,.15);
}
.hero__tape--l { left: -30px; transform: rotate(-38deg); }
.hero__tape--r { right: -30px; transform: rotate(35deg); }

.hero__scrollhint {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%);
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; opacity: .75;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  z-index: 3;
}
.hero__scrollhint span { animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(6px); } }

/* stickers */
.hero__stickers { position: absolute; inset: 0; z-index: 1; }
.sticker { position: absolute; user-select: none; will-change: transform; }
.sticker--vinyl { width: clamp(90px, 13vw, 165px); top: 13%; left: 5%; }
.vinyl-svg { width: 100%; filter: drop-shadow(0 12px 26px rgba(22,16,12,.45)); }
.vinyl-text { font-family: var(--display); font-size: 9px; fill: var(--cream); letter-spacing: .12em; }
.sticker--tiger, .sticker--check, .sticker--zen {
  background: var(--cream); color: var(--ink);
  border-radius: 14px; padding: .55rem .9rem;
  font-size: 1.5rem; line-height: 1;
  box-shadow: 0 10px 24px rgba(22,16,12,.35);
  display: flex; align-items: center; gap: .5rem;
  transform: rotate(-6deg);
}
.sticker--tiger span, .sticker--check span, .sticker--zen span {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; text-align: left; line-height: 1.25;
}
.sticker--tiger { top: 18%; right: 6%; }
.sticker--check { bottom: 32%; left: 7%; transform: rotate(4deg); color: var(--blue); }
.sticker--check span { color: var(--ink); }
.sticker--zen { bottom: 18%; right: 9%; transform: rotate(7deg); }
.sticker--star { top: 40%; right: 13%; font-size: 2.4rem; color: var(--sun); }
.sticker--star2 { top: 9%; left: 40%; font-size: 1.7rem; color: var(--cream); opacity: .85; }

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; }
.marquee--ink { background: var(--ink); color: var(--cream); padding: 1rem 0; }
.marquee__track {
  display: inline-flex; white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1rem, 2.3vw, 1.5rem);
  letter-spacing: .08em;
  animation: scrollx 30s linear infinite;
}
.marquee__track--rev {
  animation: scrollx-rev 36s linear infinite;
  color: var(--sun);
  font-size: clamp(.8rem, 1.7vw, 1.05rem);
  margin-top: .55rem;
  opacity: .9;
}
@keyframes scrollx { to { transform: translateX(-50%); } }
@keyframes scrollx-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ============ MANIFIESTO (vídeo) ============ */
.manifesto {
  background: var(--ink);
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.manifesto__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9);
}
.manifesto__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,16,12,.72), rgba(22,16,12,.45) 45%, rgba(22,16,12,.78));
}
.manifesto__inner { text-align: center; padding: 4rem 1.5rem; position: relative; color: var(--cream); }
.manifesto__line {
  font-family: var(--display);
  font-size: clamp(2.1rem, 6.5vw, 5rem);
  line-height: 1.14;
  text-transform: uppercase;
  margin: 1rem 0;
  opacity: 0;
  transform: scale(.96);
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.manifesto__line em { color: var(--sun); text-transform: none; }
.manifesto__line:nth-child(3) em { color: #ff9d7a; }
.manifesto__line:nth-child(4) em { color: var(--sun); }
.manifesto__note {
  margin-top: 1.6rem;
  font-family: var(--serif); font-style: italic;
  font-size: .95rem; opacity: 0;
  color: rgba(242,231,208,.8);
}
@media (prefers-reduced-motion: reduce) {
  .manifesto__line, .manifesto__note { opacity: 1; transform: none; }
  /* con "reducir movimiento" el vídeo no se reproduce (JS), pero se ve su fotograma/póster */
}

/* ============ INFO / FAQ ============ */
.faq { background: var(--cream); z-index: 4; }
.faq__list { max-width: 900px; }
.faq__item {
  border-bottom: 2px solid rgba(22,16,12,.15);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: 1.3rem .2rem;
  transition: color .2s ease, padding-left .25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary span {
  font-family: var(--body); font-weight: 700;
  color: var(--clay);
  font-size: 1.4em; line-height: 1;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq__item summary:hover { color: var(--clay); padding-left: .5rem; }
.faq__item[open] summary { color: var(--clay); }
.faq__item[open] summary span { transform: rotate(45deg); }
.faq__body { padding: 0 .2rem 1.5rem; max-width: 780px; }
.faq__body p { font-size: 1.05rem; line-height: 1.75; }
.faq__body a { color: var(--clay); font-weight: 700; }
.faq__body em { font-size: 1em; }

/* ============ PANELES / SECCIONES ============ */
.panel { padding: 7.5rem clamp(1.5rem, 6vw, 6rem); position: relative; border-radius: 44px 44px 0 0; margin-top: -44px; }
.section__head { margin-bottom: 3.6rem; }
.section__kicker {
  display: inline-block;
  font-weight: 700; text-transform: uppercase; letter-spacing: .26em; font-size: .8rem;
  color: var(--clay);
  margin-bottom: .6rem;
}
.section__title {
  font-family: var(--display);
  font-size: clamp(2.7rem, 7.5vw, 5.6rem);
  text-transform: uppercase;
  line-height: .98;
}
.section__head--cream .section__kicker { color: var(--sun); }

/* split text (JS envuelve palabras) */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; }
.split .wi { display: inline-block; will-change: transform; }

/* ============ LA BANDA ============ */
.band { background: var(--cream); z-index: 5; }
.band__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.band__photo {
  border-radius: 18px; overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 28px 60px rgba(22,16,12,.22);
  position: sticky; top: 110px;
}
.band__photo img {
  filter: sepia(.5) saturate(1.1) hue-rotate(-12deg) contrast(1.02);
  transition: filter .7s ease, transform .7s ease;
  will-change: transform;
}
.band__photo:hover img { filter: none; transform: scale(1.03); }
.band__bio { font-size: clamp(1.1rem, 2vw, 1.3rem); }
.band__members { list-style: none; margin-top: 2.6rem; }
.member {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem .6rem;
  border-bottom: 2px solid rgba(22,16,12,.14);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.member::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .35s cubic-bezier(.6,.05,.3,1);
  z-index: 0;
}
.member:hover::before { transform: translateY(0); }
.member > * { position: relative; z-index: 1; transition: color .3s ease; }
.member__num { font-weight: 700; font-size: .85rem; color: var(--clay); }
.member__name { font-family: var(--display); font-size: clamp(1.9rem, 4vw, 3.2rem); text-transform: uppercase; line-height: 1; letter-spacing: .02em; }
.member__role { font-family: var(--serif); font-style: italic; font-size: 1rem; opacity: .8; }
.member:hover .member__name { color: var(--cream); }
.member:hover .member__role { color: var(--sun); opacity: 1; }
.member:hover .member__num { color: var(--clay); }

/* ============ TOCADISCOS ============ */
.music { background: var(--ink); color: var(--cream); z-index: 6; }
.player {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.player__deck { position: sticky; top: 110px; }
.disc {
  width: min(380px, 78vw);
  height: min(380px, 78vw);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  background:
    repeating-radial-gradient(circle at center, #1d150e 0 2px, #251a11 2px 4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), inset 0 0 0 2px #2c211a;
  animation: spin 3.2s linear infinite;
  animation-play-state: paused;
}
.disc.is-playing { animation-play-state: running; }
@keyframes spin { to { transform: rotate(360deg); } }
.disc__label {
  position: absolute; top: 27%; left: 27%;
  width: 46%; height: 46%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(242,231,208,.12);
}
.disc__hole {
  position: absolute; top: 50%; left: 50%;
  width: 13px; height: 13px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(0,0,0,.35);
}
.tonearm {
  position: absolute; top: -12px; right: 4%;
  width: 46px; height: 210px;
  transform-origin: 23px 23px;
  transform: rotate(-32deg);
  transition: transform .7s cubic-bezier(.5,0,.3,1);
  z-index: 2;
  pointer-events: none;
}
.tonearm.is-on { transform: rotate(0deg); }
.tonearm__base { width: 46px; height: 46px; border-radius: 50%; background: #3a2c22; box-shadow: 0 6px 14px rgba(0,0,0,.4); }
.tonearm__stick { width: 6px; height: 130px; background: linear-gradient(#4d3b2d, #3a2c22); margin: -4px auto 0; border-radius: 3px; }
.tonearm__head { width: 18px; height: 34px; background: var(--clay); margin: -3px auto 0; border-radius: 4px 4px 7px 7px; }
.player__now { text-align: center; margin-top: 1.6rem; }
.player__now-title { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; letter-spacing: .02em; }
.player__now-album { font-family: var(--serif); font-style: italic; color: var(--sun); font-size: 1rem; margin-top: .1rem; }
.player__progress {
  height: 4px; border-radius: 2px;
  background: rgba(242,231,208,.15);
  margin: 1.1rem auto .4rem;
  max-width: 320px;
  overflow: hidden;
}
.player__progress-bar { height: 100%; width: 0%; background: var(--sun); border-radius: 2px; }
.player__time { font-size: .8rem; opacity: .6; letter-spacing: .1em; }

.tracklist { list-style: none; counter-reset: song; }
.track {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem .8rem;
  border-bottom: 1px solid rgba(242,231,208,.14);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: padding-left .3s ease;
}
.track::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--clay);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.6,.05,.3,1);
}
.track:hover::before, .track.is-active::before { transform: translateX(0); }
.track > * { position: relative; z-index: 1; }
.track__num { font-weight: 700; font-size: .85rem; color: var(--sun); }
.track__title { font-family: var(--display); font-size: clamp(1.25rem, 2.6vw, 1.9rem); text-transform: uppercase; letter-spacing: .02em; line-height: 1.1; }
.track__album { font-family: var(--serif); font-style: italic; font-size: .88rem; opacity: .65; text-align: right; }
.track__eq { display: flex; gap: 3px; align-items: flex-end; height: 18px; width: 22px; }
.track__eq i {
  width: 4px; background: var(--sun); border-radius: 2px 2px 0 0;
  height: 30%;
}
.track.is-active.is-playing .track__eq i { animation: eq .7s ease-in-out infinite alternate; }
.track.is-active.is-playing .track__eq i:nth-child(2) { animation-delay: .18s; }
.track.is-active.is-playing .track__eq i:nth-child(3) { animation-delay: .34s; }
@keyframes eq { from { height: 22%; } to { height: 100%; } }
.track.is-active .track__num { color: var(--cream); }
.music__spotify { margin-top: 3rem; font-size: 1.15rem; }
.music__spotify a { color: var(--sun); font-weight: 700; text-decoration: none; }
.music__spotify a:hover { text-decoration: underline; }

/* ============ DISCOGRAFÍA HORIZONTAL ============ */
.shelf { background: var(--cream-soft); position: relative; z-index: 7; border-radius: 44px 44px 0 0; margin-top: -44px; }
.shelf__pin {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.shelf__head { padding: 0 clamp(1.5rem, 6vw, 6rem); }
.shelf__track {
  display: flex; gap: clamp(1.4rem, 3vw, 2.6rem);
  padding: 1rem clamp(1.5rem, 6vw, 6rem);
  width: max-content;
  will-change: transform;
}
/* fallback sin animación de scroll: carrusel deslizable con el dedo */
.shelf--static .shelf__pin {
  min-height: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 5rem 0 3.5rem;
}
.sleeve {
  display: block;
  width: clamp(240px, 26vw, 340px);
  flex-shrink: 0;
  background: #fff;
  padding: 14px 14px 0;
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(22,16,12,.18);
  transform: rotate(var(--tilt, -1.5deg));
  transition: transform .35s cubic-bezier(.3,1.3,.5,1), box-shadow .35s ease;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.sleeve:nth-child(2n) { --tilt: 1.6deg; }
.sleeve:nth-child(3n) { --tilt: -2.2deg; }
.sleeve:hover { transform: rotate(0deg) translateY(-14px) scale(1.03); box-shadow: 0 34px 60px rgba(22,16,12,.28); }
.sleeve img { border-radius: 6px; aspect-ratio: 1; object-fit: cover; }
.sleeve__meta { padding: .9rem .3rem 1rem; }
.sleeve__type { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--clay); }
.sleeve__meta h3 { font-family: var(--display); font-size: 1.25rem; text-transform: uppercase; line-height: 1.12; letter-spacing: .02em; margin-top: .15rem; }
.sleeve--text .sleeve__debut {
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--ink);
  color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .4rem; text-align: center; padding: 1rem;
}
.sleeve__debut span { font-family: var(--serif); font-style: italic; color: var(--sun); }
.sleeve__debut h3 { font-family: var(--display); font-size: 1.9rem; text-transform: uppercase; line-height: 1.05; }
.sleeve__debut p { opacity: .6; font-weight: 700; letter-spacing: .2em; }

/* ============ VÍDEOS ============ */
.videos { background: var(--cream); z-index: 8; }
.cinema {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}
.cinema__screen {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 sin aspect-ratio: compatible con Safari antiguos */
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 26px 56px rgba(22,16,12,.25);
  background: var(--ink);
}
.cinema__screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.cinema__list {
  display: flex; flex-direction: column;
  gap: .7rem;
  justify-content: center;
}
.clip {
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
  gap: .9rem;
  padding: .45rem;
  border: 2px solid transparent;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.clip:hover { background: rgba(22,16,12,.06); transform: translateX(4px); }
.clip.is-active { background: var(--ink); border-color: var(--ink); }
.clip img {
  width: 108px; aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}
.clip__meta { display: flex; flex-direction: column; gap: .05rem; }
.clip__meta em {
  font-family: var(--serif); font-style: italic;
  font-size: .78rem; color: var(--clay);
}
.clip__meta strong {
  font-family: var(--display); font-weight: 400;
  font-size: 1.05rem; letter-spacing: .03em; text-transform: uppercase;
  color: var(--ink); line-height: 1.15;
}
.clip.is-active .clip__meta strong { color: var(--cream); }
.clip.is-active .clip__meta em { color: var(--sun); }
.videos__more { margin-top: 2.6rem; font-size: 1.15rem; }
.videos__more a { color: var(--clay); font-weight: 700; text-decoration: none; }
.videos__more a:hover { text-decoration: underline; }

/* ============ DIRECTO ============ */
.live { background: var(--clay); color: var(--cream); z-index: 9; }
.live__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4.5rem; }
.stat { text-align: center; }
.stat__num, .stat__plus { font-family: var(--display); font-size: clamp(3.6rem, 9vw, 7rem); line-height: 1; }
.stat__plus { color: var(--sun); }
.stat__label { display: block; margin-top: .8rem; font-size: 1rem; opacity: .92; max-width: 260px; margin-inline: auto; }

/* tira de fotos (carrusel automático, ligero) */
.strip {
  overflow: hidden;
  margin: 0 calc(-1 * clamp(1.5rem, 6vw, 6rem)) 4rem;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.strip__track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  animation: scrollx 45s linear infinite;
}
.strip--rev .strip__track { animation: scrollx-rev 55s linear infinite; }
.strip:hover .strip__track { animation-play-state: paused; }

.snap {
  flex-shrink: 0;
  transform: rotate(var(--tilt, -1.4deg));
  transition: transform .3s cubic-bezier(.3,1.3,.5,1);
  position: relative;
}
.snap:nth-child(2n) { --tilt: 1.5deg; }
.snap:nth-child(3n) { --tilt: -2deg; }
.snap:hover { transform: rotate(0) scale(1.06); z-index: 2; }
.snap img {
  height: 180px; width: auto;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(22,16,12,.35);
  border: 4px solid var(--cream);
}
.snap figcaption {
  position: absolute; left: 50%; bottom: .6rem;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(22,16,12,.85);
  color: var(--cream);
  font-size: .66rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .25s ease;
}
.snap:hover figcaption { opacity: 1; }

.poster {
  max-width: 860px; margin: 0 auto;
  background: var(--cream);
  color: var(--ink);
  border-radius: 18px;
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: 0 30px 70px rgba(22,16,12,.3);
  transform: rotate(-.8deg);
}
.poster__head {
  font-family: var(--display);
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: .14em;
  border-bottom: 3px solid var(--ink);
  padding-bottom: .9rem; margin-bottom: .4rem;
}
.poster ul { list-style: none; }
.poster li {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem .2rem;
  border-bottom: 1px dashed rgba(22,16,12,.25);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
}
.poster__note { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--clay); font-size: .92em; }
.poster__next { background: rgba(233,161,59,.18); border-radius: 10px; border-bottom: none !important; margin-top: .4rem; }
.poster__cta { color: var(--clay); text-decoration: none; white-space: nowrap; }
.poster__cta:hover { text-decoration: underline; }

/* ============ EL MURO ============ */
.wall { background: var(--ink); color: var(--cream); z-index: 10; padding-bottom: 5rem; }
.wall .section__kicker { color: var(--sun); }
.wall .section__head { margin-bottom: 1.5rem; }
.wall .strip { margin-bottom: 0; }
.paper {
  flex-shrink: 0;
  background: #fff;
  padding: 8px 8px 0;
  border-radius: 5px;
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
  transform: rotate(var(--tilt, -1.6deg));
  transition: transform .3s cubic-bezier(.3,1.3,.5,1);
  position: relative;
}
.paper:nth-child(2n) { --tilt: 1.8deg; }
.paper:nth-child(3n) { --tilt: -2.4deg; }
.paper:hover { transform: rotate(0deg) scale(1.05); z-index: 2; }
.paper::before {
  content: '';
  position: absolute; top: -9px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 60px; height: 18px;
  background: rgba(242,231,208,.65);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.paper img { height: 200px; width: auto; border-radius: 3px; }
.paper figcaption {
  padding: .5rem .2rem .55rem;
  color: var(--ink);
  font-size: .72rem;
  line-height: 1.3;
  max-width: 180px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.paper figcaption strong { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .04em; }

/* ============ CONTACTO ============ */
.contact { background: var(--cream); z-index: 10; }
.contact__intro { max-width: 640px; font-size: 1.18rem; margin-top: 1rem; }
.contact__direct { margin-top: .8rem; font-size: 1.05rem; font-weight: 700; }
.contact__direct a { color: var(--clay); text-decoration: none; }
.contact__direct a:hover { text-decoration: underline; }
.contact__docs { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.doc {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-weight: 700; font-size: .92rem;
  color: var(--ink); text-decoration: none;
  transition: all .22s ease;
}
.doc:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px) rotate(-1deg); }
.contact__form {
  max-width: 780px;
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: 0 26px 64px rgba(22,16,12,.13);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.form__who { border: none; }
.form__who legend { font-family: var(--display); font-size: 1.2rem; text-transform: uppercase; margin-bottom: .8rem; }
.form__chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.form__chips input { position: absolute; opacity: 0; }
.form__chips span {
  display: inline-block;
  padding: .55rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  cursor: pointer;
  transition: all .22s ease;
}
.form__chips span:hover { transform: translateY(-2px) rotate(-1deg); }
.form__chips input:checked + span { background: var(--clay); border-color: var(--clay); color: var(--cream); }
.form__chips input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact__form label { display: flex; flex-direction: column; gap: .4rem; font-weight: 700; font-size: .95rem; }
.contact__form input[type="text"], .contact__form input[type="email"], .contact__form textarea {
  font-family: var(--body); font-size: 1rem;
  padding: .9rem 1rem;
  border: 2px solid #e6dac0;
  border-radius: 12px;
  background: var(--cream);
  transition: border-color .2s ease, transform .2s ease;
}
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--clay); }
.form__ok { color: #1c7c3c; font-weight: 700; }
.contact__social { margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.contact__social span { font-weight: 700; }
.contact__social nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact__social a { color: var(--clay); font-weight: 700; text-decoration: none; }
.contact__social a:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink); color: var(--cream);
  padding: 4.5rem 2rem 2.4rem;
  text-align: center;
  border-radius: 44px 44px 0 0;
  margin-top: -44px;
  position: relative; z-index: 11;
}
.footer__word {
  font-family: var(--display);
  font-size: clamp(4rem, 16vw, 14rem);
  line-height: .95;
  letter-spacing: .02em;
  display: flex; justify-content: center;
}
.footer__word span {
  display: inline-block;
  transition: transform .3s cubic-bezier(.3,1.6,.5,1), color .3s ease;
  cursor: default;
}
.footer__word span:hover { transform: translateY(-16px) rotate(-4deg); color: var(--clay); }
.footer__meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  margin-top: 2.6rem;
  font-size: .9rem; opacity: .65;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .player { grid-template-columns: 1fr; }
  .player__deck { position: static; }
}
@media (max-width: 600px) {
  .snap img { height: 140px; }
  .paper img { height: 160px; }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .band__grid, .form__row { grid-template-columns: 1fr; }
  .cinema { grid-template-columns: 1fr; }
  .cinema__list { flex-direction: row; overflow-x: auto; padding-bottom: .5rem; }
  .clip { grid-template-columns: 96px; grid-template-rows: auto auto; flex-shrink: 0; }
  .band__photo { position: static; }
  .live__stats { grid-template-columns: 1fr; gap: 3rem; }
  .track__album { display: none; }
  .track { grid-template-columns: 2.2rem 1fr auto; }
  .poster li { grid-template-columns: 1fr; gap: .1rem; }
  .panel { border-radius: 26px 26px 0 0; margin-top: -26px; }
  .footer { border-radius: 26px 26px 0 0; margin-top: -26px; }

  /* hero móvil: stickers como detalle, sin pisar contenido */
  .hero { padding-top: 6rem; }
  .hero__scrollhint { display: none; }
  .sticker--zen, .sticker--star2, .sticker--check, .sticker--star { display: none; }
  .sticker--vinyl { width: 60px; top: 7%; left: 5%; }
  .sticker--tiger { top: 7.5%; right: 5%; font-size: 1rem; padding: .4rem .6rem; border-radius: 10px; }
  .sticker--tiger span { font-size: .55rem; }
  .hero__photo { margin-top: 2.4rem; }
  .hero__tape { width: 76px; height: 24px; top: -10px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .marquee__track, .hero__scrollhint span, .disc { animation: none !important; }
  .strip__track { animation: none !important; }
  .strip { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .manifesto__line { opacity: 1; transform: none; }
  .loader { display: none; }
  .cursor, .cursor-ring { display: none; }
}
