/* ===== HEADSHOTS STRIP ===== */
.headshots-strip {
  overflow: hidden;
}

.headshots-list {
  display: flex;
}

.headshot-item {
  flex: 0 0 20%;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.headshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.headshot-item:hover img {
  transform: scale(1.04);
}

/* ===== FEATURED ROLE ===== */
.featured-role {
  padding: 6rem 0;
}

.featured-role-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.featured-still {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.featured-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-still:hover img {
  transform: scale(1.03);
}

.featured-info {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.featured-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.featured-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.featured-production {
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.featured-description {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 50ch;
}

/* ===== POSITIONING STATEMENT ===== */
.positioning {
  padding: 4rem 0;
}

.positioning-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  max-width: 60ch;
}

/* ===== SELECTED CREDITS ===== */
.selected-credits {
  padding: 4rem 0;
}

.credits-preview {
  margin-bottom: 3rem;
}

.credit-item {
  display: grid;
  grid-template-columns: 4rem 1fr 1fr 5rem;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #181818;
  align-items: baseline;
  font-size: 0.9rem;
}

.credit-year {
  color: var(--muted);
  font-size: 0.8rem;
  font-family: var(--font-sans);
}

.credit-title {
  color: var(--text);
  font-family: var(--font-serif);
}

.credit-role {
  color: var(--muted);
  font-size: 0.875rem;
}

.credit-format {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .featured-role-inner {
    grid-template-columns: 1fr;
  }

  .featured-info {
    padding: 2rem;
  }

  .headshot-item {
    flex: 0 0 50%;
  }

  .credit-item {
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
  }

  .credit-format {
    display: none;
  }

  .credit-role {
    grid-column: 2;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .headshot-item {
    flex: 0 0 100%;
  }
}
