/* =====================================================
   JOSEF KINND v2 — styles.css
   Ästhetik: Linoldruck / Woodblock Print
   ===================================================== */

/* ═══════════════════════════════════════════════════
   CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════ */
:root {
  --paper:      #e7e0cb;
  --ink:        #18100a;
  --ink-soft:   #3a2416;
  --ink-muted:  #7a5c3a;
  --rust:       #7c2d12;
  --paper-dark: #d6cebc;

  --font-stamp: 'Special Elite', 'Courier New', Courier, serif;

  --container-max: 1140px;
  --container-pad: 1.25rem;

  --header-h: 4rem;

  --t-fast: 0.18s ease;
  --t-base: 0.32s ease;
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ═══════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-stamp);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* SVG Noise-Grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}
body::-webkit-scrollbar { display: none; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

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


/* ═══════════════════════════════════════════════════
   TYPOGRAFIE
   ═══════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-stamp);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 7vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); }

p { max-width: 65ch; }


/* ═══════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════ */
.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--rust); color: var(--paper);
  font-family: var(--font-stamp); font-size: 0.85rem;
  border: 2px solid var(--ink);
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

.section-label {
  font-family: var(--font-stamp);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
  max-width: none;
}

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


/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-stamp);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 2px;
  box-shadow: 3px 3px 0 var(--ink-soft);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background-color var(--t-fast), color var(--t-fast);
}
.btn:hover {
  background: var(--paper);
  color: var(--ink);
}
.btn:active {
  box-shadow: 1px 1px 0 var(--ink-soft);
  transform: translate(2px, 2px);
}


/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: var(--paper);
  border-bottom: 2px solid var(--ink);
  transition: background-color var(--t-base);
}
.site-header--scrolled {
  background-color: var(--paper-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  height: var(--header-h);
}

.site-header__logo {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 8px;
}
.site-header__logo-name {
  font-family: var(--font-stamp);
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}
.site-header__logo-sub {
  font-family: var(--font-stamp);
  font-size: 0.62rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  display: block;
  line-height: 1.2;
}

/* Desktop Nav */
.site-nav { margin-left: auto; display: none; }
.site-nav__list { display: flex; gap: 1.75rem; align-items: center; }
.site-nav__link {
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color var(--t-fast);
  position: relative;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background-color: var(--rust);
  transition: width var(--t-base);
}
.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link--current { color: var(--ink); }
.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link--current::after { width: 100%; }

/* Sprachumschalter */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 1.25rem;
}
.lang-toggle__btn {
  font-family: var(--font-stamp);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  padding: 0.15rem 0.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
  text-transform: uppercase;
}
.lang-toggle__btn--active,
.lang-toggle__btn:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.lang-toggle__btn--active { text-decoration: underline; text-underline-offset: 3px; }
.lang-toggle__divider { color: var(--ink-muted); font-size: 0.72rem; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle__bar {
  display: block;
  width: 22px; height: 2px;
  background-color: var(--ink);
  transition: transform var(--t-base), opacity var(--t-fast);
  transform-origin: center;
}
.nav-toggle--open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle--open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background-color: var(--paper-dark);
  border-top: 2px solid var(--ink);
}
.mobile-nav--open { display: block; }
.mobile-nav__list {
  display: flex; flex-direction: column;
  padding: 1rem var(--container-pad) 1.5rem;
  gap: 0.75rem;
}
.mobile-nav__link {
  font-family: var(--font-stamp);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--t-fast);
}
.mobile-nav__link:hover { color: var(--rust); }

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


/* ═══════════════════════════════════════════════════
   PANELS (Sections) — Scroll-Snap
   ═══════════════════════════════════════════════════ */
.panel {
  height: 100dvh;
  scroll-snap-align: start;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  background-color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Erste Section: kein border-top (Header sitzt direkt drüber) */
.panel--ueber { border-top: none; }

.panel__inner {
  max-width: var(--container-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: 1.5rem;
  padding-top: calc(var(--header-h) + 1.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  overflow-y: auto;
  max-height: 100dvh;
}

@media (min-width: 768px) {
  .panel__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    overflow-y: visible;
    padding-top: calc(var(--header-h) + 2rem);
  }
}

@media (min-width: 1024px) {
  .panel__inner {
    padding-inline: 2.5rem;
    gap: 5rem;
  }
}


/* ═══════════════════════════════════════════════════
   SECTION 1: REINHÖREN
   ═══════════════════════════════════════════════════ */
.panel--rein .panel__inner {
  align-items: center;
}

.panel__col--player {
  display: flex;
  flex-direction: column;
}

.panel__col--info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.album-label {
  font-family: var(--font-stamp);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  max-width: none;
}

.album-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.05;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}

.album-desc p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
}
.album-desc em { font-style: italic; color: var(--rust); }

.album-credits {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  border-top: 1px solid var(--paper-dark);
  padding-top: 0.5rem;
  max-width: none;
}
.credits-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}

/* Tracklist */
.tracklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.tracklist__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--paper-dark);
}
.tracklist__item:last-child { border-bottom: none; }
.tracklist__num {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--rust);
  flex-shrink: 0;
  width: 1.6rem;
}
.tracklist__title {
  font-size: 0.88rem;
  color: var(--ink);
  letter-spacing: 0.03em;
}

/* Kaufen */
.album-buy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.buy-info {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  max-width: none;
}


/* ═══════════════════════════════════════════════════
   KASSETTE (vollständig übernommen)
   ═══════════════════════════════════════════════════ */
.cassette {
  position: relative;
  width: min(480px, 100%);
  margin-inline: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.4));
  transform: rotate(-2deg);
  transition: transform var(--t-slow);
}
.cassette:hover { transform: rotate(-2deg) translateY(-4px) scale(1.01); }

/* Kratzer-Overlay */
.cassette::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  z-index: 8;
  background:
    linear-gradient(74deg, transparent 28%, rgba(255,255,255,0.024) 28.6%, transparent 29.2%),
    linear-gradient(68deg, transparent 53%, rgba(255,255,255,0.016) 53.5%, transparent 54.1%),
    linear-gradient(79deg, transparent 11%, rgba(255,255,255,0.02) 11.6%, transparent 12.2%),
    linear-gradient(71deg, transparent 74%, rgba(255,255,255,0.015) 74.5%, transparent 75.1%);
}

/* Gehäuse */
.cassette__body {
  position: relative;
  background: linear-gradient(160deg, #2e2e2c 0%, #222220 45%, #1c1c1a 100%);
  border-radius: 8px;
  border: 1.5px solid #141413;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -2px 5px rgba(0,0,0,0.6),
    0 2px 0 #0e0e0d,
    0 3px 12px rgba(0,0,0,0.35);
  padding: 8px 16px 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Schrauben */
.cassette__screw {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #2e2a28, #151312, #0a0908);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.95), 0 1px 0 rgba(255,255,255,0.04);
}
.cassette__screw::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  transform: rotate(40deg);
}
.cassette__screw--tl { top: 10px; left: 12px; }
.cassette__screw--tr { top: 10px; right: 12px; }
.cassette__screw--bl { bottom: 10px; left: 12px; }
.cassette__screw--br { bottom: 10px; right: 12px; }

/* Vier Löcher */
.cassette__holes {
  display: flex;
  justify-content: space-around;
  padding: 0 28px;
  flex-shrink: 0;
}
.cassette__holes span {
  width: 7px; height: 9px;
  background: #020101;
  border-radius: 1px 1px 3px 3px;
  box-shadow: inset 0 3px 4px rgba(0,0,0,1), 0 1px 0 rgba(255,255,255,0.04);
}

/* Zähler-Fenster */
.cassette__counter {
  width: 20%; height: 6px;
  background: #050404;
  border-radius: 2px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,1), 0 1px 0 rgba(255,255,255,0.03);
  margin: 0 auto;
  flex-shrink: 0;
}

/* Spulenbereich */
.cassette__reels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 4px;
}

.cassette__reel-window {
  width: 20%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #040303;
  box-shadow:
    inset 0 3px 10px rgba(0,0,0,1),
    inset 0 0 0 1.5px #0e0c0c,
    0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cassette__reel {
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #282420 0% 13%, transparent 13% 44%, #3e2a0e 44% 50%, transparent 50%),
    conic-gradient(
      #080706 0deg 8deg,   #131110 8deg 72deg,
      #080706 72deg 80deg,  #131110 80deg 144deg,
      #080706 144deg 152deg, #131110 152deg 216deg,
      #080706 216deg 224deg, #131110 224deg 288deg,
      #080706 288deg 296deg, #131110 296deg 360deg
    );
}
.cassette__reel--left  { animation: reelSpin 3s linear infinite; }
.cassette__reel--right { animation: reelSpin 3s linear infinite; animation-delay: -1.5s; }
.cassette--paused .cassette__reel { animation-play-state: paused; }

/* Magnetband */
.cassette__tape-bridge {
  flex: 1;
  align-self: stretch;
  background: #06050400;
  border-radius: 4px;
  box-shadow: inset 0 3px 10px rgba(0,0,0,0.95), inset 0 0 0 1px #0a0808;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.cassette__tape-bridge::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,14,8,0.55);
  pointer-events: none;
  z-index: 1;
}
.cassette__tape-strip {
  position: absolute;
  inset: 30% 0;
  background: repeating-linear-gradient(
    90deg,
    #1e0e04 0px, #3a1e08 3px, #4d2a0c 5px, #3a1e08 7px, #1e0e04 10px
  );
  background-size: 10px 100%;
  animation: tapeScroll 0.35s linear infinite;
}
.cassette--paused .cassette__tape-strip { animation-play-state: paused; }

/* Etikett */
.cassette__label {
  background: #f2ece0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}
.cassette__label-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 10px;
  background: linear-gradient(to right, #1a5590, #2870c0 50%, #1a5590);
  flex-shrink: 0;
}
.cassette__label-meta { display: flex; flex-direction: column; gap: 1px; overflow: hidden; min-width: 0; }
.cassette__label-title { font-family: var(--font-stamp); font-size: 0.68rem; font-style: italic; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cassette__label-artist { font-family: var(--font-stamp); font-size: 0.5rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); text-transform: uppercase; }
.cassette__label-side { font-family: var(--font-stamp); font-size: 0.62rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.9); flex-shrink: 0; }

.cassette__embed { overflow: hidden; background: white; margin: 0 20px 4px; }
.cassette__embed iframe { width: 100%; height: 118px; border: none; display: block; }

/* Kopfschlitz */
.cassette__slot {
  height: 4px;
  background: #060505;
  border-radius: 2px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,1);
  margin: 0 20%;
}

/* Washi-Tape */
.cassette__washi {
  position: absolute;
  border-radius: 1px;
  pointer-events: none;
  z-index: 9;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.cassette__washi--1 {
  top: 6%; right: 5%;
  width: 72px; height: 15px;
  background: repeating-linear-gradient(
    0deg,
    rgba(205,170,95,0.68) 0px, rgba(205,170,95,0.68) 2px,
    rgba(188,152,78,0.68) 2px, rgba(188,152,78,0.68) 4px
  );
  transform: rotate(26deg);
}
.cassette__washi--2 {
  bottom: 10%; left: 4%;
  width: 52px; height: 13px;
  background: repeating-linear-gradient(
    90deg,
    rgba(100,165,158,0.62) 0px, rgba(100,165,158,0.62) 3px,
    rgba(82,148,140,0.62) 3px, rgba(82,148,140,0.62) 6px
  );
  transform: rotate(-16deg);
}

@media (max-width: 420px) {
  .cassette__embed iframe { height: 100px; }
  .cassette__washi { display: none; }
}

/* ───────────────────────────────────────────
   BANDCAMP PLAYER WRAP (mit Tape-Ecken)
   ─────────────────────────────────────────── */
.player-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: white;
  border: 1px solid var(--paper-dark);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 6px;
}

.player-wrap iframe {
  display: block;
  width: 100%;
  height: 120px;
  border: none;
}

.player-tape {
  position: absolute;
  width: 56px;
  height: 16px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.22);
}
.player-tape--tl {
  top: -9px; left: -6px;
  transform: rotate(-38deg);
  background: repeating-linear-gradient(
    0deg,
    rgba(195,162,105,0.68) 0px, rgba(195,162,105,0.68) 2px,
    rgba(178,148,90,0.68)  2px, rgba(178,148,90,0.68)  4px
  );
}
.player-tape--tr {
  top: -9px; right: -6px;
  transform: rotate(38deg);
  background: repeating-linear-gradient(
    90deg,
    rgba(140,178,148,0.62) 0px, rgba(140,178,148,0.62) 3px,
    rgba(120,158,128,0.62) 3px, rgba(120,158,128,0.62) 6px
  );
}
.player-tape--bl {
  bottom: -9px; left: -6px;
  transform: rotate(38deg);
  background: repeating-linear-gradient(
    90deg,
    rgba(140,178,148,0.62) 0px, rgba(140,178,148,0.62) 3px,
    rgba(120,158,128,0.62) 3px, rgba(120,158,128,0.62) 6px
  );
}
.player-tape--br {
  bottom: -9px; right: -6px;
  transform: rotate(-38deg);
  background: repeating-linear-gradient(
    0deg,
    rgba(195,162,105,0.68) 0px, rgba(195,162,105,0.68) 2px,
    rgba(178,148,90,0.68)  2px, rgba(178,148,90,0.68)  4px
  );
}


/* ═══════════════════════════════════════════════════
   SECTION 2: ÜBER
   ═══════════════════════════════════════════════════ */
.panel--ueber .panel__inner {
  align-items: center;
}

.panel__col--photo {
  display: flex;
  justify-content: center;
}

/* Polaroid */
.polaroid {
  position: relative;
  display: inline-block;
  background: white;
  padding: 10px 10px 44px;
  max-width: 400px;
  width: 100%;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
  border: 1px solid var(--paper-dark);
}
.polaroid::before {
  content: '';
  position: absolute;
  top: -10px; left: 24px;
  width: 58px; height: 20px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    0deg,
    rgba(195,162,105,0.6) 0px, rgba(195,162,105,0.6) 2px,
    rgba(178,148,90,0.6)  2px, rgba(178,148,90,0.6)  4px
  );
  transform: rotate(-12deg);
}
.polaroid::after {
  content: '';
  position: absolute;
  top: -10px; right: 20px;
  width: 52px; height: 20px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    0deg,
    rgba(140,178,148,0.55) 0px, rgba(140,178,148,0.55) 2px,
    rgba(120,158,128,0.55) 2px, rgba(120,158,128,0.55) 4px
  );
  transform: rotate(10deg);
}

.polaroid__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(0.12) contrast(1.05);
}

.panel__col--bio {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bio p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  max-width: 55ch;
}
.bio p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════════════
   SECTION 3: LIVE
   ═══════════════════════════════════════════════════ */
.panel--live {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel__inner--live {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.live-header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

/* Show-Card — Ticket-Optik */
.show-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0;
  align-items: stretch;
  padding: 1.25rem 1.5rem;
  background-color: var(--paper-dark);
  border: 2px dashed var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  max-width: 680px;
}

.show-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  font-family: var(--font-stamp);
  text-align: center;
  padding-right: 1.25rem;
  border-right: 2px dashed var(--ink);
  margin-right: 1.25rem;
}
.show-card__day {
  font-size: 2rem;
  line-height: 1;
  color: var(--rust);
}
.show-card__month {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  max-width: none;
}
.show-card__year {
  font-size: 0.62rem;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  max-width: none;
}

.show-card__info { flex: 1; }
.show-card__venue {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
  max-width: none;
}
.show-card__location {
  font-size: 0.82rem;
  color: var(--ink-muted);
  max-width: none;
}
.show-card__stage { font-style: italic; }
.show-card__time {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-top: 0.15rem;
  max-width: none;
}

.show-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  border-left: 2px dashed var(--ink);
}

.btn--cal {
  font-size: 0.68rem;
  padding: 0.4rem 0.75rem;
  white-space: normal;
  text-align: center;
  width: 100%;
  line-height: 1.3;
  box-shadow: 2px 2px 0 var(--ink-soft);
}

.show-card__cal-confirm {
  font-family: var(--font-stamp);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: #2a6e2a;
  max-width: none;
}

.live-booking-hint {
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  max-width: none;
}
.live-booking-hint a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.live-booking-hint a:hover { color: var(--ink); }


/* ═══════════════════════════════════════════════════
   SECTION 4: BOOKING
   ═══════════════════════════════════════════════════ */
.panel--booking {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel--booking .panel__inner {
  flex: 1;
  align-items: center;
  align-content: center;
}

.panel__col--booking-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-intro p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
}

.booking-formats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--paper-dark);
  margin-top: 0.5rem;
}
.booking-format {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.booking-format__icon {
  color: var(--rust);
  font-size: 1rem;
}

.panel__col--booking-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
}

.booking-card__label {
  font-family: var(--font-stamp);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: -0.25rem;
}

.booking-card {
  background-color: var(--paper-dark);
  border: 2px solid var(--ink);
  padding: 1.75rem;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 340px;
}

.booking-card__btn {
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
}

.booking-card__email {
  text-align: center;
  max-width: none;
}
.booking-card__email-link {
  font-family: var(--font-stamp);
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.booking-card__email-link:hover { color: var(--rust); }

.booking-card__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-card__divider {
  border: none;
  border-top: 1px solid var(--ink);
  opacity: 0.2;
  margin: 0.25rem 0;
}

.booking-card__note {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-align: center;
  opacity: 0.8;
  max-width: none;
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  border-top: 2px solid var(--ink);
  padding: 1rem var(--container-pad);
  background-color: var(--paper-dark);
  flex-shrink: 0;
}

.site-footer__text {
  font-family: var(--font-stamp);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-align: center;
  max-width: none;
}

.site-footer__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.site-footer__text a:hover { color: var(--ink); }


/* ═══════════════════════════════════════════════════
   SCROLL-REVEAL
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.35s; }
.reveal[data-delay="4"] { transition-delay: 0.5s; }


/* ═══════════════════════════════════════════════════
   TYPEWRITER
   ═══════════════════════════════════════════════════ */
.tw-char {
  opacity: 0;
  animation: twChar 0.01s var(--tw-d, 0s) ease forwards;
}
@keyframes twChar { to { opacity: 1; } }


/* ═══════════════════════════════════════════════════
   ANIMATIONEN
   ═══════════════════════════════════════════════════ */
@keyframes reelSpin { to { transform: rotate(360deg); } }
@keyframes tapeScroll { from { background-position: 0 0; } to { background-position: 10px 0; } }


/* ═══════════════════════════════════════════════════
   MOBILE — Snap deaktivieren, Sections stacken
   ═══════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .lang-toggle {
    margin-left: auto;
  }

  html {
    height: auto;
    overflow: visible;
  }

  body {
    height: auto;
    overflow-y: auto;
    scroll-snap-type: none;
  }

  .panel {
    height: auto;
    min-height: 100dvh;
    scroll-snap-align: none;
    overflow: visible;
  }

  .panel__inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 1.25rem);
    overflow-y: visible;
    max-height: none;
    padding-block: 2rem;
    padding-top: calc(var(--header-h) + 1.25rem);
  }

  .panel__inner--live {
    display: flex;
    flex-direction: column;
  }

  .panel--booking {
    justify-content: flex-start;
  }

  .cassette {
    width: min(380px, 100%);
    transform: rotate(-1deg);
  }

  .polaroid {
    max-width: 240px;
  }

  .show-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .show-card__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    border-left: none;
    border-top: 2px dashed var(--ink);
    padding-left: 0;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
  }

  .booking-card {
    max-width: 100%;
  }
}


/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { animation: none; transition: none; opacity: 1; transform: none; }
  .cassette__reel { animation: none; }
  .cassette__tape-strip { animation: none; }
  .tw-char { animation: none; opacity: 1; }
}
