/* ============================================================
   TRUE COLORS — Backstage-Pack Design System
   Welt: Die Arbeitsdokumente eines Gigs — Setlist-Papier auf
   Bühnenschwarz, Gaffa-Tape, Laminate-Pässe, Marker.
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('/fonts/bebas-neue-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('/fonts/bebas-neue-400ext.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-400ext.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-600ext.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-800ext.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}

/* ---------- Tokens ---------- */
:root {
  /* Bühne & Papier */
  --stage: #26221e;          /* Bühnenboden-Schwarz, Seitengrund */
  --stage-soft: #312c27;
  --paper: #f4f1ea;          /* Setlist-Papier */
  --paper-shade: #e9e4d6;
  --paper-line: #d9d1bf;     /* Linien auf dem Blatt */
  --ink: #17150f;            /* Druckfarbe auf Papier */
  --ink-soft: #5c564a;       /* Sekundärtext auf Papier (aus dem Papierton) */
  --gaffa: #0b0b0b;          /* Tape */
  --yellow: #ffd400;         /* Gaffa-Gelb: Pass, Marker-Highlight */
  --teal: #44bcde;           /* Teal (alte Site): Marker-Highlights */
  --teal-deep: #0e7f9e;      /* dunkles Teal: Hover, Fokus-Details */
  --red: #e0301e;            /* nur noch funktional: Fehler, Play-Button */
  --red-deep: #b52315;
  --white-on-stage: #f4f1ea;
  --muted-on-stage: #b8b1a2; /* Sekundärtext auf Bühnenschwarz, aus dem Papierton */

  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --measure: 68ch;
  --radius-paper: 2px;
  --shadow-paper: 0 14px 34px rgba(0, 0, 0, .45), 0 3px 8px rgba(0, 0, 0, .35);
  --shadow-tape: 0 2px 6px rgba(0, 0, 0, .4);
  --wrap: 1160px;
  --gutter: clamp(16px, 4vw, 40px);
}

/* ---------- Reset & Grund ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  background: var(--stage);
  /* Bühnenboden: feine Kratzspur-Textur */
  background-image:
    radial-gradient(1200px 500px at 70% -10%, rgba(68, 188, 222, .06), transparent 60%),
    radial-gradient(900px 420px at 10% 110%, rgba(255, 212, 0, .05), transparent 60%);
  color: var(--white-on-stage);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.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;
}

/* ---------- Typo ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: .94; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(3rem, 9vw, 6rem); letter-spacing: .01em; }
h2 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); letter-spacing: .015em; }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); letter-spacing: .03em; }
p { margin: 0 0 1em; max-width: var(--measure); }

/* Marker-Highlight: mit dem gelben Gaffa markiert */
.marker {
  background: linear-gradient(104deg, transparent 1.5%, var(--teal) 3%, var(--teal) 97%, transparent 98.5%);
  color: var(--ink);
  padding: 0 .18em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.marker--red {
  background: linear-gradient(104deg, transparent 1.5%, var(--red) 3%, var(--red) 97%, transparent 98.5%);
  color: var(--paper);
}

/* ---------- Tape (Gaffa-Streifen als Layout-Element) ---------- */
.tape {
  position: absolute;
  top: -14px; left: 38px;
  width: 108px; height: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, .12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 7px),
    var(--gaffa);
  box-shadow: var(--shadow-tape);
  pointer-events: none;
  clip-path: polygon(0.5% 6%, 99.5% 0, 100% 96%, 0 100%);
  transform: rotate(-3deg);
}
.tape--yellow { background-color: var(--yellow); }

/* ---------- Papierbogen (.sheet) — Grundmaterial für Inhalt ---------- */
.sheet {
  position: relative;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, .5), transparent 120px),
    var(--paper);
  color: var(--ink);
  border-radius: var(--radius-paper);
  box-shadow: var(--shadow-paper);
  padding: clamp(28px, 5vw, 56px);
}
.sheet p { color: var(--ink); }
.sheet .secondary, .sheet small { color: var(--ink-soft); }

/* Bogen-Kopfzeile: Stempel/Meta unter der Überschrift, nie darüber */
.sheet-stamp {
  display: inline-block;
  margin-top: 14px;
  border: 2px solid var(--ink);
  padding: 4px 10px 3px;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(-.6deg);
}

/* ---------- Buttons: Marker-Blöcke ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px 14px;
  background: var(--gaffa);
  color: var(--paper);
  border: 0;
  border-radius: 1px;
  cursor: pointer;
  transform: rotate(-.5deg);
  transition: transform .18s cubic-bezier(.22, 1, .36, 1), box-shadow .18s ease-out, background-color .18s ease-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
}
.btn:hover { transform: rotate(0deg) translateY(-2px); box-shadow: 0 8px 22px rgba(0, 0, 0, .4); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: wait; transform: none; }
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: #f0c400; }
.btn--paper { background: var(--paper); color: var(--ink); }

/* ---------- Header / Nav: das Tour-Itinerary oben ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(38, 34, 30, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px dashed rgba(244, 241, 234, .3);
}
.route-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-on-stage);
  border-inline: 1px dashed rgba(244, 241, 234, .3);
  padding: 6px 14px;
  white-space: nowrap;
}
@media (max-width: 1280px) { .route-tag { display: none; } }
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 44px; width: auto; }
.brand .brand-name { font-family: var(--display); font-size: 1.5rem; letter-spacing: .05em; color: var(--paper); }
.site-nav ul { display: flex; gap: clamp(14px, 2.5vw, 30px); list-style: none; margin: 0; padding: 0; }
.site-nav a {
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-on-stage);
  padding: 8px 2px;
  border-bottom: 3px solid transparent;
  transition: color .15s ease-out, border-color .15s ease-out;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--paper); border-bottom-color: var(--yellow); }
.site-nav .nav-cta { color: var(--stage); background: var(--yellow); padding: 10px 16px; border-bottom: 0; font-weight: 800; }
.site-nav .nav-cta:hover { color: var(--stage); background: #ffe14d; }
.nav-toggle {
  display: none;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle .bar-line { display: block; width: 26px; height: 3px; background: var(--paper); margin: 5px 0; transition: transform .2s ease-out, opacity .2s ease-out; }
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--stage-soft);
    border-bottom: 1px solid rgba(244, 241, 234, .14);
    display: none;
    padding: 12px var(--gutter) 20px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav a { display: block; padding: 12px 4px; font-size: 1rem; }
  .site-nav .nav-cta { display: inline-block; margin-top: 10px; }
}

/* ---------- Hero: das aufgeschlagene Gig-Paket ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(40px, 7vw, 96px) clamp(56px, 8vw, 120px); }
.hero .wrap { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 0; align-items: center; }
.hero-sheet { transform: rotate(-.5deg); z-index: 2; }
.hero-photo { z-index: 1; margin-left: clamp(-64px, -4vw, -28px); }
.setlist-nav {
  list-style: none;
  counter-reset: setlist;
  margin: 20px 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
}
.setlist-nav li {
  counter-increment: setlist;
  border-bottom: 1px solid var(--paper-line);
}
.setlist-nav a {
  display: flex; justify-content: space-between; align-items: baseline;
  text-decoration: none;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 2px 8px;
  transition: background-color .12s ease-out, transform .12s ease-out;
}
.setlist-nav a::after {
  content: counter(setlist, decimal-leading-zero);
  color: var(--ink-soft);
  font-weight: 400;
}
.setlist-nav a:hover { background: rgba(68, 188, 222, .35); transform: translateX(8px); }
.hero-pass {
  position: absolute;
  left: 48%; bottom: 20%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 20px 12px;
  transform: rotate(-3deg);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .5), 0 2px 6px rgba(0, 0, 0, .35);
  z-index: 3;
}
.hero-pass::before {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 6px; border-radius: 4px;
  background: rgba(0, 0, 0, .22);
}
.hero-pass::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, .1) 24%, transparent 42%);
  pointer-events: none;
}
.hero-pass small {
  display: block;
  font-family: var(--body);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.hero-sheet .tape { top: -14px; left: 38px; transform: rotate(-5deg); }
.hero-sheet h1 { margin-bottom: 10px; }
.hero-sheet .lead { font-size: 1.15rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-photo { position: relative; transform: rotate(.8deg); }
.hero-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-paper); border-radius: var(--radius-paper); }
.hero-photo .tape { top: -13px; right: 44px; transform: rotate(4deg); }
.hero-photo .tape:nth-of-type(2) { top: auto; bottom: -12px; left: 30px; right: auto; transform: rotate(-3deg); }
.hero-photo figcaption {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--gaffa); color: var(--paper);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 10px;
}
@media (max-width: 920px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { max-width: 560px; margin-left: 0; margin-top: -22px; z-index: 0; }
  .hero-pass { left: auto; right: clamp(8px, 4vw, 40px); bottom: 3%; }
}

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(48px, 8vw, 110px); }
.section > .wrap > h2 { margin-bottom: clamp(24px, 4vw, 44px); }
.section--paperless > .wrap > h2 { color: var(--paper); }

/* ---------- Backstage-Pass-Leiste (Fakten) ---------- */
.pass-strip { display: flex; flex-wrap: wrap; gap: clamp(14px, 3vw, 28px); justify-content: center; }
.pass {
  background: var(--yellow);
  color: var(--ink);
  padding: 18px 26px 14px;
  flex: 1 1 190px;
  max-width: 290px;
  transform: rotate(-.6deg);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .4), 0 2px 6px rgba(0, 0, 0, .3);
  position: relative;
}
.pass:nth-child(2n) { transform: rotate(.5deg); background: var(--paper); }
.pass::after {
  /* Laminat-Glanz */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, .38) 0%, rgba(255, 255, 255, .1) 22%, transparent 40%);
  pointer-events: none;
}
.pass::before {
  /* Lanyard-Loch des Laminats */
  content: '';
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 7px; border-radius: 4px;
  background: rgba(0, 0, 0, .22);
}
.pass .num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.4rem); line-height: 1; display: block; margin-top: 8px; }
.pass .desc { font-weight: 800; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); }

/* ---------- Cards (Oferta / Downloads) ---------- */
.card-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.card { /* ein kleinerer Papierbogen */
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 28px 26px 26px;
  border-radius: var(--radius-paper);
  box-shadow: var(--shadow-paper);
  display: flex; flex-direction: column; gap: 12px;
}
.card:nth-child(1) { transform: rotate(-.35deg); }
.card:nth-child(2) { transform: rotate(.3deg); }
.card:nth-child(3) { transform: rotate(-.2deg); }
.card .tape { top: -13px; left: 50%; transform: translateX(-50%) rotate(-2deg); }
.card h3 { border-bottom: 3px solid var(--ink); padding-bottom: 10px; }
.card p { font-size: .98rem; flex: 1; }
.card .btn { align-self: flex-start; }

/* ---------- Musiker-Grid ---------- */
.member-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(16px, 2.5vw, 28px); }
@media (max-width: 960px) { .member-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .member-grid { grid-template-columns: repeat(2, 1fr); } }
.member-grid a {
  text-decoration: none; text-align: center;
  color: var(--ink);
  transition: transform .18s ease-out;
}
.member-grid a:hover { transform: translateY(-4px) rotate(-.6deg); }
.member-grid img {
  margin-inline: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .5));
}
.member-grid .m-name { font-family: var(--display); font-size: 1.35rem; letter-spacing: .04em; display: block; margin-top: 12px; }
.member-grid .m-role { font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Video-Facade ---------- */
.yt-facade {
  position: relative; display: block; width: 100%;
  border: 0; padding: 0; cursor: pointer;
  background: var(--gaffa);
  box-shadow: var(--shadow-paper);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .88; transition: opacity .2s ease-out, transform .3s ease-out; }
.yt-facade:hover img { opacity: 1; transform: scale(1.015); }
.yt-facade .play {
  position: absolute; inset: 0; margin: auto;
  width: 92px; height: 64px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  display: grid; place-items: center;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
  transition: transform .18s ease-out;
}
.yt-facade:hover .play { transform: scale(1.08); }
.yt-facade .play::after {
  content: '';
  width: 0; height: 0;
  border-left: 26px solid #fff;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px;
}
.video-frame iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; box-shadow: var(--shadow-paper); }

/* ---------- Galerie ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(14px, 2vw, 22px); }
.gallery-grid a { position: relative; display: block; overflow: hidden; box-shadow: 0 8px 20px rgba(0, 0, 0, .45); }
.gallery-grid a:nth-child(4n+1) { transform: rotate(-.4deg); }
.gallery-grid a:nth-child(4n+3) { transform: rotate(.35deg); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform .25s ease-out; }
.gallery-grid a:hover img { transform: scale(1.04); }
dialog.lightbox {
  border: 0; padding: 0; background: transparent; max-width: min(92vw, 1100px);
}
dialog.lightbox::backdrop { background: rgba(10, 9, 8, .88); }
dialog.lightbox img { max-height: 86vh; width: auto; max-width: 100%; margin-inline: auto; box-shadow: var(--shadow-paper); }
dialog.lightbox button {
  position: absolute; top: -14px; right: -14px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: var(--yellow); color: var(--ink);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .5);
}

/* ---------- Setlist-Liste (Repertuar) ---------- */
.song-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: clamp(28px, 5vw, 64px); }
.song-list li {
  break-inside: avoid;
  border-bottom: 1px solid var(--paper-line);
  padding: 8px 0 7px;
  font-size: .95rem;
  display: flex; justify-content: space-between; gap: 12px;
}
.song-list .artist { font-weight: 800; letter-spacing: .02em; }
.song-list .title { color: var(--ink-soft); text-align: right; }
@media (max-width: 700px) { .song-list { columns: 1; } }

/* ---------- FAQ (Rider-Stil) ---------- */
.faq { border-top: 3px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--paper-line); }
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 4px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--display); font-size: 1.6rem; transition: transform .18s ease-out; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 4px 18px; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list a { font-weight: 600; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.contact-list .label { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

.contact-form { display: grid; gap: 14px; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .contact-form .row2 { grid-template-columns: 1fr; } }
.contact-form label { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, .6);
  border: 0;
  border-bottom: 2px solid var(--ink);
  padding: 12px 10px 10px;
  margin-top: 6px;
  border-radius: 2px 2px 0 0;
  transition: background-color .15s ease-out, border-color .15s ease-out;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--ink-soft); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  background: #fff;
  border-bottom-color: var(--teal-deep);
}
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 1.5em; font-weight: 600; margin: 0; }
.form-status[data-state="error"] { color: var(--red-deep); }
.form-status[data-state="ok"] { color: #1c6b30; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(244, 241, 234, .14);
  padding-block: clamp(36px, 5vw, 60px) 28px;
  color: var(--muted-on-stage);
  font-size: .92rem;
}
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 36px; }
.site-footer h3 { color: var(--paper); font-size: 1.15rem; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: var(--muted-on-stage); text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; }
.social-row { display: flex; gap: 14px; }
.social-row a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(244, 241, 234, .3);
  border-radius: 3px;
  transition: border-color .15s ease-out, background-color .15s ease-out;
}
.social-row a:hover { border-color: var(--yellow); background: rgba(255, 212, 0, .08); }
.social-row svg { width: 20px; height: 20px; fill: var(--paper); }
.footer-legal { border-top: 1px solid rgba(244, 241, 234, .1); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* ---------- Breadcrumb (Unterseiten) ---------- */
.breadcrumb { font-size: .8rem; letter-spacing: .06em; color: var(--muted-on-stage); padding-block: 18px 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: '→'; margin-right: 8px; color: var(--muted-on-stage); }
.breadcrumb a { color: var(--muted-on-stage); }
.breadcrumb [aria-current] { color: var(--paper); }

/* ---------- Eine autorisierte Bewegung: Blatt legt sich beim Laden ---------- */
@keyframes sheet-settle {
  from { transform: rotate(-.5deg) translateY(18px); }
  to   { transform: rotate(-.5deg) translateY(0); }
}
.hero-sheet { animation: sheet-settle .55s cubic-bezier(.16, 1, .3, 1) both; }

/* ---------- Musiker-Seiten: Karykatur-Nebenbild in .card ---------- */
.card-portrait { display: block; max-width: 220px; height: auto; margin-inline: auto; }
