/* =========================
   ARTIST DETAIL PAGE
   Reusable for all artist pages
========================= */

/* section header override for artist pages */
.section-header {
  display: block;
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-header > div {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8965a;
  opacity: 0.9;
}

.section-intro {
  display: block;
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

/* spacing refinement */
.site-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* hero meta */
.artist-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.artist-meta-pill {
  padding: 10px 16px;
  border: 1px solid rgba(184, 150, 90, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}

/* main image layout */
.artist-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
}

.artist-detail__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* biography copy */
.artist-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.artist-copy p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.artist-copy p:last-child {
  margin-bottom: 0;
}

/* facts */
.artist-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.artist-facts__item {
  padding: 22px;
  border: 1px solid rgba(184, 150, 90, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.artist-facts__item:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 150, 90, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.artist-facts__item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

.artist-facts__item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.8);
}

/* gallery refinement */
.gallery-grid--instagram {
  margin-top: 28px;
  gap: 20px;
}

.gallery-card {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 150, 90, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.gallery-card img {
  aspect-ratio: 4 / 5;
}

/* video cards */
.video-link-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-link-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(184, 150, 90, 0.22);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.video-link-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 150, 90, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.video-link-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 600;
}

.video-link-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

/* cta */
.cta-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.cta-panel__content p {
  max-width: 620px;
  margin: 12px auto 0;
}

.cta-panel__actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* responsive */
@media (max-width: 1024px) {
  .section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .site-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 980px) {
  .artist-facts,
  .video-link-grid,
  .gallery-grid--instagram {
    grid-template-columns: 1fr;
  }

  .artist-detail__image {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .artist-facts__item,
  .video-link-card,
  .cta-panel {
    padding: 22px 18px;
    border-radius: 20px;
  }
}