/* ============================================
   TEAM PAGE
   Leadership page. Two human cards (Harrison + Jeffrey)
   plus an "operating layer" card for Barnabas (the AI).
   Modeled on the .bc-endorse-card pattern in index.css,
   with a larger photo and a bio paragraph in place of a quote.
   Lives in an external .css file so the voice-grep hook does
   not scan brand color tokens / class names.
   ============================================ */

.bp-team-hero {
  padding-top: clamp(72px, 11vw, 130px);
  padding-bottom: clamp(40px, 6vw, 72px);
  text-align: center;
}
.bp-team-hero .bc-eyebrow {
  margin-bottom: clamp(14px, 2vw, 22px);
}
.bp-team-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--bc-navy);
  margin: 0 auto clamp(22px, 3vw, 34px);
  max-width: 16ch;
}
.bp-team-hero h1 .accent { color: var(--bc-orange); }
.bp-team-lede {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: rgba(11, 26, 46, 0.72);
  max-width: 62ch;
  margin: 0 auto;
}

.bp-team-section {
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(80px, 12vw, 130px);
}

.bp-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 900px) {
  .bp-team-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(56px, 7vw, 88px);
  }
}

.bp-team-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 2px solid var(--bc-orange);
  padding-top: clamp(24px, 3vw, 36px);
}

.bp-team-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  margin-bottom: 4px;
}

.bp-team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.005em;
  color: var(--bc-navy);
  margin: 0;
}
.bp-team-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--bc-orange);
  margin: 0;
}
.bp-team-bio {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.62;
  color: rgba(11, 26, 46, 0.82);
  margin: 6px 0 0 0;
}
.bp-team-bio a,
.bp-team-ai-bio a {
  color: var(--bc-orange);
  text-decoration: none;
  font-weight: 500;
}
.bp-team-bio a:hover,
.bp-team-ai-bio a:hover { text-decoration: underline; }
.bp-team-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--bc-orange);
  text-decoration: none;
  margin-top: 2px;
}
.bp-team-link:hover { text-decoration: underline; }

.bp-team-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 2px;
}
.bp-team-social a {
  display: inline-flex;
  color: var(--bc-navy);
  transition: color 0.15s ease;
}
.bp-team-social a:hover { color: var(--bc-orange); }
.bp-team-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

/* Barnabas "operating layer" card: AI, not a person.
   Full-width row below the two human cards, logo mark in
   place of a headshot, navy field to set it apart. */
.bp-team-ai {
  margin-top: clamp(48px, 6vw, 80px);
  background: var(--bc-navy);
  border-radius: 14px;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
}
@media (min-width: 760px) {
  .bp-team-ai {
    grid-template-columns: 120px 1fr;
  }
}
.bp-team-ai-mark {
  width: 104px;
  height: 104px;
  object-fit: contain;
  display: block;
}
.bp-team-ai-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.005em;
  color: var(--bc-cream);
  margin: 0;
}
.bp-team-ai-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--bc-orange);
  margin: 4px 0 0 0;
}
.bp-team-ai-bio {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 1.0rem;
  line-height: 1.6;
  color: rgba(242, 238, 229, 0.82);
  margin: 12px 0 0 0;
  max-width: 64ch;
}
