/* ── TEAM PAGE ── */
.team-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.team-card {
  overflow: hidden;
  padding: 0;
}
.team-photo-wrap {
  position: relative;
  overflow: hidden;
}
.team-photo {
  width: 100%;
  aspect-ratio: 3/3.5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo {
  transform: scale(1.07);
}
.team-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 31, 68, 0) 40%,
    rgba(10, 31, 68, 0.88) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s;
}
.team-card:hover .team-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}
.team-socials {
  display: flex;
  gap: 9px;
}
.team-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--glass-hov);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}
.team-social:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.team-info {
  padding: clamp(18px, 2.5vw, 24px);
}
.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.team-bio {
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(0.78rem, 1.2vw, 0.85rem);
  line-height: 1.7;
}

.join-section {
  background: linear-gradient(135deg, var(--royal), var(--navy-mid));
  position: relative;
  overflow: hidden;
}
.join-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}
.join-section .container {
  position: relative;
  z-index: 1;
}
