/* ============================================
   ABOUT PAGE — two-column, full viewport height, no scroll
   ============================================ */

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  padding-top: var(--nav-h);
  gap: 0;
}

/* Left column: photo contained with matching padding */
.about-photo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 48px) clamp(16px, 2vw, 36px) clamp(24px, 3vw, 48px) clamp(24px, 4vw, 64px);
}

.about-photo img {
  max-height: calc(100vh - var(--nav-h) - 80px);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Right column: everything centered */
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(24px, 3vw, 48px) clamp(24px, 4vw, 64px) clamp(24px, 3vw, 48px) clamp(16px, 2vw, 36px);
}

.about-text h1 {
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 28px;
}

.about-text .eyebrow {
  text-align: center;
}

.about-text .blurb {
  color: var(--text-dim);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  text-transform: none;
  letter-spacing: normal;
  text-align: center;
  max-width: 42ch;
}

.about-text .blurb p + p { margin-top: 18px; }

.about-text .blurb strong {
  color: var(--text);
  font-weight: 400;
}

/* Mobile: stack vertically */
@media (max-width: 720px) {
  .about-wrap {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    overflow: visible;
    min-height: 100vh;
  }

  .about-photo {
    justify-content: center;
    padding: 40px clamp(20px, 4vw, 40px) 20px;
  }

  .about-photo img {
    max-width: 260px;
    max-height: 50vh;
  }

  .about-text {
    padding: 20px clamp(20px, 4vw, 40px) 80px;
  }
}
