/* ============================================
   Team Cards
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--ease-slow);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 144, 78, 0.2);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 2px solid var(--border);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-glow);
  border-radius: 50%;
}

.team-card__name {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

/* ============================================
   Values
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  border-top: 3px solid transparent;
  transition: all var(--ease-slow);
}

.value-card--orange { border-top-color: var(--orange); }
.value-card--purple { border-top-color: var(--purple); }
.value-card--blue { border-top-color: var(--blue); }

.value-card__num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.12;
}

.value-card--orange .value-card__num { color: var(--orange); }
.value-card--purple .value-card__num { color: var(--purple); }
.value-card--blue .value-card__num { color: var(--blue); }

.value-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-card__body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}

/* ============================================
   About intro — handwritten subtitle override
   ============================================ */
.about-intro__hand {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0.25rem 0 1.5rem;
}

/* ============================================
   "We're hiring" placeholder team card
   ============================================ */
.team-card--hiring {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
}

.team-card__avatar-initials--placeholder {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-faint);
}

.team-card__role--faint { color: var(--text-faint); }

.team-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
}
