/* ============================================================
   TEAM
   Centred portraits on the warm oat surface, lifting back out
   of the dark reviews band.
   ============================================================ */

.team {
  background: var(--oat);
  padding-block: clamp(4rem, 9vw, 8rem);
}

/* ---- head ---- */
.team-head {
  max-width: 54ch;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.team-overline {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: var(--space-s);
}
.team-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-3);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.team-title em {
  font-style: italic;
  color: var(--wine);
}
.team-intro {
  margin-top: var(--space-m);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ---- grid ---- */
.team-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 700px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- member ---- */
.team-member { text-align: center; }
.team-media {
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-2);
  line-height: 1.1;
  color: var(--ink);
  margin-top: var(--space-m);
}
.team-role {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--wine);
  margin-top: 0.45rem;
}
.team-bio {
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: var(--space-s);
  max-width: 34ch;
  margin-inline: auto;
}

/* ---- cta ---- */
.team-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* ---- stagger ---- */
.team-member.reveal:nth-child(1) { transition-delay: 0.04s; }
.team-member.reveal:nth-child(2) { transition-delay: 0.12s; }
.team-member.reveal:nth-child(3) { transition-delay: 0.20s; }
.team-member.reveal:nth-child(4) { transition-delay: 0.28s; }
.team-member.reveal:nth-child(5) { transition-delay: 0.36s; }