/* =========================================================
   dots & lies — Band-Website
   Reines CSS, kein Framework, kein JavaScript.
   ========================================================= */

:root {
  --bg: #0b0b0d;
  --bg-alt: #151517;
  --bg-raised: #1c1c1f;
  --line: #2a2a2e;
  --ink: #f0f0ee;
  --muted: #9a9aa2;
  --truth: #e8c13d;   /* dots = truth, gelb wie das Cover */
  --truth-dim: #8a721f;
  --lie: #9c2b2b;     /* lies = red */
  --lie-bright: #d43f3f;
  --max: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- signature wordmark: dots & lies ---------- */
.wordmark {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.wordmark .dots { color: var(--truth); }
.wordmark .amp { color: var(--muted); font-weight: 400; margin: 0 0.15em; }
.wordmark .lies {
  color: var(--lie-bright);
  position: relative;
}
.wordmark .lies::after {
  /* der durchgestrichene "Riss" durch das Wort "lies" */
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 55%;
  height: 2px;
  background: var(--lie-bright);
  transform: rotate(-3deg);
  opacity: 0.8;
}

.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 34px; width: auto; display: block; }
.footer-logo { height: 24px; width: auto; opacity: 0.92; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-header .wordmark { font-size: 1.15rem; }
.site-header .wordmark a { text-decoration: none; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--truth);
}

@media (min-width: 700px) {
  .hero-symbol { height: 50px; }
  .hero-wordmark { height: 96px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(11,11,13,0.35) 0%, rgba(11,11,13,0.75) 60%, var(--bg) 100%),
              var(--bg-alt) center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  padding: 48px 24px 56px;
  width: 100%;
}
.hero-brand {
  position: relative;
  display: table;
  margin: 44px 0 20px;
}
.hero-symbol {
  position: absolute;
  left: 61.5%;
  bottom: 100%;
  transform: translateX(-50%);
  height: 40px;
  width: auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.6));
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--truth);
  margin: 0 0 14px;
}
.hero-wordmark {
  display: block;
  height: 76px;
  width: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.75)) drop-shadow(0 0 24px rgba(0,0,0,0.5));
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.hero h1 .truth-word { color: var(--truth); }
.hero h1 .lie-word { color: var(--lie-bright); }
.hero p.lede {
  max-width: 46ch;
  color: #e4e4e2;
  font-size: 1.05rem;
  margin: 0 0 28px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 1px 14px rgba(0,0,0,0.7);
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  border-radius: 2px;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--truth); color: #171208; }
.btn-primary:hover { background: #f0cd52; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--muted); }

/* ---------- torn divider (Signature-Element) ---------- */
.divider {
  height: 22px;
  background: var(--bg);
  clip-path: polygon(
    0% 100%, 4% 40%, 9% 90%, 15% 20%, 22% 75%, 29% 10%, 36% 60%,
    43% 30%, 50% 85%, 57% 15%, 64% 65%, 71% 25%, 78% 80%, 85% 35%,
    92% 70%, 100% 100%, 100% 0%, 0% 0%
  );
  background: var(--bg-alt);
}

/* ---------- generic section ---------- */
section { padding: 64px 0; }
section.alt { background: var(--bg-alt); }
.section-head { margin-bottom: 32px; }
.section-head .eyebrow { margin-bottom: 6px; }
.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* ---------- songwriting & booking (home) ---------- */
.songwriting-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: center;
}
.songwriting-copy p { color: var(--muted); margin: 0 0 4px; }
.songwriting-copy p a.inline-link { color: var(--truth); text-decoration: underline; text-underline-offset: 3px; }
.songwriting-copy p.cta-line {
  color: var(--truth);
  font-weight: 700;
  font-size: 1.05rem;
}
.songwriting-copy p.cta-line a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.songwriting-grid img { border: 1px solid var(--line); }

/* ---------- release / bandcamp ---------- */
.release-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
}
.release-grid img { border: 1px solid var(--line); }
.release-copy p { color: var(--muted); }
.bandcamp-frame {
  border: 1px solid var(--line);
  background: var(--bg-raised);
  padding: 4px;
}
.bandcamp-frame iframe {
  width: 100%;
  border: 0;
  display: block;
}

/* ---------- icon links (social / streaming) ---------- */
.icon-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.icon-link img { display: block; }

/* ---------- singles strip ---------- */
.singles-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.singles-strip img { aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); }

/* ---------- EPK: bio / lineup ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.bio-grid .photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.bio-grid .photos img { border: 1px solid var(--line); width: 100%; }

.lineup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}
.lineup li {
  border: 1px solid var(--line);
  background: var(--bg-raised);
  padding: 16px;
}
.lineup .name { font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
.lineup .role { color: var(--muted); font-size: 0.9rem; margin-top: 2px; }

/* ---------- fact list (releases meta, shows) ---------- */
.fact-list { list-style: none; padding: 0; margin: 12px 0 0; }
.fact-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.fact-list li:first-child { border-top: none; }
.fact-list dt, .fact-list .k { color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.75rem; }

.show-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.show-photos img { border: 1px solid var(--line); }

.press-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--truth);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-box {
  border: 1px solid var(--truth-dim);
  background: linear-gradient(180deg, rgba(232,193,61,0.08), transparent);
  padding: 28px;
  margin-top: 16px;
}
.booking-box a { color: var(--truth); font-weight: 700; text-decoration: underline; }

/* ---------- impressum ---------- */
.legal dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 16px;
  margin: 0;
}
.legal dt { color: var(--muted); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.06em; padding-top: 3px; }
.legal dd { margin: 0; }
.legal h2 { margin-top: 40px; }
.legal .note {
  color: var(--muted);
  font-size: 0.9rem;
  border-left: 2px solid var(--truth-dim);
  padding-left: 14px;
  margin-top: 8px;
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: var(--bg);
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-nav a { text-decoration: none; color: var(--muted); font-size: 0.85rem; }
.footer-nav a:hover { color: var(--ink); }
.copyright { color: var(--muted); font-size: 0.8rem; }

/* ---------- accessibility ---------- */
:focus-visible { outline: 2px solid var(--truth); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .release-grid { grid-template-columns: 1fr; }
  .songwriting-grid { grid-template-columns: 1fr; }
  .songwriting-grid img { max-width: 320px; }
  .bio-grid { grid-template-columns: 1fr; }
  .lineup { grid-template-columns: repeat(2, 1fr); }
  .legal dl { grid-template-columns: 1fr; }
  .legal dt { padding-top: 12px; }
}
@media (max-width: 640px) {
  .site-header .wrap { height: 64px; }
  .main-nav ul { gap: 16px; }
  .main-nav a { font-size: 0.72rem; letter-spacing: 0.08em; }
  .singles-strip { grid-template-columns: repeat(3, 1fr); }
  .show-photos { grid-template-columns: 1fr; }
  .icon-columns { grid-template-columns: 1fr; gap: 20px; }
  section { padding: 44px 0; }
}
@media (max-width: 420px) {
  .main-nav a { font-size: 0.66rem; }
  .cta-row { flex-direction: column; }
  .btn { text-align: center; }
}
