/* ============================================================
   ABOUT — Two-column bio with photo
   ============================================================ */

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: var(--space-10);
  padding-block: var(--space-2);
}

/* ── Photo column ── */
.about__photo-col {
  position: relative;
}

.about__photo-frame {
  position: relative;
}

/* Decorative corner lines */
.about__photo-frame::before,
.about__photo-frame::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--color-champagne);
  border-style: solid;
  z-index: 2;
  opacity: 0.5;
}

.about__photo-frame::before {
  top: -12px;
  left: -12px;
  border-width: 1px 0 0 1px;
}

.about__photo-frame::after {
  bottom: -12px;
  right: -12px;
  border-width: 0 1px 1px 0;
}

.photo-placeholder--about {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
  border: 1px solid rgba(200, 169, 110, 0.2);
}

/* When real image is swapped in */
.about__photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
  display: block;
}

/* ── Text column ── */
.about__text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about__heading {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  color: var(--color-cream);
  margin-top: var(--space-3);
}

.about__text-col p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-cream-muted);
}

.about__text-col p.lead {
  font-size: var(--text-xl);
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--color-champagne-light);
  line-height: var(--leading-snug);
}

/* ── Credential pills ── */
.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about__photo-col {
    max-width: 280px;
    margin-inline: auto;
    width: 100%;
  }

  .about__text-col {
    text-align: center;
    align-items: center;
  }

  .about__heading {
    text-align: center;
  }
}
