/* ====================================
   Team Page
   ==================================== */

/* Hero */
.team-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.team-hero-overline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.team-hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 400;
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.team-hero-title span {
  color: var(--text-muted);
}

.team-hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ====================================
   Team Grid
   ==================================== */

.team-section {
  padding: 80px 0 120px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}

.team-card-photo-placeholder svg {
  color: var(--border);
}

.team-card-name {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* ====================================
   Responsive
   ==================================== */

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .team-hero {
    padding: 120px 0 56px;
  }

  .team-hero-title {
    font-size: 52px;
    letter-spacing: -1px;
  }

  .team-hero-desc {
    font-size: 15px;
  }

  .team-section {
    padding: 48px 0 80px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-card-name {
    font-size: 17px;
  }

  .team-card-role {
    font-size: 11px;
  }
}
