/* Yusuf Sahilli — Handmade Indie Pop from Berlin */

@font-face {
  font-family: "LiebeErika";
  src: url("../assets/fonts/LiebeErika-Bold.woff2") format("woff2"),
       url("../assets/fonts/LiebeErika-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #faf8f3;
  --bg-soft: #f1eee5;
  --ink: #1b1913;
  --ink-soft: rgba(27, 25, 19, 0.65);
  --muted: #6f6b60;
  --line: #e4e0d4;
  --featured: #d5a6b2;
  --featured-deep: #b97f8e;
  --accent: #b97f8e;
  --accent-dark: #9c6272;
  --display: "LiebeErika", "Arial Black", sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Fixe Overlay-Nav ---------- */

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav-overlay.scrolled {
  background: rgba(27, 25, 19, 0.94);
  padding: 14px 32px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Text-Logo (LiebeErika, gestochen scharf, gleiche Schrift wie Menü/Marke) */
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  transition: font-size 0.3s ease;
}

.nav-overlay .brand-text { color: #fff; font-size: 3.5rem; }
.nav-overlay.scrolled .brand-text { font-size: 1.6rem; }
.site-header .brand-text { color: var(--ink); font-size: 1.3rem; }
.site-footer .brand-text { color: var(--ink); font-size: 2.5rem; }

@media (max-width: 820px) {
  .nav-overlay .brand-text { font-size: 1.6rem; }
}

.nav-right { display: flex; align-items: center; gap: 22px; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Sticky "Anfrage"-Button */
.btn-anfrage {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: var(--featured);
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-anfrage:hover { background: #fff; color: var(--ink); }

/* Hamburger (nur mobil) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-overlay.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-overlay.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-overlay.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay nav { display: flex; gap: 26px; }

.nav-overlay nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-overlay nav a:hover { color: var(--featured); }

.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.lang-switch button {
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 11px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch button.active { background: var(--bg); color: var(--ink); }

.lang-switch button:not(.active):hover { color: var(--featured); }

/* ---------- Header (Unterseiten) ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.94);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.site-header .brand img { height: 20px; width: auto; }

.site-header nav { display: flex; gap: 24px; }

.site-header nav a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header nav a:hover { color: var(--accent); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(27, 25, 19, 0.82) 0%, rgba(27, 25, 19, 0.15) 45%, rgba(27, 25, 19, 0.35) 100%);
}

.hero-inner { padding: 0 32px 64px; max-width: 1400px; }

.hero .kicker-hero {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 34px;
  max-width: 12ch;
  color: #fff;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-solid { background: var(--bg); color: var(--ink); }
.btn-solid:hover { background: var(--featured); color: var(--ink); }

.btn-outline { border: 1px solid rgba(255, 255, 255, 0.5); color: #fff; }
.btn-outline:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

.hero .photo-credit {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Streaming-Leiste ---------- */

.stream-strip {
  border-bottom: 1px solid var(--line);
  padding: 24px 32px 26px;
}

.stream-strip .strip-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 40px;
}

.stream-strip span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.stream-strip a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.stream-strip a:hover { color: var(--accent); }

.strip-tagline {
  margin-top: 18px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--ink);
}

/* ---------- Sections ---------- */

section { padding: 96px 0; }

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 44px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head h2 { margin-bottom: 0; }

.section-head > p {
  max-width: 380px;
  font-size: 17px;
  color: var(--muted);
}

/* ---------- Alben ---------- */

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.album a.cover-link {
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
}

.album img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.album a.cover-link:hover img { transform: scale(1.03); }

.album h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-top: 22px;
}

.album .meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.stream-icons { display: inline-flex; gap: 16px; align-items: center; vertical-align: middle; }

.stream-icons a {
  color: var(--ink-soft);
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}

.stream-icons a:hover { color: var(--accent-dark); transform: scale(1.1); }

.stream-icons svg { width: 24px; height: 24px; }

.shop-icons { display: inline-flex; align-items: center; gap: 12px; vertical-align: middle; margin-left: 16px; padding-left: 16px; border-left: 1px solid var(--line); }
.shop-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 2px;
}
.shop-icons a {
  color: var(--ink-soft);
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}
.shop-icons a:hover { color: var(--accent-dark); transform: scale(1.1); }
.shop-icons svg { width: 22px; height: 22px; }

.album-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.sp-play {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.sp-play:hover { background: var(--ink); color: var(--bg); }

.album-press {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.album-press:hover { color: var(--featured-deep); }

.sp-embed { margin-top: 18px; }
.sp-embed iframe { border-radius: 12px; display: block; }

.press-note { margin-top: 40px; }
.press-note a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.press-note a:hover { color: var(--accent-dark); }

.live-intro {
  margin-bottom: 40px;
  color: var(--muted);
}

.past-count { color: var(--muted); font-size: 0.62em; margin-left: 8px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.04em; }
.pc-sel { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.85em; margin-right: 3px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(18, 16, 12, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.lightbox.open { display: flex; }
.lb-content { width: 100%; max-width: 960px; }
.lb-content.spotify { max-width: 560px; }
.lb-content iframe {
  width: 100%;
  border: 0;
  border-radius: 14px;
  display: block;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.lb-content.youtube { aspect-ratio: 16 / 9; }
.lb-content.youtube iframe { width: 100%; height: 100%; }
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lb-close:hover { background: var(--featured-deep); transform: rotate(90deg); }
body.lb-open { overflow: hidden; }

/* Album-Cover als Play-Trigger */
.cover-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--bg-soft);
  cursor: pointer;
  overflow: hidden;
}
.cover-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.cover-btn:hover .cover-img { transform: scale(1.03); opacity: 0.92; }
.album-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(27, 25, 19, 0.72);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.cover-btn:hover .album-play,
.cover-btn:focus-visible .album-play { opacity: 1; }
.cover-btn:hover .album-play { background: var(--featured-deep); }
.album-play::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  transform: translateX(3px);
}

/* Dezenter Spotify-Player unter dem Cover */
.sp-slot:not(:empty) { margin-top: 16px; }
.sp-slot iframe { width: 100%; height: 152px; border: 0; border-radius: 12px; display: block; }

/* Pressetexte über die volle Breite (aufklappbar) */
.press-blocks { margin-top: 48px; border-top: 1px solid var(--line); }
.press-block { border-bottom: 1px solid var(--line); }
.press-block > summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
}
.press-block > summary::-webkit-details-marker { display: none; }
.press-block > summary::after { content: "+"; margin-left: auto; font-size: 1.3rem; line-height: 1; }
.press-block[open] > summary::after { content: "–"; }
.press-block .info-body {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 48px;
  padding: 4px 0 34px;
}
@media (max-width: 820px) {
  .press-block .info-body { grid-template-columns: 1fr; gap: 24px; }
}
.release-meta { margin: 0; font-size: 13.5px; align-self: start; }
.release-meta > div {
  display: flex;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}
.release-meta dt { flex: 0 0 90px; color: var(--muted); }
.release-meta dd { margin: 0; color: var(--ink); }
.press-text { font-size: 14px; line-height: 1.62; color: var(--ink); }
.press-text p + p { margin-top: 10px; }
.info-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.copy-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.copy-btn:hover, .copy-btn.copied { background: var(--ink); color: var(--bg); }
.info-actions a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.info-actions a:hover { color: var(--featured-deep); }

/* ---------- Sticky Streaming/Social-Rail ---------- */

.social-rail {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 7px;
  background: rgba(27, 25, 19, 0.7);
  border-radius: 40px;
  backdrop-filter: blur(6px);
}

.social-rail a {
  color: #fff;
  opacity: 0.82;
  display: flex;
  padding: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.social-rail a:hover { opacity: 1; color: var(--featured); transform: scale(1.12); }
.social-rail svg { width: 20px; height: 20px; }

/* Rail nur zeigen, wenn genug Rand neben dem 1200px-Inhalt ist (kein Überlappen) */
@media (max-width: 1340px) { .social-rail { display: none; } }

/* Icons in der Streaming-Leiste */
.strip-icons { display: flex; gap: 20px; align-items: center; }
.strip-icons a {
  color: var(--ink-soft);
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}
.strip-icons a:hover { color: var(--accent); transform: translateY(-2px); }
.strip-icons svg { width: 22px; height: 22px; }

/* ---------- Videos (Featured Alt-Rosa) ---------- */

.videos-dark { background: var(--featured); color: var(--ink); }

.videos-dark .kicker { color: var(--ink); opacity: 0.65; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #000;
  display: block;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.video-facade:hover img { opacity: 1; transform: scale(1.02); }

.video-facade .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 50px;
  background: rgba(250, 248, 243, 0.92);
  transition: background 0.3s ease;
}

.video-facade:hover .play { background: var(--featured-deep); }

.video-facade .play::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 16px solid var(--ink);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(2px);
}

.video-facade:hover .play::after { border-left-color: #fff; }

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.video-wrap h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin-top: 16px;
  color: var(--ink);
}

/* ---------- Live / Tour ---------- */

.tour-list { border-bottom: 1px solid var(--line); }
#tour-list:has(.live-empty) { border-bottom: 0; }

.tour-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 48px;
  padding: 28px 0;
}

.tour-row + .tour-row { border-top: 1px solid var(--line); }

.tour-date {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--accent-dark);
  min-width: 130px;
}

.tour-venue { font-weight: 700; text-transform: uppercase; font-size: 1.05rem; }

.tour-city {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.tour-info { flex: 1; }

.btn-tickets {
  padding: 12px 26px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.btn-tickets:hover { background: var(--featured-deep); color: #fff; }

.soldout {
  padding: 12px 26px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.live-empty {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 40px 0;
  color: var(--featured-deep);
}

.live-sub {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.past-shows { margin-top: 44px; border-top: 1px solid var(--line); }
.past-shows summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.past-shows summary::-webkit-details-marker { display: none; }
.past-shows summary::after { content: "+"; margin-left: auto; font-size: 1.5rem; line-height: 1; }
.past-shows[open] summary::after { content: "–"; }

.past-cols { column-count: 2; column-gap: 48px; padding-bottom: 20px; }
.past-row {
  break-inside: avoid;
  display: flex;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.past-row .pd { color: var(--muted); white-space: nowrap; flex: 0 0 90px; font-variant-numeric: tabular-nums; }
.past-row .pv { color: var(--ink); }

@media (max-width: 640px) { .past-cols { column-count: 1; } }

/* ---------- Fotos ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid figure { overflow: hidden; position: relative; margin: 0; }

.gallery-grid figure:first-child { grid-column: span 2; grid-row: span 2; }

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img { transform: scale(1.03); }

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 12px 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(to top, rgba(27, 25, 19, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid figure:hover figcaption { opacity: 1; }

/* ---------- Downloads ---------- */

.dl-list { display: grid; gap: 16px; max-width: 900px; }

.dl-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 32px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px 28px;
}

.dl-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dl-card .dl-meta {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.dl-card a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.dl-card a:hover { color: var(--featured-deep); }

/* ---------- Über ---------- */

.bio-full { margin-bottom: 48px; }
.bio-full .bio { columns: 2; column-gap: 48px; }
.bio p { break-inside: avoid; }
.bio p + p { margin-top: 16px; }

@media (max-width: 820px) {
  .bio-full .bio { columns: 1; }
}

/* ---------- Kontakt ---------- */

.contact { text-align: center; background: var(--featured); }

.contact .kicker { color: var(--ink); opacity: 0.7; }

.contact h2 { margin-bottom: 28px; color: var(--ink); }

.contact .email {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
  padding-bottom: 2px;
}

.contact .email:hover { color: #fff; border-color: #fff; }

.contact p.sub { margin-top: 20px; color: rgba(27, 25, 19, 0.7); }

/* ---------- Footer (rosa, wie die anderen Rosa-Töne) ---------- */

.site-footer {
  background: var(--featured);
  padding: 44px 0 50px;
  font-size: 14px;
  color: var(--ink);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.social-nav { display: flex; gap: 20px; align-items: center; }

.social-nav a {
  color: var(--ink);
  opacity: 0.8;
  display: inline-flex;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-nav a:hover { opacity: 1; transform: translateY(-2px); }

.social-nav svg { width: 22px; height: 22px; }

.legal-nav { display: flex; gap: 14px 22px; flex-wrap: wrap; }
.social-nav { flex-wrap: wrap; }

.legal-nav a {
  color: rgba(27, 25, 19, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-nav a:hover { color: var(--ink); }

/* ---------- Cookie-Banner ---------- */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  padding: 22px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.32);
}

.cookie-banner p {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner a { color: var(--featured); text-decoration: underline; }
.cookie-banner a:hover { color: #fff; }

.cookie-actions { display: flex; gap: 10px; }

.cookie-banner button {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ck-accept { background: var(--featured); color: var(--ink); }
.ck-accept:hover { background: #fff; }

.ck-decline {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.ck-decline:hover { border-color: #fff; }

@media (max-width: 560px) {
  .cookie-actions { width: 100%; }
  .cookie-banner button { flex: 1; }
}

/* ---------- Legal pages ---------- */

.legal-page { padding: 56px 0 80px; max-width: 800px; font-size: 18px; }

.legal-page h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.6rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: none;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 36px 0 12px;
}

.legal-page h4 { margin: 28px 0 10px; }

.legal-page p { margin-bottom: 14px; }

.legal-page ul { margin: 0 0 14px 22px; }

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */

@media (max-width: 820px) {
  body { font-size: 18px; }
  .album-grid { grid-template-columns: 1fr; gap: 48px; }
  .video-grid { grid-template-columns: 1fr; }
  .live-flex { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-overlay { padding: 20px 24px; }
  .hero-inner { padding: 0 24px 48px; }
}

@media (max-width: 720px) {
  .nav-overlay { padding: 16px 20px; }
  .nav-overlay.scrolled { padding: 12px 20px; }
  .nav-overlay .brand { display: block; }
  .nav-overlay .brand-text { font-size: 2.3rem; }
  .nav-overlay.scrolled .brand-text { font-size: 1.5rem; }
  .nav-toggle { display: flex; }
  .site-footer .container { justify-content: center; text-align: center; }
  .social-nav, .legal-nav { justify-content: center; width: 100%; }
  .nav-right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: rgba(27, 25, 19, 0.97);
    padding: 28px 24px 36px;
    display: none;
  }
  .nav-overlay.nav-open .nav-right { display: flex; }
  .nav-overlay nav { flex-direction: column; align-items: center; gap: 22px; }
  .nav-overlay nav a { font-size: 15px; letter-spacing: 0.16em; }
  .btn-anfrage { padding: 12px 28px; }
}

@media (max-width: 560px) {
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 10px; letter-spacing: 0.08em; }
  .site-header .brand-text { font-size: 1.05rem; }
  .btn { padding: 14px 22px; }
  .tour-date { min-width: auto; }
  .hero-cta { flex-wrap: nowrap; gap: 10px; }
  .hero-cta .btn { flex: 1 1 0; min-width: 0; padding: 15px 6px; font-size: 10.5px; letter-spacing: 0.06em; text-align: center; }
}
