/* =====================================================================
   Block 20 Borussen — Design System (Dark, schwarz-gelb)
   Ein einziges, konsolidiertes Stylesheet. Single Source of Truth.
   Reihenfolge: Tokens → Reset → Layout → Header/Nav → Komponenten →
   Seiten-Bausteine → Footer → Plugins → Print/Responsive.
   ===================================================================== */

:root {
  /* Flächen (dunkel) */
  --color-bg-outer: #030303;     /* Bereich außerhalb des boxed Wrappers */
  --color-bg: #0a0a0a;           /* Wrapper / Seiten-Hintergrund */
  --color-surface: #151515;      /* Cards, Tiles, Forms, Panels */
  --color-surface-2: #1c1c1c;    /* erhöhte Flächen, Tags, Icon-Chips */
  --color-surface-3: #232323;    /* Hover / Inputs */
  --color-elevated: #111111;     /* Topstrip, Nav, dunkle Sektionen */

  /* Linien & Trenner (auf Dunkel) */
  --color-line: rgba(255, 255, 255, 0.10);
  --color-line-soft: rgba(255, 255, 255, 0.06);
  --color-line-strong: rgba(255, 255, 255, 0.22);

  /* Marke */
  --color-yellow: #fde100;
  --color-yellow-soft: #ffea38;
  --color-yellow-deep: #c7b100;
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --on-yellow: #0a0a0a;          /* Textfarbe auf gelben Flächen */

  /* Text (hell auf Dunkel) */
  --color-text: #f5f5f5;
  --color-text-soft: rgba(255, 255, 255, 0.74);
  --color-muted: rgba(255, 255, 255, 0.56);

  /* Status */
  --color-success-bg: #0f2a1a;
  --color-success-line: #1f7a4d;
  --color-success-text: #86efac;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.6);

  --container: 1140px;
  --gutter: clamp(16px, 4vw, 40px);

  --font-display: "Bricolage Grotesque", "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --easing: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background-color: var(--color-bg-outer);
  background-image:
    radial-gradient(at 50% 0%, rgba(253, 225, 0, 0.07) 0, transparent 50%),
    radial-gradient(at 0% 100%, rgba(253, 225, 0, 0.02) 0, transparent 40%),
    radial-gradient(at 100% 100%, rgba(253, 225, 0, 0.02) 0, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .2s var(--easing); }
a:hover { color: var(--color-yellow); }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: 0; font-weight: 700; color: var(--color-text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--color-text-soft); }

/* Sichtbarer Fokus für Tastaturnutzer (Barrierefreiheit) */
:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---------- Boxed Layout Wrapper ---------- */
.site-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--color-bg);
  border-left: 1px solid var(--color-line-soft);
  border-right: 1px solid var(--color-line-soft);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.85);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-wrapper > * { width: 100%; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(48px, 8vw, 96px); background: var(--color-bg); }
.section--tight { padding-block: clamp(32px, 5vw, 56px); }
.section--cream { background: #101010; border-block: 1px solid var(--color-line-soft); }
.section--dark { background: #060606; border-block: 1px solid var(--color-line-soft); }
.section + .section { border-top: 1px solid var(--color-line-soft); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(253, 225, 0, .22);
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-title h2 { max-width: 720px; }

/* ---------- Top utility strip ---------- */
.topstrip {
  background: var(--color-elevated);
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--color-line-soft);
}
.topstrip__row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 8px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}
.topstrip__row span { white-space: nowrap; }
.topstrip__row a:hover { color: var(--color-yellow); }
.topstrip__row .pulse {
  width: 7px; height: 7px; display: inline-block; border-radius: 999px;
  background: var(--color-yellow);
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(253, 225, 0, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(253, 225, 0, .7); }
  70% { box-shadow: 0 0 0 8px rgba(253, 225, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(253, 225, 0, 0); }
}
@media (max-width: 720px) { .topstrip__row .hide-sm { display: none; } }
@media (max-width: 560px) {
  .topstrip__row { justify-content: center; gap: 0; }
  .topstrip__row > span:last-child { display: none; }
}

/* ---------- Header / Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--color-line);
  transition: background .3s var(--easing), box-shadow .3s var(--easing);
}
/* Condense-on-Scroll: kompakter, undurchsichtiger beim Scrollen */
.nav.is-condensed {
  background: rgba(7, 7, 7, .96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .4);
}
.nav__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  min-height: 64px;
  transition: padding .3s var(--easing), min-height .3s var(--easing);
}
.nav.is-condensed .nav__inner { padding-block: 6px; min-height: 54px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
}
.brand__type { display: flex; flex-direction: column; min-width: 0; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-yellow);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: width .3s var(--easing), height .3s var(--easing);
}
.brand__mark svg { width: 40px; height: 40px; }
.nav.is-condensed .brand__mark { width: 38px; height: 38px; }
.nav.is-condensed .brand__mark svg { width: 34px; height: 34px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.05;
  letter-spacing: -.01em;
  white-space: nowrap;
  color: var(--color-white);
}
.brand__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--color-muted);
  margin-top: 4px;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity .25s var(--easing), max-height .25s var(--easing);
}
.nav.is-condensed .brand__sub { opacity: 0; max-height: 0; margin-top: 0; }
@media (max-width: 720px) { .brand__sub { display: none; } }

.nav__links {
  display: flex;
  gap: 4px;
  margin-inline: auto;
  list-style: none;
  align-items: center;
}
.nav__links li { list-style: none; }
.nav__links a {
  position: relative;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.74);
  transition: color .2s var(--easing), background .2s var(--easing);
}
.nav__links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, .08);
}
/* Aktiver Menüpunkt — gelbe Pill (WP setzt current-menu-item) */
.nav__links a.is-active,
.nav__links li.current-menu-item > a,
.nav__links li.current_page_item > a {
  color: var(--on-yellow);
  background: var(--color-yellow);
}
.nav__links a.is-active:hover,
.nav__links li.current-menu-item > a:hover {
  color: var(--on-yellow);
  background: var(--color-yellow-soft);
}

.nav__cta { display: flex; gap: 8px; align-items: center; }
.nav__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.74);
  border: 1.5px solid var(--color-line);
  background: rgba(255, 255, 255, 0.03);
  transition: all .25s var(--easing);
}
.nav__cart-btn:hover {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
  background: rgba(253, 225, 0, 0.08);
  box-shadow: 0 0 15px rgba(253, 225, 0, 0.2);
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all .3s var(--easing);
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-yellow);
  border-radius: 2px;
  transition: transform .3s var(--easing), opacity .2s var(--easing);
}
.burger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .nav__cta .btn { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 560px) {
  .nav__cta { display: none; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px var(--gutter) 20px;
  background: #0b0b0b;
  border-bottom: 1px solid var(--color-line);
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu li { list-style: none; }
.mobile-menu a {
  padding: 14px 6px;
  border-bottom: 1px solid var(--color-line-soft);
  font-weight: 500;
  color: var(--color-text);
}
.mobile-menu a:hover { color: var(--color-yellow); }
.mobile-menu li.current-menu-item > a { color: var(--color-yellow); }
.mobile-menu a.btn { margin-top: 12px; border-bottom: 0; text-align: center; justify-content: center; }

/* Frische, reduzierte Navigation: Menü schlicht, Plugin-Zugriffe separat. */
.topstrip__signal,
.topstrip__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.topstrip__link {
  color: rgba(255, 255, 255, .72);
  border-bottom: 1px solid transparent;
}
.topstrip__link:hover {
  color: var(--color-white);
  border-bottom-color: var(--color-yellow);
}
@media (max-width: 560px) {
  .topstrip__row > .topstrip__link:last-child { display: none; }
}

.nav {
  background: rgba(6, 6, 6, .9);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.nav.is-condensed {
  background: rgba(5, 5, 5, .98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .46);
}
.nav__inner {
  gap: clamp(10px, 2vw, 24px);
  min-height: 62px;
}
.brand {
  flex-shrink: 0;
  gap: 10px;
}
.brand__mark {
  width: 40px;
  height: 40px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .1), 0 8px 18px rgba(0, 0, 0, .28);
}
.brand__mark svg { width: 36px; height: 36px; }
.nav.is-condensed .brand__mark { width: 36px; height: 36px; }
.nav.is-condensed .brand__mark svg { width: 32px; height: 32px; }
.brand__name {
  font-size: .98rem;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.brand__sub {
  color: var(--color-yellow);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav__links {
  min-width: 0;
  margin-inline: auto;
}
.nav__list,
.mobile-menu__list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__list:empty,
.mobile-menu__list:empty {
  display: none;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 4px 0;
  border-radius: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  background: transparent;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--easing);
}
.nav__links a:hover {
  color: var(--color-white);
  background: transparent;
}
.nav__links a:hover::after,
.nav__links a.is-active::after,
.nav__links li.current-menu-item > a::after,
.nav__links li.current_page_item > a::after {
  transform: scaleX(1);
}
.nav__links a.is-active,
.nav__links li.current-menu-item > a,
.nav__links li.current_page_item > a,
.nav__links a.is-active:hover,
.nav__links li.current-menu-item > a:hover {
  color: var(--color-white);
  background: transparent;
}

.nav__cta {
  gap: 8px;
  margin-left: 0;
}
.nav__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .74);
  font-weight: 700;
  font-size: 13px;
  transition: color .2s var(--easing), border-color .2s var(--easing), background .2s var(--easing), transform .15s var(--easing);
}
.nav__icon-btn:hover {
  color: var(--color-yellow);
  border-color: rgba(253, 225, 0, .52);
  background: rgba(253, 225, 0, .08);
  transform: translateY(-1px);
}
.nav__icon-btn svg { flex: 0 0 auto; }
.nav__icon-text { white-space: nowrap; }
.nav__join {
  min-height: 40px;
  border-radius: 8px;
  text-transform: none;
  font-weight: 800;
}

.burger {
  border-radius: 8px;
  background: rgba(253, 225, 0, .1);
}
.burger__line {
  width: 20px;
  height: 2px;
}
.burger.is-active .burger__line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-active .burger__line:nth-child(2) { opacity: 0; }
.burger.is-active .burger__line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 var(--gutter);
  background: rgba(6, 6, 6, .98);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: grid-template-rows .28s var(--easing), opacity .2s var(--easing), visibility .2s var(--easing);
}
.mobile-menu[data-open="true"] {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__panel {
  overflow: hidden;
  padding: 18px 0 24px;
}
.mobile-menu__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-menu__list {
  display: grid;
  gap: 0;
}
.mobile-menu__list a,
.mobile-menu__action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-line-soft);
  color: var(--color-text);
  font-weight: 800;
}
.mobile-menu__list a:hover,
.mobile-menu__list li.current-menu-item > a,
.mobile-menu__action:hover {
  color: var(--color-yellow);
}
.mobile-menu__actions {
  display: grid;
  gap: 0;
  margin-top: 16px;
}
.mobile-menu__action {
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu__action small {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
}
.mobile-menu__actions .btn {
  margin-top: 16px;
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .nav__links { display: none; }
  .burger { display: flex; margin-left: 0; }
}
@media (max-width: 720px) {
  .nav__icon-text { display: none; }
  .nav__icon-btn { width: 40px; padding-inline: 0; }
}
@media (max-width: 560px) {
  .brand__name { font-size: .92rem; }
  .nav__inner { min-height: 58px; }
}
@media (max-width: 1100px) {
  html.menu-open { overflow: hidden; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .15s var(--easing), background .2s var(--easing), color .2s var(--easing), box-shadow .2s var(--easing), border-color .2s var(--easing);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--color-yellow);
  color: var(--on-yellow);
  border-color: var(--color-yellow);
}
.btn--primary:hover { background: var(--color-yellow-soft); color: var(--on-yellow); box-shadow: 0 0 18px rgba(253, 225, 0, .25); }
.btn--dark {
  background: #1a1a1a;
  color: var(--color-white);
  border-color: var(--color-line);
}
.btn--dark:hover { background: var(--color-yellow); color: var(--on-yellow); border-color: var(--color-yellow); }
.btn--ghost {
  background: rgba(255, 255, 255, .04);
  color: var(--color-text);
  border: 1.5px solid var(--color-line);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .10); color: var(--color-white); border-color: var(--color-line-strong); }
.btn--ghost-light {
  background: rgba(255, 255, 255, .06);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .14); color: var(--color-white); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---------- Hero (fotografisch) ---------- */
body.construction-mode {
  overflow: hidden;
}
body.construction-mode #site-header,
body.construction-mode #site-footer,
body.construction-mode .consent {
  display: none !important;
}
body.construction-mode .site-wrapper {
  height: 100svh;
  overflow: hidden;
}
.construction-page {
  background:
    radial-gradient(52% 34% at 50% 0%, rgba(253, 225, 0, .1), transparent 70%),
    #080808;
  color: var(--color-white);
  height: 100svh;
  overflow: hidden;
}
.construction-hero {
  min-height: 100%;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: clamp(16px, 4vw, 36px) var(--gutter);
}
.construction-hero__inner {
  width: min(100%, 560px);
  text-align: center;
}
.construction-hero h1 {
  margin: 8px 0 10px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.2vw, 3.25rem);
  line-height: 1;
}
.construction-hero p {
  max-width: 480px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(.98rem, 1.6vw, 1.08rem);
}
@media (max-width: 560px) {
  .construction-hero { min-height: 100%; }
}
.hero {
  position: relative;
  min-height: calc(100svh - 96px);
  display: grid;
  place-items: center;
  color: var(--color-white);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .34) 46%, rgba(0, 0, 0, .72) 100%),
    url("../img/kimi-hero-bg.jpg") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, rgba(253, 225, 0, .14), transparent 24%),
    radial-gradient(80% 60% at 50% 100%, rgba(0, 0, 0, .6), transparent 68%);
}
.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(92px, 15vw, 200px) var(--gutter);
  position: relative;
  z-index: 1;
}
.hero__grid { display: block; text-align: center; }
.hero__grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero__crest {
  width: clamp(72px, 8vw, 98px);
  height: clamp(72px, 8vw, 98px);
  display: grid; place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--on-yellow);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 800;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .36);
}
.hero h1,
.hero h1.hero__title-kimi {
  max-width: 980px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 6px 34px rgba(0, 0, 0, .72);
}
.hero__lede {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .62);
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.hero .btn {
  min-width: 196px;
  min-height: 56px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 800;
}
.hero .btn--ghost-light {
  background: rgba(0, 0, 0, .18);
  border-color: rgba(255, 255, 255, .9);
  color: var(--color-white);
}
.hero .btn--ghost-light:hover { background: rgba(255, 255, 255, .14); }
/* Hilfselemente der alten Hero-Variante ausblenden */
.hero__bg, .hero__bg-stripes, .hero__visual, .hero__stats, .hero__eyebrow { display: none; }

.hero--compact {
  min-height: clamp(420px, 52svh, 560px);
}
.hero--compact .hero__inner {
  padding-block: clamp(56px, 9vw, 92px);
}
.hero--compact h1,
.hero--compact h1.hero__title-kimi {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
}
.hero--compact .hero__lede {
  max-width: 660px;
}

@media (max-width: 720px) {
  .hero { min-height: calc(100svh - 92px); background-position: center top; }
  .hero--compact { min-height: 52svh; }
  .hero__inner { padding: 76px var(--gutter) 104px; }
  .hero--compact .hero__inner { padding-block: 54px 68px; }
  .hero h1, .hero h1.hero__title-kimi { font-size: clamp(2.45rem, 13vw, 3.55rem); }
  .hero .btn { width: 100%; min-width: 0; }
}
@media (max-width: 560px) {
  .hero__ctas {
    width: min(calc(100vw - 48px), 320px);
    flex-direction: column;
    align-items: stretch;
    margin-inline: auto;
  }
}

/* ---------- Page Hero (Unterseiten) ---------- */
.page-hero {
  background:
    radial-gradient(70% 90% at 85% 10%, rgba(253, 225, 0, .12), transparent 68%),
    #050505;
  color: var(--color-white);
  padding: clamp(48px, 8vw, 92px) var(--gutter);
  border-bottom: 1px solid var(--color-line);
}
.page-hero__inner { max-width: var(--container); margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 12px; color: var(--color-white); }
.page-hero p { color: rgba(255, 255, 255, .78); max-width: 640px; }
.page-hero .crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}
.page-hero .crumbs a { color: rgba(255, 255, 255, .7); }
.page-hero .crumbs a:hover { color: var(--color-yellow); }
.page-hero .crumbs .sep { opacity: .4; margin: 0 6px; }

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), border-color .2s var(--easing);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--color-line-strong); }
.card__media {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(45deg, transparent 49%, rgba(253, 225, 0, .15) 49% 51%, transparent 51%),
    repeating-linear-gradient(135deg, #1f1f1f 0 12px, #141414 12px 24px);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.card__media[data-tone="yellow"] { background: var(--color-yellow); color: rgba(0, 0, 0, .55); }
.card__body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.card__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.card__excerpt { color: var(--color-text-soft); margin-bottom: 16px; flex: 1; }
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-yellow);
  border-bottom: 2px solid var(--color-yellow);
  align-self: flex-start;
  padding-bottom: 2px;
}
.card__cta:hover { color: var(--color-yellow-soft); border-bottom-color: var(--color-yellow-soft); }

/* ---------- Event card ---------- */
.event {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  transition: border-color .2s var(--easing);
  align-items: center;
}
.event:hover { border-color: var(--color-yellow); }
.event__date {
  flex-shrink: 0;
  width: 72px;
  text-align: center;
  background: #0d0d0d;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 12px 8px;
}
.event__day {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-yellow);
}
.event__month {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(255, 255, 255, .7);
}
.event__body { flex: 1; min-width: 0; }
.event__title { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; color: var(--color-text); }
.event__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: .04em;
}
.event__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-2);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 6px;
}
.event__tag--away { background: var(--color-yellow); color: var(--on-yellow); }
.event__tag--home { background: var(--color-yellow); color: var(--on-yellow); }

/* ---------- Tile / Quick-Links ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tile {
  display: block;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--easing), border-color .2s var(--easing);
  color: var(--color-text);
}
.tile:hover { transform: translateY(-2px); border-color: var(--color-yellow); }
.tile__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--color-yellow);
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: var(--on-yellow);
}
.tile h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--color-text); }
.tile p { font-size: 14px; color: var(--color-text-soft); }
.tile__arrow {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--color-muted);
  transition: transform .2s var(--easing), color .2s var(--easing);
}
.tile:hover .tile__arrow { color: var(--color-yellow); transform: translate(2px, -2px); }

/* ---------- Welcome block ---------- */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.welcome--text-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.welcome--text-only .welcome__visual {
  display: none;
}
@media (max-width: 920px) { .welcome { grid-template-columns: 1fr; gap: 32px; } }
.welcome__visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(135deg, #0a0a0a 0 16px, #1a1a1a 16px 32px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.welcome__visual-yellow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: var(--color-yellow);
  opacity: .9;
}
.welcome h2 { margin-bottom: 20px; }
.welcome p + p { margin-top: 14px; }
.welcome__sig {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-muted);
}

/* ---------- Social ---------- */
.social-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-line);
  background: rgba(255, 255, 255, .04);
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  transition: background .2s var(--easing), border-color .2s var(--easing), color .2s var(--easing);
}
.social:hover { background: var(--color-yellow); color: var(--on-yellow); border-color: var(--color-yellow); }
.social svg { width: 18px; height: 18px; }

/* ---------- Forms ---------- */
.form {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
}
.form__row { display: grid; gap: 16px; margin-bottom: 16px; }
.form__row.cols-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form__row.cols-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--color-text); }
.field label .opt { font-weight: 400; color: var(--color-muted); }
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius);
  background: #0e0e0e;
  color: var(--color-text);
  font-size: 15px;
  transition: border-color .2s var(--easing), box-shadow .2s var(--easing);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, .38); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(253, 225, 0, .30);
}
.field textarea { min-height: 140px; resize: vertical; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-soft);
  cursor: pointer;
}
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--color-yellow); }
.form__note {
  font-size: 13px;
  color: var(--color-text-soft);
  background: var(--color-surface-2);
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 16px;
}
.form__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form__success {
  background: var(--color-success-bg);
  border: 1px solid var(--color-success-line);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--color-success-text);
  font-size: 14.5px;
  display: none;
}
.form__success.is-visible { display: block; }

/* ---------- Login / Auth ---------- */
.auth-shell {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: 48px var(--gutter);
  background: radial-gradient(60% 80% at 20% 20%, rgba(253, 225, 0, .08), transparent 70%), #0c0c0c;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 1.7rem; margin-bottom: 4px; }
.auth-card p.lede { color: var(--color-text-soft); font-size: 14.5px; margin-bottom: 24px; }
.auth-card .brand-mini,
.brand-mini {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-yellow);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.auth-help { margin-top: 18px; font-size: 13px; color: var(--color-muted); text-align: center; }
.auth-help a { color: var(--color-yellow); text-decoration: underline; text-underline-offset: 3px; }
.login-panel {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  box-shadow: var(--shadow-sm);
}
.login-panel #block20-loginform {
  display: grid;
  gap: 16px;
}
.login-panel label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
}
.login-panel input[type="text"],
.login-panel input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-line);
  border-radius: 8px;
  background: #0e0e0e;
  color: var(--color-text);
}
.login-panel input[type="text"]:focus,
.login-panel input[type="password"]:focus {
  outline: 0;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(253, 225, 0, .24);
}
.login-panel .login-remember label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-soft);
  font-weight: 500;
}
.login-panel input[type="checkbox"] { accent-color: var(--color-yellow); }
.login-panel .button-primary {
  width: 100%;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--color-yellow);
  color: var(--on-yellow);
  font-weight: 800;
  cursor: pointer;
}
.login-panel__links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-size: 14px;
}
.login-panel__links a { color: var(--color-yellow); }

/* ---------- Gated / locked ---------- */
.gate {
  background: var(--color-surface);
  border: 1px dashed var(--color-line-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.gate__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--on-yellow);
  display: grid; place-items: center;
}

/* ---------- Members ---------- */
.member-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}
.member-toolbar input[type="search"],
.member-toolbar select {
  padding: 10px 14px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius);
  background: #0e0e0e;
  color: var(--color-text);
}
.member-toolbar input[type="search"] { flex: 1; min-width: 200px; }
.member-toolbar input[type="search"]:focus,
.member-toolbar select:focus {
  outline: 0;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(253, 225, 0, .3);
}

.profile {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s var(--easing), box-shadow .2s var(--easing);
}
.profile:hover { border-color: var(--color-line-strong); box-shadow: var(--shadow); }
.profile__photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #0a0a0a 0%, #242424 100%);
  display: grid; place-items: center;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
}
.profile__body { padding: 18px 20px 20px; }
.profile__name { font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; color: var(--color-text); }
.profile__nick { font-family: var(--font-mono); font-size: 12px; color: var(--color-muted); margin-bottom: 12px; }
.profile__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-line-soft);
}
.profile__row:last-of-type { border-bottom: 0; }
.profile__row .k { color: var(--color-muted); }
.profile__row .v { font-weight: 500; color: var(--color-text); }
.badge-role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-2);
  color: var(--color-text-soft);
}
.badge-role--vorstand { background: var(--color-yellow); color: var(--on-yellow); }
.badge-role--aktiv { background: rgba(34, 197, 94, .16); color: #4ade80; }
.badge-role--passiv { background: var(--color-surface-2); color: var(--color-text-soft); }

/* Birthday list */
.birthdays {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.birthdays h3 { color: var(--color-text); }
.bday {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-line-soft);
}
.bday:last-child { border-bottom: 0; }
.bday__day {
  width: 48px;
  text-align: center;
  background: var(--color-yellow);
  color: var(--on-yellow);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.bday__name { font-weight: 600; color: var(--color-text); }
.bday__age { font-family: var(--font-mono); font-size: 12px; color: var(--color-muted); margin-top: 2px; }

/* ---------- Merch ---------- */
.product {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--easing), border-color .2s var(--easing), box-shadow .2s var(--easing);
}
.product:hover { transform: translateY(-2px); border-color: var(--color-line-strong); box-shadow: var(--shadow); }
.product__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1c1c1c, #121212);
  display: grid; place-items: center;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-line);
}
.product__media[data-tone="dark"] { background: linear-gradient(135deg, #0a0a0a, #242424); color: var(--color-yellow); }
.product__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product__title { font-weight: 700; font-size: 1.05rem; color: var(--color-text); }
.product__price { font-family: var(--font-display); font-weight: 700; color: var(--color-yellow); }
.product__desc { font-size: 13.5px; color: var(--color-text-soft); flex: 1; }
.product__cta { display: flex; gap: 8px; margin-top: 10px; }

/* ---------- Gallery ---------- */
.gallery-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}
.gallery-tab {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-text-soft);
}
.gallery-tab:hover { color: var(--color-white); }
.gallery-tab.is-active { background: var(--color-yellow); color: var(--on-yellow); }
.gallery-meta {
  margin: -10px 0 18px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(45deg, #1f1f1f 0 14px, #2a2a2a 14px 28px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .4);
  font-family: var(--font-mono);
  font-size: 11px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s var(--easing);
}
.gallery-item:hover { transform: scale(1.02); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 200;
  padding: 24px;
  display: none;
}
.lightbox.is-open { display: grid; place-items: center; }
.lightbox[hidden] { display: none !important; }
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255, 255, 255, .1);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 24px;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .2); }
.lightbox__img {
  aspect-ratio: 4/3;
  width: min(900px, 90vw);
  background: repeating-linear-gradient(45deg, #1f1f1f 0 14px, #2a2a2a 14px 28px);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .5);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lightbox__caption {
  color: white;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .05em;
}

/* ---------- About / Values / Timeline / FAQ ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value {
  padding: 28px 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.value__num { font-family: var(--font-mono); font-size: 12px; color: var(--color-yellow); letter-spacing: .12em; margin-bottom: 16px; }
.value h3 { margin-bottom: 8px; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--color-line);
}
.tl-item { position: relative; padding-bottom: 28px; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -28px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-yellow);
  border: 3px solid var(--color-bg);
}
.tl-year { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--color-muted); margin-bottom: 4px; }
.tl-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.tl-item p { font-size: 14.5px; }

.faq-item { border-bottom: 1px solid var(--color-line); padding: 18px 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--color-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--color-yellow); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 12px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: #0d0d0d;
  border: 1px solid var(--color-line);
  color: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
}
.contact-info h3 { color: var(--color-yellow); margin-bottom: 18px; }
.contact-info p { color: rgba(255, 255, 255, .78); margin-bottom: 14px; font-size: 14.5px; }
.contact-info a { color: var(--color-white); border-bottom: 1px solid var(--color-yellow); padding-bottom: 1px; }
.contact-info a:hover { color: var(--color-yellow); }

/* ---------- Legal pages ---------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { margin-top: 32px; margin-bottom: 12px; font-size: 1.4rem; }
.legal h3 { margin-top: 22px; margin-bottom: 8px; font-size: 1.1rem; }
.legal p, .legal ul { color: var(--color-text-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 4px; }

/* ---------- Wiederverwendbare Bausteine (ersetzen Inline-Styles) ---------- */
/* Gelber Call-to-Action / Hinweis-Block */
.callout--yellow {
  background: var(--color-yellow);
  color: var(--on-yellow);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
}
.callout--yellow h2,
.callout--yellow h3,
.callout--yellow strong { color: var(--on-yellow); }
.callout--yellow p { color: rgba(10, 10, 10, .82); }
/* Kompakte gelbe Hinweiszeile (z. B. „So funktioniert's") */
.callout--yellow.callout--inline {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  padding: 18px 24px;
}
/* CTA-Box mit Aktion rechts */
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 680px) { .cta-box { grid-template-columns: 1fr; } }

/* Dunkles Info-Panel (z. B. „Was passiert nach dem Absenden?") */
.panel--dark {
  background: #0d0d0d;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--color-text);
}
.panel--dark h3 { color: var(--color-yellow); margin-bottom: 12px; font-size: 1.2rem; }
.panel--dark ol, .panel--dark ul { padding-left: 18px; color: var(--color-text-soft); font-size: 14.5px; line-height: 1.7; }

/* Generische Layout-Grids für Templates */
.layout-split {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 920px) { .layout-split { grid-template-columns: 1fr; gap: 32px; } }
.stack-16 > * + * { margin-top: 16px; }
.stack-18 { display: flex; flex-direction: column; gap: 18px; }

/* Modal / Dialog (Bestellanfrage) */
dialog {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 0;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
}
dialog::backdrop { background: rgba(0, 0, 0, .7); }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--color-surface-2);
  color: var(--color-text);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.modal__close:hover { background: var(--color-surface-3); }
.modal__product {
  background: var(--color-surface-2);
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 18px 0;
}
.modal__product [data-product-name] { font-weight: 700; color: var(--color-text); }
.modal__product [data-product-price] { color: var(--color-muted); font-size: 13px; }

/* ---------- Footer ---------- */
.footer {
  background:
    radial-gradient(70% 110% at 20% 0%, rgba(253, 225, 0, .06), transparent 58%),
    #050505;
  color: var(--color-text-soft);
  padding: 64px 0 24px;
  border-top: 1px solid var(--color-line);
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 16px;
}
.footer a { color: var(--color-text-soft); display: block; padding: 5px 0; font-size: 14.5px; }
.footer a:hover { color: var(--color-yellow); }
.footer__brand .brand__name { color: var(--color-white); }
.footer__brand p { font-size: 14px; margin-top: 12px; color: var(--color-muted); max-width: 320px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--color-line-soft);
  padding: 0;
}
.footer__social a:hover { background: var(--color-yellow); color: var(--on-yellow); border-color: var(--color-yellow); }
.footer__base {
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 18px var(--gutter) 0;
  border-top: 1px solid var(--color-line-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: .04em;
}

/* ---------- Cookie consent ---------- */
.consent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  background: #0d0d0d;
  color: var(--color-text);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.consent p { color: var(--color-text-soft); font-size: 14px; max-width: 560px; margin: 0; }
.consent p a { color: var(--color-yellow); border-bottom: 1px solid var(--color-yellow); }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .consent { padding: 16px; left: 10px; right: 10px; bottom: 10px; }
  .consent__actions { width: 100%; }
  .consent__actions .btn { flex: 1; min-width: 0; white-space: normal; }
}

/* ---------- Utility ---------- */
.mono { font-family: var(--font-mono); letter-spacing: .04em; }
.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; }
.flex { display: flex; } .gap-2 { gap: 16px; } .items-center { align-items: center; }
.hidden { display: none !important; }

/* =====================================================================
   Plugin-Integration — WooCommerce, Ultimate Member, Fluent Forms
   Kontrastsicher auf das Dark-Schema abgestimmt.
   ===================================================================== */

/* --- WooCommerce --- */
.woocommerce-container { color: var(--color-text-soft); }
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title { color: var(--color-text); }
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background-color: var(--color-yellow);
  color: var(--on-yellow);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  transition: all .2s var(--easing);
  border: none;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
  background-color: var(--color-yellow-soft);
  box-shadow: 0 0 15px rgba(253, 225, 0, 0.3);
  transform: translateY(-1px);
}
.woocommerce ul.products li.product .button {
  background-color: transparent;
  color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 16px;
}
.woocommerce ul.products li.product .button:hover { background-color: var(--color-yellow); color: var(--on-yellow); }
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price { color: var(--color-yellow); font-family: var(--font-mono); }
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  background: var(--color-surface);
  border-top: 3px solid var(--color-yellow);
  color: var(--color-text);
}
.woocommerce-container a { color: var(--color-yellow); }

/* --- Ultimate Member --- */
.um {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.um-form input[type=text],
.um-form input[type=password],
.um-form input[type=email],
.um-form input[type=tel],
.um-form input[type=number],
.um-form textarea,
.um-form select {
  background: #0e0e0e !important;
  border: 1.5px solid var(--color-line) !important;
  color: var(--color-text) !important;
  border-radius: var(--radius) !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  transition: all .2s var(--easing);
}
.um-form input:focus,
.um-form textarea:focus,
.um-form select:focus {
  border-color: var(--color-yellow) !important;
  box-shadow: 0 0 0 3px rgba(253, 225, 0, .3) !important;
  outline: none !important;
}
.um-form label,
.um-form .um-field-label { color: var(--color-text) !important; font-weight: 700 !important; font-size: 14.5px !important; }
.um .um-field-area, .um .um-row { color: var(--color-text-soft); }
.um-form .um-button,
.um input[type=submit] {
  background-color: var(--color-yellow) !important;
  color: var(--on-yellow) !important;
  font-weight: 700 !important;
  font-family: var(--font-display) !important;
  border-radius: var(--radius-pill) !important;
  padding: 12px 24px !important;
  font-size: 14.5px !important;
  text-transform: uppercase !important;
  transition: all .2s var(--easing);
  border: none !important;
}
.um-form .um-button:hover,
.um input[type=submit]:hover { background-color: var(--color-yellow-soft) !important; box-shadow: 0 0 15px rgba(253, 225, 0, .3) !important; }
.um-form .um-button.um-alt,
.um a.um-button.um-alt {
  background: rgba(255, 255, 255, .05) !important;
  border: 1px solid var(--color-line) !important;
  color: var(--color-white) !important;
}
.um-form .um-button.um-alt:hover,
.um a.um-button.um-alt:hover { background: rgba(255, 255, 255, .12) !important; }

/* --- Fluent Forms --- */
.fluentform {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
}
.fluentform input,
.fluentform select,
.fluentform textarea {
  background: #0e0e0e !important;
  border: 1.5px solid var(--color-line) !important;
  color: var(--color-text) !important;
  border-radius: var(--radius) !important;
  padding: 12px 14px !important;
  transition: all .2s var(--easing);
}
.fluentform input::placeholder,
.fluentform textarea::placeholder { color: rgba(255, 255, 255, .38); }
.fluentform input:focus,
.fluentform select:focus,
.fluentform textarea:focus {
  border-color: var(--color-yellow) !important;
  box-shadow: 0 0 0 3px rgba(253, 225, 0, .3) !important;
  outline: none !important;
}
.fluentform label,
.fluentform .ff-el-input--label label,
.fluentform .ff-el-is-required { color: var(--color-text) !important; font-weight: 700 !important; font-size: 14.5px !important; }
.fluentform .ff-el-input--content .ff-el-form-check-label { color: var(--color-text-soft) !important; font-weight: 400 !important; }
.fluentform .ff-btn-submit {
  background-color: var(--color-yellow) !important;
  color: var(--on-yellow) !important;
  font-weight: 800 !important;
  font-family: var(--font-display) !important;
  border-radius: var(--radius-pill) !important;
  padding: 12px 28px !important;
  font-size: 14.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  transition: all .2s var(--easing);
}
.fluentform .ff-btn-submit:hover {
  background-color: var(--color-yellow-soft) !important;
  box-shadow: 0 0 15px rgba(253, 225, 0, .3) !important;
  transform: translateY(-1px);
}
.fluentform .ff-message-success {
  background: var(--color-success-bg) !important;
  border: 1px solid var(--color-success-line) !important;
  color: var(--color-success-text) !important;
}

/* Plugin-Flächen wie echte Theme-Bestandteile behandeln. */
.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce .woocommerce-ordering select {
  color: var(--color-muted);
}
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
  transition: transform .2s var(--easing), border-color .2s var(--easing), background .2s var(--easing);
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 225, 0, .42);
  background: linear-gradient(180deg, rgba(253, 225, 0, .08), rgba(255, 255, 255, .02));
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
  background: var(--color-surface-2);
  margin-bottom: 14px;
}
.woocommerce span.onsale {
  min-height: 0;
  min-width: 0;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--color-yellow);
  color: var(--on-yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
}
.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 48px);
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none !important;
  width: auto !important;
}
.woocommerce div.product div.images img {
  border-radius: 8px;
  background: var(--color-surface-2);
}
.woocommerce .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--color-line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid var(--color-line);
  border-radius: 8px 8px 0 0;
  background: var(--color-surface);
}
.woocommerce table.shop_attributes,
.woocommerce table.shop_table {
  border-color: var(--color-line);
}

.um,
.fluentform,
.wpforms-container,
.wpcf7,
.gform_wrapper {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
}
.um a,
.wpforms-container a,
.wpcf7 a,
.gform_wrapper a {
  color: var(--color-yellow);
}
.um .um-profile-nav,
.um .um-profile-header,
.um .um-member {
  background: var(--color-surface);
  border-color: var(--color-line);
}
.um .um-field-block,
.um .um-profile-body {
  color: var(--color-text-soft);
}

.wpforms-container input[type=text],
.wpforms-container input[type=email],
.wpforms-container input[type=tel],
.wpforms-container input[type=number],
.wpforms-container select,
.wpforms-container textarea,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=number],
.wpcf7 select,
.wpcf7 textarea,
.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=number],
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%;
  background: #0e0e0e !important;
  border: 1.5px solid var(--color-line) !important;
  color: var(--color-text) !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
}
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus,
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: var(--color-yellow) !important;
  box-shadow: 0 0 0 3px rgba(253, 225, 0, .22) !important;
  outline: none !important;
}
.wpforms-submit,
.wpcf7-submit,
.gform_button {
  background: var(--color-yellow) !important;
  color: var(--on-yellow) !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 12px 22px !important;
  font-weight: 800 !important;
}

@media (max-width: 780px) {
  .woocommerce div.product { display: block; }
}

/* Sidebar/Widgets in dunklen Bereichen */
aside h3 { color: var(--color-text); }

/* ---------- Print ---------- */
@media print {
  .nav, .topstrip, .footer, .consent, .burger, .mobile-menu { display: none !important; }
  body, .site-wrapper { background: #fff !important; color: #000 !important; box-shadow: none !important; }
}
