/* ============================================================
   CYCLICAL TRACKS — artist.css
   ============================================================ */

.artist-section {
  margin-top: var(--header-h);
  background: var(--dark, #141414);
}

.artist-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem;
  gap: 4rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.artist-entry:last-child { border-bottom: none; }

/* ── Text column ── */
.artist-text {
  display: flex;
  flex-direction: column;
}

.artist-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-bottom: 0.6rem;
}

.artist-name {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #f2f0ec;
  margin-bottom: 0;
}

.artist-redline {
  width: 50px;
  height: 2px;
  background: #c0203a;
  margin: 1rem 0;
}

.artist-bio {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(242,240,236,0.75);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.artist-booking {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(242,240,236,0.7);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.artist-booking a {
  color: #db445d;
  text-decoration: none;
  transition: color 0.2s;
}
.artist-booking a:hover { color: #f2f0ec; }

/* ── Photo column ── */
.artist-photo {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.artist-photo:hover img {
  transform: scale(1.03);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .artist-entry {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
  /* Foto arriba, texto abajo en móvil */
  .artist-photo { order: -1; max-height: 420px; }
}
