.page-about .content-hero {
  min-height: clamp(690px, 82svh, 900px);
  background-color: #2e241c;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(215, 187, 163, .13), transparent 28%),
    linear-gradient(128deg, #211811 0%, #3a2a20 58%, #4f5b37 100%);
}

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.about-hero-copy {
  max-width: 700px;
}

.about-person-hero h1 {
  max-width: 700px;
  font-size: clamp(4rem, 6.6vw, 7.6rem);
}

.about-hero-portrait {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 470px;
  aspect-ratio: 4 / 5;
  justify-self: end;
  margin: 0;
  border: 1px solid rgba(255, 250, 243, .22);
  box-shadow: 0 32px 90px rgba(12, 8, 5, .38);
}

.about-hero-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(24, 17, 12, .72) 100%);
  content: "";
  pointer-events: none;
}

.about-hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.about-hero-portrait figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--cream);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .page-about .content-hero {
    min-height: auto;
    padding: 58px 0 84px;
    background-image:
      radial-gradient(circle at 80% 10%, rgba(215, 187, 163, .14), transparent 30%),
      linear-gradient(150deg, #211811 0%, #3a2a20 62%, #4f5b37 100%);
  }

  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-hero-portrait {
    order: -1;
    width: min(100%, 620px);
    max-width: none;
    aspect-ratio: 16 / 10;
    justify-self: start;
  }

  .about-hero-portrait img {
    object-position: 50% 34%;
  }

  .about-person-hero h1 {
    font-size: clamp(3.4rem, 11vw, 5.7rem);
  }
}

@media (max-width: 560px) {
  .page-about .content-hero {
    padding: 28px 0 72px;
  }

  .about-hero-layout {
    gap: 30px;
  }

  .about-hero-portrait {
    aspect-ratio: 4 / 3;
  }

  .about-hero-portrait figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    font-size: .63rem;
  }

  .about-person-hero h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }
}
