.founder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(24rem, 42vw, 32rem);
  background: #fcf8f0;
}

.founder__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
}

.founder__title {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.founder__text {
  display: grid;
  gap: 1.15rem;
  max-width: 34rem;
}

.founder__text p {
  color: var(--ink-muted);
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  font-weight: 300;
  line-height: 1.8;
}

.founder__media {
  height: 100%;
  min-height: clamp(24rem, 42vw, 32rem);
  overflow: hidden;
  background: #1a1410;
}

.founder__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

@media (max-width: 860px) {
  .founder {
    grid-template-columns: 1fr;
  }

  .founder__media {
    order: -1;
    min-height: clamp(16rem, 52vw, 22rem);
  }

  .founder__content {
    padding: clamp(2rem, 5vw, 2.5rem) var(--section-x, 1.5rem) 2.75rem;
  }

  .founder__title {
    font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  }

  .founder__text p {
    font-size: 0.92rem;
    line-height: 1.75;
  }
}
