/* ============================================================
   leadership.css — Full team: Board of Directors, Founder,
   Leadership. Compact auto-fill grids keep the page short.
   Reuses .page-hero / .section-eyebrow.
   ============================================================ */

.lead-section {
  background: #ffffff;
  color: #141414;
}
.lead-section__inner {
  max-width: var(--page-max-width, 72rem);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--page-gutter, 1.5rem);
}

/* Compact grid — many small cards per row */
.lead-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem 1.25rem;
}
.lead-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #1a1a1a;
}
.lead-card__name {
  margin: 0.75rem 0 0;
  font-family: var(--font-nav, "Inter", sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-heading, #141414);
}
.lead-card__role {
  margin: 0.15rem 0 0;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.55);
}

/* Founder — featured */
.founder {
  background: #ffffff;
  color: #141414;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.founder__inner {
  max-width: var(--page-max-width, 72rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--page-gutter, 1.5rem);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem 4rem;
  align-items: center;
}
.founder__img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  background: #1a1a1a;
}
.founder__name {
  margin: 0 0 0.4rem;
  font-family: var(--font-groove, "Groovezilla", sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-heading, #141414);
  font-size: clamp(2rem, 4vw, 3rem);
}
.founder__role {
  margin: 0 0 1.5rem;
  font-family: var(--font-nav, "Inter", sans-serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0a20c;
}
.founder__bio {
  margin: 0;
  max-width: 52ch;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

/* ---- Responsive ---- */
@media (max-width: 760px) {
  .founder__inner { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}