/* ============================================================
   FEATURED ARTIST — page-featured-artist.php
   ============================================================ */

/* ── Hero ── */
.artist-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4.5rem;
  overflow: hidden;
  background: var(--teal-dark);
}

.artist-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 8s ease;
}

.artist-hero:hover .artist-hero__bg {
  transform: scale(1.03);
}

.artist-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,42,32,0.3) 0%,
    rgba(30,42,32,0.75) 60%,
    rgba(30,42,32,0.92) 100%
  );
}

.artist-hero__content {
  position: relative;
  padding-top: 90px;
}

.artist-hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.artist-hero__name {
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.artist-hero__medium {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.artist-hero__village {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

/* ── Profile ── */
.artist-profile {
  padding: 5rem 0;
  background: var(--white);
}

.artist-profile__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.artist-profile__portrait {
  position: sticky;
  top: 2rem;
}

.artist-profile__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px rgba(44,58,46,0.18);
}

.artist-profile__location-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-mid);
}

.artist-profile__location-tag svg {
  color: var(--teal);
  flex-shrink: 0;
}

.artist-profile__bio {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.artist-profile__bio p {
  margin-bottom: 1rem;
}

.artist-profile__placeholder {
  color: var(--text-light);
  font-style: italic;
}

/* Artist statement / pull quote */
.artist-statement {
  border-left: 3px solid var(--gold);
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  background: var(--teal-pale);
}

.artist-statement p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.artist-statement cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-style: normal;
}

/* ── Selected Works ── */
.artist-works {
  padding: 5rem 0;
  background: var(--teal-pale);
  border-top: 1px solid var(--border);
}

.artist-works__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.artist-works__grid--1 { grid-template-columns: 1fr; max-width: 680px; margin-left: auto; margin-right: auto; }
.artist-works__grid--2 { grid-template-columns: 1fr 1fr; }
.artist-works__grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.artist-works__grid--4 { grid-template-columns: 1fr 1fr; }

.artist-work {
  margin: 0;
  overflow: hidden;
}

.artist-work img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.artist-work:hover img {
  transform: scale(1.03);
}

.artist-work figcaption {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 0.5rem 0 0;
  font-style: italic;
}

/* ── Find Their Work ── */
.artist-find {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.artist-find__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
}

.artist-find__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex: 1 1 220px;
}

.artist-find__item svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.artist-find__item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
}

.artist-find__item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}

.artist-find__item a {
  color: var(--teal);
}

.artist-find__item a:hover {
  color: var(--gold);
}

.artist-find__cta {
  margin-top: 2rem;
  text-align: center;
}

/* ── CTA section ── */
.artist-cta {
  background: var(--teal-dark);
  padding: 4rem 0;
  text-align: center;
  border-top: 2px solid var(--gold);
}

.artist-cta h2 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.artist-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .artist-profile__inner {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  .artist-hero { min-height: 380px; }

  .artist-profile__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .artist-profile__portrait {
    position: static;
    max-width: 320px;
  }

  .artist-works__grid--3 { grid-template-columns: 1fr 1fr; }
  .artist-works__grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .artist-works__grid--2,
  .artist-works__grid--3,
  .artist-works__grid--4 { grid-template-columns: 1fr; }
  .artist-find__inner { flex-direction: column; }
}
