/* =============================================================
   ABOUT — Artist bio section
   Editorial layout: pull quote dominates, bio restrained,
   stats + EPK in right column. No cards, no boxes.
   Depends on: tokens.css, global.css
   ============================================================= */


/* -----------------------------------------------------------
   .about — section wrapper
----------------------------------------------------------- */
.about {
  position: relative;
  background-color: var(--color-abyss);
  padding: var(--space-20) 0;
}


/* -----------------------------------------------------------
   .about__inner — two-column grid
----------------------------------------------------------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-16);
  align-items: start;
}


/* -----------------------------------------------------------
   .about__left — eyebrow + quote + bio
----------------------------------------------------------- */
.about__left {
  display: flex;
  flex-direction: column;
}


/* -----------------------------------------------------------
   .about__eyebrow
----------------------------------------------------------- */
.about__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-chai);
  margin-bottom: var(--space-6);
}


/* -----------------------------------------------------------
   .about__quote — pull quote, the emotional anchor
----------------------------------------------------------- */
.about__quote {
  margin: 0 0 var(--space-8);
  padding: 0;
  border: none;
}

.about__quote-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-bone);
  line-height: 1.3;
  margin: 0;
}


/* -----------------------------------------------------------
   .about__bio — short artist biography
----------------------------------------------------------- */
.about__bio p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-mist);
  line-height: 1.8;
  max-width: 520px;
}


/* -----------------------------------------------------------
   .about__right — stats + dividers + venues + EPK
----------------------------------------------------------- */
.about__right {
  padding-top: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}


/* -----------------------------------------------------------
   .about__stats — three key numbers
----------------------------------------------------------- */
.about__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-chai);
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-signal);
}

.about__stat-qualifier {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--color-signal);
  margin-top: 1px;
}


/* -----------------------------------------------------------
   .about__divider — hairline separator
----------------------------------------------------------- */
.about__divider {
  width: 100%;
  height: 0.5px;
  background-color: var(--color-slate);
}


/* -----------------------------------------------------------
   .about__venues — venue name row
----------------------------------------------------------- */
.about__venues {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  color: var(--color-mist);
  margin-bottom: var(--space-2);
}

.about__venues-note {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--color-signal);
  line-height: 1.6;
}


/* -----------------------------------------------------------
   .about__epk — text underline link, not a button
----------------------------------------------------------- */
.about__epk {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-chai);
  text-decoration: none;
  border-bottom: 0.5px solid var(--color-chai);
  padding-bottom: 3px;
  align-self: flex-start;
  transition:
    color var(--transition-base),
    border-bottom-color var(--transition-base);
}

.about__epk:hover {
  color: var(--color-bone);
  border-bottom-color: var(--color-bone);
}


/* -----------------------------------------------------------
   RESPONSIVE — tablet and below: single column
----------------------------------------------------------- */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about__right {
    padding-top: 0;
  }
}
