/* ============================================
   STAFF PAGE — /staff/
   ============================================ */

main { padding-top: 70px; }

/* ── Hero ── */
.staff-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.staff-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/media/staff_hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  z-index: 0;
}

.staff-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,0.1) 0%,
    rgba(9,9,9,0.7) 70%,
    rgba(9,9,9,1) 100%
  );
}

.staff-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 56px;
}

/* ── Intro / decorative compass + CTA ── */
.staff-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 80px 0;
  background: var(--black);
}

.staff-intro-logo {
  width: 120px;
  height: auto;
  opacity: 0.5;
}

/* ── Profile sections ── */
.staff-profiles {
  background: var(--black);
  padding: 80px 0 0;
}

.staff-profile {
  padding: 80px 80px;
  border-top: 1px solid var(--faint);
}

.staff-profile-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Alternating layout — text left, image right */
.staff-profile-alt .staff-profile-inner {
  grid-template-columns: 1fr 420px;
}

/* ── Portrait image ── */
.staff-profile-img-wrap {
  position: relative;
}

.staff-profile-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 220px 220px 12px 12px;
  filter: saturate(0.55) brightness(0.95);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.staff-profile-img-wrap:hover .staff-profile-img {
  filter: saturate(1) brightness(1) drop-shadow(0 0 24px rgba(174,0,255,0.55));
  transform: scale(1.02);
}

/* ── Text side ── */
.staff-profile-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 16px;
}

.staff-profile-name-wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.staff-profile-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

.staff-profile-pronouns {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 400;
}

.staff-profile-role {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  border: 1px solid var(--faint);
  padding: 4px 10px;
  border-radius: 2px;
}

.staff-profile-bio p {
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}
.staff-profile-bio p:last-child { margin-bottom: 0; }

.staff-profile-note {
  font-size: 14px !important;
  color: var(--purple) !important;
  font-style: italic;
}

.staff-profile .btn-solid {
  align-self: flex-start;
  font-size: 15px;
  padding: 14px 28px;
}

/* ── Owners divider ── */
.owners-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 60px 80px 0;
  background: var(--black);
}

.owners-divider-line {
  flex: 1;
  height: 1px;
  background: var(--faint);
}

.owners-divider-label {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--purple);
  white-space: nowrap;
}

.staff-profiles-owners {
  padding-bottom: 100px;
}

/* ============================================
   MOBILE — Staff Page
   ============================================ */
@media (max-width: 768px) {

  /* Hero */
  .staff-hero { height: 50vh; min-height: 320px; }
  .staff-hero-bg { background-attachment: scroll; }
  .staff-hero-content { padding: 0 24px 40px; }

  /* Intro */
  .staff-intro { padding: 36px 24px 0; }

  /* Profiles */
  .staff-profiles { padding: 48px 0 0; }
  .staff-profiles-owners { padding-bottom: 60px; }

  .staff-profile { padding: 48px 24px; }

  .staff-profile-inner,
  .staff-profile-alt .staff-profile-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Always image on top on mobile */
  .staff-profile-alt .staff-profile-img-wrap { order: -1; }
  .staff-profile-alt .staff-profile-text     { order: 1; }

  .staff-profile-img {
    height: 420px;
    border-radius: 160px 160px 8px 8px;
  }

  .staff-profile-name { font-size: clamp(40px, 12vw, 64px); }

  .staff-profile-bio p { font-size: 15px; }

  .staff-profile .btn-solid {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }

  /* Owners divider */
  .owners-divider { padding: 40px 24px 0; }
}
