/* Zelf gehoste fonts (Fontsource, latin-subset, woff2) — alle gebruikte gewichten */
@font-face { font-family: "Fraunces"; src: url("../fonts/fraunces-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("../fonts/fraunces-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("../fonts/fraunces-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("../fonts/fraunces-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("../fonts/fraunces-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Fraunces"; src: url("../fonts/fraunces-latin-900-normal.woff2") format("woff2"); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Archivo"; src: url("../fonts/archivo-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Archivo"; src: url("../fonts/archivo-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Archivo"; src: url("../fonts/archivo-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Archivo"; src: url("../fonts/archivo-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Archivo"; src: url("../fonts/archivo-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Archivo"; src: url("../fonts/archivo-latin-900-normal.woff2") format("woff2"); font-weight: 900; font-style: normal; font-display: swap; }

:root {
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:
    "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --bg: #11100f;
  --bg-soft: #191716;
  --panel: #201d1b;
  --panel-light: #f6f0e8;
  --text: #f7efe5;
  --muted: #cbb9a8;
  --dark-text: #211c18;
  --dark-muted: #6b5c51;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d2a24a;
  --gold-dark: #9c6e21;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --container: 1120px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
h3 {
  font-size: 1.4rem;
}

.hero h1,
.hero-video-content h1 {
  font-weight: 900;
  letter-spacing: -0.035em;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 820px);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: #111;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 16, 15, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold), #f0d28b);
  color: #17120d;
  box-shadow: 0 10px 30px rgba(210, 162, 74, 0.25);
}

.brand-text {
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.75rem 1rem;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.95rem;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 5rem 0;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(210, 162, 74, 0.23),
      transparent 28rem
    ),
    linear-gradient(145deg, rgba(17, 16, 15, 0.9), rgba(35, 27, 22, 0.84));
}

.hero.video-hero {
  min-height: 100svh;
  padding: 7rem 0 5rem;
  background: #050505;
}

.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  background: #050505;
}

.hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 32%,
      rgba(210, 162, 74, 0.22),
      transparent 28rem
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.48) 45%,
      rgba(0, 0, 0, 0.72) 100%
    );
}

.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

/* Particles-laag: over de video/scrim, achter de tekst */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0); /* eigen GPU-laag → soepeler over de video */
}

.hero.video-hero.video-failed {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.56)),
    url("../img/video-asian-dreams.webp") center / cover no-repeat;
}

.hero.video-hero::after {
  z-index: 3;
}

.landing-caption {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
}

.button-ghost {
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text);
}

/* De achtergrondvideo blijft zichtbaar, ook wanneer het besturingssysteem
   'verminder beweging' gebruikt. Anders lijkt de hero een stilstaand beeld. */

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.split-section,
.content-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 44%);
}
.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
}
.content-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
}
.split-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
}

.hero-copy,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.video-controls {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--gold);
  color: #15100b;
}
.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--text);
}

.hero-media,
.page-hero-media,
.image-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-muted {
  background: var(--panel-light);
  color: var(--dark-text);
}
.section-muted .eyebrow {
  color: var(--gold-dark);
}
.section-muted p {
  color: var(--dark-muted);
}

.intro-strip {
  padding: 2rem 0;
  background: #151312;
  border-block: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats-grid article {
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.stats-grid strong {
  display: block;
  font-size: 1.55rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.content-main p {
  color: var(--muted);
  font-size: 1.04rem;
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.stacked-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.stacked-links a {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  color: var(--text);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(210, 162, 74, 0.18),
      transparent 28rem
    ),
    linear-gradient(145deg, rgba(17, 16, 15, 0.92), rgba(39, 30, 24, 0.86));
}

.page-hero.compact {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

/* Hero met collage-achtergrond (Hits) — zelfde tonale behandeling als de
   jongere-jaren-hero: foto eronder, gouden gloed + zwarte gradiënten erover. */
.page-hero.hero-collage {
  background: #050505;
}
.page-hero.hero-collage .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 34%,
      rgba(210, 162, 74, 0.2),
      transparent 28rem
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.52) 45%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.03) 42%,
      rgba(0, 0, 0, 0.52)
    );
}
.page-hero.hero-collage::after {
  z-index: 1;
}
.page-hero.hero-collage .container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 880px);
  margin-left: clamp(0rem, 3vw, 2.5rem);
  margin-right: auto;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.section-muted .card {
  background: #fffaf3;
  border-color: rgba(33, 28, 24, 0.08);
}
.section-muted .card p {
  color: var(--dark-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.video-slider {
  margin-top: 1.4rem;
}
.video-controls {
  justify-content: flex-end;
  margin-top: 0;
}

.video-card {
  display: grid;
  grid-template-columns: minmax(280px, 52%) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.video-card figure {
  margin: 0;
  background: #171412;
}
.video-card-body {
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.meta-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.meta-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}

.meta-list dt {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.meta-list dd {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: #0d0c0b;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0;
}

.footer-note {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .hero-grid,
  .page-hero-grid,
  .content-grid,
  .split-section,
  .video-card {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .card-grid.three,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-aside {
    order: -1;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
  }

  .nav-toggle-line,
  .nav-toggle-line::before,
  .nav-toggle-line::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    content: "";
  }

  .nav-toggle-line {
    position: relative;
  }
  .nav-toggle-line::before {
    position: absolute;
    transform: translateY(-6px);
  }
  .nav-toggle-line::after {
    position: absolute;
    transform: translateY(6px);
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: grid;
    padding: 0.75rem;
    background: rgba(20, 18, 17, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.96);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0.18s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
  .stats-grid,
  .card-grid.three,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .meta-list div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}

.portrait-card img {
  width: 100%;
  height: min(76vh, 720px);
  object-fit: cover;
  object-position: center;
}

.page-hero-media img,
.video-card figure img,
.gallery-grid img,
.media-card img,
.video-thumb-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media img {
  max-height: 420px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.album-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(33, 28, 24, 0.12);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.image-cards .card {
  padding: 0;
  overflow: hidden;
}

.media-card img {
  aspect-ratio: 1 / 1;
}

.media-card div {
  padding: 1.35rem;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
}

.video-card figure img {
  min-height: 100%;
}

.video-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-thumb-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fffaf3;
  border: 1px solid rgba(33, 28, 24, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.video-thumb-grid img {
  aspect-ratio: 16 / 10;
}

.video-thumb-grid figcaption {
  padding: 1rem 1.15rem;
  color: var(--dark-text);
  font-weight: 800;
}

@media (max-width: 900px) {
  .album-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .portrait-card img {
    height: auto;
  }
}

@media (max-width: 720px) {
  .album-grid,
  .video-thumb-grid {
    grid-template-columns: 1fr;
  }
}

.section-heading {
  margin-bottom: 2rem;
}

.music-section {
  background: linear-gradient(180deg, #11100f, #171412);
  border-top: 1px solid var(--line);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.music-grid-wide {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.music-overlay-card,
.music-static-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.music-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.music-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(10, 9, 8, 0.88);
  opacity: 0;
  transform: translateY(-100%);
  transition:
    opacity 0.24s ease,
    transform 0.28s ease;
}

.music-overlay-card:hover .music-overlay,
.music-overlay-card:focus-within .music-overlay {
  opacity: 1;
  transform: translateY(0);
}

.music-overlay iframe {
  width: 100%;
  max-width: 660px;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background-color: #e4e4e4;
}

.music-card-caption {
  padding: 1.15rem;
}

.music-card-caption h3 {
  margin-bottom: 0.35rem;
}

.music-card-caption p {
  margin: 0;
  color: var(--muted);
}

@media (hover: none) {
  .music-overlay {
    position: static;
    opacity: 1;
    transform: none;
    min-height: 450px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .music-grid,
  .music-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .music-grid,
  .music-grid-wide {
    grid-template-columns: 1fr;
  }

  .music-overlay {
    position: static;
    opacity: 1;
    transform: none;
    min-height: 420px;
    border-top: 1px solid var(--line);
  }
}

/* Vier albumkaarten op de Muziek-pagina: kaart = Apple Music box-player (450px),
   dus hoes, kaart en player zijn even hoog en blijft er geen lege rand over. */
.music-grid-four {
  grid-template-columns: repeat(2, 450px);
  justify-content: center;
  gap: 1.25rem;
  max-width: 100%;
  margin-inline: auto;
}

.music-grid-four.music-grid-image-only .music-cover {
  aspect-ratio: 1 / 1; /* 450 x 450 vierkante hoes */
  height: auto;
}

.music-grid-four .music-overlay {
  padding: 0;
  align-items: stretch;
}

.music-grid-four .music-overlay iframe {
  height: 450px; /* = kaarthoogte = box-player -> geen witte/lege rand */
  min-height: 0;
  max-width: 100%;
  border-radius: 0;
}

@media (max-width: 980px) {
  .music-grid-four {
    grid-template-columns: 450px; /* 1 kolom van 450 */
  }
}

@media (max-width: 520px) {
  .music-grid-four {
    grid-template-columns: 1fr; /* volledige breedte op kleine schermen */
  }
}

@media (max-width: 760px) {
  .hero.video-hero {
    min-height: 88svh;
    padding-top: 6rem;
  }

  .hero-video-content {
    max-width: 100%;
  }
}

/* Jongere jaren: statische omzetting van de oorspronkelijke Divi/Smart Slider-pagina */
.young-slider-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 50vw, 600px);
  background: #090807;
  border-bottom: 1px solid var(--line);
}

.young-slider-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 255, 255, 0.02),
      transparent 20rem
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28));
}

.young-slider-hero picture,
.young-slider-hero img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 50vw, 600px);
  display: block;
}

.young-slider-hero img {
  object-fit: cover;
  object-position: center;
}

.section-young-copy {
  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(210, 162, 74, 0.14),
      transparent 24rem
    ),
    linear-gradient(145deg, rgba(17, 16, 15, 0.95), rgba(35, 27, 22, 0.88));
}

.young-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 34%);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.young-copy-column p {
  color: var(--muted);
  font-size: 1.03rem;
}

.young-copy-column strong {
  color: var(--text);
}

.young-copy-middle {
  grid-column: 2 / 3;
  margin-top: clamp(1.5rem, 8vw, 7rem);
}

.young-copy-image {
  grid-column: 3 / 4;
  grid-row: 1 / span 2;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.young-copy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-lead {
  color: var(--dark-muted);
}

.young-spotify-grid {
  margin-top: 2rem;
}

.young-spotify-grid .music-overlay iframe {
  min-height: 352px;
  border-radius: 12px;
}

@media (max-width: 1000px) {
  .young-copy-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
  }

  .young-copy-spacer {
    display: none;
  }

  .young-copy-middle {
    grid-column: 1 / 2;
    margin-top: 0;
  }

  .young-copy-image {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 720px) {
  .young-copy-grid {
    grid-template-columns: 1fr;
  }

  .young-copy-middle,
  .young-copy-image {
    grid-column: auto;
    grid-row: auto;
  }

  .young-copy-image img {
    max-height: 620px;
  }
}

/* Aanvullende biografie en bronvermelding */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.timeline-item,
.detail-card,
.sources-box {
  border-radius: var(--radius);
  border: 1px solid rgba(33, 28, 24, 0.1);
  background: #fffaf3;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}

.timeline-item,
.detail-card {
  padding: 1.45rem;
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(156, 110, 33, 0.12);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.timeline-item h3,
.detail-card h3 {
  color: var(--dark-text);
  margin-bottom: 0.65rem;
}

.timeline-item p,
.detail-card p,
.source-note p,
.sources-box p {
  color: var(--dark-muted);
}

.source-note {
  margin-top: 1.5rem;
  max-width: 850px;
}

.young-detail-section {
  border-bottom: 1px solid rgba(33, 28, 24, 0.08);
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.sources-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #151312;
}

.sources-box {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255, 250, 243, 0.04);
  border-color: var(--line);
  box-shadow: none;
}

.sources-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.sources-box p {
  color: var(--muted);
  max-width: 900px;
}

.source-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.source-links a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .timeline-grid,
  .detail-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .timeline-grid,
  .detail-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Hits en discografie */
.stats-grid-five {
  grid-template-columns: repeat(5, 1fr);
}

.highlight-grid,
.facts-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.compact-fact {
  display: grid;
  align-content: center;
  min-height: 150px;
}

.compact-fact strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.compact-fact span {
  color: var(--dark-muted);
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.table-wrap.light-table {
  border-color: rgba(33, 28, 24, 0.1);
  background: #fffaf3;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.discography-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.discography-table th,
.discography-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.discography-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(17, 16, 15, 0.98);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.discography-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.045);
}

.discography-table td:first-child,
.discography-table td:nth-child(3),
.discography-table td:nth-child(4),
.discography-table td:nth-child(5) {
  white-space: nowrap;
}

.light-table .discography-table th,
.light-table .discography-table td {
  border-bottom-color: rgba(33, 28, 24, 0.1);
}

.light-table .discography-table thead th {
  background: #efe2d1;
  color: var(--gold-dark);
}

.light-table .discography-table tbody tr:hover {
  background: rgba(156, 110, 33, 0.08);
}

.light-table .discography-table td {
  color: var(--dark-muted);
}

.light-table .discography-table td:nth-child(2) {
  color: var(--dark-text);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .stats-grid-five,
  .highlight-grid,
  .facts-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .stats-grid-five,
  .highlight-grid,
  .facts-card-grid {
    grid-template-columns: 1fr;
  }

  .discography-table {
    font-size: 0.9rem;
  }
}

/* Dynamische kerngegevens op de homepage */
.dynamic-stat {
  position: relative;
  overflow: hidden;
  min-height: 6.7rem;
}

.dynamic-stat::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(198, 151, 56, 0.65),
    rgba(198, 151, 56, 0)
  );
  opacity: 0.65;
}

.rotating-line {
  display: block;
  min-height: 2.8em;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  will-change: opacity, transform;
}

.rotating-line.is-changing {
  opacity: 0;
  transform: translateY(0.45rem);
}

@media (prefers-reduced-motion: reduce) {
  .rotating-line {
    transition: none;
  }
}

/* ES6 elastic text slider voor de kernkaarten op de homepage */
.elastic-stats-grid article {
  min-height: 7.6rem;
}

.elastic-stat-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.elastic-stat-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(
    circle,
    rgba(210, 162, 74, 0.16),
    transparent 68%
  );
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.45s ease,
    transform 0.75s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  z-index: -1;
}

.elastic-stat-card:hover::before,
.elastic-stat-card.is-sliding::before {
  opacity: 1;
  transform: scale(1);
}

.elastic-stat-card::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(198, 151, 56, 0.72),
    rgba(198, 151, 56, 0)
  );
  opacity: 0.65;
}

.elastic-slider {
  position: relative;
  height: 3.2rem;
  overflow: hidden;
}

.elastic-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateX(115%) scale(0.94);
  filter: blur(2px);
  transition:
    transform 0.72s cubic-bezier(0.18, 0.89, 0.32, 1.24),
    opacity 0.38s ease,
    filter 0.38s ease;
  will-change: transform, opacity, filter;
}

.elastic-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.elastic-slide.is-leaving {
  opacity: 0;
  transform: translateX(-20%) scale(0.98);
  filter: blur(2px);
}

.elastic-slide.is-entering {
  opacity: 0;
  transform: translateX(115%) scale(0.94);
}

.elastic-slider-dots {
  position: absolute;
  left: 1.35rem;
  bottom: 0.55rem;
  display: flex;
  gap: 0.32rem;
  z-index: 2;
}

.elastic-slider-dot {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition:
    width 0.42s cubic-bezier(0.18, 0.89, 0.32, 1.24),
    background 0.25s ease;
}

.elastic-slider-dot.is-active {
  width: 1rem;
  background: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .elastic-slide,
  .elastic-stat-card::before,
  .elastic-slider-dot {
    transition: none;
  }
}

/* Zichtbare ES6 slide-track voor kernkaarten */
.visible-slider-grid article {
  min-height: 8.2rem;
}

.stat-slide-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.stat-slide-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(
    circle,
    rgba(210, 162, 74, 0.16),
    transparent 68%
  );
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.45s ease,
    transform 0.75s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  z-index: -1;
}

.stat-slide-card:hover::before,
.stat-slide-card.is-sliding::before {
  opacity: 1;
  transform: scale(1);
}

.card-slider {
  position: relative;
  margin-top: 0.8rem;
  padding-bottom: 1.35rem;
}

.card-slider-window {
  overflow: hidden;
  width: 100%;
}

.card-slider-track {
  display: flex;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.78s cubic-bezier(0.17, 0.84, 0.32, 1.28);
  will-change: transform;
}

.card-slide {
  flex: 0 0 100%;
  min-width: 100%;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: normal;
  transform: scale(0.97);
  opacity: 0.82;
  transition:
    transform 0.78s cubic-bezier(0.17, 0.84, 0.32, 1.28),
    opacity 0.38s ease;
}

.stat-slide-card.is-sliding .card-slide {
  transform: scale(0.99);
  opacity: 1;
}

.card-slider-dots {
  position: absolute;
  left: 0;
  bottom: 0.08rem;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.card-slider-dot {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition:
    width 0.38s cubic-bezier(0.17, 0.84, 0.32, 1.28),
    background 0.24s ease;
}

.card-slider-dot.is-active {
  width: 1.15rem;
  background: var(--gold);
}

.card-slider-arrow {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.card-slider-arrow:hover,
.card-slider-arrow:focus-visible {
  transform: translateX(0.12rem);
  background: rgba(198, 151, 56, 0.12);
  border-color: rgba(198, 151, 56, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .card-slider-track,
  .card-slide,
  .stat-slide-card::before,
  .card-slider-dot,
  .card-slider-arrow {
    transition: none;
  }
}

/* Keen Slider-implementatie voor de kernkaarten op de homepage */
.keen-stats-grid article {
  min-height: 8.4rem;
}

.keen-stat-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 2.45rem;
}

.keen-stat-card::before {
  content: "";
  position: absolute;
  inset: -42% auto auto -22%;
  width: 10.5rem;
  height: 10.5rem;
  background: radial-gradient(
    circle,
    rgba(210, 162, 74, 0.17),
    transparent 68%
  );
  opacity: 0;
  transform: scale(0.84);
  transition:
    opacity 0.45s ease,
    transform 0.82s cubic-bezier(0.17, 0.84, 0.32, 1.28);
  z-index: -1;
}

.keen-stat-card:hover::before,
.keen-stat-card.is-sliding::before {
  opacity: 1;
  transform: scale(1.04);
}

.keen-card-slider {
  margin-top: 0.75rem;
  min-height: 3.25rem;
  overflow: hidden;
}

.keen-card-slide {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  min-height: 3.25rem;
  opacity: 0.48;
  transform: scale(0.93) translateY(0.08rem);
  filter: blur(1px);
  transition:
    opacity 0.38s ease,
    transform 0.82s cubic-bezier(0.17, 0.84, 0.32, 1.28),
    filter 0.38s ease;
}

.keen-card-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

.keen-card-slide span {
  display: block;
  max-width: 100%;
}

.keen-card-dots {
  position: absolute;
  left: 1.35rem;
  bottom: 0.85rem;
  display: flex;
  gap: 0.35rem;
  align-items: center;
  z-index: 2;
}

.keen-card-dot {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.38s cubic-bezier(0.17, 0.84, 0.32, 1.28),
    background 0.24s ease;
}

.keen-card-dot.is-active {
  width: 1.18rem;
  background: var(--gold);
}

.keen-card-next {
  position: absolute;
  right: 1.2rem;
  bottom: 0.42rem;
  width: 1.72rem;
  height: 1.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.keen-card-next:hover,
.keen-card-next:focus-visible {
  transform: translateX(0.12rem);
  background: rgba(198, 151, 56, 0.13);
  border-color: rgba(198, 151, 56, 0.52);
}

@media (prefers-reduced-motion: reduce) {
  .keen-stat-card::before,
  .keen-card-slide,
  .keen-card-dot,
  .keen-card-next {
    transition: none;
  }
}

/* ── Homepage-kaarten: basis + bediening (dots/pijl) ────────────
   Één nette definitie. De fade-overgang staat verderop bij "KAARTEN — fade". */
.auto-stat-card {
  position: relative;
  overflow: hidden;
}

.auto-card-slider {
  position: relative;
  overflow: hidden;
  min-height: 6rem;
  margin-top: 0.35rem;
  isolation: isolate;
}

.auto-card-dots {
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  z-index: 4;
  display: flex;
  gap: 0.32rem;
  transform: translateX(-50%);
}

.auto-card-dot {
  width: 0.38rem;
  height: 0.38rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.auto-card-dot.is-active {
  width: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
}

.auto-card-next {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  z-index: 4;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.auto-card-next:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 760px) {
  .auto-card-slider {
    min-height: 5.3rem;
  }
  .auto-card-next {
    right: 0.25rem;
  }
}

/* Presentatie betekenis bekroningen */
.awards-meaning-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(204, 153, 58, 0.16),
      transparent 32rem
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.015)
    );
}

.section-lead {
  max-width: 850px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.award-meaning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.award-meaning-card {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(204, 153, 58, 0.28);
  border-radius: 1.2rem;
  background: rgba(20, 20, 20, 0.72);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
}

.award-meaning-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent, #c99a3e);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-meaning-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
}

.award-meaning-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.award-meaning-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.award-meaning-card li + li {
  margin-top: 0.45rem;
}

.award-summary-note,
.award-preview-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--accent, #c99a3e);
  border-radius: 0.9rem;
  background: rgba(204, 153, 58, 0.1);
}

.award-summary-note h3,
.award-preview-box h3 {
  margin-top: 0;
}

.award-summary-note p,
.award-preview-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .award-meaning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .award-meaning-grid {
    grid-template-columns: 1fr;
  }
}

/* Aparte bekroningenpagina */
.awards-page-hero {
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(204, 153, 58, 0.22),
      transparent 24rem
    ),
    linear-gradient(135deg, rgba(15, 15, 15, 0.96), rgba(33, 27, 18, 0.92));
}

.award-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.award-timeline::before {
  content: "";
  position: absolute;
  left: 4.35rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: rgba(204, 153, 58, 0.32);
}

.award-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.2rem;
  align-items: start;
}

.award-year {
  position: relative;
  z-index: 1;
  width: 5.8rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(204, 153, 58, 0.45);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.92);
  color: var(--accent, #c99a3e);
  font-weight: 800;
  text-align: center;
}

.award-timeline-content {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.award-timeline-content h3 {
  margin: 0 0 0.25rem;
}

.award-origin {
  margin: 0 0 0.6rem;
  color: var(--accent, #c99a3e);
  font-weight: 700;
}

.awards-table td {
  vertical-align: top;
}

.source-note {
  padding-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 720px) {
  .award-timeline::before {
    left: 2.8rem;
  }

  .award-timeline-item {
    grid-template-columns: 5.5rem 1fr;
    gap: 0.8rem;
  }

  .award-year {
    width: 4.8rem;
    padding-inline: 0.45rem;
  }
}

/* NAV FIX — één horizontale navigatiebalk */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
}

.site-header .brand {
  flex: 0 0 auto;
}

.site-header .site-nav {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  width: auto;
  margin: 0;
}

.site-header .site-nav a {
  white-space: nowrap;
}

@media (min-width: 901px) {
  .site-header .nav-toggle {
    display: none;
  }

  .site-header .site-nav {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-header .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
  }

  .site-header .site-nav.open {
    display: flex;
  }
}

/* CONSISTENTE HEADER — definitieve override */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 2rem !important;
  width: 100% !important;
  padding: 1.1rem clamp(1.25rem, 4vw, 4rem) !important;
  box-sizing: border-box !important;
  background: rgba(7, 7, 7, 0.94) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  flex: 0 0 auto !important;
  text-decoration: none !important;
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.site-header .brand-mark {
  display: inline-grid !important;
  place-items: center !important;
  width: 3.1rem !important;
  height: 3.1rem !important;
  border-radius: 999px !important;
  background: var(--accent, #d2a647) !important;
  color: #111 !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
}

.site-header .site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 0 1 auto !important;
  gap: 0.35rem !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header .site-nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 2.75rem !important;
  padding: 0.65rem 1.05rem !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  font-weight: 650 !important;
  line-height: 1 !important;
}

.site-header .site-nav a:hover,
.site-header .site-nav a[aria-current="page"] {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.09) !important;
}

.site-header .nav-toggle {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    padding: 0.7rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
  }

  .site-header .site-nav {
    display: none !important;
    flex: 1 0 100% !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.35rem !important;
    padding-top: 0.75rem !important;
  }

  .site-header .site-nav.open {
    display: flex !important;
  }

  .site-header .site-nav a {
    justify-content: flex-start !important;
    width: 100% !important;
  }
}

@media (max-width: 560px) {
  .site-header .brand span:last-child {
    font-size: 0.92rem !important;
  }

  .site-header .brand-mark {
    width: 2.65rem !important;
    height: 2.65rem !important;
  }
}

/* HARD HEADER FIX — verwijdert visuele dubbele header-effecten */
body {
  padding-top: 0 !important;
}

.site-header + .site-header,
.site-header ~ .site-header {
  display: none !important;
}

.site-header {
  min-height: 76px !important;
  height: auto !important;
}

.video-hero,
.page-hero {
  margin-top: 0 !important;
}

/* Oude header-/menubalkklassen die per ongeluk zichtbaar konden blijven */
.header-inner,
.top-header,
.main-header,
.menu-row,
.nav-row,
.legacy-header,
.old-header {
  display: none !important;
}

/* HERO REPOSITION FIX — tekst niet over het gezicht */
.hero-background-video {
  object-position: 72% center;
}

.hero-video-scrim {
  background:
    radial-gradient(
      circle at 18% 32%,
      rgba(210, 162, 74, 0.18),
      transparent 24rem
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.74) 32%,
      rgba(0, 0, 0, 0.28) 56%,
      rgba(0, 0, 0, 0.48) 100%
    );
}

.hero-video-content {
  max-width: 960px;
  margin-left: clamp(0rem, 3vw, 2.5rem);
  padding: 0.5rem 1.4rem 1.25rem 0;
}

.hero-video-content h1,
.hero-video-content .landing-caption,
.hero-video-content .hero-actions {
  max-width: 34rem;
}

.hero-video-content .lead {
  max-width: min(56rem, calc(100vw - 4rem));
}

.hero-video-content .lead {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.5;
}

@media (min-width: 1100px) {
  .hero-video-content {
    transform: translateY(0.75rem);
  }
}

@media (max-width: 900px) {
  .hero-background-video {
    object-position: 64% center;
  }

  .hero-video-content {
    max-width: 100%;
    margin-left: 0;
    padding-right: 0;
    transform: none;
  }
}

/* Biografie als aparte pagina */
.biography-page-hero {
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(210, 162, 74, 0.2),
      transparent 26rem
    ),
    linear-gradient(135deg, rgba(10, 10, 10, 0.96), rgba(31, 25, 19, 0.92));
}

#biografie-samenvatting .summary-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

#biografie-samenvatting .summary-list li + li {
  margin-top: 0.55rem;
}

/* Ruimte voor extra menu-item Biografie */
@media (min-width: 981px) {
  .site-header .site-nav a {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }
}

/* BACKGROUND VIDEO — zachte oneindige loop via dubbele crossfade */
.hero-video-loop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
}

.hero-video-loop .hero-background-video,
.hero-loop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  background: #050505;
  transition: opacity 1150ms ease-in-out;
}

.hero-loop-video.is-active {
  opacity: 0.6;
}

.hero-loop-video.is-fading-out {
  opacity: 0;
}

@media (max-width: 900px) {
  .hero-video-loop .hero-background-video,
  .hero-loop-video {
    object-position: 64% center;
  }
}

/* ── KAARTEN — fade in / fade out ──────────────────────────
   Alle slides liggen gestapeld (absolute). Alleen de actieve slide is
   zichtbaar (opacity 1); de rest is transparant. Bij een wissel kruist
   de oude uit terwijl de nieuwe in fade-t.                            */
.auto-card-track {
  position: relative;
  display: block;
  width: 100%;
  min-height: inherit;
  transform: none;
  transition: none;
}

.auto-card-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem 0.8rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease-in-out;
}

.auto-card-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Specials met achtergrondbeeld: zelfde fade + trage zoom (Ken Burns). */
.auto-card-slider:has(.special-slide) {
  min-height: 9.4rem;
}

.special-slide.has-bg {
  position: absolute;
  inset: 0;
  display: block;
  min-height: 100%;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  transition:
    opacity 1s ease-in-out,
    transform 6s ease-out;
}

.special-slide.has-bg.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.special-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
    radial-gradient(
      circle at 50% 25%,
      rgba(210, 162, 74, 0.16),
      transparent 18rem
    );
}

.special-slide-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 1rem 0.95rem 1.1rem;
  text-align: left;
}

.special-slide-content span {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0.18rem 0.85rem rgba(0, 0, 0, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  /* Een zachte opacity-fade blijft toegestaan; alleen de zoom (beweging) gaat uit. */
  .special-slide.has-bg {
    transition: opacity 0.6s ease-in-out;
    transform: none;
  }
  .special-slide.has-bg.is-active {
    transform: none;
  }
}

/* Albumoverzicht: aparte wekenkolom */
.discography-table th.chart-peak,
.discography-table td.chart-peak,
.discography-table th.chart-weeks,
.discography-table td.chart-weeks {
  white-space: nowrap;
  text-align: center;
}

.discography-table td.chart-weeks {
  font-variant-numeric: tabular-nums;
}

/* Albumoverzicht: bekroningkolom */
.discography-table th.award-col,
.discography-table td.award-col {
  min-width: 11rem;
}

.discography-table td.award-col {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.light-table .discography-table td.award-col {
  color: #2a2118;
}

/* Single-overzicht: Top 40-only tabel */
.discography-table th.alias-col,
.discography-table td.alias-col,
.discography-table th.single-peak,
.discography-table td.single-peak,
.discography-table th.single-weeks,
.discography-table td.single-weeks {
  white-space: nowrap;
}

.discography-table th.single-peak,
.discography-table td.single-peak,
.discography-table th.single-weeks,
.discography-table td.single-weeks {
  text-align: center;
}

.discography-table td.single-weeks,
.discography-table td.single-peak {
  font-variant-numeric: tabular-nums;
}

.discography-table td.recognition-col {
  min-width: 13rem;
}

/* Singles: artiestennaamkolom */
.light-table .discography-table td.alias-col {
  font-weight: 700;
}

/* Single-overzicht: alleen bekroning */
.discography-table th.single-award,
.discography-table td.single-award {
  min-width: 11rem;
}

.discography-table td.single-award {
  font-weight: 700;
}

.light-table .discography-table td.single-award {
  color: #2a2118;
}

/* Tabellen: subtiele lege waardes */
.discography-table .empty-marker {
  display: inline-block;
  font-size: 0.72em;
  line-height: 1;
  opacity: 0.42;
  font-weight: 500;
  transform: translateY(-0.03em);
}

.light-table .discography-table .empty-marker {
  opacity: 0.38;
}

/* Jongere jaren: hero als landingspagina */
.young-slider-hero.ken-burns-viewport {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 7rem 0 5rem;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.young-slider-hero.ken-burns-viewport picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  z-index: 0;
}

.young-slider-hero.ken-burns-viewport img.ken-burns-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center 30%;
  animation: portraitZoomOutOnce 7s cubic-bezier(0.22, 0.61, 0.36, 1) 1 forwards;
  will-change: transform;
}

.young-slider-hero.ken-burns-viewport::after {
  z-index: 1;
  height: auto;
  background:
    radial-gradient(
      circle at 18% 34%,
      rgba(210, 162, 74, 0.2),
      transparent 28rem
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.52) 45%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.03) 42%,
      rgba(0, 0, 0, 0.52)
    );
}

.young-slider-hero.ken-burns-viewport .hero-particles {
  z-index: 2;
}

.young-hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
}

.young-hero-content .lead {
  max-width: 760px;
}

.young-copy-column h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

@keyframes portraitZoomOutOnce {
  from {
    transform: scale(1.16);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 760px) {
  .young-slider-hero.ken-burns-viewport {
    min-height: 88svh;
    padding: 6rem 0 4rem;
  }

  .young-slider-hero.ken-burns-viewport picture,
  .young-slider-hero.ken-burns-viewport img.ken-burns-image {
    min-height: 88svh;
  }

  .young-slider-hero.ken-burns-viewport img.ken-burns-image {
    object-position: center 26%;
  }

  .young-hero-content {
    max-width: 100%;
  }

  @keyframes portraitZoomOutOnce {
    from {
      transform: scale(1.16);
    }
    to {
      transform: scale(1);
    }
  }
}

/* Jongere jaren: herhalende fade-morph titel */
.morph-title-loop {
  display: block;
  max-width: min(100%, 860px);
  min-height: clamp(3.2rem, 10vw, 7rem);
  margin-bottom: 1rem;
}

.morph-phrase {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 9.2vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 900;
  color: #fff;
  text-wrap: balance;
  opacity: 1;
  transform: translateY(0);
  transform-origin: left center;
  will-change: opacity, transform;
}

.morph-phrase.is-fading-out {
  animation: morphPhraseFadeOut 1.05s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.morph-phrase.is-fading-in {
  animation: morphPhraseFadeIn 1.25s cubic-bezier(0.18, 0.76, 0.18, 1) forwards;
}

@keyframes morphPhraseFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-0.12em);
  }
}

@keyframes morphPhraseFadeIn {
  0% {
    opacity: 0;
    transform: translateY(0.14em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .morph-title-loop {
    min-height: clamp(3.1rem, 15vw, 5.1rem);
  }

  .morph-phrase {
    font-size: clamp(3rem, 14.5vw, 5rem);
    letter-spacing: -0.048em;
  }
}

/* Landingspagina: eenmalige morph-titel */
.landing-morph-title {
  max-width: min(100%, 920px);
}

.landing-morph-text {
  display: inline-block;
  max-width: 100%;
  text-wrap: balance;
  will-change: opacity, transform;
}

.landing-morph-text.is-fading-out {
  animation: landingMorphFadeOut 0.95s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.landing-morph-text.is-fading-in {
  animation: landingMorphFadeIn 1.15s cubic-bezier(0.18, 0.76, 0.18, 1) forwards;
}

@keyframes landingMorphFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-0.1em);
  }
}

@keyframes landingMorphFadeIn {
  0% {
    opacity: 0;
    transform: translateY(0.12em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Jongere jaren: formatiesectie in lijn met landing/hits */
.young-formation-section {
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(210, 162, 74, 0.13),
      transparent 26rem
    ),
    linear-gradient(145deg, rgba(17, 16, 15, 0.96), rgba(35, 27, 22, 0.9));
}

.young-formation-layout {
  align-items: center;
}

.young-formation-copy {
  max-width: 760px;
}

.young-formation-copy .lead {
  margin-bottom: 1.2rem;
}

.young-formation-copy p:not(.eyebrow):not(.lead) {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.young-formation-copy strong {
  color: var(--text);
  font-weight: 800;
}

.young-formation-card {
  position: relative;
  min-height: clamp(420px, 52vw, 620px);
}

.young-formation-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 32%;
}

.young-formation-card figcaption {
  padding: 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .young-formation-layout {
    grid-template-columns: 1fr;
  }

  .young-formation-card {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .young-formation-card {
    min-height: 420px;
  }
}

/* Jongere jaren: gelijke Spotify-kaarten */
.young-spotify-grid.equal-music-cards {
  align-items: stretch;
}

.young-spotify-grid.equal-music-cards .music-overlay-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.young-spotify-grid.equal-music-cards .music-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  flex: 0 0 auto;
}

.young-spotify-grid.equal-music-cards .music-overlay {
  aspect-ratio: 1 / 1;
}

.young-spotify-grid.equal-music-cards .music-overlay iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
}

.young-spotify-grid.equal-music-cards .music-card-caption {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 8.4rem;
}

.young-spotify-grid.equal-music-cards .music-card-caption h3 {
  min-height: 2.9rem;
  display: flex;
  align-items: flex-start;
}

.young-spotify-grid.equal-music-cards .music-card-caption p {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .young-spotify-grid.equal-music-cards .music-card-caption,
  .young-spotify-grid.equal-music-cards .music-card-caption h3 {
    min-height: 0;
  }
}

/* Jongere jaren: Spotify-overlay volledig naar beneden */
.young-spotify-grid.spotify-full-overlay .music-overlay-card {
  position: relative;
  overflow: hidden;
}

.young-spotify-grid.spotify-full-overlay .music-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  min-height: 100%;
  background: #121212;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.young-spotify-grid.spotify-full-overlay .music-overlay iframe {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 100%;
  border: 0;
  background: #121212;
}

.young-spotify-grid.spotify-full-overlay .music-card-caption {
  position: relative;
  z-index: 2;
}

/* Op touch/mobiel blijft de player onder de kaart bruikbaar, niet als volledige overlay. */
@media (hover: none) {
  .young-spotify-grid.spotify-full-overlay .music-overlay {
    position: static;
    inset: auto;
    height: 352px;
    min-height: 352px;
    aspect-ratio: auto;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .young-spotify-grid.spotify-full-overlay .music-overlay iframe {
    height: 352px !important;
    min-height: 352px;
  }
}

/* Apple embed heeft intern soms lichte marge/scroll; dit voorkomt visueel scheef vallen buiten de kaart. */
.apple-music-grid .music-overlay,
.apple-music-grid .music-overlay iframe {
  transform: translateZ(0);
}

/* Op mobiel blijft de player onder de hoes zichtbaar en netjes uitgelijnd. */
@media (hover: none) {
  .apple-music-grid .music-overlay {
    position: static;
    aspect-ratio: auto;
    height: 450px;
    border-radius: 0;
  }

  .apple-music-grid .music-overlay iframe {
    height: 450px !important;
    min-height: 450px;
  }
}

/* Muziekpagina: Apple Music witte rand fix */
.music-grid .music-overlay-card {
  overflow: hidden;
}

.music-grid .music-overlay {
  overflow: hidden;
  background: #111;
}

.music-grid .music-overlay iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: 0;
  background: #111;
}

/* Alleen Apple Music-embeds: iets naar binnen clippen tegen witte iframe-rand, zonder hover/dropdown te wijzigen. */
.music-grid .music-overlay iframe[src*="embed.music.apple.com"] {
  width: calc(100% + 2px);
  max-width: calc(100% + 2px);
  margin-left: -1px;
  margin-right: -1px;
}

/* Muziekpagina: kaarten zonder titels */
.music-grid-image-only .music-overlay-card {
  overflow: hidden;
}

.music-grid-image-only .music-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.music-grid-image-only .music-card-caption {
  display: none;
}

/* Uniforme footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: block;
  max-width: 900px;
}

.footer-brand {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.1;
  color: var(--color-text, #fff);
}

.footer-copyright {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  opacity: 0.88;
}

.footer-legal {
  margin-top: 0.75rem;
  max-width: 780px;
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0.68;
}

@media (max-width: 720px) {
  .footer-grid {
    display: block;
    max-width: 900px;
  }
}

/* Footer: klein, verhoogd ®-teken + webadres + disclaimer */
.reg {
  font-size: 0.6em;
  vertical-align: 0.42em;
  line-height: 0;
  letter-spacing: 0;
  font-weight: 400;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 1.1rem;
  margin-bottom: 0.1rem;
}
.footer-top .footer-brand {
  margin-bottom: 0;
}
.footer-site {
  margin: 0;
  font-size: 0.95rem;
}
.footer-site a {
  color: var(--gold, #d2a24a);
  text-decoration: none;
}
.footer-site a:hover,
.footer-site a:focus-visible {
  text-decoration: underline;
}
.footer-disclaimer {
  margin-top: 0.55rem;
  max-width: 780px;
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.5;
}

/* Videopagina */
.video-page-hero {
  background:
    linear-gradient(
      90deg,
      rgba(11, 10, 9, 0.94),
      rgba(11, 10, 9, 0.76) 48%,
      rgba(11, 10, 9, 0.58)
    ),
    url("../img/video-asian-dreams.webp") center right / cover no-repeat;
}

.video-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.video-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg, 1.25rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft, 0 24px 70px rgba(0, 0, 0, 0.25));
}

.video-feature-media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #0d0c0b;
}

.video-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition:
    transform 500ms ease,
    opacity 500ms ease;
}

.video-feature-media:hover img,
.video-feature-media:focus-visible img {
  transform: scale(1.045);
  opacity: 0.82;
}

.video-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.video-feature-body {
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.video-feature-body h2 {
  margin-top: 0.2rem;
}

.video-table a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 820px) {
  .video-feature-card {
    grid-template-columns: 1fr;
  }

  .video-feature-media img {
    min-height: 240px;
  }
}

/* Hits: JS-tijdlijn uit discografietabellen */
.hit-timeline-strip {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.hit-timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.hit-timeline-card,
.pinned-hit-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg, 1.25rem);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft, 0 24px 70px rgba(0, 0, 0, 0.25));
}

.hit-timeline-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  min-height: 310px;
}

.hit-timeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(220, 176, 75, 0.16),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 52%);
  pointer-events: none;
}

.hit-timeline-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
}

.hit-timeline-head h2 {
  margin: 0.15rem 0 0;
}

.hit-timeline-year {
  display: block;
  min-width: 4.2ch;
  color: var(--color-gold, #dcb04b);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.hit-timeline-track {
  position: relative;
  z-index: 1;
  height: 0.42rem;
  margin: clamp(1.5rem, 4vw, 2.6rem) 0 clamp(1.2rem, 3vw, 2rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hit-timeline-progress {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(220, 176, 75, 1),
    rgba(246, 220, 137, 0.9)
  );
  box-shadow: 0 0 32px rgba(220, 176, 75, 0.22);
  transition: width 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hit-timeline-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hit-timeline-copy p {
  margin: 0.55rem 0 0;
}

.hit-timeline-copy p:first-child {
  color: var(--color-text, #fff);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.pinned-hit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.9rem, 2vw, 1.15rem);
}

.pinned-hit-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.3vw, 1.45rem);
  min-height: 145px;
}

.pinned-hit-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(220, 176, 75, 0.9),
    rgba(220, 176, 75, 0.1)
  );
}

.pinned-hit-card strong {
  display: block;
  color: var(--color-gold, #dcb04b);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
  margin: 0.1rem 0 0.55rem;
}

.pinned-hit-card h3 {
  margin: 0 0 0.35rem;
}

.pinned-hit-card p:last-child {
  margin-bottom: 0;
}

.hit-timeline-card,
.pinned-hit-card {
  transform: translateY(14px);
  opacity: 0;
  transition:
    transform 700ms ease,
    opacity 700ms ease,
    border-color 500ms ease;
}

.hit-timeline-layout.is-visible .hit-timeline-card,
.hit-timeline-layout.is-visible .pinned-hit-card {
  transform: translateY(0);
  opacity: 1;
}

.hit-timeline-layout.is-visible .pinned-hit-card:nth-child(2) {
  transition-delay: 100ms;
}
.hit-timeline-layout.is-visible .pinned-hit-card:nth-child(3) {
  transition-delay: 200ms;
}

.hit-timeline-layout.is-finished .pinned-hit-card {
  border-color: rgba(220, 176, 75, 0.38);
}

.pinned-hit-card.is-highlighted {
  border-color: rgba(220, 176, 75, 0.55);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(220, 176, 75, 0.11) inset;
}

@media (max-width: 980px) {
  .hit-timeline-layout {
    grid-template-columns: 1fr;
  }

  .pinned-hit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hit-timeline-head {
    flex-direction: column;
  }

  .hit-timeline-year {
    text-align: left;
  }

  .pinned-hit-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hit-timeline-card,
  .pinned-hit-card {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .hit-timeline-progress {
    transition: none;
  }
}

/* Inline dashboard fix */
.hit-timeline-layout.is-visible .hit-timeline-card,
.hit-timeline-layout.is-visible .pinned-hit-card {
  opacity: 1;
  transform: translateY(0);
}

.pinned-hit-card.is-highlighted {
  border-color: rgba(220, 176, 75, 0.55);
}

/* Tijdlijn halve seconde iteratie */
.hit-timeline-card.is-ticking {
  border-color: rgba(220, 176, 75, 0.42);
}

.hit-timeline-copy {
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

/* Canvas discografie-tijdlijn */
.canvas-timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.canvas-timeline-card,
.pinned-hit-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg, 1.25rem);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft, 0 24px 70px rgba(0, 0, 0, 0.25));
}

.canvas-timeline-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.canvas-timeline-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.canvas-timeline-head h2 {
  margin: 0.2rem 0 0.35rem;
}

.canvas-timeline-head p:last-child {
  margin-bottom: 0;
  max-width: 720px;
}

.canvas-timeline-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  font-size: 0.9rem;
  opacity: 0.88;
}

.canvas-timeline-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.legend-dot {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
}

.legend-single {
  background: rgba(220, 176, 75, 0.95);
}

.legend-album {
  background: rgba(255, 255, 255, 0.88);
}

.canvas-timeline-wrap {
  position: relative;
  border-radius: calc(var(--radius-lg, 1.25rem) * 0.75);
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(220, 176, 75, 0.1),
      transparent 36%
    ),
    rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.canvas-timeline-wrap canvas {
  display: block;
  width: 100%;
  min-height: 620px;
}

.canvas-tooltip {
  position: absolute;
  z-index: 4;
  width: max-content;
  max-width: 240px;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(12, 11, 10, 0.94);
  border: 1px solid rgba(220, 176, 75, 0.3);
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.35;
  pointer-events: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.canvas-timeline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.canvas-timeline-status {
  font-size: 0.9rem;
  opacity: 0.74;
}

.canvas-timeline-layout.is-visible .canvas-timeline-card,
.canvas-timeline-layout.is-visible .pinned-hit-card {
  opacity: 1;
  transform: translateY(0);
}

.pinned-hit-card.is-highlighted {
  border-color: rgba(220, 176, 75, 0.52);
}

@media (max-width: 980px) {
  .canvas-timeline-layout {
    grid-template-columns: 1fr;
  }

  .pinned-hit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .canvas-timeline-head {
    flex-direction: column;
  }

  .canvas-timeline-legend {
    justify-content: flex-start;
  }

  .pinned-hit-grid {
    grid-template-columns: 1fr;
  }

  .canvas-timeline-wrap canvas {
    min-height: 680px;
  }
}

/* Canvas tijdlijn zoomvenster */
.canvas-timeline-actions .button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.canvas-timeline-wrap canvas {
  min-height: 1060px;
}

@media (max-width: 720px) {
  .canvas-timeline-wrap canvas {
    min-height: 1120px;
  }
}

/* Canvas autoscroll tijdlijn */
.canvas-timeline-card {
  min-height: 1220px;
}

.canvas-timeline-wrap canvas {
  min-height: 1060px;
}

.canvas-timeline-status {
  min-width: min(100%, 24rem);
}

@media (max-width: 720px) {
  .canvas-timeline-card {
    min-height: 1280px;
  }

  .canvas-timeline-wrap canvas {
    min-height: 1120px;
  }
}

/* Canvas vloeiende scroll */
.canvas-timeline-wrap {
  position: relative;
}

.canvas-timeline-wrap::before,
.canvas-timeline-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  height: 90px;
}

.canvas-timeline-wrap::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 10, 9, 0.94),
    rgba(11, 10, 9, 0)
  );
}

.canvas-timeline-wrap::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(11, 10, 9, 0.94),
    rgba(11, 10, 9, 0)
  );
}

.canvas-timeline-card {
  min-height: 1220px;
}

.canvas-timeline-wrap canvas {
  min-height: 1060px;
}

@media (max-width: 720px) {
  .canvas-timeline-card {
    min-height: 1280px;
  }

  .canvas-timeline-wrap canvas {
    min-height: 1120px;
  }
}

/* Canvas tijdlijn: brede lage viewport met groter fadevenster */
.hit-timeline-strip:has(.canvas-timeline-layout-wide) {
  padding-left: 0;
  padding-right: 0;
}

.canvas-timeline-layout-wide {
  width: min(100%, 1680px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.canvas-timeline-layout-wide .canvas-timeline-card {
  min-height: auto;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.canvas-timeline-layout-wide .canvas-timeline-wrap {
  min-height: 0;
}

.canvas-timeline-layout-wide .canvas-timeline-wrap canvas {
  min-height: 620px;
  max-height: 820px;
}

.canvas-timeline-layout-wide .pinned-hit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.canvas-timeline-wrap::before,
.canvas-timeline-wrap::after {
  height: 180px;
}

.canvas-timeline-wrap::before {
  background: linear-gradient(
    to bottom,
    rgba(11, 10, 9, 0.98),
    rgba(11, 10, 9, 0.72) 34%,
    rgba(11, 10, 9, 0)
  );
}

.canvas-timeline-wrap::after {
  background: linear-gradient(
    to top,
    rgba(11, 10, 9, 0.98),
    rgba(11, 10, 9, 0.72) 34%,
    rgba(11, 10, 9, 0)
  );
}

@media (max-width: 900px) {
  .canvas-timeline-layout-wide .pinned-hit-grid {
    grid-template-columns: 1fr;
  }

  .canvas-timeline-layout-wide .canvas-timeline-wrap canvas {
    min-height: 680px;
    max-height: 780px;
  }
}

/* Canvas impact-lijnen */
.canvas-timeline-status {
  max-width: 52rem;
}

/* Canvas lijn-groei en glow */
.canvas-timeline-wrap {
  isolation: isolate;
}

/* Canvas muiswiel-scroll */
.canvas-timeline-wrap canvas {
  cursor: ns-resize;
}

.canvas-timeline-wrap:hover {
  outline: 1px solid rgba(220, 176, 75, 0.22);
  outline-offset: -1px;
}

/* Canvas timeline: jaarlabels terug, top counter weg, alleen top fade */
.canvas-timeline-layout-wide .canvas-timeline-card,
.canvas-timeline-card {
  min-height: auto;
}

.canvas-timeline-layout-wide .canvas-timeline-wrap canvas,
.canvas-timeline-wrap canvas {
  min-height: 420px;
  max-height: 560px;
}

.canvas-timeline-wrap::before,
.canvas-timeline-wrap::after {
  pointer-events: none;
}

.canvas-timeline-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(11, 10, 9, 0.96),
    rgba(11, 10, 9, 0.55) 42%,
    rgba(11, 10, 9, 0)
  );
  z-index: 2;
}

.canvas-timeline-wrap::after {
  content: none;
}

@media (max-width: 720px) {
  .canvas-timeline-layout-wide .canvas-timeline-wrap canvas,
  .canvas-timeline-wrap canvas {
    min-height: 440px;
    max-height: 580px;
  }
}

/* Canvas timeline: marker and delayed reveals */
.canvas-timeline-layout-wide .canvas-timeline-wrap canvas,
.canvas-timeline-wrap canvas {
  min-height: 360px;
  max-height: 500px;
}

.canvas-timeline-wrap::before,
.canvas-timeline-wrap::after {
  pointer-events: none;
}

.canvas-timeline-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(11, 10, 9, 0.96),
    rgba(11, 10, 9, 0.55) 42%,
    rgba(11, 10, 9, 0)
  );
  z-index: 2;
}

.canvas-timeline-wrap::after {
  content: none;
}

@media (max-width: 720px) {
  .canvas-timeline-layout-wide .canvas-timeline-wrap canvas,
  .canvas-timeline-wrap canvas {
    min-height: 390px;
    max-height: 520px;
  }
}

/* Homepage hitlijsten-preview: compact premium paneel */
#hitlijsten-preview .split-section {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}

#hitlijsten-preview .split-section > div:first-child {
  max-width: 760px;
}

.feature-stat-list {
  display: grid;
  gap: 0.72rem;
  align-self: center;
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(156, 110, 33, 0.1), transparent 34%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.38)
    );
  border: 1px solid rgba(33, 28, 24, 0.085);
  box-shadow: 0 24px 62px rgba(33, 28, 24, 0.105);
}

.feature-stat-panel-head {
  padding: 0.25rem 0.35rem 0.6rem;
}

.feature-stat-panel-head .eyebrow {
  margin: 0 0 0.25rem;
}

.feature-stat-panel-head h3 {
  margin: 0;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  letter-spacing: -0.025em;
}

.feature-stat {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(0.9rem, 1.5vw, 1.2rem);
  align-items: center;
  min-height: 74px;
  padding: 0.82rem 0.98rem;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(33, 28, 24, 0.07);
}

.feature-stat strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 16px;
  background: rgba(156, 110, 33, 0.09);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.55vw, 2.45rem);
  line-height: 1;
  color: var(--gold-dark);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.feature-stat-word strong {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-stat span {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
  color: var(--dark-text);
  font-weight: 850;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.22;
}

.feature-stat em {
  font-style: normal;
}

.feature-stat small {
  color: var(--dark-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  #hitlijsten-preview .split-section {
    grid-template-columns: 1fr;
  }

  .feature-stat-list {
    max-width: 720px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .feature-stat-list {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .feature-stat {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 68px;
    padding: 0.75rem;
  }

  .feature-stat strong {
    min-height: 44px;
    font-size: 1.75rem;
  }

  .feature-stat-word strong {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }
}

/* Homepage legacy-blok: externe archieflinks naar Beeld & Geluid */
.legacy-section {
  align-items: center;
}

.legacy-link-panel {
  padding: clamp(1.25rem, 2.6vw, 1.8rem);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 22% 0%,
      rgba(156, 110, 33, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.34)
    );
  border: 1px solid rgba(33, 28, 24, 0.08);
  box-shadow: 0 26px 70px rgba(33, 28, 24, 0.12);
}

.legacy-link-panel h3 {
  margin: 0.15rem 0 0.55rem;
  color: var(--dark-text);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.legacy-link-panel p:not(.eyebrow) {
  margin: 0 0 1.15rem;
  color: var(--dark-muted);
}

.legacy-link-list {
  display: grid;
  gap: 0.75rem;
}

.legacy-link-list a {
  position: relative;
  display: grid;
  gap: 0.22rem;
  padding: 1rem 3rem 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid rgba(33, 28, 24, 0.075);
  color: var(--dark-text);
  box-shadow: 0 12px 28px rgba(33, 28, 24, 0.07);
}

.legacy-link-list a::after {
  content: "↗";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(156, 110, 33, 0.12);
  color: var(--gold-dark);
  font-weight: 900;
}

.legacy-link-list a:hover {
  transform: translateY(-1px);
  border-color: rgba(156, 110, 33, 0.26);
}

.legacy-link-list strong {
  font-size: 1rem;
  line-height: 1.2;
}

.legacy-link-list span {
  color: var(--dark-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .legacy-link-list a {
    padding-right: 2.6rem;
  }
}

/* Homepage context-kaarten: strakker en rustiger */
.canvas-timeline-head-minimal {
  margin-bottom: 0.65rem;
}

.canvas-timeline-head-minimal .eyebrow {
  margin-bottom: 0;
}

.facts-card-grid .compact-fact {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 1.35rem 1.35rem 1.25rem;
  align-content: start;
  border-color: rgba(156, 110, 33, 0.18);
  background: linear-gradient(145deg, #fffaf3 0%, #f4ecdf 100%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.facts-card-grid .compact-fact::before {
  content: none;
  display: none;
}

.facts-card-grid .compact-fact strong {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.facts-card-grid .compact-fact span {
  display: block;
  max-width: 28ch;
  color: var(--dark-muted);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 650;
}

@media (max-width: 720px) {
  .facts-card-grid .compact-fact {
    min-height: 0;
  }
}

/* Video-overzicht: leesbare tabel op lichte achtergrond */
.video-overview-wrap .video-table {
  min-width: 720px;
}
.video-overview-wrap .video-table td,
.video-overview-wrap .video-table th {
  padding-block: 1rem;
}
.video-overview-wrap .video-table td:first-child {
  color: var(--gold-dark);
  font-weight: 800;
}
.video-overview-wrap .video-table td:nth-child(2) {
  font-weight: 800;
}
.video-overview-wrap .video-table a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

/* Footer — sober en professioneel */
.site-footer {
  padding: clamp(1.6rem, 3vw, 2.35rem) 0;
  background: #080808;
  border-top: 1px solid rgba(245, 241, 232, 0.14);
  color: rgba(245, 241, 232, 0.72);
}

.site-footer .footer-grid {
  display: grid;
  gap: 0.58rem;
  max-width: 1120px;
}

.site-footer .footer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.18rem;
  padding-bottom: 0.72rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.14);
}

.site-footer .footer-brand {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: inherit;
}

.site-footer .footer-site {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
}

.site-footer .footer-site a {
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-site a:hover,
.site-footer .footer-site a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: inherit;
}

.site-footer .footer-meta p,
.site-footer .footer-legal,
.site-footer .footer-disclaimer {
  margin: 0;
}

.site-footer .footer-legal,
.site-footer .footer-disclaimer {
  max-width: 1080px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: inherit;
}

@media (max-width: 720px) {
  .site-footer .footer-top {
    display: grid;
    justify-content: start;
    gap: 0.35rem;
  }

  .site-footer .footer-meta {
    display: grid;
    gap: 0.2rem;
  }
}

/* Footer — strakker, één kleur, hooguit twee tekstgroottes */
.site-footer {
  padding: clamp(1.45rem, 2.6vw, 2rem) 0;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 241, 232, 0.78);
}

.site-footer .footer-grid {
  display: grid;
  gap: 0.55rem;
  max-width: 1120px;
}

.site-footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-brand,
.site-footer .footer-site,
.site-footer .footer-site a {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: none;
  color: inherit;
  text-decoration: none;
}

.site-footer .footer-site {
  letter-spacing: 0.05em;
}

.site-footer .footer-site a:hover,
.site-footer .footer-site a:focus-visible {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.site-footer .footer-meta,
.site-footer .footer-meta p,
.site-footer .footer-legal,
.site-footer .footer-disclaimer {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
}

.site-footer .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1rem;
}

.site-footer .footer-legal,
.site-footer .footer-disclaimer {
  max-width: 1080px;
}

@media (max-width: 720px) {
  .site-footer .footer-top {
    display: grid;
    justify-content: start;
    gap: 0.3rem;
  }

  .site-footer .footer-meta {
    display: grid;
    gap: 0.2rem;
  }
}

/* Jongere jaren: 4 kaarten gelijk aan Muziek -> 450x450 vierkant, caption als overlay */
.young-spotify-grid.equal-music-cards.spotify-full-overlay .music-overlay-card {
  position: relative;
  display: block;
  height: auto;
  overflow: hidden;
}
.young-spotify-grid.equal-music-cards.spotify-full-overlay .music-cover {
  width: 100%;
  aspect-ratio: 1 / 1; /* zelfde vierkant als muziek (450 x 450) */
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.young-spotify-grid.equal-music-cards.spotify-full-overlay .music-card-caption {
  position: absolute; /* caption telt niet meer mee in de hoogte */
  inset: auto 0 0 0;
  z-index: 3;
  min-height: 0;
  padding: 2.6rem 1.1rem 1.05rem;
  background: linear-gradient(
    to top,
    rgba(8, 7, 6, 0.94),
    rgba(8, 7, 6, 0.68) 58%,
    rgba(8, 7, 6, 0)
  );
  pointer-events: none; /* hover gaat door naar de kaart -> Spotify-overlay verschijnt */
}
.young-spotify-grid.equal-music-cards.spotify-full-overlay
  .music-card-caption
  h3 {
  min-height: 0;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}
.young-spotify-grid.equal-music-cards.spotify-full-overlay
  .music-card-caption
  p {
  color: var(--text);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

/* Footer in kaart-stijl: donker paneel, rand, ronding en gouden streepje onderaan; geen fade, klein lettertype */
.site-footer {
  background: transparent;
  border-top: 0;
  padding: clamp(2.2rem, 4vw, 3.5rem) 0 clamp(2.6rem, 5vw, 4rem);
  color: rgba(245, 241, 232, 0.84);
}
.site-footer .footer-grid {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.6rem, 3.2vw, 2.6rem)
    clamp(1.7rem, 3.4vw, 2.8rem);
  gap: 0.5rem;
}
.site-footer .footer-top {
  border-bottom: 1px solid var(--line);
}
/* één consistente helderheid -> geen fade meer (lettertype blijft klein) */
.site-footer .footer-meta,
.site-footer .footer-meta p,
.site-footer .footer-legal,
.site-footer .footer-disclaimer {
  opacity: 1;
  color: rgba(245, 241, 232, 0.84);
}
.site-footer .footer-brand,
.site-footer .footer-site,
.site-footer .footer-site a {
  opacity: 1;
  color: rgba(245, 241, 232, 0.95);
}

/* MUZIEK-PAGINA — gebalanceerde hero-overlay voor teckel/grammofoonbeeld
   Alleen actief op de Muziek-pagina. Minder donker dan origineel,
   maar niet zo fel als de vorige correctie. */
body:has(.site-nav a[aria-current="page"][href*="muziek"]) .page-hero.hero-collage::before,
body:has(.site-nav a.active[href*="muziek"]) .page-hero.hero-collage::before,
body:has(.music-section) .page-hero.hero-collage::before,
body.music-page .page-hero.hero-collage::before,
body.muziek-page .page-hero.hero-collage::before,
.page-hero.music-hero::before {
  background:
    radial-gradient(
      circle at 18% 34%,
      rgba(210, 162, 74, 0.12),
      transparent 28rem
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.70) 0%,
      rgba(0, 0, 0, 0.48) 34%,
      rgba(0, 0, 0, 0.20) 58%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.02) 48%,
      rgba(0, 0, 0, 0.38) 100%
    ) !important;
}

body:has(.site-nav a[aria-current="page"][href*="muziek"]) .page-hero.hero-collage .page-hero-bg,
body:has(.site-nav a.active[href*="muziek"]) .page-hero.hero-collage .page-hero-bg,
body:has(.music-section) .page-hero.hero-collage .page-hero-bg,
body.music-page .page-hero.hero-collage .page-hero-bg,
body.muziek-page .page-hero.hero-collage .page-hero-bg,
.page-hero.music-hero .page-hero-bg {
  filter: brightness(1.14) contrast(1.02) saturate(1.00) !important;
}

/* Onderste fade op de Muziek-hero minder zwaar dan standaard,
   maar nog donker genoeg om de overgang naar de pagina rustig te houden. */
body:has(.site-nav a[aria-current="page"][href*="muziek"]) .page-hero::after,
body:has(.site-nav a.active[href*="muziek"]) .page-hero::after,
body:has(.music-section) .page-hero::after,
body.music-page .page-hero::after,
body.muziek-page .page-hero::after,
.page-hero.music-hero::after {
  background: linear-gradient(to bottom, transparent, rgba(17, 16, 15, 0.86)) !important;
}
