/* about.css — Split layout with photo and text */

.about {
  background: var(--off-white);
}

.about__photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder until real photo is provided */
.about__photo-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  background: var(--blue-tint);
  border: 1px solid var(--whisper-border);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
}

/* When real photo is added, replace placeholder with:
.about__photo img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.08);
}
*/

.about__content h2 {
  margin-bottom: 1.5rem;
}

.about__lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.about__content p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  max-width: 55ch;
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
  .about__photo {
    order: -1; /* photo on top on mobile */
    margin-bottom: 2rem;
  }

  .about__photo-placeholder {
    max-width: 240px;
    aspect-ratio: 1;
  }
}
