.founder-story__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-story__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .founder-story__content { order: 1; }
  .founder-story__media-wrap { order: 2; }
}

.founder-story__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--color-ivory);
  margin: 0 0 1.5rem;
  line-height: 1.15;
}

.founder-story__body { margin-bottom: 2rem; }

.founder-story__quote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-primary);
}

.founder-story__quote-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-ivory);
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.founder-story__quote-author {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.founder-story__media-wrap { position: relative; }

.founder-story__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.founder-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-story__frame {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
  z-index: -1;
}

.founder-story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.founder-story__stat-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-primary);
  margin: 0;
}

.founder-story__stat-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0.25rem 0 0;
}


/* Founder profile block (reuses founder-story layout) */
.founder-profile .founder-container,
.founder-profile .founder-story-top {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-profile .founder-story-top { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .founder-profile--image-right .founder-profile-col-media { order: 2; }
  .founder-profile--image-right .founder-profile-col-content { order: 1; }
}

.founder-profile-media img,
.founder-profile .founder-story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.founder-profile-separator {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}

.founder-profile-info-title {
  font-family: var(--font-serif);
  color: var(--color-ivory);
  font-size: 1.25rem;
}

.founder-profile-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.founder-profile-contact-list a {
  color: var(--color-muted);
}

.founder-profile-contact-list a:hover { color: var(--color-primary); }

.product-highlights__media { aspect-ratio: 1; overflow: hidden; }
.product-highlights__image { width: 100%; height: 100%; object-fit: cover; }
.product-highlights__body { padding: 1.5rem; }
