/* Die Schriften werden im HTML eingebunden, nicht per @import:
   so laden sie parallel und lassen sich mit versionieren. */

/* =========================================================================
   SKAEDRA — Design System
   1. Tokens      2. Reset      3. Typo        4. Layout
   5. Header      6. Hero       7. Sections    8. Components
   9. Footer     10. Utilities 11. Responsive
   ========================================================================= */

/* ------------------------------------------------------------------ 1. Tokens */
:root {
  /* Dunkelstufen */
  --ink-950: #030304;
  --ink-900: #06060a;
  --ink-850: #0a0a0f;
  --ink-800: #0e0f15;
  --ink-700: #14161d;
  --ink-600: #1b1e27;
  --ink-500: #262a35;

  /* Akzente */
  --blood: #a80f18;
  --blood-hi: #d92230;
  --blood-glow: rgba(217, 34, 48, 0.45);
  --ember: #ff6a1f;
  --gold: #c8a04a;

  /* Text */
  --bone: #ece7dd;
  --ash: #97928a;
  --ash-dim: #625e58;

  /* Linien & Flächen */
  --line: rgba(236, 231, 221, 0.09);
  --line-strong: rgba(236, 231, 221, 0.18);
  --glass: rgba(20, 22, 29, 0.6);

  /* Typografie */
  --f-display: "Cinzel", "Trajan Pro", Georgia, serif;
  --f-ui: "Oswald", "Arial Narrow", sans-serif;
  --f-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --t-hero: clamp(3.6rem, 13vw, 11rem);
  --t-h1: clamp(2.4rem, 5.6vw, 4.6rem);
  --t-h2: clamp(1.9rem, 3.8vw, 3.1rem);
  --t-h3: clamp(1.25rem, 2vw, 1.6rem);
  --t-body: clamp(1rem, 1.05vw, 1.08rem);
  --t-small: 0.86rem;
  --t-micro: 0.72rem;

  /* Raster */
  --shell: 1280px;
  --shell-wide: 1560px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --sec-y: clamp(5rem, 11vw, 10rem);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --header-h: 76px;
}

/* ------------------------------------------------------------------ 2. Reset */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink-950);
  color: var(--ash);
  font-family: var(--f-body);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: break-word; /* lange deutsche Komposita sprengen sonst das Layout */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

::selection { background: var(--blood); color: #fff; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink-950); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blood), #4a0a0e);
  border: 3px solid var(--ink-950);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blood-hi); }

/* Filmkorn über der ganzen Seite */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ 3. Typografie */
.display {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--bone);
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ember));
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(270deg, transparent, var(--ember));
  flex: none;
}

.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: #b3ada4;
  max-width: 62ch;
}

.rune {
  font-family: var(--f-display);
  color: var(--gold);
  opacity: 0.75;
}

/* ------------------------------------------------------------------ 4. Layout */
.shell {
  width: min(100% - (var(--gut) * 2), var(--shell));
  margin-inline: auto;
}
.shell--wide { width: min(100% - (var(--gut) * 2), var(--shell-wide)); }

.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head__title { font-size: var(--t-h2); margin-top: 1rem; }
.section-head__text { margin-top: 1.25rem; }
.section-head--center { text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* Trennlinie mit Rune */
.divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ------------------------------------------------------------------ 5. Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height 0.4s var(--ease), background 0.4s var(--ease),
    border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 4, 0.85), transparent);
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.site-header.is-stuck {
  height: 62px;
  background: rgba(6, 6, 10, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header.is-stuck::before { opacity: 0; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - (var(--gut) * 2), var(--shell-wide));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
}
.brand__mark {
  font-size: 1.35rem;
  color: var(--blood-hi);
  line-height: 1;
  transition: transform 0.5s var(--ease), color 0.3s;
}
.brand:hover .brand__mark { transform: rotate(180deg); color: var(--ember); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }

.nav__link {
  font-family: var(--f-ui);
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--blood-hi);
  transition: width 0.35s var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: var(--bone); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav__link--soon::before {
  content: "bald";
  position: absolute;
  top: -0.55rem;
  right: -1.6rem;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: var(--ink-950);
  background: var(--gold);
  padding: 0.1rem 0.32rem;
  border-radius: 2px;
}

html[lang="en"] .nav__link--soon::before { content: "soon"; }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }

/* ---------------------------------------------------- Sprachumschalter */
/* Der Inhalt beider Sprachen steht im HTML; sichtbar ist nur die aktive.
   Ohne JavaScript bleibt Deutsch stehen — nichts verschwindet. */
html[lang="de"] [data-lang="en"] { display: none !important; }
html[lang="en"] [data-lang="de"] { display: none !important; }

.lang-switch {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: rgba(6, 6, 10, 0.45);
  backdrop-filter: blur(6px);
  flex: none;
}
.lang-switch__btn {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash-dim);
  padding: 0.52rem 0.68rem;
  line-height: 1;
  position: relative;
  transition: color 0.25s, background 0.3s var(--ease);
}
.lang-switch__btn + .lang-switch__btn { border-left: 1px solid var(--line); }
.lang-switch__btn:hover { color: var(--bone); background: rgba(236, 231, 221, 0.05); }
.lang-switch__btn[aria-pressed="true"] {
  color: #fff;
  background: var(--blood);
}
.lang-switch__btn[aria-pressed="true"]:hover { background: var(--blood-hi); }

.mobile-nav__lang {
  position: absolute;
  top: calc(var(--header-h) + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
}

/* Burger */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  position: relative;
  z-index: 1002;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.35s var(--ease), opacity 0.2s;
  position: absolute;
}
.burger span:nth-child(1) { transform: translateY(-5px); }
.burger span:nth-child(3) { transform: translateY(5px); }
body.nav-open .burger span:nth-child(1) { transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: rotate(-45deg); }

/* Mobiles Overlay-Menü */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--ink-950);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(168, 15, 24, 0.22), transparent 60%);
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; }
.mobile-nav__list {
  display: grid;
  gap: 0.35rem;
  text-align: center;
  position: relative;
}
.mobile-nav__list a {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 7vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bone);
  letter-spacing: 0.04em;
  display: block;
  padding: 0.35rem 1rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s;
}
body.nav-open .mobile-nav__list a { opacity: 1; transform: none; }
.mobile-nav__list a:hover { color: var(--blood-hi); }
.mobile-nav__socials {
  position: absolute;
  bottom: clamp(2rem, 8vh, 4rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------ 6. Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -8% 0 0 0;
  z-index: -3;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 62% 28%;
  filter: saturate(0.82) contrast(1.12) brightness(0.62);
  animation: heroDrift 26s var(--ease-in-out) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04); }
  to { transform: scale(1.14); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.78) 0%, rgba(3, 3, 4, 0.12) 34%, rgba(3, 3, 4, 0.9) 82%, var(--ink-950) 100%),
    radial-gradient(90% 65% at 18% 78%, rgba(168, 15, 24, 0.28), transparent 62%),
    radial-gradient(60% 50% at 88% 12%, rgba(255, 106, 31, 0.14), transparent 65%);
}
.hero__embers {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* Ohne diese Zeile würde die Breitenangabe aus .shell--wide überschrieben und
   der Hero-Text klebte am linken Bildrand. */
.hero__inner { width: min(100% - (var(--gut) * 2), var(--shell-wide)); margin-inline: auto; }

.hero__title {
  font-family: var(--f-display);
  font-size: var(--t-hero);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 1.4rem 0 0;
  text-shadow: 0 0 90px rgba(0, 0, 0, 0.8);
}
.hero__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.42em) rotate(3deg);
  animation: letterRise 1s var(--ease) forwards;
}
@keyframes letterRise {
  to { opacity: 1; transform: none; }
}

.hero__tagline {
  font-family: var(--f-ui);
  font-size: clamp(0.82rem, 1.5vw, 1.02rem);
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c6c0b6;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 44ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: clamp(2.5rem, 6vh, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero__meta-item { display: grid; gap: 0.15rem; }
.hero__meta-num {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--bone);
  line-height: 1;
}
.hero__meta-label {
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash-dim);
}

.scroll-cue {
  position: absolute;
  right: var(--gut);
  bottom: clamp(2.5rem, 6vh, 4.5rem);
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash-dim);
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--ember), transparent);
  animation: cueDrop 2.2s var(--ease-in-out) infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0%, 100% { transform: scaleY(0.3); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ------------------------------------------------------------------ 7. Sections */
/* --- Stats --- */
.stats { background: linear-gradient(180deg, var(--ink-950), var(--ink-900) 40%, var(--ink-950)); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat {
  background: var(--ink-900);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.05rem, 1.8vw, 1.6rem);
  min-width: 0;
  display: grid;
  gap: 0.6rem;
  position: relative;
  transition: background 0.4s var(--ease);
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blood), var(--ember));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.stat:hover { background: var(--ink-800); }
.stat:hover::before { transform: scaleX(1); }

.stat__platform {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.stat__platform svg { width: 15px; height: 15px; fill: currentColor; flex: none; }
.stat__value {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.stat__label { font-size: 0.82rem; color: var(--ash); }
.stat__link {
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease);
}
.stat__link:hover { gap: 0.8rem; }

.stats__note {
  margin-top: 1.5rem;
  font-size: var(--t-micro);
  letter-spacing: 0.1em;
  color: var(--ash-dim);
  text-transform: uppercase;
  font-family: var(--f-ui);
}

/* --- Release-Feature --- */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.8);
  transition: transform 1.1s var(--ease), filter 0.6s;
}
.cover:hover img { transform: scale(1.05); filter: saturate(1) contrast(1.12) brightness(0.9); }
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(3, 3, 4, 0.85));
  pointer-events: none;
}
.cover__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--blood);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.cover__caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
  z-index: 2;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}

.feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}
.chip {
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 0.3rem 0.8rem;
}
.chip--accent { color: var(--ember); border-color: rgba(255, 106, 31, 0.4); }

/* Tracklist */
.tracklist {
  border-top: 1px solid var(--line);
  margin-top: 1.75rem;
}
.tracklist__item {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.35s var(--ease);
}
.tracklist__item:hover { background: rgba(236, 231, 221, 0.03); padding-left: 1rem; }
.tracklist__num {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  color: var(--ash-dim);
  font-variant-numeric: tabular-nums;
}
.tracklist__title { color: var(--bone); font-weight: 500; }
.tracklist__title small {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--ash-dim);
}
.tracklist__plays {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  color: var(--ash-dim);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.tracklist__item--top .tracklist__num { color: var(--ember); }

/* --- Karten-Raster --- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: linear-gradient(160deg, var(--ink-800), var(--ink-900));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.95);
}
.card__body { padding: clamp(1.2rem, 2.4vw, 1.75rem); display: grid; gap: 0.6rem; }
.card__title {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  font-weight: 700;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.card__text { font-size: 0.93rem; }

/* --- Video (2-Klick-Lösung, DSGVO) --- */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-800);
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
}
.video-embed img,
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.video-embed img {
  filter: saturate(0.85) brightness(0.62);
  transition: transform 0.9s var(--ease), filter 0.5s;
}
.video-embed:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.75); }
.video-embed__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.9rem;
  align-content: center;
  z-index: 2;
  pointer-events: none;
}
.video-embed__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(236, 231, 221, 0.5);
  background: rgba(6, 6, 10, 0.55);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  transition: background 0.35s, border-color 0.35s, transform 0.45s var(--ease);
}
.video-embed__icon svg { width: 20px; height: 20px; fill: var(--bone); margin-left: 3px; }
.video-embed:hover .video-embed__icon {
  background: var(--blood);
  border-color: var(--blood-hi);
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--blood-glow);
}
.video-embed__hint {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  text-align: center;
  padding-inline: 1rem;
  max-width: 30ch;
  line-height: 1.7;
}
.video-embed.is-loaded { cursor: default; }
.video-embed.is-loaded .video-embed__play,
.video-embed.is-loaded img { display: none; }

.embed-note {
  font-size: var(--t-micro);
  font-family: var(--f-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash-dim);
  margin-top: 1rem;
}
.embed-note a { color: var(--ember); border-bottom: 1px solid rgba(255, 106, 31, 0.35); }

/* --- Roadmap --- */
.roadmap { background: var(--ink-900); }
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--blood), var(--ember) 45%, var(--line) 100%);
}

.tl-item {
  position: relative;
  padding: 0 0 clamp(1.75rem, 3.5vw, 2.75rem) clamp(2.75rem, 5vw, 3.75rem);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 1px solid var(--line-strong);
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.tl-item[data-status="released"]::before {
  background: var(--blood);
  border-color: var(--blood-hi);
  box-shadow: 0 0 0 4px rgba(168, 15, 24, 0.14);
}
.tl-item[data-status="production"]::before {
  background: var(--ember);
  border-color: var(--ember);
  box-shadow: 0 0 0 4px rgba(255, 106, 31, 0.14);
  animation: pulseDot 2.4s var(--ease-in-out) infinite;
}
@keyframes pulseDot {
  50% { box-shadow: 0 0 0 10px rgba(255, 106, 31, 0); }
}

.tl-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1rem;
}
.tl-item__date {
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-dim);
  font-variant-numeric: tabular-nums;
}
.tl-item__title {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tl-item__text { margin-top: 0.5rem; font-size: 0.93rem; max-width: 58ch; }
.tl-item__links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 0.85rem; }

.status {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  border: 1px solid;
  white-space: nowrap;
}
.status--released { color: #7fd18e; border-color: rgba(127, 209, 142, 0.35); background: rgba(127, 209, 142, 0.07); }
.status--production { color: var(--ember); border-color: rgba(255, 106, 31, 0.4); background: rgba(255, 106, 31, 0.08); }
.status--planned { color: var(--ash); border-color: var(--line-strong); }

/* --- Über --- */
.about { position: relative; overflow: hidden; }
.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about__portrait {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.about__portrait img {
  width: 100%;
  filter: saturate(0.85) contrast(1.1) brightness(0.85);
  transition: transform 1.2s var(--ease);
}
.about__portrait:hover img { transform: scale(1.04); }
.about__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 3, 4, 0.7));
}
.about__text > p + p { margin-top: 1.1rem; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 2.25rem;
}
.facts__item { background: var(--ink-900); padding: 1.1rem 1.25rem; display: grid; gap: 0.3rem; }
.facts__key {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.facts__val { color: var(--bone); font-size: 0.95rem; font-weight: 500; }

/* --- Galerie --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 20vw, 250px);
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--ink-800);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.72);
  transition: transform 1s var(--ease), filter 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1) brightness(0.95); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(3, 3, 4, 0.95);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--bone);
  font-size: 1.2rem;
  transition: background 0.3s, border-color 0.3s;
}
.lightbox__close:hover { background: var(--blood); border-color: var(--blood); }

/* --- Social-Links --- */
.link-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, var(--ink-800), var(--ink-900));
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.35s, background 0.4s;
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 0% 50%, var(--brand-tint, rgba(168, 15, 24, 0.2)), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.link-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.link-card:hover::before { opacity: 1; }
.link-card__icon {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  position: relative;
  transition: color 0.35s, border-color 0.35s;
}
.link-card__icon svg { width: 19px; height: 19px; fill: currentColor; }
.link-card:hover .link-card__icon { color: var(--brand-color, var(--ember)); border-color: currentColor; }
.link-card__meta { position: relative; display: grid; gap: 0.1rem; min-width: 0; }
.link-card__name {
  font-family: var(--f-ui);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
}
.link-card__sub { font-size: 0.8rem; color: var(--ash-dim); }
.link-card__arrow {
  margin-left: auto;
  color: var(--ash-dim);
  position: relative;
  transition: transform 0.4s var(--ease), color 0.3s;
}
.link-card:hover .link-card__arrow { transform: translateX(5px); color: var(--ember); }

/* --- Shop-Teaser --- */
.shop-teaser { position: relative; overflow: hidden; }
.shop-teaser__inner {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background: var(--ink-900);
}
.shop-teaser__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.shop-teaser__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.6) brightness(0.3) blur(1px);
}
.shop-teaser__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 100% at 50% 50%, rgba(6, 6, 10, 0.65), var(--ink-950));
}
.shop-teaser__content { position: relative; z-index: 1; display: grid; gap: 1.25rem; justify-items: center; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 0.5rem; }

/* --- Kontakt / Formular --- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-family: var(--f-ui);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 0.95rem;
  color: var(--bone);
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blood-hi);
  background: var(--ink-700);
  box-shadow: 0 0 0 3px rgba(217, 34, 48, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ash-dim); }

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ash);
}
.check input { margin-top: 0.25rem; accent-color: var(--blood-hi); width: 16px; height: 16px; flex: none; }
.check a { color: var(--ember); border-bottom: 1px solid rgba(255, 106, 31, 0.35); }

.form__status {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: var(--ink-800);
  color: var(--bone);
}
.form__status[hidden] { display: none; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.contact__aside { display: grid; gap: 1.75rem; align-content: start; min-width: 0; }
.contact__block { min-width: 0; }
.contact__block a { word-break: break-word; }
.contact__block { display: grid; gap: 0.35rem; }
.contact__block h3 {
  font-family: var(--f-ui);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
}
.contact__block a { color: var(--bone); border-bottom: 1px solid var(--line-strong); }
.contact__block a:hover { border-color: var(--ember); }

/* ------------------------------------------------------------------ 8. Komponenten */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--f-ui);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.35s, transform 0.3s var(--ease), box-shadow 0.4s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--blood); color: #fff; }
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--blood-hi), var(--ember));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.btn--primary:hover { box-shadow: 0 12px 40px -12px var(--blood-glow); }
.btn--primary:hover::before { opacity: 1; }

.btn--ghost { border-color: var(--line-strong); color: var(--bone); background: rgba(6, 6, 10, 0.4); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--bone); background: rgba(236, 231, 221, 0.06); }

.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.68rem; letter-spacing: 0.16em; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 0.9rem; }

/* Scroll-Reveal
   Bewusst an .js gekoppelt: Sollte das Skript nicht laufen, bleibt der Inhalt
   sichtbar statt dauerhaft ausgeblendet. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Laufband */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink-900);
  padding-block: 1.1rem;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--f-display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(236, 231, 221, 0.28);
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}
.marquee__item::after { content: "ᛜ"; color: var(--blood-hi); opacity: 0.85; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Cookie-/Einbettungs-Hinweis */
.consent-bar {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.75rem);
  transform: translate(-50%, 140%);
  z-index: 1100;
  width: min(100% - 2rem, 760px);
  background: rgba(10, 10, 15, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 1.25rem clamp(1.1rem, 3vw, 1.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  transition: transform 0.6s var(--ease);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.9);
}
.consent-bar.is-visible { transform: translate(-50%, 0); }
.consent-bar p { font-size: 0.85rem; flex: 1 1 320px; margin: 0; }
.consent-bar a { color: var(--ember); border-bottom: 1px solid rgba(255, 106, 31, 0.4); }
.consent-bar__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* Zurück nach oben */
.to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 890;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  color: var(--bone);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s, background 0.3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blood); border-color: var(--blood); }

/* Scroll-Fortschritt */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 950;
  background: linear-gradient(90deg, var(--blood), var(--ember));
  width: 0;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ------------------------------------------------------------------ 9. Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-950);
  padding-top: clamp(3rem, 7vw, 5rem);
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.site-footer__col { display: grid; gap: 0.85rem; align-content: start; }
.site-footer__col h4 {
  font-family: var(--f-ui);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash-dim);
  margin-bottom: 0.25rem;
}
.site-footer__col a { font-size: 0.9rem; color: var(--ash); transition: color 0.25s, padding-left 0.3s var(--ease); }
.site-footer__col a:hover { color: var(--bone); padding-left: 5px; }

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ash-dim);
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer__legal a:hover { color: var(--bone); }

/* ------------------------------------------------------------------ 10. Utilities */
.center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.5rem; }
.mt-5 { margin-top: 3.5rem; }
.dim { color: var(--ash-dim); }
.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;
}
.tint { color: var(--ember); }
.no-wrap { white-space: nowrap; }

/* Seiten-Kopf für Unterseiten */
.page-head {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 110% at 15% 0%, rgba(168, 15, 24, 0.25), transparent 60%),
    radial-gradient(60% 80% at 90% 20%, rgba(255, 106, 31, 0.1), transparent 60%);
  z-index: -1;
}
.page-head__title { font-size: var(--t-h1); margin-top: 1.1rem; hyphens: auto; }
.page-head__text { margin-top: 1.25rem; }

/* Rechtstexte */
.legal { max-width: 82ch; }
.legal h2 {
  font-family: var(--f-display);
  hyphens: auto;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal h3 {
  font-family: var(--f-ui);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 2rem;
}
.legal p, .legal ul, .legal ol { margin-top: 1rem; font-size: 0.97rem; }
.legal ul { list-style: none; display: grid; gap: 0.5rem; }
.legal ul li { padding-left: 1.35rem; position: relative; }
.legal ul li::before {
  content: "ᛜ";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blood-hi);
  font-size: 0.7rem;
}
.legal a { color: var(--ember); border-bottom: 1px solid rgba(255, 106, 31, 0.35); word-break: break-word; }
.legal strong { color: var(--bone); font-weight: 600; }
.legal address { font-style: normal; color: var(--bone); line-height: 1.9; margin-top: 1rem; }

.todo {
  display: inline-block;
  background: rgba(200, 160, 74, 0.14);
  border: 1px dashed rgba(200, 160, 74, 0.5);
  color: var(--gold);
  padding: 0.05rem 0.5rem;
  border-radius: 3px;
  font-family: var(--f-ui);
  font-size: 0.82em;
  letter-spacing: 0.06em;
}

.notice {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  background: var(--ink-800);
  padding: 1.15rem 1.4rem;
  margin-top: 1.75rem;
  font-size: 0.92rem;
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.toc a {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.35rem 0.85rem;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.toc a:hover { color: var(--bone); border-color: var(--line-strong); background: var(--ink-800); }

/* Shop-Seite */
.soon-hero { text-align: center; display: grid; justify-items: center; gap: 1.5rem; }
.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 1rem;
}
.countdown__cell {
  background: var(--ink-900);
  padding: 1.1rem clamp(1.1rem, 3vw, 2rem);
  display: grid;
  gap: 0.25rem;
  min-width: 92px;
}
.countdown__num {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--bone);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-dim);
}

.product {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-900);
  display: grid;
  grid-template-rows: auto 1fr;
}
.product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--ink-700), var(--ink-850));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.55); }
.product__placeholder {
  font-family: var(--f-display);
  font-size: 2.6rem;
  color: rgba(236, 231, 221, 0.09);
  letter-spacing: 0.2em;
}
.product__flag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(6, 6, 10, 0.8);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}
.product__body { padding: 1.1rem 1.25rem 1.4rem; display: grid; gap: 0.4rem; align-content: start; }
.product__name {
  font-family: var(--f-ui);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
}
.product__desc { font-size: 0.84rem; color: var(--ash-dim); }
.product__price {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--ash);
  margin-top: 0.3rem;
}

.feature-list { display: grid; gap: 0.9rem; }
.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.94rem;
}
.feature-list li::before {
  content: "ᛜ";
  color: var(--blood-hi);
  font-family: var(--f-display);
  font-size: 0.8rem;
  line-height: 1.9;
  flex: none;
}

/* ------------------------------------------------------------------ 11. Responsive */
@media (max-width: 1080px) {
  .contact-layout { grid-template-columns: 1fr; }
  .about__layout { grid-template-columns: 1fr; }
  .about__portrait { max-width: 480px; }
  .feature { grid-template-columns: 1fr; }
  .cover { max-width: 460px; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .nav, .header-cta .btn { display: none; }
  .burger { display: grid; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .hero { align-items: flex-end; }
  .scroll-cue { display: none; }
  .site-footer__top { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .timeline::before { left: 7px; }
  .tl-item::before { left: 0; width: 13px; height: 13px; }
}

@media (max-width: 560px) {
  .hero__media img { object-position: 65% 22%; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .consent-bar { flex-direction: column; align-items: stretch; }
  .consent-bar__actions { flex-direction: column; }
  .consent-bar__actions .btn { flex: 1 1 auto; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__embers { display: none; }
}

/* Druck */
@media print {
  .site-header, .mobile-nav, .to-top, .consent-bar, .progress, .hero__embers, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ------------------------------------------------------------------ 12. Nachtrag
   Inline-Pfeile brauchen eine feste Größe — ohne width/height im SVG
   skalieren sie sonst auf die volle Breite ihres Containers. */
.stat__link svg,
.link-arrow svg,
.link-card__arrow svg,
.tl-item__links svg {
  width: 16px;
  height: 16px;
  flex: none;
}

/* ------------------------------------------------------------------ 13. Hero-Claim,
   Kanalleiste und Diskografie mit zwei Alben. */

/* --- Der Claim aus dem Kanalbanner --- */
.hero__slogan {
  font-family: var(--f-display);
  font-size: clamp(0.95rem, 2.1vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.85rem 0 0;
  line-height: 1.35;
  /* Die Linie links greift die Trennlinie im Banner auf. */
  padding-left: 1.1rem;
  border-left: 2px solid var(--blood);
  max-width: 24ch;
}

.hero__tagline { margin-top: 1rem; }

/* --- Release-Hinweis --- */
.hero__release {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 0.85rem;
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--bone);
}
.hero__release strong { color: var(--ember); font-weight: 600; }
.hero__release-tag {
  font-family: var(--f-ui);
  font-size: var(--t-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--blood);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* --- Kanalleiste im Hero --- */
.hero__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}
.hero__socials a {
  --brand-color: var(--ash);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  background: rgba(6, 6, 10, 0.55);
  backdrop-filter: blur(6px);
  font-family: var(--f-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.hero__socials a svg {
  width: 15px;
  height: 15px;
  flex: none;
  fill: currentColor;
  color: var(--brand-color);
  transition: color 0.3s;
}
.hero__socials a:hover,
.hero__socials a:focus-visible {
  color: var(--bone);
  border-color: var(--brand-color);
  background: rgba(6, 6, 10, 0.8);
  transform: translateY(-2px);
}

/* --- Diskografie: mehrere Alben untereinander --- */
.album-list {
  display: grid;
  gap: clamp(3rem, 7vw, 5.5rem);
}
.album + .album { padding-top: clamp(3rem, 7vw, 5.5rem); border-top: 1px solid var(--line); }

.album__title { font-size: var(--t-h2); }
.album__actions { margin-top: 1.75rem; }
.album .tracklist[hidden] { display: none; }

/* Das ältere Album kleiner setzen — die aktuelle Veröffentlichung führt. */
.album:not(.album--featured) { grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr); }
.album:not(.album--featured) .album__title { font-size: var(--t-h3); }
.album:not(.album--featured) .cover { box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.9); }

/* Jedes zweite Album spiegeln, damit die Seite nicht monoton wirkt. */
@media (min-width: 861px) {
  .album:nth-child(even) { direction: rtl; }
  .album:nth-child(even) > * { direction: ltr; }
}

/* --- Claim im Footer --- */
.footer__slogan {
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.75rem 0 0.35rem;
}

/* --- Schmale Bildschirme --- */
@media (max-width: 860px) {
  .album,
  .album:not(.album--featured) { grid-template-columns: 1fr; }
  .album .cover { max-width: 380px; }
}

@media (max-width: 560px) {
  .hero__slogan {
    letter-spacing: 0.2em;
    padding-left: 0.8rem;
    max-width: none;
  }
  .hero__socials { gap: 0.4rem; }
  .hero__socials a { padding: 0.4rem 0.7rem; font-size: 0.7rem; }
}

/* Sechs Kanal-Links passen auf einem Handy nicht in eine Zeile — umbrechen
   lassen und mittig setzen, sonst stehen zwei davon außerhalb des Menüs. */
.mobile-nav__socials {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.15rem;
  width: min(100% - 2.5rem, 26rem);
  left: 50%;
  transform: translateX(-50%);
}

/* ------------------------------------------------------------------ 14. Album-Cover
   Echte Cover-Grafiken tragen Titel und Gestaltung bereits in sich. Die
   Abdunklung und der Farbverlauf, die für Fotos gedacht sind, würden sie nur
   zumatschen — und ein zusätzlicher Titelbalken doppelt den Text im Bild. */
.cover--artwork img {
  filter: none;
}
.cover--artwork:hover img {
  filter: none;
  transform: scale(1.03);
}
.cover--artwork::after {
  /* Nur noch ein Hauch Vignette, damit der weiße Rand nicht ins Layout schneidet. */
  background: radial-gradient(120% 120% at 50% 50%, transparent 60%, rgba(3, 3, 4, 0.35));
}


/* Fehlt die Bilddatei, wäre sonst nur eine schwarze Fläche zu sehen. So bleibt
   wenigstens der Rahmen sichtbar und der Fehler fällt sofort auf. */
.cover--artwork img:not([src]),
.cover--artwork img[src=""] {
  visibility: hidden;
}

/* Kennzeichnung der Veröffentlichung: steht über dem Titel in der Textspalte,
   nicht auf dem Cover. Dort ist die Grafik bereits vollständig beschriftet. */
.album__badge {
  display: inline-block;
  color: var(--ember);
  margin-bottom: 0.5rem;
}
.album:not(.album--featured) .album__badge { color: var(--ash); }

/* ------------------------------------------------------------------ 15. Gastauftritte
   Stücke auf fremden Alben. Kompakter als die eigenen Alben — das Cover ist
   nicht Skaedras, deshalb klein, ohne Rahmen-Glanz und ohne Abdunklung. */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1rem;
}
.feature-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(236, 231, 221, 0.02);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease);
}
.feature-card:hover,
.feature-card:focus-visible {
  border-color: var(--line-strong);
  background: rgba(236, 231, 221, 0.045);
  transform: translateY(-2px);
}
.feature-card__cover {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.9);
}
.feature-card__body { display: grid; gap: 0.3rem; min-width: 0; }
.feature-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bone);
  line-height: 1.2;
}
.feature-card__meta {
  font-size: 0.86rem;
  color: var(--ash);
  line-height: 1.45;
}
.feature-card__meta em { font-style: normal; color: var(--bone); }
.feature-card__meta small { font-size: 0.8rem; color: var(--ash-dim); }
.feature-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  font-family: var(--f-ui);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash-dim);
  margin-top: 0.15rem;
}
.feature-card__plays { color: var(--ember); }
.feature-card__arrow svg {
  width: 16px;
  height: 16px;
  color: var(--ash-dim);
  transition: color 0.3s, transform 0.3s var(--ease);
}
.feature-card:hover .feature-card__arrow svg { color: var(--bone); transform: translateX(3px); }

@media (max-width: 480px) {
  .feature-card { grid-template-columns: 4.25rem 1fr auto; gap: 0.85rem; padding: 0.85rem; }
  .feature-card__cover { width: 4.25rem; height: 4.25rem; }
}

/* Die Release-Zeile im Hero ist ein Link auf die aktuelle Veröffentlichung. */
a.hero__release { text-decoration: none; }
a.hero__release strong { transition: color 0.3s; }
a.hero__release:hover strong,
a.hero__release:focus-visible strong { color: var(--bone); text-decoration: underline; text-underline-offset: 3px; }
