/* ============================================================
   CVWP – Staff Page
   ============================================================ */

.staff-page {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--bg, #0a0a0a);
}

.staff-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px clamp(16px, 4vw, 40px) 72px;
}

.staff-header {
  margin-bottom: 32px;
}

.staff-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.07em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.staff-sub {
  margin-top: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  max-width: 640px;
}

.staff-empty {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px;
  color: rgba(255,255,255,0.55);
}

.staff-card {
  clear: both;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

.staff-photo {
  width: clamp(160px, 22vw, 230px);
  height: clamp(160px, 22vw, 230px);
  border-radius: 14px;
  object-fit: cover;
  margin: 6px 24px 12px 0;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  filter: saturate(0.95) contrast(1.04);
}

.staff-photo--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.08em;
  color: #0a0a0a;
  background: linear-gradient(135deg, #a8880f, #D4AF37);
}

.staff-card--left .staff-photo {
  float: left;
}

.staff-card--right .staff-photo {
  float: right;
  margin: 6px 0 12px 24px;
}

.staff-name {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1;
  margin-bottom: 8px;
}

.staff-role {
  color: var(--gold, #D4AF37);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.staff-bio {
  white-space: pre-line;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.staff-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 30px 0;
  clear: both;
}

@media (max-width: 760px) {
  .staff-wrap {
    padding-top: 30px;
  }

  .staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .staff-photo,
  .staff-card--right .staff-photo,
  .staff-card--left .staff-photo {
    float: none;
    width: min(100%, 280px);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 0 14px;
  }

  .staff-name,
  .staff-role,
  .staff-bio {
    width: 100%;
  }

  .staff-bio {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}
