/* =========================================================
   Meller to the Bone — Onepager (Bold-Theme)
   Nachbau des claude.ai/design-Entwurfs als statische Seite.
   Theme-Variablen = "bold" (Dark + Silber).
   ========================================================= */

:root {
  --bg:        #0d0d0d;
  --fg:        #ffffff;
  --muted:     #9b9b9b;
  --accent:    #cfd4da;
  --line:      #2a2a2a;
  --panel:     #161616;
  --panelfg:   #ffffff;
  --btn-bg:    #d4d8de;
  --btn-fg:    #0d0d0d;
  --radius:    16px;
  --dispfont:  'Archivo', sans-serif;
  --dispweight:900;
  --bodyfont:  'Archivo', sans-serif;
  --shadow:    0 14px 40px rgba(0,0,0,.5);
  --hero-bg:   #161616;
  --sigop:     .11;
  --sigfilter: invert(1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--bodyfont);
  font-weight: 500;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; }
input::placeholder { color: var(--muted); opacity: 1; }

@keyframes mttb-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes mttb-in    { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.container { max-width: 550px; margin: 0 auto; padding: 0 22px; }
.is-hidden { display: none !important; }
/* nur für Screenreader/Suchmaschinen sichtbar (visuell versteckt) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- HERO ---------- */
.hero { padding: 96px 0 34px; text-align: center; position: relative; }
.hero__sig {
  position: absolute; top: 47%; left: 50%;
  width: min(155%, 780px);
  max-width: none;            /* darf über die Containerbreite hinausragen (bleed) */
  transform: translate(-50%, -50%) rotate(-13deg);
  opacity: var(--sigop); filter: var(--sigfilter);
  pointer-events: none; z-index: 0;
}
.hero__title {
  position: relative; z-index: 1; margin: 0;
  font-family: var(--dispfont); font-weight: var(--dispweight);
  font-size: clamp(40px, 13vw, 76px); line-height: .9;
  text-transform: uppercase; letter-spacing: -.015em; color: var(--fg);
}
.hero__lead {
  position: relative; z-index: 1; margin: 22px auto 0; max-width: 400px;
  font-size: 16px; line-height: 1.5; color: var(--muted);
}
.hero__lead strong { color: var(--fg); font-weight: 700; }

/* ---------- SECTIONS ---------- */
.section { padding: 30px 0; }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.section-label::before {
  content: ""; width: 26px; height: 4px;
  background: var(--accent); display: inline-block;
}
.section-label span {
  font-size: 12px; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- CARD ---------- */
.card {
  background: var(--panel); color: var(--panelfg);
  border: 2px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px 24px; overflow: hidden;
}
.card__title {
  margin: 0 0 4px;
  font-family: var(--dispfont); font-weight: var(--dispweight);
  font-size: clamp(24px, 7vw, 36px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: -.01em;
}

/* ---------- RELEASE ---------- */
.release__photo { margin: -26px -24px 22px; border-bottom: 2px solid var(--line); }
.release__photo img { display: block; width: 100%; height: auto; }
.release__sub {
  font-size: 14px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.release__list { display: flex; flex-direction: column; border-top: 2px solid var(--line); }
.release__row {
  display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 30%, transparent);
}
.release__row-name { font-weight: 700; }
.release__row-qty  { font-variant-numeric: tabular-nums; color: var(--muted); font-weight: 600; }
.release__note { padding: 13px 0; color: var(--muted); font-size: 14px; }

/* ---------- BUTTON ---------- */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px; background: var(--btn-bg); color: var(--btn-fg);
  text-decoration: none; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; font-size: 14px; border-radius: var(--radius);
  border: none; cursor: pointer; font-family: var(--bodyfont);
  transition: opacity .18s;
}
.btn:hover { opacity: .9; }
.btn--block  { width: 100%; margin-top: 20px; }
.btn--inline { display: inline-flex; margin-top: 22px; padding: 15px 34px; }

/* ---------- STREAMING ---------- */
.stream-list { display: flex; flex-direction: column; gap: 12px; }
.stream-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 22px; text-decoration: none;
  transition: transform .18s;
}
.stream-card--tight { padding: 14px 22px; }
.stream-card:hover { transform: translateY(-2px); }
.stream-card__brand { display: flex; align-items: center; gap: 13px; }
.stream-card__brand span { font-weight: 800; color: #111; font-size: 17px; }
.stream-card__arrow { font-size: 22px; color: #111; line-height: 1; }
.stream-card__brand svg { display: block; flex: 0 0 auto; }

/* ---------- EVENT ---------- */
.event-card { text-align: center; position: relative; padding: 30px 24px; }
.event__label {
  font-size: 12px; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.event__title {
  margin: 0; font-family: var(--dispfont); font-weight: var(--dispweight);
  font-size: clamp(30px, 9vw, 50px); line-height: .94;
  text-transform: uppercase; letter-spacing: -.01em;
}
.event__date { margin: 18px 0 4px; font-size: clamp(22px, 7vw, 30px); font-weight: 800; font-variant-numeric: tabular-nums; }
.event__venue { font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- VIDEO (DSGVO click-to-load) ---------- */
.video { padding: 6px 0 26px; }
.video__btn {
  position: relative; display: block; width: 100%; aspect-ratio: 16/9; padding: 0;
  cursor: pointer; border: 2px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); color: var(--btn-fg);
  background-color: var(--hero-bg); background-size: cover; background-position: center;
  transition: filter .18s;
}
.video__btn:hover { filter: brightness(1.04); }
.video__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
}
.video__play {
  width: 78px; height: 78px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  animation: mttb-pulse 2.4s ease-in-out infinite; box-shadow: 0 8px 26px rgba(0,0,0,.35);
}
.video__play svg { margin-left: 5px; }
.video__cta {
  font-family: var(--dispfont); font-weight: var(--dispweight);
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(18px, 5vw, 26px); color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.video__note { margin: 12px 2px 0; font-size: 12.5px; line-height: 1.5; color: var(--muted); text-align: center; }
.video__note strong { color: var(--fg); }
.video__note a { color: var(--fg); text-decoration: underline; }
.video__frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border: 2px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); background: #000;
}
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- NEWSLETTER ---------- */
.newsletter__title {
  margin: 0 0 8px; font-family: var(--dispfont); font-weight: var(--dispweight);
  font-size: clamp(24px, 7vw, 34px); line-height: 1; text-transform: uppercase;
}
.newsletter__text { margin: 0 0 20px; font-size: 15px; line-height: 1.5; color: var(--muted); }
.newsletter__form { display: flex; flex-direction: column; gap: 10px; }
.newsletter__input {
  width: 100%; padding: 16px 18px; font-size: 16px;
  font-family: var(--bodyfont); font-weight: 500;
  background: var(--panel); color: var(--panelfg);
  border: 2px solid var(--line); border-radius: var(--radius); outline: none;
}
.newsletter__input:focus { border-color: var(--accent); }
.newsletter__error { font-size: 13px; color: #d33; font-weight: 600; }
.newsletter__consent { margin: 4px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.newsletter__consent a { color: var(--fg); text-decoration: underline; }
.newsletter__success {
  background: var(--panel); color: var(--panelfg);
  border: 2px solid var(--accent); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px; animation: mttb-in .4s ease;
}
.newsletter__success-title {
  font-family: var(--dispfont); font-weight: var(--dispweight);
  text-transform: uppercase; font-size: 20px; margin-bottom: 6px;
}
.newsletter__success-text { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ---------- FOOTER ---------- */
.footer { padding: 26px 0 60px; text-align: center; border-top: 2px solid var(--line); margin-top: 14px; }
.footer__socials { display: flex; justify-content: center; gap: 14px; margin-bottom: 22px; }
.footer__social {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--line); border-radius: var(--radius); color: var(--fg);
  transition: background .18s, color .18s;
}
.footer__social:hover { background: var(--fg); color: var(--bg); }
.footer__brand {
  font-family: var(--dispfont); font-weight: var(--dispweight);
  text-transform: uppercase; letter-spacing: .02em; font-size: 16px; margin-bottom: 14px;
}
.footer__legal { display: flex; justify-content: center; gap: 20px; font-size: 12px; color: var(--muted); }
.footer__legal a { color: var(--muted); text-decoration: none; transition: color .18s; }
.footer__legal a:hover { color: var(--fg); }
.footer__copy { margin-top: 16px; font-size: 11px; color: var(--muted); }

/* ---------- RECHTSSEITEN (Impressum / Datenschutz) ---------- */
.legal { padding: 4px 0 26px; }
.legal__back {
  display: inline-block; margin: 22px 0 2px; color: var(--muted);
  text-decoration: none; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; transition: color .18s;
}
/* Kompakter Seiten-Header auf Unterseiten (Marke → Startseite) */
.hero--legal { padding: 10px 0 26px; }
.hero--legal .hero__title { font-size: clamp(30px, 9vw, 40px); }
.hero__title a { color: inherit; text-decoration: none; transition: opacity .18s; }
.hero__title a:hover { opacity: .82; }
.footer__brand a { color: inherit; text-decoration: none; transition: opacity .18s; }
.footer__brand a:hover { opacity: .82; }
.legal__back:hover { color: var(--fg); }
.legal h1 {
  font-family: var(--dispfont); font-weight: var(--dispweight);
  text-transform: uppercase; font-size: clamp(30px, 8vw, 48px);
  line-height: 1; margin: 0 0 22px; letter-spacing: -.01em;
}
.legal h2 {
  font-family: var(--dispfont); font-weight: 800; text-transform: uppercase;
  font-size: 19px; margin: 38px 0 10px; letter-spacing: .01em;
}
.legal h3 { font-weight: 800; font-size: 15px; margin: 22px 0 6px; color: var(--fg); }
.legal p, .legal li { font-size: 15px; line-height: 1.65; color: #c9c9c9; }
.legal ul { padding-left: 20px; margin: 8px 0; }
.legal li { margin: 4px 0; }
.legal a { color: var(--fg); }
.legal strong { color: var(--fg); }
.legal address { font-style: normal; color: #c9c9c9; line-height: 1.7; }
.legal__note {
  background: var(--panel); border: 2px solid var(--accent); border-radius: var(--radius);
  padding: 16px 18px; margin: 0 0 34px; font-size: 13.5px; line-height: 1.6; color: #c9c9c9;
}
.legal__note strong { color: var(--accent); }
/* gelb-markierte Platzhalter: vom Betreiber auszufüllen */
.ph {
  background: rgba(216, 255, 62, .16); color: #eaff9a;
  padding: 0 6px; border-radius: 4px; font-weight: 600; white-space: nowrap;
}

/* Honeypot gegen Bots — für Menschen unsichtbar */
.hp {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); opacity: 0; pointer-events: none;
}
.js-newsletter .newsletter__form { margin-top: 10px; }
