/**
 * Section 05 — Credits / closing (§11)
 * Simple, minimal, dark. Music credit, build credit, external links, notice.
 * Ownership by Mukul signalled clearly but not intrusively (§1).
 */

/* Centred — this section reads as the website footer. */
.credits__inner {
  display: grid;
  gap: var(--space-lg);
  justify-items: center;
  text-align: center;
}

.credits__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.credits__item .credits__role {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: var(--space-xs);
}

.credits__item .credits__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h3);
  text-transform: uppercase;
  color: var(--text);
}

.credits__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.credits__links a {
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent-mid);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.credits__links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.credits__notice {
  font-size: var(--fs-micro);
  line-height: 1.9;
  color: var(--text-faint);
  max-width: 60ch;
  margin: 0 auto;
}
