/* ============================================================
   BIOGRAPHY PAGE
   ============================================================ */

/* ---- PAGE HEADER ------------------------------------------ */

.bio-page-header {
  padding: 148px var(--side-pad) 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.bio-page-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
}

/* ---- SHARED SECTION LABEL --------------------------------- */

.section-eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 52px;
}

/* ---- ARTIST'S STATEMENT ----------------------------------- */

.statement-section {
  padding: 96px var(--side-pad);
  border-bottom: 1px solid var(--border);
}

.statement-inner {
  max-width: 740px;
  margin: 0 auto;
}

.statement-text p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 300;
  line-height: 2.15;
  color: var(--text-muted);
  margin-bottom: 2.4em;
}

.statement-text p:last-child {
  margin-bottom: 0;
}

/* ---- BIOGRAPHY -------------------------------------------- */

.biography-section {
  padding: 96px var(--side-pad);
  border-bottom: 1px solid var(--border);
}

.biography-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 88px;
  align-items: start;
}

.biography-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.biography-text-col {
  padding-top: 4px;
}

.biography-body {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 2;
  color: var(--text-muted);
  max-width: 560px;
}

/* ---- EXHIBITIONS ------------------------------------------ */

.exhibitions-section {
  padding: 96px var(--side-pad);
}

.exhibitions-inner {
  max-width: 740px;
  margin: 0 auto;
}

.exhibitions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exhibition-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.exhibition-year {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  padding-top: 5px;
}

.exhibition-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.exhibition-info {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ------------------------------------------- */

@media (max-width: 860px) {
  .biography-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .biography-photo {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .bio-page-header {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .statement-section,
  .biography-section,
  .exhibitions-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .exhibition-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 28px 0;
  }

  .exhibition-year {
    padding-top: 0;
  }
}
