/* About page — quiet single-column design:
   serif "About" + roles beside a headshot that melts into black,
   then the biography as one readable column. */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- hero ---------- */
.about-hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: flex;
  align-items: center;
  max-width: 1340px;  /* hero spreads wider than the bio column */
  margin: 0 auto;
}

.headshot-wrap {
  position: absolute;
  top: 0;
  right: 1.5rem;      /* photo's right edge lines up with the text content */
  width: min(60%, 560px);
  height: 100%;
  overflow: hidden;
}

.headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* melt the photo into the page black on its left and bottom edges */
.headshot-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(10, 10, 10, 0.35) 30%, transparent 60%);
}

.headshot-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 10, 10, 0.25), transparent 25%, transparent 62%, var(--bg) 96%);
}

.about-intro {
  position: relative;
  z-index: 1;
  padding: 7rem 1.5rem 4rem;
  max-width: 560px;
}

.about-word {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 200;
  letter-spacing: 14px;
}

.about-intro .rule.left { margin: 1.8rem 0 1.9rem; }

.roles {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 2.3;
}

.roles span { padding: 0 0.4rem; }

.about-line {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-top: 1.7rem;
  max-width: 400px;
}

/* ---------- biography ---------- */
.bio {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

.bio p { color: #c9c9c6; }
.bio em { font-style: normal; color: var(--text-primary); }

/* opening statement — larger, thin, white */
.bio-lede { max-width: 800px; padding-bottom: 3.6rem; }

.bio-lede p {
  color: var(--text-primary);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  font-weight: 200;
  line-height: 1.95;
  letter-spacing: 0.025em;
}

.bio-lede .bio-lede-sub {
  color: #b9b9b5;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 300;
  margin-top: 1.6rem;
}

/* editorial side-label rows */
.bio-part {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 2.5rem;
  padding: 2.4rem 0;
  border-top: 1px solid #191917;
}

.bio-label span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 5px;
  padding-top: 0.45rem;
}

.bio-text p {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0.02em;
}

/* centered serif pull-quote */
.bio-quote {
  margin: 4.2rem auto 0;
  max-width: 720px;
  text-align: center;
  padding: 3rem 0 0;
  border-top: 1px solid #191917;
}

.bio-quote p {
  color: var(--text-primary);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 200;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* closing + signature */
.bio-closing {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-top: 3rem;
}

.bio-closing p {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0.02em;
}

.bio-signature {
  width: 200px;
  margin-top: 2.4rem;
  opacity: 0.9;
}

/* closing-credits profile links */
.about-profiles {
  text-align: center;
  padding: 5rem 1.5rem 3.5rem;
  font-size: 0.79rem;      /* ~12.6px */
  letter-spacing: 2.5px;
}

.about-profiles a,
.about-profiles a:visited {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.35s ease;
}

.about-profiles a:hover { color: var(--gold); }

.about-profiles span {
  color: var(--gold);
  opacity: 0.75;
  padding: 0 0.9rem;
}

/* ---------- footer ---------- */
.about-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border-top: 1px solid #1c1c1a;
  padding: 2.2rem 1.5rem 2.6rem;
  margin-top: 2rem;
}

.about-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 2px;
  transition: color 0.25s ease;
}

.about-footer a:hover { color: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .about-hero {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .headshot-wrap {
    position: relative;
    width: 100%;
    height: 56vh;
  }

  .headshot { object-position: center 12%; }

  .headshot-wrap::before { background: none; }

  .about-intro {
    padding: 2.2rem 1.5rem 1rem;
    margin-top: -3.5rem; /* headline overlaps the photo's faded bottom */
  }

  .about-footer { flex-direction: column; gap: 0.9rem; }
  .about-footer .nav-divider { display: none; }

  .bio-part { grid-template-columns: 1fr; gap: 0.9rem; padding: 2rem 0; }
  .bio-label span { padding-top: 0; }
}
