/* Meet the Team: the proprietors' wall. Three badge portraits on the
   night-plum dark, framed like fight posters behind the bar. */

.team {
  min-height: 100dvh;
  max-width: 70rem;
  margin: 0 auto;
  /* Generous top gutter: the nav is fixed and the script title leans up-left
     when rotated, so clearance must survive text zoom and wide-viewport
     font scaling, not just the default layout. */
  padding: clamp(5.5rem, 14vh, 8rem) var(--space) var(--space);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.team__title {
  display: grid;
  justify-items: center;
  font-weight: 400;
}
.team__script {
  font-family: var(--font-script);
  font-size: calc(var(--size-script) * 0.72);
  line-height: 1;
  transform: rotate(-4deg);
  margin-bottom: -0.3em;
  z-index: 1;
}
.team__caps {
  font-family: var(--font-tube);
  font-size: calc(var(--size-caps) * 0.6);
  line-height: 0.92;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team__whisper {
  margin-top: calc(var(--space) * 0.75);
  font-family: var(--font-machine);
  font-size: var(--size-whisper);
  letter-spacing: 0.08em;
  color: var(--amber);
  opacity: 0.85;
  text-wrap: balance;
  text-shadow: 0 1px 2px rgba(5, 2, 4, 0.95);
}

.crew {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: calc(var(--space) * 1.5);
}

.crew__card {
  padding: clamp(1rem, 3vw, 1.6rem);
  background: rgba(13, 7, 12, 0.88);
  border: 1px solid rgba(255, 177, 78, 0.22);
  box-shadow: 0 14px 44px rgba(5, 2, 4, 0.7);
}
.crew__card img {
  width: min(100%, 14rem);
  height: auto;
  margin: 0 auto;
  /* No crop, no glow: the badges carry their own ring and name plaque,
     and their black field disappears into the card. */
}

/* The badge plaques already carry the names in neon; the heading stays in
   the DOM for screen readers and document outline only. */
.crew__name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.crew__role {
  margin-top: 0.9rem;
  font-family: var(--font-machine);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255, 46, 200, 0.45);
}
.crew__bio {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--amber);
  text-align: left;
}
.crew__status {
  margin-top: 0.9rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(255, 177, 78, 0.25);
  font-family: var(--font-machine);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--amber-dim);
  text-align: left;
}

.team__foot {
  margin-top: auto;
  padding-top: calc(var(--space) * 1.5);
  padding-bottom: calc(var(--space) * 0.5);
  font-family: var(--font-machine);
  font-size: var(--size-fine);
  color: var(--amber-dim);
}
.team__foot a {
  display: inline-block;
  padding: 0.9rem 0.6rem;
  margin: -0.9rem -0.6rem;
  text-underline-offset: 3px;
}
