/* =========================================================
   DJ A.X.L. — Website Stylesheet
   Basier Circle self-hosted (DSGVO)
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-regularitalic-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-medium-webfont.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-mediumitalic-webfont.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-semibold-webfont.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-semibolditalic-webfont.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-bolditalic-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0B0B0B;
  --surface: #141414;
  --surface-2: #1A1A1A;
  --border: #262626;
  --border-strong: #333333;
  --text: #F2F2F2;
  --text-muted: #A0A0A0;
  --text-dim: #6B6B6B;
  --accent: #FF3D00;
  --accent-dim: #CC3100;
  --focus: #FF8C5A;

  --font: "Basier Circle", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --radius: 4px;
  --radius-lg: 8px;

  --step--1: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.125rem, 1.06rem + 0.3vw, 1.25rem);
  --step-2:  clamp(1.375rem, 1.25rem + 0.5vw, 1.625rem);
  --step-3:  clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --step-4:  clamp(2.25rem, 1.8rem + 2vw, 3.25rem);
  --step-5:  clamp(3rem, 2.2rem + 3.5vw, 4.75rem);
  --step-6:  clamp(3.75rem, 2rem + 8vw, 8.5rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--accent); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); letter-spacing: -0.01em; }
h4 { font-size: var(--step-1); letter-spacing: 0; font-weight: 600; }

::selection { background: var(--accent); color: #000; }

/* ---------- Accessibility helpers ---------- */
.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;
}
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--accent); color: #000;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  z-index: 1000;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; color: #000; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 780px; }

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.eyebrow {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.lead { font-size: var(--step-1); color: var(--text-muted); max-width: 60ch; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 72px;
}
.site-header__logo img {
  height: 26px;
  width: auto;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  font-size: var(--step--1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  position: relative;
}
.nav a[aria-current="page"] {
  color: var(--accent);
}
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent);
}
.nav .btn { padding: 0.65rem 1.1rem; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.5rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 1rem; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font: inherit;
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  min-height: 44px;
}
.btn--primary {
  background: var(--accent);
  color: #000;
}
.btn--primary:hover { background: var(--accent-dim); color: #000; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn:active { transform: translateY(1px); }

/* ---------- Hero (Homepage) ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: end;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
  background-image: url("../assets/images/dj-axl-pressebild-2016-2.jpg");
  background-size: cover;
  background-position: 70% 35%;
  filter: grayscale(100%) contrast(1.05);
  transform: scaleX(-1);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  transform: scaleX(-1);
  background:
    linear-gradient(180deg, rgba(11,11,11,0.4) 0%, rgba(11,11,11,0.25) 40%, rgba(11,11,11,0.95) 100%),
    linear-gradient(90deg, rgba(11,11,11,0.85) 0%, rgba(11,11,11,0.55) 35%, rgba(11,11,11,0) 70%);
}
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 1.5rem;
  font-size: var(--step--1);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__eyebrow {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: var(--step--1);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: var(--step-6);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  max-width: 12ch;
}
.hero__title .dot { color: var(--accent); }
/* "Tanzen"-Animation: jeder Buchstabe schwingt leicht versetzt */
.hero__title .dance {
  display: inline-block;
}
.hero__title .dance > span {
  display: inline-block;
  animation: title-dance 2.4s ease-in-out infinite;
  transform-origin: 50% 100%;
  will-change: transform;
}
.hero__title .dance > span:nth-child(1) { animation-delay: 0.00s; }
.hero__title .dance > span:nth-child(2) { animation-delay: 0.12s; }
.hero__title .dance > span:nth-child(3) { animation-delay: 0.24s; }
.hero__title .dance > span:nth-child(4) { animation-delay: 0.36s; }
.hero__title .dance > span:nth-child(5) { animation-delay: 0.48s; }
.hero__title .dance > span:nth-child(6) { animation-delay: 0.60s; }

@keyframes title-dance {
  0%, 100% { transform: translateY(0)     rotate(0deg); }
  25%      { transform: translateY(-4px)  rotate(-2.5deg); }
  50%      { transform: translateY(0)     rotate(0deg); }
  75%      { transform: translateY(-3px)  rotate(2.5deg); }
}
.hero__sub {
  font-size: var(--step-1);
  color: var(--text);
  max-width: 55ch;
  margin: 0 0 2rem;
}
.hero__sub a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 61, 0, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.hero__sub a:hover,
.hero__sub a:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Pain / Value section ---------- */
.pain {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pain__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pain__card:hover { border-color: var(--accent); transform: translateY(-2px); }
.pain__card h3 {
  font-size: var(--step-1);
  margin-bottom: 0.75rem;
}
.pain__card p { color: var(--text-muted); font-size: var(--step-0); }

/* ---------- Services / Features ---------- */
.services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.services__media {
  grid-row: 1 / span 2;
  grid-column: 1;
  margin: 0;
  position: relative;
  min-height: 380px;
  background: #000;
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%) contrast(1.02);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.services__media:hover img { filter: grayscale(0%) contrast(1.05); transform: scale(1.02); }
.services__media figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  font-size: var(--step--1);
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(11,11,11,0.7);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.services__item {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.services__item:nth-child(3) { border-right: none; }        /* 2. Kachel in rechter Spalte (Ende Zeile 1) */
.services__item:nth-child(4),
.services__item:nth-child(5) { border-bottom: none; }       /* untere Zeile, kein doppelter Rand */
.services__item:nth-child(5) { border-right: none; }        /* letzte Kachel rechts unten */

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .services__media {
    grid-row: 1;
    grid-column: 1 / -1;
    min-height: 260px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .services__item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .services__item:nth-child(odd) { border-right: 1px solid var(--border); }
  .services__item:nth-child(even) { border-right: none; }
  .services__item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__media { grid-column: 1; min-height: 220px; }
  .services__item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .services__item:last-child { border-bottom: none !important; }
}
.services__num {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1rem;
}
.services__item h3 { font-size: var(--step-2); margin-bottom: 0.75rem; }
.services__item p { color: var(--text-muted); }

/* ---------- Split / About ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}
.split__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: var(--radius-lg);
}

/* ---------- Content prose (About / legal) ---------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.5rem; font-size: var(--step-3); }
.prose h3 { margin-top: 2rem; font-size: var(--step-2); }
.prose p, .prose li { color: var(--text); font-size: var(--step-0); }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  background: var(--surface);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery a:hover img { transform: scale(1.04); filter: grayscale(0%); }
.gallery a { cursor: zoom-in; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.lightbox.is-open {
  display: flex;
  animation: lb-fade 0.2s ease-out;
}
@keyframes lb-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox__stage {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(100%, 1400px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  animation: lb-scale 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes lb-scale {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__caption {
  color: var(--text);
  font-size: var(--step-0);
  text-align: center;
  max-width: 60ch;
  padding: 0 1rem;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lightbox__close svg,
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__close:hover,
.lightbox__nav:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.9);
}
.lightbox__close {
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
}
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  z-index: 3;
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: var(--step--1);
  letter-spacing: 0.15em;
  font-variant-numeric: tabular-nums;
  background: rgba(20, 20, 20, 0.7);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
}
@media (max-width: 600px) {
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav svg { width: 18px; height: 18px; }
}
/* Body-Scroll sperren, wenn Lightbox offen */
body.lightbox-open { overflow: hidden; }

/* ---------- References ---------- */
.refs {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.refs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.refs__col h3 { color: var(--accent); font-size: var(--step-1); margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.refs__col ul { list-style: none; padding: 0; margin: 0; }
.refs__col li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: var(--step-0); }
.refs__col li:last-child { border-bottom: none; }

/* ---------- Regionen ---------- */
.regions {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.regions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) {
  .regions__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .regions__grid { grid-template-columns: 1fr; }
}
.regions__card {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.2s ease;
}
.regions__card:hover { background: var(--surface-2); }
.regions__card:last-child { border-right: none; }
@media (max-width: 900px) {
  .regions__card:nth-child(2n) { border-right: none; }
  .regions__card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .regions__card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
  .regions__card { border-right: none; border-bottom: 1px solid var(--border); }
  .regions__card:last-child { border-bottom: none; }
}
.regions__plz {
  display: block;
  font-size: var(--step--1);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.regions__card h3 {
  font-size: var(--step-2);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.regions__card p {
  color: var(--text-muted);
  font-size: var(--step-0);
  margin: 0;
}
.regions__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
a.regions__card { text-decoration: none; color: inherit; display: block; }
a.regions__card:hover { color: inherit; }
a.regions__card:hover .regions__link { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- City Sections (Sachsen-Landingpage) ---------- */
.city-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.city-section--alt { background: var(--surface); }
.city-head { max-width: 780px; margin-bottom: 2.5rem; }
.city-head__plz {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.city-head h2 {
  font-size: var(--step-4);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: -0.02em;
}
.city-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 720px) {
  .city-body { grid-template-columns: 1fr; }
}
.city-body__col h3 {
  font-size: var(--step-2);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.city-body__col p {
  color: var(--text-muted);
  font-size: var(--step-0);
  line-height: 1.7;
}
.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.city-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--step-0);
}
.city-list li:first-child { border-top: 1px solid var(--border); }

/* 3-Spalten-Variante für den Städte-Grid */
.regions__grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .regions__grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .regions__grid--3 { grid-template-columns: 1fr; } }
.regions__grid--3 .regions__card:nth-child(3n) { border-right: none; }
@media (max-width: 900px) {
  .regions__grid--3 .regions__card:nth-child(3n) { border-right: 1px solid var(--border); }
  .regions__grid--3 .regions__card:nth-child(2n) { border-right: none; }
}

/* ---------- Städte-Grid (dj-sachsen) ---------- */
.cities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) {
  .cities__grid { grid-template-columns: 1fr; }
}
.cities__block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cities__block:hover { border-color: var(--accent); transform: translateY(-2px); }
.cities__region {
  display: block;
  font-size: var(--step--1);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.cities__block h3 {
  font-size: var(--step-2);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.cities__intro {
  color: var(--text-muted);
  font-size: var(--step-0);
  margin-bottom: 1.25rem;
}
.cities__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1rem;
}
.cities__list li {
  padding: 0.35rem 0;
  color: var(--text);
  font-size: var(--step--1);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.cities__list li:last-child,
.cities__list li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
@media (max-width: 400px) {
  .cities__list { grid-template-columns: 1fr; }
}

/* ---------- Social Section ---------- */
.social {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.social h2 {
  font-size: var(--step-4);
  letter-spacing: -0.02em;
}
.social__row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--step-0);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  min-height: 56px;
}
.social__link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}
.social__link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 61, 0, 0.05);
}

/* ---------- Footer social icons ---------- */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.08) 0%, rgba(11,11,11,0) 60%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner h2 { font-size: var(--step-5); text-transform: uppercase; letter-spacing: -0.03em; }
.cta-banner .lead { margin: 0 auto 2rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__title { font-size: var(--step-4); margin-bottom: 2.5rem; text-align: center; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq details:first-of-type { border-top: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 3rem 1.5rem 0;
  font-size: var(--step-1);
  font-weight: 600;
  position: relative;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--accent); }
.faq details[open] summary { color: var(--accent); }
.faq details > div {
  padding: 0 3rem 1.75rem 0;
  color: var(--text-muted);
  font-size: var(--step-0);
  line-height: 1.7;
}
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { }
.contact-info__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:first-child { border-top: 1px solid var(--border); }
.contact-info__label {
  font-size: var(--step--1);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
  display: block;
}
.contact-info__value {
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text);
}
.contact-info__value a:hover { color: var(--accent); }

/* Form */
.form { display: grid; gap: 1.25rem; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form__label {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.form__label .req { color: var(--accent); margin-left: 0.15rem; }
.form__hint { font-size: var(--step--1); color: var(--text-dim); }
.form input,
.form textarea,
.form select {
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  min-height: 48px;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form textarea { min-height: 160px; resize: vertical; line-height: 1.5; }
.form input:hover, .form textarea:hover, .form select:hover { border-color: #444; }
.form input:focus-visible, .form textarea:focus-visible, .form select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.25);
}
.form input:invalid:not(:placeholder-shown),
.form textarea:invalid:not(:placeholder-shown) {
  border-color: #E53935;
}
.form__checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.5;
}
.form__checkbox input[type="checkbox"] {
  width: 20px; height: 20px; min-height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.form__checkbox a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Honeypot (hidden from users, visible to bots) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; opacity: 0;
}

.form__status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: var(--step-0);
  display: none;
}
.form__status[data-state="success"] {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #A5D6A7;
}
.form__status[data-state="error"] {
  display: block;
  background: rgba(229, 57, 53, 0.1);
  border: 1px solid rgba(229, 57, 53, 0.4);
  color: #EF9A9A;
}

/* ---------- SoundCloud consent placeholder ---------- */
.sc-embed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.sc-embed h4 { margin: 0; font-size: var(--step-1); }
.sc-embed p { color: var(--text-muted); font-size: var(--step--1); max-width: 50ch; margin: 0; }
.sc-embed iframe { display: block; width: 100%; border: none; border-radius: var(--radius); }

/* ---------- Page header (subpages) ---------- */
.page-head {
  background: var(--bg);
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}
.page-head__eyebrow {
  font-size: var(--step--1);
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.page-head h1 {
  font-size: var(--step-5);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.page-head .lead { color: var(--text-muted); font-size: var(--step-1); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
.site-footer__brand img { height: 24px; margin-bottom: 1rem; }
.site-footer__brand p { color: var(--text-muted); font-size: var(--step--1); max-width: 32ch; }
.site-footer h4 {
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer li a { color: var(--text-muted); font-size: var(--step--1); }
.site-footer li a:hover { color: var(--accent); }

.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--step--1);
  color: var(--text-dim);
}
.site-footer__bottom nav {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.site-footer__bottom .credit {
  color: var(--text-dim);
  white-space: nowrap;
}
.site-footer__bottom .credit a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.site-footer__bottom .credit a:hover { color: var(--accent); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 100;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: none;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  max-width: 720px;
  margin-inline: auto;
}
.cookie.is-visible { display: flex; }
.cookie p { font-size: var(--step--1); color: var(--text-muted); margin: 0; flex: 1 1 260px; }
.cookie p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie .btn { padding: 0.7rem 1.1rem; }

/* ---------- Consent-Toggle (fixed) ---------- */
.consent-toggle {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 90;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.consent-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(20, 20, 20, 0.95);
  transform: translateY(-2px);
}
.consent-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
/* Icon dezent ausblenden, wenn Banner offen (überlappt sich sonst optisch) */
.cookie.is-visible ~ .consent-toggle,
body:has(.cookie.is-visible) .consent-toggle { opacity: 0; pointer-events: none; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
