/* ==========================================================================
   Achmett Schachbrett — Website
   Design-System: Farben, Schriften, Layout, Animation
   Farben, Schriften und Logo laut Vorgabe (siehe Briefing).
   ========================================================================== */

/* ---- Schriften (lokal, aus /Barlow und /Roboto_Slab) ---- */
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/Barlow/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/Barlow/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/Barlow/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/Barlow/Barlow-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/Barlow/Barlow-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../assets/fonts/Roboto_Slab/RobotoSlab-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../assets/fonts/Roboto_Slab/RobotoSlab-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../assets/fonts/Roboto_Slab/RobotoSlab-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- Sanfter Seitenwechsel (native Cross-Document View Transition) ---- */
@view-transition {
  navigation: auto;
}

/* ---- Design-Tokens ---- */
:root {
  --c-black: #181a20;
  --c-white: #fafafa;
  --c-green: #39ff14;
  --c-pink: #ff10f0;
  --c-yellow: #dfff00;

  --bg: var(--c-black);
  --bg-raised: #202329;
  --bg-raised-2: #2a2e36;
  --text: var(--c-white);
  --text-muted: rgba(250, 250, 250, 0.62);
  --text-faint: rgba(250, 250, 250, 0.38);
  --border: rgba(250, 250, 250, 0.12);
  --border-strong: rgba(250, 250, 250, 0.24);

  --accent: var(--c-green);
  --accent-kunst: var(--c-pink);
  --accent-musik: var(--c-green);
  --accent-texte: var(--c-yellow);

  --font-head: "Barlow", sans-serif;
  --font-body: "Roboto Slab", serif;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 22px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --container: 1180px;
}

/* ---- Reset ---- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---- Eyebrow / Section-Kicker ---- */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-kunst .eyebrow,
.tag-kunst {
  color: var(--accent-kunst);
}
.section-musik .eyebrow,
.tag-musik {
  color: var(--accent-musik);
}
.section-texte .eyebrow,
.tag-texte {
  color: var(--accent-texte);
}

/* ---- Header / Navigation ---- */
#site-header {
  display: contents;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(24, 26, 32, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 150ms var(--ease-out);
}
.brand:active {
  transform: scale(0.97);
}
.brand img {
  height: 48px;
  width: auto;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-name span {
  color: var(--accent);
}

.nav-desktop {
  display: none;
}
@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
    gap: 8px;
  }
}
.nav-desktop a,
.nav-drawer a {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  transition: color 160ms var(--ease-out), background-color 160ms var(--ease-out), transform 150ms var(--ease-out);
}
.nav-desktop a:active,
.nav-drawer a:active {
  transform: scale(0.97);
}
.nav-desktop a:hover {
  color: var(--accent);
  background: rgba(57, 255, 20, 0.08);
}
.nav-desktop a[aria-current="page"] {
  color: var(--accent);
}
.nav-desktop a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  transition: transform 150ms var(--ease-out);
}
.menu-toggle:active {
  transform: scale(0.94);
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }
}

.nav-drawer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 260ms var(--ease-in-out), opacity 200ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav-drawer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  border-bottom-color: var(--border);
}
.nav-drawer > div {
  overflow: hidden;
}
.nav-drawer ul {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 18px;
}
.nav-drawer a {
  padding: 12px 4px;
  display: block;
}
@media (min-width: 860px) {
  .nav-drawer {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-drawer {
    transition: opacity 200ms ease;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  transition: transform 150ms var(--ease-out), border-color 150ms var(--ease-out), background-color 150ms var(--ease-out), color 150ms var(--ease-out);
}
.btn:active {
  transform: scale(0.96);
}
.btn-primary {
  background: var(--accent);
  color: var(--c-black);
  border-color: var(--accent);
}
.btn-primary:hover {
  filter: brightness(1.08);
}
.btn-ghost:hover {
  border-color: var(--text);
}
.btn-kunst {
  background: var(--accent-kunst);
  border-color: var(--accent-kunst);
  color: var(--c-black);
}
.btn-kunst:hover {
  filter: brightness(1.1);
}
.btn-musik {
  background: var(--accent-musik);
  border-color: var(--accent-musik);
  color: var(--c-black);
}
.btn-musik:hover {
  filter: brightness(1.1);
}
.btn-texte {
  background: var(--accent-texte);
  border-color: var(--accent-texte);
  color: var(--c-black);
}
.btn-texte:hover {
  filter: brightness(1.1);
}

/* ---- Hero ---- */
.hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p {
  max-width: 56ch;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- Hero: Text + Foto nebeneinander ---- */
.hero-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}
.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
}

/* ---- Hero: Eintritts-Animation (nur beim ersten Laden der Startseite) ---- */
.hero-layout > div:first-child > * {
  animation: hero-fade-in 500ms var(--ease-out) both;
}
.hero-layout > div:first-child > *:nth-child(1) {
  animation-delay: 0ms;
}
.hero-layout > div:first-child > *:nth-child(2) {
  animation-delay: 70ms;
}
.hero-layout > div:first-child > *:nth-child(3) {
  animation-delay: 140ms;
}
.hero-photo {
  animation: hero-fade-in 550ms var(--ease-out) 120ms both;
}
@keyframes hero-fade-in {
  from {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-fade-in {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      transform: translateY(0);
    }
  }
  .hero-photo {
    animation-name: hero-photo-in;
  }
  @keyframes hero-photo-in {
    from {
      opacity: 0;
      transform: scale(0.97);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}

/* ---- Bio auf der Startseite ---- */
.bio-home {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.bio-home h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.bio-home .bio-text p {
  max-width: 72ch;
}

/* ---- Section-Karten auf der Startseite ---- */
.teaser-grid {
  display: grid;
  gap: 20px;
  padding: 64px 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.teaser-card {
  background: var(--bg-raised);
  border: 2px solid var(--border);
  border-radius: var(--radius-l);
  padding: 32px 28px;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .teaser-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
  }
}
.teaser-card h3 {
  font-size: 26px;
  margin: 14px 0 10px;
}
.teaser-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 20px;
}
.teaser-card.card-kunst {
  border-color: rgba(255, 16, 240, 0.28);
}
.teaser-card.card-musik {
  border-color: rgba(57, 255, 20, 0.28);
}
.teaser-card.card-texte {
  border-color: rgba(223, 255, 0, 0.28);
}

/* ---- Seiten-Kopf (Kunst/Musik/Texte/Bio) ---- */
.page-head {
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.page-head h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 14px 0 16px;
  letter-spacing: -0.01em;
}
.page-head p {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 17px;
}

/* ---- Filter-Leiste (Kunst & Texte) ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 64px 0 8px;
}
.filter-chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  transition: transform 150ms var(--ease-out), color 150ms var(--ease-out), border-color 150ms var(--ease-out), background-color 150ms var(--ease-out);
}
.filter-chip:active {
  transform: scale(0.96);
}
.filter-chip[aria-pressed="true"] {
  color: var(--c-black);
  background: var(--text);
  border-color: var(--text);
}

/* ---- Kunst: Galerie ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 18px;
  padding: 24px 0 80px;
}
@media (max-width: 760px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}
.gallery-item {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out), border-color 200ms var(--ease-out);
}
.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item.size-s {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-item.size-m {
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-item.size-l {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.size-tall {
  grid-column: span 1;
  grid-row: span 2;
}
.gallery-item.size-wide {
  grid-column: span 3;
  grid-row: span 1;
}
@media (max-width: 760px) {
  .gallery-item,
  .gallery-item.size-s,
  .gallery-item.size-m,
  .gallery-item.size-l,
  .gallery-item.size-tall,
  .gallery-item.size-wide {
    grid-column: span 1;
    grid-row: span 2;
  }
}
.gallery-item button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 220ms var(--ease-out);
}
.gallery-item button:active {
  transform: scale(0.98);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img {
    transform: scale(1.045);
  }
}
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(to top, rgba(24, 26, 32, 0.88), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-caption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: none;
}
.gallery-caption span {
  font-size: 11px;
  color: var(--text-muted);
}
.gallery-empty,
.list-empty {
  color: var(--text-muted);
  padding: 40px 0;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(24, 26, 32, 0.9);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms var(--ease-out), visibility 0s linear 200ms;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 200ms var(--ease-out), visibility 0s linear 0s;
}
.lightbox-panel {
  position: relative;
  max-width: min(920px, 92vw);
  max-height: 86vh;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
}
.lightbox.is-open .lightbox-panel {
  transform: scale(1);
  opacity: 1;
}
.lightbox-panel img {
  max-height: 72vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-s);
}
.lightbox-info {
  padding: 16px 4px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.lightbox-info strong {
  font-family: var(--font-head);
  font-size: 15px;
}
.lightbox-info span {
  font-size: 13px;
  color: var(--text-muted);
}
.lightbox-desc {
  padding: 10px 4px 0;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 60ch;
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: transform 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.lightbox-close:active {
  transform: scale(0.95);
}
.lightbox-close:hover {
  border-color: var(--c-white);
}
@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-panel {
    transition: opacity 160ms ease;
    transform: none !important;
  }
}

/* ---- Musik ---- */
.music-block {
  padding-top: 0;
  padding-bottom: 56px;
}
.music-subhead {
  font-size: 20px;
  margin: 40px 0 20px;
  letter-spacing: -0.005em;
}
#videos-section .music-subhead {
  margin-top: 24px;
}
.video-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.video-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}
.video-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.video-card video,
.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  background: #000;
}
.video-card-body {
  padding: 16px 18px 20px;
}
.video-card-body strong {
  font-family: var(--font-head);
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.video-card-body span {
  font-size: 13px;
  color: var(--text-muted);
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.track {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 14px 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out), border-color 180ms var(--ease-out);
}
.track.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.track:has(.track-play[aria-pressed="true"]) {
  border-color: var(--accent-musik);
}
.track-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 150ms var(--ease-out), background-color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.track-play:active {
  transform: scale(0.92);
}
.track-play[aria-pressed="true"] {
  background: var(--accent-musik);
  border-color: var(--accent-musik);
  color: var(--c-black);
}
.track-play svg {
  width: 14px;
  height: 14px;
}
.track-meta strong {
  font-family: var(--font-head);
  font-size: 15px;
  display: block;
}
.track-meta span {
  font-size: 13px;
  color: var(--text-muted);
}
.track-time {
  font-size: 12px;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  text-align: right;
}

/* ---- Geschichten & Gedichte ---- */
.text-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0 80px;
}
.text-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--bg-raised);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out), border-color 180ms var(--ease-out);
}
.text-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.text-card[data-open="true"] {
  border-color: var(--border-strong);
}
.text-card-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
}
.text-card-title strong {
  font-family: var(--font-head);
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}
.text-card-title span {
  font-size: 13px;
  color: var(--text-muted);
}
.text-card-chevron {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 260ms var(--ease-in-out);
}
.text-card[data-open="true"] .text-card-chevron {
  transform: rotate(45deg);
}
.text-card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--ease-in-out);
}
.text-card[data-open="true"] .text-card-body {
  grid-template-rows: 1fr;
}
.text-card-body > div {
  overflow: hidden;
}
.text-card-content {
  padding: 0 22px 24px;
  white-space: pre-line;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 68ch;
}
@media (prefers-reduced-motion: reduce) {
  .text-card-body,
  .text-card-chevron {
    transition: opacity 180ms ease;
  }
}

/* ---- Bio / Kontakt / Impressum ---- */
.bio-grid {
  display: grid;
  gap: 40px;
  padding: 10px 0 80px;
  grid-template-columns: 1.3fr 1fr;
}
@media (max-width: 800px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
}
.bio-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 62ch;
}
.bio-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Gestapelte Infoblöcke (Kontakt & Impressum) ---- */
.stack-heading {
  font-size: 20px;
  margin: 40px 0 16px;
  letter-spacing: -0.005em;
}
.stack-heading:first-of-type {
  margin-top: 0;
}
.stack-note {
  font-size: 13px;
  color: var(--text-faint);
  margin: -6px 0 14px;
}
.legal-content {
  padding-top: 64px;
  padding-bottom: 80px;
}
.info-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 26px 26px 8px;
  margin-bottom: 20px;
}
.info-card h3 {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.info-card p,
.info-card a {
  font-size: 15px;
  margin-bottom: 14px;
  display: block;
}
.info-card a:hover {
  color: var(--accent);
}
.placeholder-note {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-black);
  background: var(--c-yellow);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-footer img {
  height: 32px;
  width: auto;
  opacity: 0.7;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 150ms var(--ease-out), transform 150ms var(--ease-out);
}
.footer-links a:hover {
  color: var(--text);
}
.footer-links a:active {
  transform: scale(0.96);
}
.footer-note {
  font-size: 12px;
  color: var(--text-faint);
  width: 100%;
}

/* ---- Mobile: großzügige Vertikal-Abstände verkleinern ---- */
@media (max-width: 600px) {
  .hero {
    padding: 48px 0 40px;
  }
  .bio-home {
    padding: 40px 0;
  }
  .teaser-grid {
    padding: 40px 0;
  }
  .page-head {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .filter-bar {
    padding-top: 40px;
  }
  #videos-section .music-subhead {
    margin-top: 16px;
  }
  .legal-content {
    padding-top: 40px;
    padding-bottom: 56px;
  }
}

/* ---- Utility ---- */
.section {
  padding: 20px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
