/* ============================================================
   WESTGENUSS – Haupt-Stylesheet
   ============================================================
   PFLEGE-HINWEIS: Die wichtigsten Designvariablen stehen ganz
   oben im :root-Block. Farben und Abstände können dort geändert
   werden und wirken sich auf die gesamte Seite aus.
   ============================================================ */

/* ============================================================
   1. DESIGN-VARIABLEN (CSS Custom Properties)
   ============================================================ */
:root {
  /* --- Farben --- */
  --gold:       #b08f2f;    /* Hauptakzentfarbe (Gold) */
  --gold-light: #e0b84f;    /* Helleres Gold für Hover */
  --gold-dark:  #8a6e1f;    /* Dunkleres Gold für aktive Zustände */
  --gold-10:    rgba(176, 143, 47, 0.10);  /* Gold sehr transparent */
  --gold-20:    rgba(176, 143, 47, 0.20);  /* Gold leicht transparent */

  --black:      #000000;    /* Hintergrundfarbe */
  --white:      #ffffff;    /* Haupttextfarbe */
  --gray-900:   #0f0f0f;    /* Fast Schwarz (Karten-Hintergrund) */
  --gray-800:   #1a1a1a;    /* Dunkelgrau (Sektionen) */
  --gray-700:   #2a2a2a;    /* Mittelgrau (Borders) */
  --gray-500:   #555555;    /* Grau (deaktiv) */
  --gray-300:   #999999;    /* Hellgrau (sekundärer Text) */
  --gray-100:   #e0e0e0;    /* Fast Weiß (heller Text) */

  /* Semantische Farben */
  --color-bg:         var(--black);
  --color-bg-card:    var(--gray-900);
  --color-bg-section: var(--gray-800);
  --color-border:     var(--gray-700);
  --color-text:       var(--white);
  --color-text-muted: var(--gray-300);
  --color-accent:     var(--gold);
  --color-accent-hover: var(--gold-light);

  /* Status-Farben */
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-error:   #f44336;
  --color-info:    #2196f3;

  /* --- Typografie --- */
  /* Cormorant Garamond: elegante Serif-Schrift für Headlines */
  /* Outfit: modern, gut lesbar für Fließtext und UI */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Outfit', 'Segoe UI', sans-serif;
  --font-mono:    'Courier New', monospace;

  --text-xs:   0.75rem;    /*  12px */
  --text-sm:   0.875rem;   /*  14px */
  --text-base: 1rem;       /*  16px */
  --text-lg:   1.125rem;   /*  18px */
  --text-xl:   1.25rem;    /*  20px */
  --text-2xl:  1.5rem;     /*  24px */
  --text-3xl:  2rem;       /*  32px */
  --text-4xl:  2.5rem;     /*  40px */
  --text-5xl:  3.5rem;     /*  56px */
  --text-6xl:  5rem;       /*  80px */

  /* --- Abstände --- */
  --space-xs:  0.25rem;   /*  4px */
  --space-sm:  0.5rem;    /*  8px */
  --space-md:  1rem;      /* 16px */
  --space-lg:  1.5rem;    /* 24px */
  --space-xl:  2rem;      /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */

  /* --- Sonstiges --- */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-fast:  0.15s ease;
  --transition-base:  0.25s ease;
  --transition-slow:  0.4s ease;
  --max-width:        1280px; /* Maximale Inhaltsbreite */
  --header-height:    160px;
}

/* ============================================================
   2. RESET & BASIS
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Bilder responsiv */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-accent-hover);
}
a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Listen reset */
ul, ol {
  list-style: none;
}

/* Buttons reset */
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================================
   3. SKIP-LINK (Barrierefreiheit)
   ============================================================ */
/* Ermöglicht Tastatur-Nutzern, direkt zum Inhalt zu springen */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--color-accent);
  color: var(--black);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: var(--space-md);
}

/* ============================================================
   4. TYPOGRAFIE-KLASSEN
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

h1 { font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); }
h3 { font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl)); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-md);
  max-width: 70ch; /* Optimale Lesbreite */
}
p:last-child { margin-bottom: 0; }

/* Kicker / Überzeile */
.kicker {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
}

/* Trennlinie mit Goldakzent */
.title-line {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.title-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* Fließtext-Klassen */
.text-muted   { color: var(--color-text-muted); }
.text-accent  { color: var(--color-accent); }
.text-sm      { font-size: var(--text-sm); }
.text-lg      { font-size: var(--text-lg); }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.font-bold    { font-weight: 700; }
.font-medium  { font-weight: 500; }

/* ============================================================
   5. LAYOUT-UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Abschnitt-Abstände */
.section {
  padding: var(--space-4xl) 0;
}
.section--sm {
  padding: var(--space-2xl) 0;
}
.section--dark {
  background-color: var(--color-bg-section);
}

/* Flexbox-Utilities */
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.flex-wrap   { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }
.gap-xl  { gap: var(--space-xl); }

/* Grid-Utilities */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-lg); }

/* Abstands-Utilities */
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

/* Sichtbarkeit */
.sr-only { /* Screen-Reader only – für Barrierefreiheit */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

/* Primär-Button (Gold auf Schwarz) */
.btn--primary {
  background-color: var(--color-accent);
  color: var(--black);
  border: 1px solid var(--color-accent);
}
.btn--primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(176, 143, 47, 0.3);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Sekundär-Button (Rahmen in Gold) */
.btn--secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn--secondary:hover {
  background-color: var(--gold-10);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* Ghost-Button (Weiß) */
.btn--ghost {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--gray-500);
}
.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Kleine und große Varianten */
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-base);
}

/* ============================================================
   7. KARTEN (Cards)
   ============================================================ */
.card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.card:hover {
  border-color: var(--color-accent);
}
.card--clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.card--gold-border {
  border-color: var(--gold-20);
  box-shadow: inset 0 0 0 1px var(--gold-20);
}

/* ============================================================
   8. BADGES & PILLS
   ============================================================ */
.badge {
  display: inline-block;
  padding: 0.2em 0.7em;
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--gold {
  background: var(--gold-20);
  color: var(--gold-light);
  border: 1px solid var(--gold-20);
}
.badge--neu {
  background: var(--color-accent);
  color: var(--black);
}
.badge--b2b {
  background: var(--gray-700);
  color: var(--gray-100);
}

/* ============================================================
   9. FORMULARELEMENTE
   ============================================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--gray-100);
  letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--gray-900);
  color: var(--white);
  border: 1px solid var(--gray-700);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--gold-10);
}

/* Select-Pfeil anpassen */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b08f2f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Fehlermeldungen */
.form-error {
  color: var(--color-error);
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}

/* Pflichtfeld-Markierung */
.required::after {
  content: ' *';
  color: var(--color-accent);
}

/* ============================================================
   10. TABELLEN
   ============================================================ */
.table-wrapper {
  overflow-x: auto; /* Tabellen scrollen auf kleinen Bildschirmen */
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  background: var(--gray-800);
  color: var(--color-accent);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  white-space: nowrap;
}
td {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--gray-800);
  font-size: var(--text-sm);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-900); }

/* ============================================================
   11. ALTERSVERIFIKATION (Modal)
   ============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}
#age-gate.hidden {
  display: none;
}
.age-gate__box {
  text-align: center;
  max-width: 480px;
  width: 100%;
}
.age-gate__logo {
  margin: 0 auto var(--space-xl);
  max-width: 200px;
}
.age-gate__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}
.age-gate__text {
  color: var(--gray-300);
  margin-bottom: var(--space-2xl);
  font-size: var(--text-lg);
}
.age-gate__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate__hint {
  margin-top: var(--space-xl);
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* ============================================================
   12. HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

/* Header scrolled – Hintergrund wird sichtbar */
#site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--gold-20);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-xl);
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  text-decoration: none;
}
.header__logo img {
  height: 66px;
  width: auto;
}

/* Navigation */
.header__nav {
  flex: 1;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.nav__item {}
.nav__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray-100);
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-accent);
  background: var(--gold-10);
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--gray-900);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  z-index: 100;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--gray-100);
}
.nav__dropdown a:hover {
  color: var(--color-accent);
  background: var(--gold-10);
}
/* Trennlinie vor Login-Links im Dropdown */
.nav__dropdown .nav__dropdown-divider {
  border: none;
  border-top: 1px solid var(--gray-700);
  margin: var(--space-sm) 0;
}

/* Header rechts: Social + Login */
.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-shrink: 0;
}
.header__social {
  display: flex;
  gap: var(--space-sm);
}
.header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--gray-300);
  transition: color var(--transition-fast);
}
.header__social a:hover {
  color: var(--color-accent);
}
.header__social svg {
  width: 18px;
  height: 18px;
}
.header__login {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--gray-500);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}
.header__login:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Sprachwechsler */
.lang-switcher {
  display: flex;
  gap: 2px;
  border: 1px solid var(--gray-700);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}
.lang-switcher__btn {
  padding: 0.3rem 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}
.lang-switcher__btn:hover,
.lang-switcher__btn.active {
  color: var(--color-accent);
  background: var(--gold-10);
}

/* Hamburger (mobil) */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
  background: none;
  border: none;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}
.header__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   13. HERO-BEREICH
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hintergrundbild / Platzhalter */
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 50%, #0a0a0a 100%);
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Bilddeckkraft – ggf. anpassen */
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

/* Goldene Dekorationslinie rechts */
.hero__deco {
  position: absolute;
  right: 8%;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.5;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  max-width: 680px;
}

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold-20);
  border-radius: 100px;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
}
.hero__date::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: var(--space-xl);
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--gray-300);
  margin-bottom: var(--space-2xl);
  max-width: 55ch;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Scroll-Indikator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-500);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-500), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Countdown im Hero */
.hero__countdown {
  position: absolute;
  right: var(--space-4xl);
  bottom: var(--space-4xl);
  z-index: 2;
  text-align: center;
}
.countdown {
  display: flex;
  gap: var(--space-lg);
}
.countdown__item {
  text-align: center;
}
.countdown__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}
.countdown__label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: var(--space-xs);
  display: block;
}

/* "Störer" / Ticket-Teaser-Banner */
.ticket-teaser {
  position: absolute;
  right: var(--space-4xl);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  max-width: 220px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.ticket-teaser__label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: var(--space-sm);
}
.ticket-teaser__price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-accent);
  line-height: 1;
}
.ticket-teaser__price-from {
  font-size: var(--text-sm);
  color: var(--gray-300);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-lg);
}

/* ============================================================
   14. SCHNELLINFO-STREIFEN
   ============================================================ */
.info-strip {
  background: var(--gold-10);
  border-top: 1px solid var(--gold-20);
  border-bottom: 1px solid var(--gold-20);
  padding: var(--space-lg) 0;
}
.info-strip__items {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}
.info-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: var(--gray-100);
}
.info-strip__icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================================
   15. ÖFFNUNGSZEITEN-KOMPONENTE
   ============================================================ */
.opening-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.opening-times__day {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
}
.opening-times__day-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}
.opening-times__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-800);
}
.opening-times__row:last-child {
  border-bottom: none;
}
.opening-times__type {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.opening-times__type--b2b  { color: var(--color-info); }
.opening-times__type--vip  { color: var(--color-accent); }
.opening-times__type--b2c  { color: var(--white); }
.opening-times__time {
  font-size: var(--text-lg);
  font-weight: 400;
}
.opening-times__note {
  font-size: var(--text-xs);
  color: var(--gray-300);
}

/* ============================================================
   16. TICKET-KARTEN
   ============================================================ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-lg);
}
.ticket-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.ticket-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.ticket-card--vip {
  border-color: var(--gold-20);
  background: linear-gradient(135deg, var(--gray-900), rgba(176, 143, 47, 0.05));
}
.ticket-card__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.ticket-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.2;
}
.ticket-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-300);
  flex: 1;
}
.ticket-card__price {
  margin-top: var(--space-md);
}
.ticket-card__amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-accent);
  line-height: 1;
}
.ticket-card__amount sup {
  font-size: 0.5em;
  vertical-align: super;
}
.ticket-card__amount-reduced {
  font-size: var(--text-sm);
  color: var(--gray-300);
  margin-top: var(--space-xs);
}

/* ============================================================
   17. AUSSTELLER-LISTE
   ============================================================ */
/* Filterleiste */
.aussteller-filter {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-xl);
}
.aussteller-filter input[type="search"] {
  flex: 1;
  min-width: 200px;
}

/* Tabellen-Darstellung */
.aussteller-table {
  width: 100%;
  border-collapse: collapse;
}
.aussteller-table td:first-child {
  width: 200px;
}
.aussteller-row {
  transition: background var(--transition-fast);
  cursor: pointer;
}
.aussteller-row:hover td {
  background: var(--gray-800);
}
.aussteller-row__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.aussteller-row__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  background: var(--gray-700);
  padding: 4px;
}
.aussteller-row__name {
  font-weight: 500;
}
.aussteller-row__country {
  font-size: var(--text-xs);
  color: var(--gray-300);
}

/* Einzelne Ausstellerseite */
.aussteller-detail__header {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}
.aussteller-detail__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: var(--gray-700);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  flex-shrink: 0;
}

/* ============================================================
   18. STANDPREISKALKULATOR
   ============================================================ */
.kalkulator {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
}
.kalkulator__result {
  background: var(--gray-800);
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}
.kalkulator__result-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--gray-700);
}
.kalkulator__result-row:last-child {
  border-bottom: none;
  padding-top: var(--space-md);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-accent);
}

/* ============================================================
   19. NEWS / AKTUELLES
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.news-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition-base);
}
.news-card:hover {
  border-color: var(--color-accent);
}
.news-card__date {
  font-size: var(--text-xs);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.news-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
#site-footer {
  background: var(--gray-900);
  border-top: 1px solid var(--gold-20);
  padding: var(--space-4xl) 0 var(--space-2xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--gray-800);
  margin-bottom: var(--space-2xl);
}
.footer__logo {
  max-width: 140px;
  margin-bottom: var(--space-lg);
  /* SVG-Logo auf Weiß umfärben */
  }
.footer__tagline {
  color: var(--gray-300);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}
.footer__links li {
  margin-bottom: var(--space-sm);
}
.footer__links a {
  color: var(--gray-300);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}
.footer__links a:hover {
  color: var(--white);
}

/* Sponsoren im Footer */
.footer__sponsors {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-xl);
}
.footer__sponsor img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(0.5); /* Grau, auf Hover original */
  transition: filter var(--transition-base);
}
.footer__sponsor:hover img {
  }

/* Google Maps Einbettung */
.footer__map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--color-border);
  position: relative;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(0.8); /* Dunkles Maps-Design */
}
/* DSGVO: Maps erst nach Klick laden */
.footer__map-consent {
  position: absolute;
  inset: 0;
  background: var(--gray-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-xl);
}
.footer__map-consent p {
  font-size: var(--text-sm);
  color: var(--gray-300);
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__legal {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: var(--text-xs);
  color: var(--gray-500);
}
.footer__legal a:hover {
  color: var(--gray-300);
}
.footer__copyright {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* ============================================================
   21. LOGIN-BEREICH
   ============================================================ */
.login-box {
  max-width: 440px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl);
}
.login-box__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* ============================================================
   22. GOLDENE TRENNLINIE / DEKORATIONEN
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--gray-800);
  margin: var(--space-xl) 0;
}
.divider--gold {
  border-color: var(--gold-20);
}

/* Zitat-Block */
blockquote {
  box-shadow: inset 0 0 0 1px var(--gold-20);
  padding-left: var(--space-lg);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  font-style: italic;
  color: var(--gray-100);
  margin: var(--space-xl) 0;
}

/* ============================================================
   23. ANIMATIONEN
   ============================================================ */
/* Einblend-Animation für Elemente beim Scrollen */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Goldene Linie wächst ein */
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Reduzierte Animationen (Barrierefreiheit) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__scroll-line {
    animation: none;
  }
}

/* ============================================================
   24. RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .opening-times {
    grid-template-columns: 1fr;
  }

  .hero__countdown, .ticket-teaser {
    display: none; /* Auf Tablet ausblenden */
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   25. RESPONSIVE – MOBIL (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* Navigation ausblenden */
  .header__nav,
  .header__social,
  .header__login,
  .lang-switcher {
    display: none;
  }

  /* Mobil-Menü */
  .header__nav.mobile-open {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    overflow-y: auto;
    z-index: 999;
  }
  .header__nav.mobile-open .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header__nav.mobile-open .nav__link {
    font-size: var(--text-lg);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-800);
    width: 100%;
    border-radius: 0;
  }
  .header__nav.mobile-open .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 0 var(--space-lg);
  }

  .header__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  /* Grids */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Tabellen scrollen */
  .aussteller-filter {
    flex-direction: column;
  }
  .aussteller-filter input[type="search"] {
    width: 100%;
  }

  /* Ticketkarten */
  .ticket-grid {
    grid-template-columns: 1fr;
  }

  /* Kalkulator */
  .kalkulator {
    padding: var(--space-lg);
  }
}

/* ============================================================
   26. DRUCKSTILE
   ============================================================ */

/* ============================================================
   MESSE-ZUSAMMENFASSUNG + KENNDATEN-GRID
   ============================================================ */
.messe-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}
.kenndaten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 768px) {
  .messe-summary-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ============================================================
   AKKORDEON – Person-Blöcke (B2B-Formular)
   ============================================================ */
.person-accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-lg);
  overflow: hidden;
}
.person-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: var(--gray-900);
  cursor: pointer;
  user-select: none;
  gap: var(--space-md);
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.person-accordion__header:hover { background: var(--gray-800); }
.person-accordion__title {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-accent);
}
.person-accordion__summary {
  font-size: var(--text-sm);
  color: var(--gray-300);
  flex: 1;
}
.person-accordion__icon {
  color: var(--color-accent);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}
.person-accordion.is-open .person-accordion__icon { transform: rotate(45deg); }
.person-accordion__body {
  display: none;
  padding: var(--space-xl);
  border-top: 1px solid var(--color-border);
}
.person-accordion.is-open .person-accordion__body { display: block; }

/* ============================================================
   B2B-FORMULAR – Schritte, Layout, Zusammenfassung
   ============================================================ */
.b2b-steps {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  padding: var(--space-xl);
  background: var(--gray-900);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
}
.b2b-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  flex: 1;
  min-width: 180px;
}
.b2b-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  font-size: var(--text-sm);
}
.b2b-step__num--active {
  background: var(--color-accent);
  color: var(--black);
}
.b2b-form-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: start;
}
.b2b-summary-col {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}
.b2b-summary { padding: var(--space-xl); }
.b2b-summary__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--gold-20);
}
.b2b-summary__block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--gray-800);
}
.b2b-summary__block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.b2b-summary__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}
.b2b-summary__row { font-size: var(--text-sm); color: var(--gray-100); line-height: 1.6; }
.b2b-summary__submit { margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid var(--color-border); }
.b2b-summary__placeholder { color: var(--gray-500); }
@media (max-width: 900px) {
  .b2b-form-layout { grid-template-columns: 1fr; }
  .b2b-summary-col { position: static; order: 2; }
  .b2b-form-col { order: 1; }
}
@media (max-width: 600px) {
  .b2b-steps { flex-direction: column; gap: var(--space-md); }
}

/* ============================================================
   MESSE.HTML – Alternierende Text/Bild-Blöcke
   ============================================================ */
.messe-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}
.messe-split:last-child { margin-bottom: 0; }
.messe-split--reverse .messe-split__img  { order: 1; }
.messe-split--reverse .messe-split__text { order: 2; }
.messe-split__img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-800);
}
.messe-split__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.messe-split__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: var(--text-sm); color: var(--gray-500);
}
@media (max-width: 768px) {
  .messe-split { grid-template-columns: 1fr; gap: var(--space-xl); }
  .messe-split--reverse .messe-split__img  { order: 1; }
  .messe-split--reverse .messe-split__text { order: 2; }
}

@media print {
  #site-header, #age-gate, .hero__scroll, .btn { display: none !important; }
  body { background: white; color: black; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: gray; }
}

/* ============================================================
   27. STAND-MATRIX
   ============================================================ */
.smat-container { margin-top: var(--space-xl); }
.smat-desktop { border-radius: var(--border-radius-lg); border: 1px solid var(--color-border); overflow: hidden; }
.smat-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.smat-table col.smat-col-label { width: 16%; }
.smat-table col.smat-col-typ   { width: 10.5%; }
.smat-typ-header {
  text-transform: uppercase; letter-spacing: 0.06em; white-space: normal;
  text-align: center; padding: 10px 4px; background: var(--gray-800);
  color: var(--color-accent); font-weight: 700; font-size: 1.0rem;
  line-height: 1.4; word-break: break-word; overflow-wrap: break-word;
}
.smat-th-empty { background: #1c1208; white-space: normal; }
.smat-row-label {
  text-transform: none; letter-spacing: normal; white-space: normal;
  text-align: left; color: var(--gray-100); font-size: 0.82rem;
  font-weight: 500; padding: 10px 10px; background: #1c1208;
  vertical-align: middle; line-height: 1.45; border-top: 1px solid #2e1e0a;
  overflow-wrap: break-word; word-break: break-word; hyphens: auto;
}
.smat-table td {
  white-space: normal; padding: 9px 4px; border-top: 1px solid var(--gray-800);
  font-size: 0.82rem; text-align: center; vertical-align: middle;
  line-height: 1.45; overflow-wrap: break-word; word-break: break-word;
}
.smat-table td small, .smat-row-label small {
  font-size: 0.70rem; color: var(--gray-300); display: block;
  font-weight: 400; line-height: 1.3;
}
.smat-table tbody tr td:nth-child(even),
.smat-table thead tr th:nth-child(even) { background: #1a1a1a; }
.smat-table tbody tr td:nth-child(odd):not(:first-child),
.smat-table thead tr th:nth-child(odd):not(:first-child) { background: #211d0d; }
.smat-group-header td {
  background: var(--color-accent) !important; color: var(--black);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; white-space: normal; padding: 7px 10px;
  text-align: center; border-top: none; overflow-wrap: break-word;
}
.smat-price-row td              { background: #111 !important; }
.smat-price-row .smat-row-label { background: #140e04 !important; }
.smat-buchen-row td {
  background: var(--gray-800) !important; padding: 10px 4px;
  border-top: 2px solid var(--color-accent); white-space: normal;
}
.smat-buchen-empty { background: var(--gray-800) !important; border-top: 2px solid var(--color-accent); }
.smat-buchen-btn { font-size: 0.68rem !important; padding: 0.35rem 0.3rem !important; white-space: nowrap; display: inline-block; }
.smat-ja   { color: var(--color-accent); font-size: 1.0em; }
.smat-nein { color: var(--gray-500); }
.smat-hinweis { margin-top: var(--space-md); text-align: right; padding-right: var(--space-sm); }
.smat-price-amount { color: var(--color-accent); font-size: 1.05rem; font-weight: 700; display: block; }
.smat-mobile { display: none; }
.smat-card   { margin-bottom: var(--space-lg); }
.smat-card-title { font-family: var(--font-display); font-size: var(--text-2xl); margin-bottom: var(--space-lg); }
.smat-card-group {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--black); background: var(--color-accent);
  padding: var(--space-xs) var(--space-xl);
  margin: var(--space-md) calc(-1 * var(--space-xl));
}
.smat-card-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: var(--space-md); padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gray-800); font-size: var(--text-sm);
}
.smat-card-row:last-of-type { border-bottom: none; }
.smat-card-label { color: var(--gray-300); flex-shrink: 0; max-width: 50%; }
.smat-card-val   { text-align: right; }
@media (max-width: 768px) {
  .smat-desktop { display: none; }
  .smat-mobile  { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .smat-table tbody tr { transition: none; }
}

/* ============================================================
   28. HEADER BEM-ALIASES
   ============================================================ */
.header__inner   { display: flex; align-items: center; height: var(--header-height); padding-block: calc(var(--logo-height) * 0.1); gap: var(--space-xl); }
.header__logo    { flex-shrink: 0; text-decoration: none; }
.header__logo img{ height: var(--logo-height); width: auto; }
.header__nav     { flex: 1; }
.header__right   { display: flex; align-items: center; gap: var(--space-lg); flex-shrink: 0; }
.header__hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--space-sm);
  cursor: pointer; background: none; border: none; }
.header__hamburger span { display: block; width: 1.5rem; height: 2px; background: var(--white);
  transition: all var(--transition-base); }
.header__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__list   { display: flex; align-items: center; gap: var(--space-xs); }
.nav__item   { position: relative; }
.nav__link   { display: block; padding: var(--space-sm) var(--space-md); font-size: var(--text-sm);
  font-weight: 500; letter-spacing: 0.05em; color: var(--gray-100); text-decoration: none;
  border-radius: var(--border-radius-sm); transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap; }
.nav__link:hover, .nav__link.active { color: var(--color-accent); background: var(--gold-10); }
.nav__item--dropdown { position: relative; }
.nav__dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 14rem;
  background: var(--gray-900); border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md); padding: var(--space-sm) 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition-base); z-index: 100; }
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a { display: block; padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm); color: var(--gray-100); text-decoration: none; }
.nav__dropdown a:hover { color: var(--color-accent); background: var(--gold-10); }
.lang-switcher__btn { padding: 0.3rem 0.5rem; font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.05em; color: var(--gray-500); background: transparent; border: none;
  cursor: pointer; transition: all var(--transition-fast); font-family: var(--font-body); }
.lang-switcher__btn:hover, .lang-switcher__btn.active { color: var(--color-accent); background: var(--gold-10); }
@media (max-width: 768px) {
  .header__nav  { display: none; }
  .header__hamburger { display: flex; }
  .header__nav.mobile-open { display: block; position: fixed; inset: 0;
    top: var(--header-height); background: rgba(0,0,0,0.98);
    backdrop-filter: blur(10px); padding: var(--space-xl); overflow-y: auto; z-index: 9001; }
  .header__nav.mobile-open .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .header__nav.mobile-open .nav__link { font-size: var(--text-lg); padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-800); width: 100%; border-radius: 0; }
  .header__nav.mobile-open .nav__dropdown { position: static; opacity: 1; visibility: visible;
    transform: none; background: transparent; border: none; padding: 0 0 0 var(--space-lg); }
}

/* ═══════════════════════════════════════════════════════════════
   29. FAQ BESUCHENDE – besuchende-faq.html
   Sektions-Accordion und Einzel-FAQ (details/summary)
════════════════════════════════════════════════════════════════ */

/* Sektions-Rahmen */
.faq-section {
  border: 1px solid var(--gray-700);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

/* Sektion-Header (klickbar, goldene Schrift) */
.faq-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: var(--gray-900);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  border-bottom: 1px solid var(--gray-700);
  transition: background var(--transition-fast);
}
.faq-section__header:hover {
  background: var(--gray-800);
}
.faq-section__header .faq-section__icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
details.faq-section[open] > summary .faq-section__icon {
  transform: rotate(45deg);
}

/* FAQ-Item-Liste innerhalb einer Sektion */
.faq-section__body {
  padding: var(--space-sm) var(--space-xl) var(--space-md);
  background: var(--gray-900);
}

/* Einzel-FAQ */
.faq-item {
  border-bottom: 1px solid var(--gray-800);
  padding: var(--space-lg) 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item__question {
  cursor: pointer;
  font-weight: 500;
  font-size: var(--text-lg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  color: var(--white);
}
.faq-item__icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
details.faq-item[open] > summary .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  margin-top: var(--space-md);
  color: var(--gray-300);
  max-width: 70ch;
}
