:root {
  --white: #ffffff;
  --black: #111111;
  --soft-black: #1d1d1d;
  --grey: #8a8a8a;
  --line: #e8e8e8;
  --orange: #ff5a1f;
  --header-height: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  color: var(--white);
  transition: background 0.35s ease, color 0.35s ease, border 0.35s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Impact, sans-serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px 28px 46px;
  color: var(--white);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  background: var(--black);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.62));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.hero-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 18px 0;
  font-size: clamp(64px, 15vw, 220px);
  line-height: 0.82;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.scroll-indicator {
  position: absolute;
  right: 28px;
  bottom: 50px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.scroll-indicator::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 46px;
  margin-top: 12px;
  background: var(--orange);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

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

.section-index {
  margin-bottom: 60px;
  font-size: 12px;
  font-weight: 700;
  color: var(--grey);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-title,
.section-heading h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.86;
  font-weight: 700;
  letter-spacing: -0.075em;
}

.about-copy {
  max-width: 560px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.05;
  font-weight: 700;
}

.about-copy p { margin: 0 0 28px; }

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading p {
  max-width: 320px;
  margin: 0;
  color: var(--grey);
  font-size: 14px;
  font-weight: 700;
}

/* =========================================================
CAROUSELS / MUSIC + TEAM
MUSIC y TEAM usan el mismo formato:
- texto DRAG / SWIPE
- flecha animada
- carrusel horizontal
- se ve parte de la siguiente tarjeta para indicar que hay más contenido

Para hacer las tarjetas más grandes o pequeñas:
- Releases escritorio: cambia 360px en .release-grid .release-card
- Team escritorio: cambia 280px en .artist-carousel .artist-card
- Móvil: cambia 82vw o 76vw en los media queries
========================================================= */
.carousel-shell {
  position: relative;
  overflow: hidden;
}

.carousel-topline {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.carousel-hint {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 0.02em;
}

.carousel-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--black);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  pointer-events: none;
  animation: slideHint 1.8s infinite;
}

@keyframes slideHint {
  0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.42; }
  50% { transform: translateY(-50%) translateX(12px); opacity: 1; }
}

.carousel-track,
.release-grid,
.artist-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 22px;
  padding-right: 96px;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar,
.release-grid::-webkit-scrollbar,
.artist-carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track,
.release-grid::-webkit-scrollbar-track,
.artist-carousel::-webkit-scrollbar-track {
  background: var(--line);
}

.carousel-track::-webkit-scrollbar-thumb,
.release-grid::-webkit-scrollbar-thumb,
.artist-carousel::-webkit-scrollbar-thumb {
  background: var(--orange);
}

.release-grid .release-card {
  flex: 0 0 360px;
  max-width: 360px;
  scroll-snap-align: start;
}

.artist-carousel .artist-card {
  flex: 0 0 280px;
  max-width: 280px;
  scroll-snap-align: start;
}

.release-card {
  display: block;
}

.artwork,
.artist-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--line);
  font-weight: 700;
  overflow: hidden;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.placeholder-artwork {
  background: var(--orange);
  color: var(--black);
  font-size: clamp(32px, 6vw, 72px);
}

.placeholder-artwork.alt {
  background: var(--white);
  border: 1px solid var(--black);
}

.placeholder-artwork.dark {
  background: var(--black);
  color: var(--white);
}

.release-card:hover .artwork {
  filter: grayscale(1);
  transform: scale(0.985);
}

.release-info {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  padding-top: 14px;
  font-size: 12px;
  font-weight: 700;
}

.events-list {
  border-top: 1px solid var(--black);
}

.event-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 2fr auto;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 0.95;
}

.event-row a {
  color: var(--orange);
  font-size: 14px;
  align-self: center;
}

.event-row.muted {
  color: var(--grey);
}

.artist-card {
  border-top: 1px solid var(--black);
  padding-top: 18px;
}

.artist-image {
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
  color: var(--grey);
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 0.95;
}

.artist-card p {
  margin: 0 0 22px;
  color: var(--grey);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 1.25;
}

.artist-card a,
.contact-list a {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

.contact-section {
  min-height: 70vh;
}

.contact-list {
  display: grid;
  gap: 48px;
  font-weight: 700;
}

.contact-list div {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--black);
  padding-top: 18px;
}

.contact-list span {
  font-size: 12px;
  color: var(--grey);
}

.contact-list a {
  font-size: clamp(24px, 4vw, 58px);
  color: var(--black);
  letter-spacing: -0.06em;
}

.contact-list a:hover { color: var(--orange); }

.footer {
  display: flex;
  justify-content: space-between;
  padding: 28px;
  font-size: 12px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 28px 28px;
    background: var(--white);
    color: var(--black);
    border-bottom: 1px solid var(--line);
  }

  .nav.open { display: flex; }

  .nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 24px;
  }

  .section { padding: 90px 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .site-header { padding: 0 20px; }

  .about-grid,
  .contact-grid,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
    gap: 32px;
  }

  .release-grid .release-card {
    flex-basis: 320px;
    max-width: 320px;
  }

  .artist-carousel .artist-card {
    flex-basis: 260px;
    max-width: 260px;
  }

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

@media (max-width: 560px) {
  :root { --header-height: 66px; }

  .brand { font-size: 13px; }
  .hero h1 { font-size: clamp(58px, 22vw, 110px); }
  .scroll-indicator { display: none; }
  .carousel-topline {
    justify-content: flex-start;
  }

  .carousel-arrow {
    right: 2px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .release-grid,
  .artist-carousel {
    padding-right: 70px;
  }

  .release-grid .release-card {
    flex-basis: 82vw;
    max-width: 82vw;
  }

  .artist-carousel .artist-card {
    flex-basis: 76vw;
    max-width: 76vw;
  }

  .release-info { grid-template-columns: 1fr; gap: 6px; }
  .footer { flex-direction: column; gap: 12px; }
}
