/* BassAssassins — ein Stylesheet für die ganze Seite.
   Farben und Schriften folgen der alten GoDaddy-Seite: schwarzer Grund,
   Überschriften in Righteous mit weitem Buchstabenabstand, Fließtext in
   Source Sans in Grau, weiße Knöpfe. Die Akzente des aDJusted-Bereichs sind
   die Deckfarben der App: Deck 1 #d24261, Deck 2 #3399a8 (DeckLab Theme.swift). */

@font-face { font-family: "Righteous"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/righteous-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Righteous"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/righteous-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url("../fonts/source-sans-3-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Source Sans 3"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("../fonts/source-sans-3-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Source Sans 3"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("../fonts/source-sans-3-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --bg: #000;
  --surface: #111;
  --surface-2: #1b1b1b;
  --line: #2a2a2a;
  --text: #a4a4a4;
  --text-strong: #e2e2e2;
  --white: #fff;
  --heading-muted: #5c5c5c;
  --deck-a: #d24261;
  --deck-b: #3399a8;
  --display: "Righteous", "Arial Rounded MT Bold", system-ui, sans-serif;
  --body: "Source Sans 3", "Source Sans Pro", -apple-system, "Segoe UI", Arial, sans-serif;
  --wide: 0.12em;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(56px, 8vw, 104px);
  --header-h: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 1rem/1.6 var(--body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-strong); text-underline-offset: 3px; }
a:hover { color: var(--white); }
:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
main:focus { outline: none; }
h1, h2, h3, h4 { color: var(--white); font-weight: 400; line-height: 1.25; margin: 0 0 .6em; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--white); color: #000; padding: 10px 16px; font-weight: 600; }
.skip:focus { top: 12px; }

/* ---- Grundbausteine ---------------------------------------------------- */

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 780px; margin-inline: auto; padding-inline: var(--gutter); }
.center { text-align: center; }
.section { padding-block: var(--section); }
.section + .section { padding-top: 0; }
.section--flush-top { padding-top: 0; }

.display, .section-title {
  font-family: var(--display); letter-spacing: var(--wide);
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.0625rem);
  text-align: center; margin-bottom: 1.2em;
}
.section-title--muted { color: var(--heading-muted); }
.lead { font-size: clamp(1.15rem, 1rem + .5vw, 1.375rem); color: var(--text-strong); line-height: 1.5; }
.small { font-size: .875rem; }
.divider { width: 180px; height: 2px; margin: 0 auto 2.2em; background: var(--white); border: 0; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: 14px 32px; border: 1px solid var(--white); border-radius: 0;
  background: var(--white); color: #000; font: 700 .8125rem/1.2 var(--body);
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s;
}
.button:hover { background: var(--text-strong); color: #000; }
.button--ghost { background: transparent; color: var(--white); }
.button--ghost:hover { background: var(--white); color: #000; }
.button--wide { width: min(100%, 480px); }
.buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- Kopf und Navigation ---------------------------------------------- */

.header { position: sticky; top: 0; z-index: 50; background: var(--bg); }
.header__inner {
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header__logo { display: block; flex: none; }
.header__logo-img { width: 106px; height: auto; }
.nav ul { display: flex; gap: clamp(16px, 2.2vw, 34px); align-items: center; }
.nav a {
  display: block; padding: 8px 0; color: var(--text-strong); text-decoration: none;
  text-transform: uppercase; font-size: .9375rem; letter-spacing: .03em;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); border-bottom-color: var(--text-strong); }
.nav a.nav__brand { text-transform: none; font-family: var(--display); letter-spacing: .06em; font-size: 1rem; }
.header__toggle { display: none; }

@media (max-width: 959px) {
  :root { --header-h: 72px; }
  .header__logo-img { width: 84px; }
  .js .header__toggle {
    display: grid; place-items: center; width: 48px; height: 48px; margin-right: -10px;
    background: none; border: 0; color: var(--white); cursor: pointer;
  }
  .header__bars, .header__bars::before, .header__bars::after {
    display: block; width: 24px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s;
  }
  .header__bars { position: relative; }
  .header__bars::before, .header__bars::after { content: ""; position: absolute; left: 0; }
  .header__bars::before { top: -7px; }
  .header__bars::after { top: 7px; }
  .header.is-open .header__bars { background: transparent; }
  .header.is-open .header__bars::before { transform: translateY(7px) rotate(45deg); }
  .header.is-open .header__bars::after { transform: translateY(-7px) rotate(-45deg); }

  .js .nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    border-top: 1px solid var(--line); padding: 8px var(--gutter) 28px;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto; display: none;
  }
  .js .header.is-open .nav { display: block; }
  .js .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .js .nav a { padding: 16px 0; font-size: 1.125rem; border-bottom: 1px solid var(--line); }
  .js .nav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--white); }
  .js .nav a[aria-current="page"]::before { content: "— "; }
  /* ohne JavaScript: Navigation als waagrechte Zeile zum Wischen */
  .no-js .header__inner { height: auto; flex-wrap: wrap; padding-block: 12px; }
  .no-js .nav { width: 100%; overflow-x: auto; }
}

/* ---- Startseite -------------------------------------------------------- */

.hero { position: relative; display: grid; place-items: center; min-height: clamp(440px, 78vh, 740px); overflow: hidden; background: #111; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .25); }
.hero__title {
  position: relative; z-index: 1; margin: 0; padding: var(--gutter); max-width: 1100px;
  font-family: var(--display); letter-spacing: 4px; text-align: center;
  font-size: clamp(1.75rem, 1rem + 3.2vw, 2.625rem); text-shadow: 0 2px 18px rgba(0, 0, 0, .6);
}

.quotes { display: grid; gap: 40px; margin-top: 3em; }
@media (min-width: 820px) { .quotes { grid-template-columns: 1fr 1fr; gap: 56px; } }
.quote { margin: 0; color: var(--text); }
.quote p { margin-bottom: .6em; }
.quote footer { color: var(--text-strong); font-size: .9375rem; }
.quote cite { display: block; font-style: normal; letter-spacing: .08em; text-transform: uppercase; font-size: .8125rem; color: var(--text); }

.element__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 10px 32px; max-width: 980px; margin: 0 auto 3em; }
.element__facts div { border-top: 1px solid var(--line); padding-top: 10px; }
.element__facts dt { color: var(--text-strong); font-weight: 600; font-size: .875rem; }
.element__facts dd { margin: 0; }
.element__cols { display: grid; gap: 40px; }
@media (min-width: 900px) { .element__cols { grid-template-columns: repeat(3, 1fr); } }
.element__cols h3 { font-size: 1.375rem; color: var(--text-strong); font-family: var(--body); }
.element__cols ul li { margin-bottom: .6em; }
.element__cols strong { color: var(--text-strong); font-weight: 600; }

.photo { width: 100%; margin: 0 0 3em; }
.contact { display: grid; gap: 48px; align-items: start; }
@media (min-width: 820px) { .contact { grid-template-columns: 1fr 1fr; } }
.contact h3 { font-size: 1.375rem; color: var(--text-strong); }
.contact address { font-style: normal; }
.contact__lines li { margin-bottom: .35em; }

.social {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: #000;
}
.social:hover { background: var(--text-strong); color: #000; }
.social--large { width: 64px; height: 64px; }
.social--large svg { width: 30px; height: 30px; }

/* Flyer-Karussell */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px var(--gutter) 16px; scrollbar-width: thin; scrollbar-color: #444 transparent;
}
.carousel__item { flex: none; scroll-snap-align: center; }
.carousel__item img { height: clamp(260px, 42vw, 460px); width: auto; max-width: none; }
.carousel__btn {
  position: absolute; top: calc(50% - 8px); translate: 0 -50%; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0, 0, 0, .7); color: var(--white); font-size: 2rem; line-height: 1;
}
.carousel__btn:hover { background: rgba(255, 255, 255, .92); color: #000; }
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }

/* Gig-Historie */
.history__intro { text-align: center; font-size: 1.375rem; color: var(--text-strong); margin-bottom: 2em; }
.history { columns: 1; column-gap: 56px; max-width: 1180px; margin-inline: auto; }
@media (min-width: 760px) { .history { columns: 2; } }
@media (min-width: 1200px) { .history { columns: 3; } }
.history__period { break-inside: avoid; margin-bottom: 1.8em; }
.history__period h3 { font: 700 1rem/1.4 var(--body); color: var(--text-strong); margin-bottom: .3em; }
.history__period li { margin-bottom: .25em; line-height: 1.45; }

/* aDJusted-Teaser auf der Startseite */
.teaser { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .teaser { grid-template-columns: 5fr 7fr; gap: 64px; } }
.teaser__eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8125rem; color: var(--text); margin-bottom: .8em; }
.teaser .buttons { justify-content: flex-start; }

/* ---- Wortmarke aDJusted ------------------------------------------------ */

.wordmark { font-family: var(--display); letter-spacing: .04em; color: var(--text-strong); }
.wordmark .wm-dj { color: var(--white); background: linear-gradient(90deg, var(--deck-a), var(--deck-b)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.teaser .wordmark { font-size: clamp(2.6rem, 2rem + 2.5vw, 3.75rem); line-height: 1; margin-bottom: .35em; }

.shot { margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #0b0b0b; box-shadow: 0 30px 80px -30px rgba(51, 153, 168, .20), 0 20px 60px -20px rgba(210, 66, 97, .18); }
.shot img { width: 100%; }

/* ---- Releases ---------------------------------------------------------- */

.page-intro { text-align: center; }
.page-intro h1 { font-family: var(--display); letter-spacing: var(--wide); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.5rem); }
.page-intro p { max-width: 640px; margin-inline: auto; }

.releases { display: grid; gap: clamp(48px, 6vw, 72px); max-width: 1100px; margin-inline: auto; }
.release { display: grid; gap: 24px 48px; align-items: center; }
@media (min-width: 820px) { .release { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.release__title { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.75rem); font-family: var(--display); letter-spacing: .06em; }
.release__artist { display: block; font: 400 1rem/1.4 var(--body); letter-spacing: 0; color: var(--text); margin-bottom: .3em; }
.release__meta { display: grid; gap: 4px; margin: 0 0 1.6em; }
.release__meta div { display: flex; gap: 12px; }
.release__meta dt { min-width: 118px; color: var(--text); }
.release__meta dd { margin: 0; color: var(--text-strong); font-variant-numeric: tabular-nums; }

.embed { position: relative; min-height: 300px; background: radial-gradient(circle at 50% 40%, #1d1d1d, #0a0a0a 70%); border: 1px solid var(--line); }
.embed iframe { display: block; width: 100%; height: 300px; border: 0; }
.embed__placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; padding: 24px; text-align: center; }
.embed__note { max-width: 36ch; font-size: .8125rem; line-height: 1.45; margin: 0; }
.embed.is-loaded { background: none; }
.no-js .embed__load { display: none; }

/* ---- Karten (KatzenStattMenschen) -------------------------------------- */

.split { display: grid; align-items: center; gap: 40px; }
@media (min-width: 820px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split__eyebrow { font-size: .875rem; margin-bottom: .2em; }
.split h1 { font-family: var(--body); letter-spacing: .03em; font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.125rem); }
.ksm-logo { background: #fff; }

.split .split__text p:not(.lead) { color: var(--text); }
.ksm-logo { background: #fff; }

.ksm-release { align-items: start; }
@media (min-width: 820px) { .ksm-release { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }
.ksm-release__img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.release__buttons { justify-content: flex-start; margin-top: 1.6em; }

.tracklist { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tracklist summary { cursor: pointer; padding: 12px 28px 12px 0; color: var(--text-strong); position: relative; list-style: none; }
.tracklist summary::-webkit-details-marker { display: none; }
.tracklist summary::after { content: "+"; position: absolute; right: 4px; top: 8px; font-size: 1.375rem; color: var(--text); }
.tracklist[open] summary::after { content: "–"; }
.tracklist ol { margin: 0 0 14px; padding-left: 2.2em; font-size: .9375rem; }
.tracklist li { display: flex; flex-wrap: wrap; gap: 0 8px; padding: 4px 0; }
.tracklist li::marker { color: var(--text); font-variant-numeric: tabular-nums; }
.tracklist__title { color: var(--text-strong); }
.tracklist__artist a { color: var(--text); }
.tracklist__duration { margin-left: auto; color: var(--text); font-variant-numeric: tabular-nums; }

/* Linien je Kachel statt Hintergrund im Raster — sonst füllen leere Felder der letzten Reihe sich grau */
.ksm-artists { display: grid; gap: 1px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); max-width: 1180px; margin: 2.4em auto 0; padding: 1px; }
.ksm-artist { background: var(--bg); padding: 22px 24px 24px; box-shadow: 0 0 0 1px var(--line); }
.ksm-artist:target { background: var(--surface); }
.ksm-artist__name { font-family: var(--display); letter-spacing: .05em; font-size: 1.25rem; margin-bottom: .5em; }
.ksm-artist__list li { margin-bottom: .35em; color: var(--text-strong); font-size: .9375rem; }
.ksm-artist__on, .ksm-artist__year { color: var(--text); }
.ksm-artist__page { display: inline-block; margin-top: .6em; font-size: .875rem; }

/* ---- Galerie ----------------------------------------------------------- */

.gallery { columns: 2 160px; column-gap: 12px; }
@media (min-width: 700px) { .gallery { columns: 3; } }
@media (min-width: 1100px) { .gallery { columns: 4; } }
.gallery__item { break-inside: avoid; margin-bottom: 12px; }
.gallery__item a, .carousel__item a { display: block; overflow: hidden; }
.gallery__item img, .carousel__item img { transition: transform .35s ease, filter .35s; }
.gallery__item a:hover img, .carousel__item a:hover img { transform: scale(1.03); filter: brightness(1.08); }
.gallery-section { padding-top: clamp(40px, 6vw, 72px); }
.gallery-section .section-title { margin-bottom: .9em; }

/* Sprungleiste (Galerie, Artists) */
.jump ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 1.8em; }
.jump a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 18px;
  border: 1px solid var(--line); border-radius: 999px; color: var(--text-strong); text-decoration: none;
  transition: border-color .15s, background-color .15s;
}
.jump a:hover { border-color: var(--white); background: var(--surface); color: var(--white); }
.jump__count { color: var(--text); font-size: .8125rem; font-variant-numeric: tabular-nums; }

/* ---- Label-Abschnitte der Startseite ----------------------------------- */

.subhead { font: 600 .8125rem/1.3 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--text); text-align: center; margin: 3em 0 1.2em; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 980px; margin: 2.6em auto 0; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats a { display: grid; gap: 4px; padding: 26px 16px; text-align: center; background: var(--bg); text-decoration: none; height: 100%; }
.stats a:hover { background: var(--surface); }
.stat__value { font-family: var(--display); font-size: clamp(2rem, 1.5rem + 2vw, 2.875rem); line-height: 1; color: var(--white); letter-spacing: .04em; }
.stat__label { color: var(--text); font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; }

.latest { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); max-width: 1100px; margin: 0 auto 2.6em; }
.latest__link { display: grid; gap: 4px; height: 100%; padding: 22px 24px 24px; border: 1px solid var(--line); text-decoration: none; background: linear-gradient(160deg, #111, #000 70%); transition: border-color .15s; }
.latest__link:hover { border-color: var(--text-strong); }
.latest__catalog { font-size: .75rem; letter-spacing: .14em; color: var(--text); }
.latest__title { font-family: var(--display); font-size: 1.3125rem; letter-spacing: .04em; color: var(--white); line-height: 1.25; margin-top: 6px; }
.latest__artist { color: var(--text-strong); }
.latest__date { color: var(--text); font-size: .875rem; margin-top: 8px; }

.pillars { grid-template-columns: 1fr; }
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillars .feature h3::before { background: var(--white); }
.feature p a { white-space: nowrap; }

.milestones { list-style: none; padding: 0; margin: 0; position: relative; }
.milestones::before { content: ""; position: absolute; left: calc(3.6em + 14px); top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.milestones li { position: relative; display: grid; grid-template-columns: 3.6em 1fr; gap: 0 28px; padding: 10px 0; color: var(--text-strong); }
.milestones li::after { content: ""; position: absolute; left: calc(3.6em + 10px); top: 19px; width: 9px; height: 9px; border-radius: 50%; background: var(--white); }
.milestone__year { font-family: var(--display); letter-spacing: .04em; color: var(--white); text-align: right; }

/* ---- Artists ----------------------------------------------------------- */

.artists { display: grid; gap: clamp(56px, 8vw, 96px); max-width: 1100px; }
.artist { display: grid; gap: 28px 56px; align-items: start; }
@media (min-width: 820px) {
  .artist { grid-template-columns: 320px minmax(0, 1fr); }
  /* Die Spalte reicht nur so weit wie der Text daneben; darin wandert das Bild
     mit. So bleibt es nicht über einem Zusatz in voller Breite hängen. */
  .artist__side { align-self: stretch; }
  .artist__side > * { position: sticky; top: calc(var(--header-h) + 24px); }
}
@media (max-width: 819px) { .artist__side { max-width: 220px; } }
.artist__img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(.15); }
.artist__monogram {
  display: grid; place-items: center; aspect-ratio: 1; border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 35%, #1c1c1c, #000 70%);
  font-family: var(--display); font-size: clamp(5rem, 14vw, 9rem); color: var(--heading-muted);
}
.artist__name { font-family: var(--display); letter-spacing: var(--wide); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.625rem); margin-bottom: .2em; }
.artist__meta { color: var(--text); font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.4em; }
.artist__bio { color: var(--text-strong); font-size: 1.0625rem; }
.artist__links { justify-content: flex-start; margin-top: 1.4em; }
.artist__releases-title { font: 600 .8125rem/1.3 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin: 2em 0 .6em; }
.artist__releases { border-top: 1px solid var(--line); }
.artist__releases li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.artist__releases a { color: var(--white); text-decoration: none; }
.artist__with a { color: var(--text-strong); text-decoration: underline; text-decoration-color: var(--line); }
.artist__releases a:hover .artist__release-title { text-decoration: underline; }
.artist__release-meta { margin-left: auto; color: var(--text); font-size: .875rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.artist__player { margin-top: 2em; }
.artist__player-label { font-size: .875rem; color: var(--text); margin-bottom: .6em; }

.lightbox { width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(0, 0, 0, .94); color: var(--white); }
.lightbox[open] { display: grid; grid-template-columns: 64px 1fr 64px; align-items: center; }
.lightbox::backdrop { background: rgba(0, 0, 0, .8); }
.lightbox__figure { margin: 0; grid-column: 2; display: grid; justify-items: center; gap: 12px; }
.lightbox__img { max-width: 100%; max-height: calc(100dvh - 120px); width: auto; height: auto; }
.lightbox__caption { font-size: .9375rem; color: var(--text); text-align: center; }
.lightbox__close, .lightbox__nav { background: none; border: 0; color: var(--white); cursor: pointer; font-size: 2.6rem; line-height: 1; width: 56px; height: 56px; }
.lightbox__close { position: absolute; top: 8px; right: 8px; }
.lightbox__nav--prev { grid-column: 1; grid-row: 1; }
.lightbox__nav--next { grid-column: 3; grid-row: 1; }
@media (max-width: 600px) {
  .lightbox[open] { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; }
  .lightbox__figure { grid-column: 1 / -1; grid-row: 1; padding: 56px 12px 0; }
  .lightbox__nav--prev, .lightbox__nav--next { grid-column: auto; grid-row: 2; justify-self: center; }
}

/* ---- aDJusted-Seite ---------------------------------------------------- */

.adj-hero { text-align: center; padding-top: clamp(40px, 7vw, 88px); }
.adj-hero .wordmark { font-size: clamp(3.2rem, 2rem + 6vw, 6.5rem); line-height: 1; margin-bottom: .2em; }
.adj-hero__tagline { font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem); color: var(--text-strong); max-width: 34ch; margin: 0 auto 1.2em; }
.badge { display: inline-block; padding: 4px 12px; border: 1px solid var(--deck-b); color: var(--deck-b); border-radius: 999px; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.4em; }
.adj-hero .shot { margin-top: clamp(40px, 6vw, 72px); }

.features { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.feature { background: var(--bg); padding: 28px 26px 30px; }
.feature h3 { font-family: var(--display); letter-spacing: .05em; font-size: 1.1875rem; margin-bottom: .6em; }
.feature h3::before { content: ""; display: block; width: 28px; height: 3px; margin-bottom: 16px; background: linear-gradient(90deg, var(--deck-a), var(--deck-b)); }
.feature p { margin: 0; }

.shots { display: grid; gap: 40px; }
.shots figcaption { padding: 14px 18px; font-size: .9375rem; border-top: 1px solid var(--line); }
@media (min-width: 900px) { .shots { grid-template-columns: 1fr 1fr; } .shots > :first-child { grid-column: 1 / -1; } }

.specs { width: 100%; border-collapse: collapse; }
.specs th, .specs td { text-align: left; vertical-align: top; padding: 14px 0; border-bottom: 1px solid var(--line); }
.specs th { width: 32%; padding-right: 24px; color: var(--text-strong); font-weight: 600; }
.specs td strong { color: var(--white); font-weight: 600; }
@media (max-width: 560px) { .specs th, .specs td { display: block; width: auto; padding: 4px 0; } .specs th { padding-top: 16px; border-bottom: 0; } }

.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 18px 32px 18px 0; color: var(--text-strong); font-size: 1.0625rem; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 14px; font-size: 1.5rem; color: var(--text); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 12px; }

.beta { border: 1px solid var(--line); padding: clamp(28px, 5vw, 56px); text-align: center; background: linear-gradient(180deg, #0c0c0c, #000); position: relative; }
.beta::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--deck-a), var(--deck-b)); }
.beta__list { display: inline-grid; gap: 6px; text-align: left; margin: 0 auto 2em; }
.beta__list li::before { content: "→ "; color: var(--deck-b); }
.beta__privacy { margin: 1.6em 0 0; }

/* ---- Rechtstexte ------------------------------------------------------- */

.prose { max-width: 780px; margin-inline: auto; padding-inline: var(--gutter); }
.prose h1 { font-family: var(--display); letter-spacing: var(--wide); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.5rem); text-align: center; margin-bottom: 1.4em; }
.prose h2 { font-size: 1.375rem; margin-top: 2em; color: var(--text-strong); }
.prose h3 { font-size: 1.125rem; margin-top: 1.6em; color: var(--text-strong); }
.prose ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1em; }
.prose li { margin-bottom: .35em; }
.prose address { font-style: normal; margin-bottom: 1em; }
.prose .todo { background: #3a2a00; color: #ffd66b; padding: 0 4px; }

/* ---- Fuß --------------------------------------------------------------- */

.footer { text-align: center; padding: 56px var(--gutter) 64px; font-size: .875rem; }
.footer .social { margin-bottom: 28px; }
.footer__copy { margin-bottom: 1.6em; }
.footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 28px; }
.footer__links a { color: var(--text); font-size: .9375rem; }
.footer__links a:hover { color: var(--white); }
.languages ul { display: flex; justify-content: center; gap: 18px; margin-top: 24px; }

/* ---- 404 --------------------------------------------------------------- */

.notfound { min-height: 60vh; display: grid; place-content: center; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* Der Name bleibt auch in Großbuchstaben-Knöpfen „aDJusted“ */
.keep-case { text-transform: none; letter-spacing: .03em; }

/* ---- Artist-Seiten ----------------------------------------------------- */

.section--artist { padding-top: clamp(24px, 4vw, 48px); }
.back { margin: 0 0 clamp(20px, 3vw, 36px); font-size: .9375rem; }
.back a { color: var(--text); text-decoration: none; }
.back a:hover { color: var(--white); }

.artist-cards { display: grid; gap: 40px 28px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); max-width: 1180px; margin-inline: auto; }
.artist-card__link { display: grid; gap: 6px; text-decoration: none; }
.artist-card__picture { position: relative; display: block; margin-bottom: 12px; }
.artist-card__picture .artist__img, .artist-card__picture .artist__monogram { transition: filter .3s; }
.artist-card__link:hover .artist__img { filter: grayscale(0) brightness(1.08); }
.artist-card__link:hover .artist__monogram { color: var(--text-strong); }
.artist-card__name { font-family: var(--display); letter-spacing: .06em; font-size: 1.5rem; color: var(--white); margin-top: 8px; padding-right: 88px; }
.artist-card__meta { color: var(--text); font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase; }

/* Kacheln wie auf cYphers Periodensystem-Grafik: weiß, dicker schwarzer Rand */
.tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 36px; margin: 0 0 .8em; }
.tiles__word { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tile {
  position: relative; display: inline-grid; grid-template-rows: auto 1fr auto; justify-items: center;
  width: clamp(76px, 12vw, 116px); aspect-ratio: 5 / 6; padding: 6px 6px 8px;
  background: #fff; color: #000; border: 3px solid #000; border-radius: 10px;
  box-shadow: 0 0 0 2px #fff; line-height: 1;
}
.tile__number { justify-self: start; font-size: clamp(.75rem, 1.4vw, 1rem); font-weight: 600; }
.tile__symbol { align-self: center; font-weight: 600; font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.02em; }
.tile__name { font-size: clamp(.5625rem, 1.1vw, .8125rem); text-align: center; overflow-wrap: anywhere; }
.tile--fictional { background: #000; color: #fff; border: 2px dashed #fff; box-shadow: none; }
.tile--own { background: linear-gradient(145deg, #1a1a1a, #000); color: #fff; border: 2px solid #fff; box-shadow: 0 0 24px rgba(255, 255, 255, .12); }
.tile--large { width: clamp(150px, 22vw, 210px); padding: 12px 12px 16px; }
.tile--large .tile__number { font-size: 1.25rem; }
.tile--large .tile__symbol { font-size: clamp(3.5rem, 8vw, 5.5rem); }
.tile--large .tile__name { font-size: 1rem; }
.artist-card__picture .artist-card__tile { position: absolute; right: 12px; bottom: -18px; width: 72px; padding: 5px 5px 6px; }
.artist-card__tile .tile__number { font-size: .6875rem; }
.artist-card__tile .tile__symbol { font-size: 1.75rem; }
.artist-card__tile .tile__name { font-size: .5rem; }
.tiles__legend { text-align: center; font-size: .8125rem; color: var(--text); margin-bottom: 3em; }

.element { padding-top: clamp(40px, 6vw, 64px); border-top: 1px solid var(--line); }
.element__title-word { white-space: nowrap; }
.element__title { font-family: var(--display); letter-spacing: var(--wide); font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.0625rem); text-align: center; margin-bottom: 1.2em; }
.element__card { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px 48px; align-items: center; justify-items: center; max-width: 1080px; margin: 3em auto; }
@media (min-width: 760px) { .element__card { grid-template-columns: auto minmax(0, 1fr); justify-items: stretch; } .element__card .tile { justify-self: center; } }
.element__card .element__facts { margin: 0; width: 100%; }

.pager { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; border-top: 1px solid var(--line); padding-top: 28px; }
.pager__link { display: grid; gap: 2px; text-decoration: none; }
.pager__link--next { text-align: right; }
.pager__label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text); }
.pager__name { font-family: var(--display); letter-spacing: .05em; font-size: clamp(1.1rem, 1rem + .8vw, 1.5rem); color: var(--white); }
.pager__link--prev .pager__name::before { content: "← "; }
.pager__link--next .pager__name::after { content: " →"; }
.pager__all { color: var(--text); font-size: .875rem; text-align: center; }
@media (max-width: 560px) { .pager { grid-template-columns: 1fr 1fr; } .pager__all { grid-column: 1 / -1; grid-row: 2; } }
