.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%);
}

.personal-brand {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
}

.personal-brand span {
  width: 2.75rem;
  height: 2.75rem;
  margin-right: .55rem;
  border: 1.5px solid var(--gold);
  background: var(--navy);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: .82rem;
  letter-spacing: .06em;
  box-shadow: inset 0 0 0 3px var(--navy), inset 0 0 0 4px rgba(255,255,255,.3);
}

.personal-brand strong {
  color: var(--navy);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .015em;
}

.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) {
  .personal-brand strong {
    max-width: 11rem;
    line-height: 1.15;
  }
  .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);
  }
}
