/* --- Founder --- */
.section--founder::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 16, 20, 0.75), rgba(6, 8, 10, 0.2));
}
.founder-content {
  display: grid;
  gap: calc(var(--space) * 1.5);
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  align-items: center;
}
.founder-portrait {
  display: flex;
  justify-content: center;
  width: min(200px, 60vw);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(242, 239, 232, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  background: rgba(10, 13, 17, 0.4);
}
.founder-photo {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 50% 22%;
  transform: none;
}
.founder-photo--large {
  aspect-ratio: 1 / 1;
}
.founder-bio h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
}
.founder-bio span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.6);
  margin-bottom: 1rem;
}
.founder-bio p {
  margin: 0;
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}
@media (max-width: 860px) {
  .founder-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-portrait {
    width: min(180px, 62vw);
  }
  .founder-photo {
    transform: none;
  }
  .founder-bio span {
    letter-spacing: 0.16em;
  }
  .founder-bio p {
    margin: 0 auto;
  }
}
