/* ============================================================
   Selected Credits (credits/index.html). Reuses the site's design
   tokens and global components from style.css (colors, type, .kicker,
   .lede, .btn, .cta-band) — this file only adds the pieces unique to
   this page, and nothing else on the site loads it.
   ============================================================ */

.credits-hero {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 24px 100px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.credits-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(27,23,18,.5), rgba(27,23,18,.88));
}
.credits-hero > * { position: relative; z-index: 2; }
.credits-hero .kicker { justify-content: center; color: var(--paper); opacity: .85; }
.credits-hero h1 { color: var(--paper); max-width: 760px; margin: 18px auto 0; }
.credits-hero p.lede { color: var(--paper); opacity: .95; max-width: 640px; margin: 26px auto 0; }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  filter: saturate(.92);
  animation: creditsHeroFade 36s infinite;
}
@keyframes creditsHeroFade {
  0%      { opacity: 0; }
  2.7778% { opacity: 1; }
  13.888% { opacity: 1; }
  16.666% { opacity: 0; }
  100%    { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide { animation: none; opacity: 0; }
  .hero-bg-slide:first-child { opacity: 1; }
}

/* ---------- Credit list ---------- */
.credit-list { border-top: 1px solid var(--line); }
.credit-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.credit-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-deep); }
.credit-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.credit-thumb-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  padding: 18px;
}
.credit-thumb-text .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  opacity: .55;
  margin-bottom: 10px;
}
.credit-thumb-text .venue {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}
.credit-body .kicker { margin-bottom: 8px; }
.credit-body h3 { font-size: 1.5rem; margin: 0 0 6px; }
.credit-meta {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .03em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.credit-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.credit-tag {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
}
.credit-body p { margin: 0 0 16px; color: var(--ink-soft); }
.credit-links { display: flex; flex-wrap: wrap; gap: 20px; }
.credit-link {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.credit-link:hover { text-decoration: underline; }

.credit-row-link { text-decoration: none; color: inherit; display: contents; }
.credit-row-link:hover .credit-thumb img { transform: scale(1.03); }
.credit-thumb img { transition: transform .6s ease; }

@media (max-width: 700px) {
  .credit-row { grid-template-columns: 1fr; }
  .credit-thumb { aspect-ratio: 16/9; }
}

/* ---------- Individual artist page ---------- */
.artist-hero {
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.artist-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(27,23,18,.5), rgba(27,23,18,.88));
}
.artist-hero > * { position: relative; z-index: 2; }
.artist-hero .kicker { justify-content: center; color: var(--paper); opacity: .85; }
.artist-hero h1 { color: var(--paper); max-width: 760px; margin: 18px auto 0; }
.artist-hero .credit-meta { color: var(--paper); opacity: .75; margin-top: 20px; }
.artist-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: 50% 35%;
  filter: saturate(.9);
}

.media-list { display: flex; flex-direction: column; gap: 56px; margin-top: 8px; }
.media-block { max-width: 720px; }
.media-embed { margin-bottom: 8px; border: 1px solid var(--line); }
.media-note { font-family: var(--sans); font-size: .84rem; color: var(--text-muted); margin: 0; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line-strong);
  background: var(--paper-deep);
}
@media (max-width: 700px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

.asset-pending {
  border: 1px dashed var(--line-strong);
  padding: 22px 24px;
  font-family: var(--sans);
  font-size: .84rem;
  color: var(--text-faint);
  font-style: italic;
}
