/* ── Crew grid ── */
.crew-grid-section {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 48px);
}
.crew-grid-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}

/* ── Member card ── */
.member-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.member-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 300ms var(--ease-out);
}
.member-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-glow);
}
.member-card:hover::after { width: 100%; }

.member-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.member-avatar-1 { background: linear-gradient(135deg, #C8A84B 0%, #8a6e2a 100%); }
.member-avatar-2 { background: linear-gradient(135deg, #b8943e 0%, #6a5020 100%); }
.member-avatar-3 { background: linear-gradient(135deg, #d4b456 0%, #9a7a35 100%); }
.member-avatar-4 { background: linear-gradient(135deg, #a08035 0%, #5c4418 100%); }
.member-avatar-5 { background: linear-gradient(135deg, #c0a045 0%, #7a5e28 100%); }
.member-avatar-6 { background: linear-gradient(135deg, #d8bc5e 0%, #a88438 100%); }

.member-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
}
.member-role-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-top: 8px;
}
.member-bio {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 12px;
}
.member-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.member-social a {
  color: var(--muted);
  display: flex;
  transition: color var(--dur-fast);
}
.member-social a:hover { color: var(--gold); }
.member-social svg { fill: currentColor; }

/* ── Spotlight ── */
.spotlight-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(80px, 10vw, 120px) clamp(20px, 4vw, 48px);
}
.spotlight-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.spotlight-header {
  margin-bottom: 48px;
}
.spotlight-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.spotlight-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
}
.spotlight-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.spotlight-text {}
.spotlight-bio {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.discografia-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.discografia-list {
  display: flex;
  flex-direction: column;
}
.discografia-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.discografia-item:first-child { border-top: 1px solid var(--border); }
.discografia-name {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--white);
  flex: 1;
}
.discografia-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.discografia-dur {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.spotlight-image {
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight-image-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .crew-grid { grid-template-columns: 1fr; }
  .spotlight-layout { grid-template-columns: 1fr; }
  .spotlight-image { order: -1; aspect-ratio: 16/9; }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
}
