.founder-hero {
  min-height: 82vh;
  grid-template-columns: 1.08fr .92fr;
  gap: 6vw;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: linear-gradient(135deg, #fff 64%, var(--cream) 64%);
}

.founder-photo {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 22px 22px 0 var(--gold);
}

.founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}

.photo-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem 1.35rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(6, 24, 44, .94));
}

.photo-caption strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.photo-caption span {
  color: #dce5ed;
  font-size: .9rem;
}

.vision blockquote {
  max-width: 1050px;
  font-size: clamp(2.15rem, 4.3vw, 4rem);
}

@media (max-width: 800px) {
  .founder-hero {
    grid-template-columns: 1fr;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    background: linear-gradient(160deg, #fff 75%, var(--cream) 75%);
  }

  .founder-photo {
    justify-self: start;
    max-width: 420px;
    box-shadow: 14px 14px 0 var(--gold);
  }
}
