/* ==========================================================================
   Stevie's Country Classics – Theme "Plakat"
   Anmutung eines gedruckten Konzertplakats: warmes Papier, Slab-Serif,
   Rost und Denim. Kein Build-Schritt – läuft direkt in der Web Station.
   ========================================================================== */

@font-face {
  font-family: 'Bitter';
  src: url('../fonts/bitter-variable.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}

/* --------------------------------------------------------------- Tokens */
:root {
  /* Kraftpapier statt Weiß – satter, wärmer, mit sichtbarer Faser. */
  --paper:      #e2d3b4;
  --paper-2:    #d6c49f;
  --paper-3:    #c6b189;
  --ink:        #241c15;
  --ink-2:      #2f251c;
  --ink-3:      #3b2f24;
  --ink-soft:   #5b4c3c;
  --ink-faint:  #857256;

  /* Akzente: Rost als Leitfarbe, Denim als Gegengewicht */
  --rust:       #a63f26;
  --rust-dark:  #85311c;
  --rust-light: #c96b4a;
  --denim:      #2f4356;
  --gold:       #91701f;

  --line:       #b5a17c;
  --line-dark:  #4a3d2e;

  /* Schrift auf rostrotem Grund. Das normale Papier käme dort nur auf 4,23:1
     und bliebe unter dem Grenzwert von 4,5:1; dieser hellere Ton erreicht
     5,59:1. Deshalb ein eigener Wert statt --paper. */
  --auf-rost:   #f9f4e8;

  /* Stärke der plakativen Trennkanten – an einer Stelle einstellbar */
  --kante:      3px;
  --kante-karte: 2px;

  --bg:      var(--paper);
  --text:    var(--ink);
  --accent:  var(--rust);

  /* Typografie */
  --font-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --step--1: clamp(0.84rem, 0.8rem + 0.2vw, 0.95rem);
  --step-0:  clamp(1rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1:  clamp(1.22rem, 1.12rem + 0.5vw, 1.55rem);
  --step-2:  clamp(1.55rem, 1.35rem + 1vw, 2.25rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.6vw, 4.8rem);
  --step-5:  clamp(3.2rem, 1.9rem + 6.5vw, 7rem);

  --wrap: 1160px;
  --wrap-narrow: 720px;
  --gap: clamp(1rem, 0.6rem + 2vw, 2rem);
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  --radius: 3px;   /* Print kennt keine runden Ecken */
  --radius-pill: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------ Grundlagen */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.72;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Papierfaser – auf dem Kraftpapier deutlich sichtbar, nicht nur angedeutet */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.48 0 0 0 0 0.38 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* figure trägt browserseitig margin: 1em 40px – das sprengt sonst das Raster */
figure { margin: 0; }

a { color: var(--rust); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rust-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--rust); color: var(--auf-rost); }

:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }

/* ---------------------------------------------------------------- Layout */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--section-y); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(2.2rem, 1.4rem + 3vw, 4rem); }

/* Plakatdruck: Abschnitte werden nicht durch Weißraum getrennt, sondern durch
   eine kräftige Kante. Der Hero bleibt außen vor – dort schneidet das Foto ab. */
.section + .section,
.page-head + .section { border-top: var(--kante) solid var(--ink); }
.page-head { border-bottom: var(--kante) solid var(--ink); }

/* Zwei Papiertöne im Wechsel geben der Seite Gliederung, ohne dass überall
   dunkle Blöcke nötig wären. Dunkle Abschnitte behalten ihre eigene Fläche. */
.section:nth-of-type(even):not(.section--dark):not(.section--paper2) {
  background: var(--paper-2);
}

/* Dunkle Sektionen als Kontrastblöcke – wie eine Plakatrückseite */
.section--dark {
  background: var(--ink);
  color: var(--paper-2);
  --text: var(--paper-2);
  --line: var(--line-dark);
  --ink-soft: #b4a596;
  --ink-faint: #8a7a6c;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark a { color: var(--gold); }

.section--paper2 { background: var(--paper-2); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--rust); color: var(--auf-rost);
  padding: 0.7rem 1.2rem; z-index: 999; font-weight: 600;
}
.skip-link:focus { left: 0; top: 0; }

/* Rubrik mit Sternchen – Plakat-Detail, sparsam eingesetzt */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 4rem;
  background: currentColor;
  opacity: 0.45;
}
.section--dark .eyebrow { color: var(--gold); }

.section-title { font-size: var(--step-3); margin-bottom: 0.5em; }
.lead {
  font-size: var(--step-1);
  color: var(--ink-soft);
  line-height: 1.6;
  font-family: var(--font-display);
  font-weight: 400;
}
.section--dark .lead { color: var(--paper-2); }

/* Doppellinie als Trenner – typisch für gesetzte Plakate */
.rule {
  border: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  height: 4px;
  margin: 0;
  opacity: 0.85;
}
.section--dark .rule { border-color: var(--paper-3); opacity: 0.5; }

.star-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--rust);
  margin-block: clamp(2rem, 1rem + 3vw, 3.5rem);
}
.star-rule::before, .star-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.star-rule span { font-size: 0.7rem; letter-spacing: 0.4em; }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 0.85rem;
  background: rgb(226 211 180 / 0.93);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 12px rgb(28 22 19 / 0.07);
}
/* Über dem Hero transparent, damit das Foto ganz nach oben läuft */
.page--home .site-header:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.page--home .site-header:not(.is-scrolled) .brand,
.page--home .site-header:not(.is-scrolled) .nav a { color: var(--paper); }
.page--home .site-header:not(.is-scrolled) .brand small { color: var(--gold); }
.page--home .site-header:not(.is-scrolled) .nav a:hover { background: rgb(255 255 255 / 0.14); }
/* Früher stand hier color: var(--ink) – dunkelbraune Schrift auf rostrotem
   Grund, 2,68:1. Über dem Hero ist der Knopf derselbe wie sonst auch. */
.page--home .site-header:not(.is-scrolled) .nav__cta { color: var(--auf-rost) !important; }
.page--home .site-header:not(.is-scrolled) .nav-toggle { color: var(--paper); border-color: rgb(255 255 255 / 0.4); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  transition: color 0.3s;
}
.brand small {
  color: var(--rust);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s;
}

.nav { display: flex; gap: 0.15rem; align-items: center; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  border-radius: 2px;
}
.nav a:hover { color: var(--ink); background: rgb(28 22 19 / 0.05); }
.nav a.active { color: var(--rust); font-weight: 600; }

.nav__cta {
  background: var(--rust);
  color: var(--auf-rost) !important;
  font-weight: 600;
  padding: 0.55rem 1.15rem !important;
  margin-left: 0.5rem;
}
.nav__cta:hover { background: var(--rust-dark) !important; color: var(--auf-rost) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 44px; height: 44px;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded='true'] .icon-close { display: block; }
.nav-toggle[aria-expanded='true'] .icon-open { display: none; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .brand, .nav-toggle { position: relative; z-index: 2; }
  .nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1;
    padding: 5.2rem 1.5rem 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.3s, visibility 0.3s;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a {
    padding: 0.95rem 0.5rem;
    font-size: 1.15rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink) !important;
    border-bottom: 1px solid var(--line);
  }
  .nav__cta {
    margin: 1rem 0 0;
    text-align: center;
    color: var(--paper) !important;
    border-bottom: 0;
  }
}

/* ------------------------------------------------------------------ Hero
   Das Bandfoto ist ein Querformat mit fünf Personen nebeneinander – als
   formatfüllender Hintergrund wird davon auf schmalen Displays zwangsläufig
   die halbe Band abgeschnitten. Deshalb liegt es hier als eigenes, gerahmtes
   Bild im Layout; unscharf und abgedunkelt bildet dieselbe Aufnahme nur noch
   die Atmosphäre im Hintergrund.                                            */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(94svh, 900px);
  padding-block: clamp(7rem, 6rem + 5vw, 10rem) clamp(3.5rem, 2rem + 5vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(13px) saturate(0.72) brightness(0.52);
  transform: scale(1.12);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(75% 60% at 25% 40%, rgb(28 22 19 / 0.25), rgb(28 22 19 / 0.86) 75%),
    linear-gradient(to bottom, rgb(28 22 19 / 0.55), rgb(28 22 19 / 0.35));
}

.hero__inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

/* Gerahmtes Foto, leicht aus der Achse – wie an die Wand geheftet */
.hero__photo {
  position: relative;
  transform: rotate(1.4deg);
  transition: transform 0.6s var(--ease);
}
.hero__photo:hover { transform: rotate(0deg) scale(1.012); }
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgb(28 22 19 / 0.35);
  pointer-events: none;
}
.hero__photo img {
  width: 100%;
  border: 10px solid var(--paper);
  box-shadow: 0 30px 60px -18px rgb(0 0 0 / 0.75);
}
.hero__caption {
  position: absolute;
  right: -0.6rem;
  bottom: -1.5rem;
  background: var(--rust);
  color: var(--auf-rost);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transform: rotate(-2deg);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.4);
}

/* Banjo – schwebt über der Kante zwischen Text und Foto */
/* Bühne für das 3D-Modell: liegt über dem gesamten Hero, fängt keine Klicks
   ab. Wo das Banjo darin erscheint, bestimmt die Szene (data-fit/data-pos). */
/* Banjo schwebt zwischen Textspalte und Foto über dem Hero */
.hero .hero__banjo {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: clamp(150px, 17vw, 250px);
  transform: translateX(-52%);
  z-index: 3;
  pointer-events: none;
  perspective: 900px;
  filter: drop-shadow(0 22px 30px rgb(0 0 0 / 0.6));
}
.banjo {
  width: 100%;
  height: auto;
  transform: rotate(-18deg) rotateY(var(--banjo-y, 0deg)) rotateX(var(--banjo-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1);
  will-change: transform;
}

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; justify-items: start; }
  /* Ohne width/min-width darf die Spalte über die Rasterspur hinauswachsen,
     sobald ein Kind eine größere Mindestbreite hat – das schnitt den zweiten
     Knopf auf schmalen Geräten ab. */
  .hero__text { order: 1; width: 100%; min-width: 0; }
  .hero__photo { transform: none; order: 2; width: 100%; }
  /* Gestapeltes Layout: unten rechts läge das Banjo mitten auf dem Bandfoto und
     deckt den äußeren Musiker zu. Es wandert deshalb nach oben neben den
     Schriftzug – dort ist rechts neben den Titelzeilen ohnehin Platz frei.
     Der Abstand von oben hält es unter der festen Kopfleiste. */
  .hero .hero__banjo {
    left: auto;
    right: 7%;
    top: clamp(7rem, 6rem + 6vw, 10rem);
    bottom: auto;
    /* Etwas schmaler als der Randabstand groß ist – so wächst die Luft zur
       Bildschirmkante, ohne die Lücke zur längsten Titelzeile aufzuzehren. */
    width: clamp(70px, 20vw, 100px);
    transform: none;
  }
}

/* Eine einzige ruhige Zeile statt Kicker plus Schlagwortleiste */
.hero__ort {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e6c993;
  margin: 0 0 2.2rem;
}
/* Strich auf beiden Seiten – die Zeile steht damit als eigenständige
   Bildunterschrift da, statt nur angestrichen zu sein. */
.hero__ort::before,
.hero__ort::after {
  content: '';
  width: 2.4rem;
  height: 2px;
  background: var(--rust);
  flex: none;
}

.hero__title {
  font-size: var(--step-5);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--paper);
  margin: 0 0 0.25em;
  max-width: 15ch;
}
.hero__sub {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 400;
  font-style: italic;
  color: var(--paper-3);
  margin: 0 0 1.8rem;
  max-width: 30ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

@media (max-width: 560px) {
  /* Mobil steht die Zeile mittig, die Striche laufen von beiden Seitenrändern
     auf sie zu. Feste Strichbreiten wären hier falsch: bei umbrechendem Text
     landete der rechte Strich sonst am Bildschirmrand statt am Wort. */
  .hero__ort {
    letter-spacing: 0.13em;
    font-size: 0.74rem;
    margin-bottom: 1.8rem;
    gap: 0.75rem;
    justify-content: center;
    text-align: center;
  }
  .hero__ort::before,
  .hero__ort::after {
    flex: 1 1 auto;
    width: auto;
    min-width: 0.9rem;
  }

  /* Untereinander kosteten die beiden Knöpfe zwei volle Zeilen. Nebeneinander
     teilen sie sich die Breite; das Polster schrumpft mit, damit auch
     „Band anfragen“ ohne Umbruch hineinpasst. */
  .hero__actions { flex-wrap: nowrap; gap: 0.6rem; }
  .hero__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-inline: 0.7rem;
    gap: 0.4rem;
    font-size: 0.9rem;
    text-align: center;
  }
  .hero__actions .btn svg { width: 15px; height: 15px; }
}

/* Sehr schmale Geräte: lieber eine Spur kleiner setzen als die Beschriftung
   zweizeilig umbrechen zu lassen. */
@media (max-width: 360px) {
  .hero__actions .btn {
    font-size: 0.84rem;
    padding-inline: 0.45rem;
    gap: 0.3rem;
  }
  .hero__actions .btn svg { width: 14px; height: 14px; }
}

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s var(--ease);
  font-family: var(--font-body);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--rust); color: var(--auf-rost); border-color: var(--rust); }
.btn--primary:hover { background: var(--rust-dark); border-color: var(--rust-dark); color: var(--auf-rost); }
.btn--ghost { border-color: rgb(247 242 230 / 0.45); color: var(--paper); }
.btn--ghost:hover { border-color: var(--paper); background: rgb(247 242 230 / 0.12); color: var(--paper); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* ------------------------------------------------------------ Seitenkopf */
.page-head {
  padding: clamp(7.5rem, 6rem + 7vw, 11rem) 0 clamp(2rem, 1.2rem + 3vw, 3.5rem);
  /* Altpapier als Grundfläche. Die Struktur liegt in Graustufen vor und wird
     per Multiplikation mit dem Papierton verrechnet – dadurch passt sie
     automatisch zu jeder Palette, auch wenn wir die Farben nochmal ändern.
     Ein einziges Bild für alle Seiten, der Browser lädt es genau einmal. */
  background: var(--paper-2) url('../images/papier.jpg') center / cover no-repeat;
  background-blend-mode: multiply;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.page-head__title { font-size: var(--step-4); margin: 0 0 0.25em; }
.page-head__sub {
  font-size: var(--step-1);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  margin: 0;
  max-width: 48ch;
}

/* ------------------------------------------------------------ Textinhalt */
.prose { max-width: 66ch; }
.prose p { color: var(--ink-soft); }
.prose h2 { font-size: var(--step-2); margin-top: 1.8em; }
.prose h3 { font-size: var(--step-1); margin-top: 1.6em; }
.prose h4 { font-size: var(--step-0); margin-top: 1.4em; color: var(--rust); font-family: var(--font-body); font-weight: 700; }
.prose ul { color: var(--ink-soft); padding-left: 1.15em; }
.prose li { margin-bottom: 0.35em; }
.section--dark .prose p, .section--dark .prose ul { color: var(--paper-2); }

/* Zweispaltiger Fließtext für längere Passagen */
.prose--columns {
  max-width: none;
  columns: 2 22rem;
  column-gap: clamp(2rem, 1rem + 3vw, 4rem);
}
.prose--columns p { break-inside: avoid; }
.prose--columns p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 800;
  float: left;
  line-height: 0.85;
  padding: 0.06em 0.09em 0 0;
  color: var(--rust);
}

/* ---------------------------------------------------------- Teaser-Karten */
.teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--gap);
}
/* Leichter Versatz nimmt der Dreierreihe die Kachelstrenge */
@media (min-width: 900px) {
  .teasers { align-items: start; padding-bottom: 2.5rem; }
  .teaser:nth-child(2) { transform: translateY(2.5rem); }
  .teaser:nth-child(2):hover { transform: translate(-3px, calc(2.5rem - 3px)); }
}
.teaser {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: var(--kante-karte) solid var(--ink);
  background: var(--paper);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.teaser:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0 var(--rust); }
.teaser__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: var(--kante-karte) solid var(--ink);
  background: var(--paper-3);
}
.teaser__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.teaser:hover .teaser__img img { transform: scale(1.05); }
.teaser__body {
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.teaser__title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.teaser__arrow { color: var(--rust); flex: none; display: grid; place-items: center; transition: transform 0.3s var(--ease); }
.teaser:hover .teaser__arrow { transform: translateX(4px); }

/* Auf dem Handy stapelten sich drei Kacheln mit 4:3-Bild zu gut anderthalb
   Bildschirmhöhen. Als Zeile mit quadratischem Vorschaubild bleibt dieselbe
   Anmutung – Rahmen, Schlagschatten, Pfeil –, aber jede kostet nur noch rund
   ein Fünftel davon. */
@media (max-width: 640px) {
  .teasers { gap: 0.9rem; }
  .teaser { flex-direction: row; align-items: stretch; }
  .teaser__img {
    aspect-ratio: 1;
    width: clamp(84px, 26vw, 118px);
    flex: none;
    border-bottom: none;
    border-right: 2px solid var(--ink);
  }
  .teaser__body { flex: 1; padding: 0.9rem 1rem; }
  .teaser__title { font-size: var(--step-0); }
}
.teaser__arrow svg { width: 22px; height: 22px; }

/* ------------------------------------------------------------- Hinweisbox */
.notice {
  border: 2px solid var(--ink);
  border-left-width: 8px;
  border-left-color: var(--rust);
  background: var(--paper);
  padding: clamp(1.3rem, 1rem + 1.5vw, 2rem);
  color: var(--ink-soft);
}
.notice__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.section--dark .notice {
  background: var(--ink-2);
  border-color: var(--paper-3);
  border-left-color: var(--gold);
  color: var(--paper-2);
}
.section--dark .notice__title { color: var(--paper); }

/* ----------------------------------------------------------------- Poster
   Das Bandplakat ist ein fertig gestaltetes, quadratisches Motiv mit Schrift.
   Jeder Beschnitt zerstört es – also vollständig zeigen, gerahmt und
   leicht gekippt wie ein aufgehängtes Plakat.                               */
.poster-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.poster {
  position: relative;
  transform: rotate(-1.8deg);
  transition: transform 0.6s var(--ease);
  max-width: 520px;
  justify-self: center;
  width: 100%;
}
.poster:hover { transform: rotate(0deg); }
.poster img {
  width: 100%;
  display: block;
  border: 12px solid var(--paper);
  box-shadow: 0 26px 50px -16px rgb(28 22 19 / 0.45);
}
/* Reißzwecke oben in der Mitte */
.poster::before {
  content: '';
  position: absolute;
  top: -13px; left: 50%;
  width: 22px; height: 22px;
  margin-left: -11px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #d9dde2, #6f7a85 55%, #3d454d);
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.45);
  z-index: 2;
}
@media (max-width: 860px) {
  .poster-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .poster { transform: none; max-width: 420px; }
}

/* -------------------------------------------------------------- Bandgrid */
.band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 175px), 1fr));
  gap: var(--gap);
}
/* Versetzte Reihe statt strenger Kachelwand */
@media (min-width: 720px) {
  .member:nth-child(even) { transform: translateY(2.2rem); }
  .band { align-items: start; padding-bottom: 2.2rem; }
}
.member__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-3);
  border: 2px solid var(--paper-3);
  margin-bottom: 0.9rem;
}
.section--dark .member__photo { border-color: var(--line-dark); }
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.02) sepia(0.18);
  transition: filter 0.5s var(--ease), transform 0.7s var(--ease);
}
.member:hover .member__photo img { filter: brightness(1.12) contrast(1.02) sepia(0); transform: scale(1.04); }
.member__name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 800;
  margin: 0 0 0.1em;
}
.member__role {
  color: var(--gold);
  font-size: var(--step--1);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* -------------------------------------------------------------- Repertoire */
.repertoire__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
}
.search { position: relative; flex: 1 1 300px; max-width: 420px; }
.search svg {
  position: absolute;
  left: 0.9rem; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--ink-faint);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.7rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  font-family: inherit;
  font-size: var(--step-0);
}
.search input::placeholder { color: var(--ink-faint); }
.search input:focus { outline: none; border-color: var(--rust); }
.song-count {
  color: var(--ink-soft);
  font-size: var(--step--1);
  white-space: nowrap;
  font-family: var(--font-display);
}
.song-count b { color: var(--rust); font-weight: 800; font-size: 1.15em; }

/* Register statt Liste: 99 Songs nach Anfangsbuchstaben, mehrspaltig gesetzt.
   Die Buchstabenblöcke bleiben ganz – ein zerrissenes "S" über zwei Spalten
   sieht nach Unfall aus, nicht nach Satz. */
.songbook {
  columns: 2 23rem;
  column-gap: clamp(2rem, 1rem + 3vw, 4rem);
}
.songgroup {
  break-inside: avoid;
  margin: 0 0 1.6rem;
}
.songgroup[hidden] { display: none; }

/* Registerbuchstabe mit auslaufender Doppellinie */
.songgroup__letter {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--rust);
  letter-spacing: 0.04em;
}
.songgroup__letter::after {
  content: "";
  flex: 1 1 auto;
  height: 4px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.songgroup__list { list-style: none; margin: 0; padding: 0; }

/* Führungspunkte wie im gedruckten Programmheft */
.song { padding: 0.3rem 0; }
.song__row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.song__title {
  flex: 0 1 auto;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.18s var(--ease);
}
.song__leader {
  flex: 1 1 auto;
  min-width: 1.2rem;
  align-self: baseline;
  transform: translateY(-0.28em);
  border-bottom: 2px dotted var(--line);
  transition: border-color 0.18s var(--ease);
}
.song__artist {
  flex: 0 0 auto;
  color: var(--ink-faint);
  font-size: var(--step--1);
  text-align: right;
  transition: color 0.18s var(--ease);
}
.song:hover .song__title { color: var(--rust); }
.song:hover .song__leader { border-bottom-color: var(--rust-light); }
.song:hover .song__artist { color: var(--ink-soft); }
.song[hidden] { display: none; }

/* Medley-Einzeltitel: eingerückter Nebeneintrag mit Randlinie, wie eine
   Fußnote im Programmheft. Keine Führungspunkte – die gehören der Hauptzeile. */
.song__parts {
  list-style: none;
  margin: 0.2rem 0 0.15rem 0.9rem;
  padding: 0.05rem 0 0.05rem 0.75rem;
  border-left: 2px solid var(--line);
  font-family: var(--font-body);
  font-size: var(--step--1);
  line-height: 1.5;
  color: var(--ink-soft);
}
/* inline-block plus nowrap: ein Einzeltitel bleibt zusammen, umbrochen wird
   nur zwischen den Titeln – kein „Johnny B. / Goode“ mehr. */
.song__parts li {
  display: inline-block;
  white-space: nowrap;
}
.song__parts li + li::before {
  content: '· ';
  color: var(--ink-faint);
}
.section--dark .song__parts { border-left-color: var(--line-dark); color: var(--paper-3); }

/* Schmale Displays: Führungspunkte lohnen nicht, Interpret rutscht darunter */
@media (max-width: 30rem) {
  .song__row { flex-wrap: wrap; gap: 0 0.45rem; }
  .song__leader { display: none; }
  .song__artist { flex: 1 0 100%; text-align: left; }
}

.songlist__empty { padding: 3rem 1rem; text-align: center; color: var(--ink-faint); }

/* Christmas Country – zweites Programm auf dunklem Grund. Die dunklen
   Abschnitte definieren --line und --ink-faint bereits um; nachziehen muss
   man nur, was direkt auf --ink oder --rust liegt. */
.songsection__head { margin-bottom: clamp(1.8rem, 1rem + 2vw, 2.8rem); }
.songsection__title {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.05;
  margin: 0.2rem 0 0.6rem;
}
.songsection__sub {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: var(--step--1);
  margin: 0;
}
.section--dark .songgroup__letter { color: var(--gold); }
.section--dark .songgroup__letter::after {
  border-top-color: var(--paper-3);
  border-bottom-color: var(--line-dark);
}
.section--dark .song__title { color: var(--paper-2); }
.section--dark .song:hover .song__title { color: var(--gold); }
.section--dark .song:hover .song__leader { border-bottom-color: var(--gold); }
.section--dark .song:hover .song__artist { color: var(--paper-3); }
.songbook-weihnachten[hidden] { display: none; }

/* Suchmodus. Leitgedanke: Beim Tippen darf nichts springen – weder das
   Suchfeld noch der Abstand zum ersten Treffer. Deshalb bleiben die
   Abschnitts-Abstände unangetastet; zusammengestrichen wird nur, was zwischen
   Suchfeld und Treffern *zusätzlich* stünde.

   Der Kopf des Weihnachtsprogramms entfällt dabei ganz. Eine Überschrift
   braucht Platz – solange sie mitläuft, ist der Weg zum Treffer zwangsläufig
   länger als ohne Suche. Als Kennzeichnung genügt der dunkle Grund mit den
   goldenen Registerbuchstaben; die Überschrift kommt zurück, sobald das
   Suchfeld leer ist. */
.is-searching .songsection__head { display: none; }

/* Ist der Repertoire-Teil leer gefiltert, fallen die beiden Polster weg, die
   sonst übereinanderstünden. Das Polster über dem Suchfeld bleibt unangetastet,
   damit es beim Tippen nicht springt. */
.is-searching .section:has([data-songsection][hidden]) { padding-bottom: 0; }

/* Die Treffer dürfen nicht an der Oberkante des dunklen Blocks kleben. Der
   Innenabstand wird deshalb dem Polster über dem Block entnommen, nicht
   zusätzlich aufgeschlagen – so bleibt der Weg vom Suchfeld zum ersten
   Register unverändert. Die zweite Regel greift nur, wenn der Repertoire-Teil
   leer gefiltert ist, also der dunkle Block direkt folgt. */
.is-searching .songbook-weihnachten { padding-top: 1.25rem; }
.is-searching .section:has([data-songsection][hidden]) .repertoire__tools {
  margin-bottom: 0.75rem;
}

/* ----------------------------------------------------------------- Videos */
.video-feature { margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
/* Das große Video oben bekommt seine Form ebenfalls aus dem Template. */
.video-feature .video-card__title { font-size: var(--step-2); }

/* Ungleiche Kachelbreiten: zwei breite, dann drei schmale Karten im Wechsel.
   Nimmt der Videowand die Tabellenoptik, ohne unruhig zu werden. Alle Kacheln
   sind 16:9 – das Vorschaubild bestimmt, was darin zu sehen ist, und das Video
   selbst läuft ungeschnitten in der Überlagerung. */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--gap);
}
@media (min-width: 1000px) {
  .video-grid { grid-template-columns: repeat(6, 1fr); }
  .video-grid > * { grid-column: span 2; }
  .video-grid > *:nth-child(5n + 1),
  .video-grid > *:nth-child(5n + 2) { grid-column: span 3; }
  .video-grid > *:nth-child(5n + 2) { margin-top: 2.5rem; }
}

.video-card { rotate: 0deg; transition: transform 0.3s var(--ease), box-shadow 0.3s, rotate 0.3s var(--ease); }
@media (min-width: 1000px) {
  .video-grid > *:nth-child(3n) .video-card { rotate: -0.6deg; }
  .video-grid > *:nth-child(3n + 1) .video-card { rotate: 0.5deg; }
  .video-card:hover { rotate: 0deg; }
}
.video-card {
  border: 2px solid var(--ink);
  background: var(--paper);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.video-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.section--dark .video-card { border-color: var(--paper-3); background: var(--ink-2); }
.section--dark .video-card:hover { box-shadow: 6px 6px 0 var(--gold); }

.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-3);
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.section--dark .video-card__frame { border-bottom-color: var(--paper-3); }
/* contain statt cover: lieber Balken als ein angeschnittenes Bild. Passt der
   Rahmen zum Format, sind ohnehin keine Balken zu sehen. */
.video-card__frame img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: filter 0.4s;
  filter: brightness(0.88);
}
/* Füllt den Rest des Rahmens, wenn Bildformat und Videoformat auseinandergehen.
   Liegt hinter dem scharfen Bild und ist so stark weichgezeichnet, dass man
   keine Bildinhalte, sondern nur Farbe wahrnimmt. */
.video-card__fuellung {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(22px) brightness(0.55) saturate(1.2);
  transform: scale(1.15);
  pointer-events: none;
}
.video-card:hover .video-card__frame img { filter: brightness(0.72); }
.video-card__frame video {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
}
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--auf-rost);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s;
  border: 2px solid var(--paper);
}
.video-card__frame:hover .play { transform: translate(-50%, -50%) scale(1.12); background: var(--rust-dark); }
.play svg { width: 22px; height: 22px; margin-left: 3px; }
.video-card__body { padding: 1rem 1.2rem 1.15rem; }
.video-card__title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.section--dark .video-card__title { color: var(--paper); }
.video-card__hint {
  color: var(--ink-faint);
  font-size: var(--step--1);
  margin: 0.15em 0 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-group-title { font-size: var(--step-2); margin: 0 0 1.5rem; }

/* ---------------------------------------------------------------- Galerie
   Unregelmäßiges Raster statt gleichförmiger Spalten: einzelne Aufnahmen
   bekommen mehr Platz, alle liegen minimal schief wie hingelegte Abzüge.  */
/* Ausgerichtete Zeilen: Jedes Bild ist so breit, wie sein Format es verlangt,
   alle Bilder einer Zeile sind gleich hoch. Vorher wurden sie in feste
   Rasterzellen geschnitten – bei Hochformaten fehlte dadurch die Hälfte.

   Wie bei den Videokacheln: Breite und Wachstum proportional zu --v, dann ist
   die Höhe (Breite geteilt durch Verhältnis) in der Zeile überall gleich. */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.6rem, 0.4rem + 0.8vw, 1.1rem);
}
.gallery__item {
  flex-grow: var(--v, 1.5);
  flex-basis: calc(var(--v, 1.5) * 190px);
  min-width: min(100%, calc(var(--v, 1.5) * 120px));
  max-width: 100%;
  display: block;
  /* Gleichmäßiger schmaler Rand statt des breiten Balkens unten */
  padding: 7px;
  border: 0;
  background: #f7f1e4;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 16px rgb(28 22 19 / 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.gallery__item:hover,
.gallery__item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgb(28 22 19 / 0.32);
}
.gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: var(--v, 1.5);
  height: auto;
  object-fit: cover;
  background: var(--ink-3);
}


/* Klebestreifen. Abgerissene Enden über clip-path, Faserstruktur darüber und
   mix-blend-mode: multiply – dadurch scheint das Foto durch und der Streifen
   wirkt aufgeklebt statt aufgemalt. Die Fotos selbst bleiben gerade; die
   Unregelmäßigkeit steckt allein im Streifen. */
.gallery__item::before {
  content: '';
  position: absolute;
  z-index: 3;
  top: -11px;
  left: 50%;
  width: 78px;
  height: 27px;
  margin-left: -39px;
  rotate: -4deg;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='40'%3E%3Cfilter id='t'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.34 0 0 0 0 0.28 0 0 0 0 0.18 0 0 0 0.85 0'/%3E%3C/filter%3E%3Crect width='90' height='40' filter='url(%23t)'/%3E%3C/svg%3E"), linear-gradient(177deg, rgb(206 189 148 / 0.93), rgb(178 158 118 / 0.9) 62%, rgb(196 179 140 / 0.88));
  background-blend-mode: multiply;
  background-size: 90px 40px, auto;
  mix-blend-mode: multiply;
  box-shadow: 0 2px 5px rgb(28 22 19 / 0.3), inset 0 1px 0 rgb(255 250 235 / 0.45), inset 0 -1px 0 rgb(60 45 28 / 0.22);
  /* Ausgefranste Kanten links und rechts, oben und unten sauber geschnitten */
  clip-path: polygon(
    4% 0%, 100% 3%, 96% 26%, 100% 48%, 95% 71%, 100% 96%,
    3% 100%, 0% 74%, 5% 52%, 0% 27%
  );
}
/* Kein Streifen sitzt wie der andere */
.gallery__item:nth-child(2n)::before { rotate: 5deg; left: 27%; width: 66px; margin-left: -33px; }
.gallery__item:nth-child(3n)::before { rotate: -7deg; left: 71%; width: 88px; margin-left: -44px; top: -13px; }
.gallery__item:nth-child(5n)::before { rotate: 2deg; left: 41%; width: 58px; margin-left: -29px; }
.gallery__item:nth-child(7n)::before { rotate: -2deg; left: 62%; height: 32px; }

/* Der Abzug selbst leicht vergilbt statt reinweiß */
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 30% 0%, rgb(255 250 235 / 0.5), transparent 55%),
    radial-gradient(100% 80% at 90% 100%, rgb(120 96 62 / 0.16), transparent 60%);
  mix-blend-mode: multiply;
}

/* Platzhalter ohne Höhe: Sie füllen den Rest der letzten Zeile, damit deren
   Bilder nicht auf die volle Breite gestreckt werden. */
.gallery__fueller {
  flex-grow: 1.5;
  flex-basis: 285px;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

/* Auf schmalen Geräten zwei Bilder nebeneinander, sonst werden sie zu klein */
@media (max-width: 560px) {
  .gallery__item { flex-basis: calc(var(--v, 1.5) * 130px); min-width: 42%; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgb(28 22 19 / 0.97);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 3px solid var(--paper);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: transparent;
  border: 2px solid rgb(247 242 230 / 0.5);
  color: var(--paper);
  width: 50px; height: 50px;
  border-radius: 2px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s, border-color 0.25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--rust); border-color: var(--rust); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: var(--paper-3);
  font-size: var(--step--1);
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
}

/* ---------------------------------------------------------------- Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: var(--gap);
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  background: var(--paper);
  border: 2px solid var(--ink);
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.contact-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--rust); }
.section--dark .contact-card { background: var(--ink-2); border-color: var(--paper-3); }
.section--dark .contact-card:hover { box-shadow: 6px 6px 0 var(--gold); }
.contact-card__icon { color: var(--rust); margin-bottom: 0.8rem; }
.section--dark .contact-card__icon { color: var(--gold); }
.contact-card__icon svg { width: 28px; height: 28px; }
.contact-card__label {
  font-size: var(--step--1);
  color: var(--ink-faint);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
}
.section--dark .contact-card__value { color: var(--paper); }
.contact-card:hover .contact-card__value { color: var(--rust); }
.section--dark .contact-card:hover .contact-card__value { color: var(--gold); }

/* ------------------------------------------------------------------ CTA */
.cta { text-align: center; }
.cta__title { font-size: var(--step-3); margin-bottom: 0.3em; }
.cta p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; margin-bottom: 2rem; }
.section--dark .cta p { color: var(--paper-2); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ---------------------------------------------------------------- Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper-3);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4rem) 1.8rem;
  position: relative;
  z-index: 2;
  border-top: 6px solid var(--rust);
}
.site-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: var(--gap);
  padding-bottom: 2.2rem;
}
.site-footer h3 {
  font-size: var(--step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer a { color: var(--paper-3); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--gold); }
.site-footer__brand {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 0.4rem;
}
.site-footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-faint);
  font-size: var(--step--1);
}
.site-footer__legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ------------------------------------------------------------ Animationen */
/* Das Einblenden beim Scrollen ist bewusst entfernt: Es verzögerte das Lesen,
   ohne etwas beizutragen. Die Attribute data-reveal stehen nicht mehr in den
   Templates; diese Regel fängt nur noch Reste ab, falls doch eines übrig ist. */
[data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ------------------------------------------------------------------ Print */
@media print {
  .site-header, .site-footer, .hero__media, .btn, .search, .play { display: none; }
  body { background: #fff; color: #000; }
  .songbook { columns: 3; }
}

/* ------------------------------------------------ Video-Überlagerung */
/* Abgespielt wird nicht mehr in der Kachel, sondern groß über der Seite.
   Der Player nimmt die Form des Videos an – dadurch gibt es in keiner
   Ausrichtung schwarze Ränder, und ein Hochkantvideo wird endlich groß. */
.vplayer {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgb(20 15 12 / 0.97);
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.vplayer.is-open { opacity: 1; visibility: visible; }
.vplayer video {
  max-width: min(100%, 1400px);
  max-height: 86svh;
  width: auto;
  height: auto;
  background: #000;
  border: 3px solid var(--paper);
  box-shadow: 0 30px 60px rgb(0 0 0 / 0.5);
}
/* Titel und Knopf in einer Zeile, mittig zueinander ausgerichtet. */
.vplayer__kopf {
  position: absolute;
  top: clamp(0.9rem, 3vw, 1.7rem);
  left: clamp(1rem, 4vw, 2.5rem);
  right: clamp(0.9rem, 3vw, 1.7rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vplayer__titel {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 700;
}
.vplayer__close {
  flex: none;
  width: 48px; height: 48px;
  background: transparent;
  border: 2px solid rgb(247 242 230 / 0.5);
  color: var(--paper);
  border-radius: 2px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.vplayer__close:hover { background: var(--rust); border-color: var(--rust); }
.vplayer__close svg { width: 22px; height: 22px; }
body.vplayer-offen { overflow: hidden; }

/* --------------------------------------------------- Motiv-Werkstatt */
/* Nur für die Seite /motiv-test. Die echten Seitenköpfe bleiben davon
   unberührt – dort steht die Klasse page-head--motiv nirgends. */
.page-head--motiv { overflow: hidden; }
.page-head--motiv::after {
  content: '';
  position: absolute;
  /* Läuft rechts und unten über den Rand hinaus; der Kopfbereich schneidet ab.
     Freistehend mit Abstand wirkte es wie ein aufgeklebtes Bild – so wächst es
     in die Leiste hinein. */
  right: -2%;
  bottom: -5%;
  width: clamp(280px, 41vw, 580px);
  height: 105%;
  background: var(--kopfmotiv) right bottom / contain no-repeat;
  /* drop-shadow folgt der Silhouette, nicht dem Rechteck – deshalb hier statt
     box-shadow. Der Schatten steckt bewusst nicht im Bild: eingebrannt ließe
     er sich beim Freistellen nicht sauber vom Weiß trennen. */
  filter: drop-shadow(-8px 6px 16px rgb(58 42 26 / 0.32)) drop-shadow(-2px 2px 4px rgb(58 42 26 / 0.2));
  pointer-events: none;
}
.page-head--motiv .wrap { position: relative; z-index: 1; }
@media (max-width: 780px) {
  .page-head--motiv::after {
    width: clamp(180px, 46vw, 300px);
    height: 70%;
    opacity: 0.4;
  }
}

.kopfprobe { border-top: var(--kante) solid var(--ink); }
.kopfprobe .page-head { border-bottom: 0; padding-top: clamp(2.5rem, 2rem + 3vw, 4rem); }
.kopfprobe__marke {
  margin: 0;
  padding: 0.5rem clamp(1.25rem, 4vw, 2rem);
  background: var(--ink);
  color: var(--paper-2);
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.06em;
}
.kopfprobe__marke b { color: var(--gold); margin-right: 0.5rem; }
