/*
 * ╔══════════════════════════════════════════════════════════════════════════════════════════╗
 * ║                                                                                          ║
 * ║  ████████╗██╗  ██╗███████╗████████╗ █████╗ ██████╗ ██╗   ██╗ ██████╗                   ║
 * ║     ██╔══╝██║  ██║██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██║   ██║██╔════╝                   ║
 * ║     ██║   ███████║█████╗     ██║   ███████║██████╔╝██║   ██║██║  ███╗                  ║
 * ║     ██║   ██╔══██║██╔══╝    ██║   ██╔══██║██╔══██╗██║   ██║██║   ██║                   ║
 * ║     ██║   ██║  ██║███████╗  ██║   ██║  ██║██████╔╝╚██████╔╝╚██████╔╝                   ║
 * ║     ╚═╝   ╚═╝  ╚═╝╚══════╝  ╚═╝   ╚═╝  ╚═╝╚═════╝  ╚═════╝  ╚═════╝                    ║
 * ║                                                                                          ║
 * ║                                      🐛  v1.8.23                                         ║
 * ║                                                                                          ║
 * ║                        CSS crafted with love, one bug at a time.                         ║
 * ║                                                                                           ║
 * ║                                                                                          ║
 * ╠══════════════════════════════════════════════════════════════════════════════════════════╣
 * ║                                                                                          ║
 * ║  © 2026 THETABUG WHITEHAT HACKER HARTHA — All rights reserved.                          ║
 * ║                                                                                          ║
 * ║  This stylesheet and its contents are the intellectual property of                       ║
 * ║  THETABUG WHITEHAT HACKER HARTHA. Unauthorized reproduction, distribution,              ║
 * ║  or modification of this code, in whole or in part, is strictly prohibited               ║
 * ║  without prior written permission from the author.                                       ║
 * ║                                                                                          ║
 * ║  Permitted use: Personal, educational, and authorized security research only.            ║
 * ║                                                                                          ║
 * ╚══════════════════════════════════════════════════════════════════════════════════════════╝
 *
 * Author:  THETABUG WHITEHAT HACKER HARTHA
 * Version: 1.8.23
 * License: All Rights Reserved
 */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --farbe-wald-dunkel: #1a3a2a;
      --farbe-wald-mittel: #2d5a3d;
      --farbe-wald-hell: #3d7a52;
      --farbe-gold: #c8961a;
      --farbe-gold-hell: #e8b830;
      --farbe-creme: #f9f5ec;
      --farbe-text-dunkel: #111a14;
      --farbe-text: #2c3e30;
      --farbe-text-dezent: #607060;
      --flaeche-panel: rgba(255, 255, 255, 0.05);
      --farbe-panel-rahmen: rgba(255, 255, 255, 0.1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Source Sans 3", sans-serif;
      background: var(--farbe-creme);
      color: var(--farbe-text);
      line-height: 1.6;
      margin: 0;
    }

    a {
      color: inherit;
    }

/* =========================================
   NAVIGATION
   V71: schlanke Desktop-Navbar als Standard.
   Dropdown startet tiefer an der goldenen Linie; keine Scroll-Shrink-Transition beim Erstladen.
   Mobile Burger-Navigation bleibt eigenstaendig.
========================================= */

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 300;
  overflow: visible;
  background: rgba(10, 18, 12, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

nav::after {
  content: "";
  position: absolute;
  left: 7.25rem;
  right: 1rem;
  bottom: 0;
  z-index: 1;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 150, 26, 0.22) 10%,
    rgba(232, 184, 48, 0.88) 50%,
    rgba(200, 150, 26, 0.22) 90%,
    transparent 100%
  );
  box-shadow: 0 1px 8px rgba(232, 184, 48, 0.22);
}

.hauptnavigation-logo,
.hauptnavigation-linkliste,
.hauptnavigation-menueschalter {
  position: relative;
  z-index: 2;
}

.hauptnavigation-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  white-space: nowrap;
}

.hauptnavigation-logo-bild {
  width: 92px;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 18px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.hauptnavigation-logo-text {
  font-family: "Playfair Display", serif;
  color: var(--farbe-gold-hell);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-top: -4px;
}

.hauptnavigation-linkliste {
  display: none;
  list-style: none;
  align-items: center;
}

.hauptnavigation-linkliste a,
.mobile-hauptnavigation a {
  position: relative;
  color: var(--farbe-gold-hell);
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(200, 150, 26, 0.08);
  transition: color 0.2s ease, background 0.2s ease, text-shadow 0.2s ease;
}

.hauptnavigation-linkliste a::before,
.mobile-hauptnavigation a::before {
  content: "";
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background-image: var(--ssgh-nav-fadenkreuz-symbol);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 6px rgba(232, 184, 48, 0.28));
}

.hauptnavigation-linkliste a:hover,
.hauptnavigation-linkliste a:focus,
.hauptnavigation-linkliste a:focus-visible,
.hauptnavigation-linkliste a.active:hover,
.hauptnavigation-linkliste a.active:focus,
.hauptnavigation-linkliste a.active:focus-visible,
.mobile-hauptnavigation a:hover,
.mobile-hauptnavigation a:focus,
.mobile-hauptnavigation a:focus-visible,
.mobile-hauptnavigation a.active:hover,
.mobile-hauptnavigation a.active:focus,
.mobile-hauptnavigation a.active:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

.hauptnavigation-linkliste a:hover::before,
.hauptnavigation-linkliste a:focus::before,
.hauptnavigation-linkliste a:focus-visible::before,
.hauptnavigation-linkliste a.active:hover::before,
.hauptnavigation-linkliste a.active:focus::before,
.hauptnavigation-linkliste a.active:focus-visible::before,
.mobile-hauptnavigation a:hover::before,
.mobile-hauptnavigation a:focus::before,
.mobile-hauptnavigation a:focus-visible::before,
.mobile-hauptnavigation a.active:hover::before,
.mobile-hauptnavigation a.active:focus::before,
.mobile-hauptnavigation a.active:focus-visible::before {
  opacity: 1;
}

.hauptnavigation-menueschalter {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hauptnavigation-menueschalter span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hauptnavigation-menueschalter.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hauptnavigation-menueschalter.active span:nth-child(2) {
  opacity: 0;
}

.hauptnavigation-menueschalter.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-hauptnavigation {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  background: rgba(17, 26, 20, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-hauptnavigation.open {
  display: flex;
}

.mobile-hauptnavigation a {
  padding: 1rem 1.25rem 1rem calc(2.66rem + 10px);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-hauptnavigation a::before {
  left: 1.2rem;
  top: 50%;
  width: 1.46rem;
  height: 1.56rem;
  transform: translateY(-50%) scale(0.82);
}

.mobile-hauptnavigation a:hover,
.mobile-hauptnavigation a:focus,
.mobile-hauptnavigation a:focus-visible,
.mobile-hauptnavigation a.active:hover,
.mobile-hauptnavigation a.active:focus,
.mobile-hauptnavigation a.active:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.mobile-hauptnavigation a:hover::before,
.mobile-hauptnavigation a:focus::before,
.mobile-hauptnavigation a:focus-visible::before,
.mobile-hauptnavigation a.active:hover::before,
.mobile-hauptnavigation a.active:focus::before,
.mobile-hauptnavigation a.active:focus-visible::before {
  transform: translateY(-50%) scale(1);
}

.hauptnavigation-dropdown {
  display: none;
}

@media (min-width: 1401px) {
  nav {
    --ssgh-navbar-seitenabstand: clamp(5rem, calc((100vw - 1370px) / 2), 18rem);
    position: fixed;
    min-height: 58px;
    padding-left: var(--ssgh-navbar-seitenabstand);
    padding-right: var(--ssgh-navbar-seitenabstand);
    background: linear-gradient(
      180deg,
      rgba(10, 18, 12, 0.82) 0%,
      rgba(17, 26, 20, 0.74) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }

  nav::after {
    left: calc(var(--ssgh-navbar-seitenabstand) + clamp(9.5rem, 10.5vw, 12.75rem));
    right: var(--ssgh-navbar-seitenabstand);
  }

  .hauptnavigation-logo {
    gap: 0.55rem;
  }

  .hauptnavigation-logo-bild {
    width: 84px;
    top: 6px;
    filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.24));
  }

  .hauptnavigation-logo-text {
    font-size: 0.98rem;
    margin-top: -3px;
  }

  .hauptnavigation-menueschalter,
  .mobile-hauptnavigation {
    display: none;
  }

  .hauptnavigation-linkliste {
    display: flex;
    align-self: stretch;
    gap: clamp(1.7rem, 2.25vw, 3rem);
  }

  .hauptnavigation-linkliste > li {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
    height: 100%;
  }

  .hauptnavigation-linkliste a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease, text-shadow 0.2s ease;
  }

  .hauptnavigation-linkliste a::before {
    left: calc(-1.22rem - 5px);
    top: calc(50% - 2px);
    width: 1.22rem;
    height: 1.31rem;
    transform: translateY(-50%) scale(0.82);
  }

  .hauptnavigation-linkliste a:hover::before,
  .hauptnavigation-linkliste a:focus::before,
  .hauptnavigation-linkliste a:focus-visible::before,
  .hauptnavigation-linkliste a.active:hover::before,
  .hauptnavigation-linkliste a.active:focus::before,
  .hauptnavigation-linkliste a.active:focus-visible::before {
    transform: translateY(-50%) scale(1);
  }

  .hauptnavigation-dropdown {
    display: flex;
    z-index: 365;
  }

  .hauptnavigation-dropdown-ausloeser {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
  }

  .hauptnavigation-dropdown-ausloeser::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.12rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
    opacity: 0.85;
    transition: transform 180ms ease-in-out, opacity 180ms ease-in-out;
  }

  .hauptnavigation-dropdown:hover .hauptnavigation-dropdown-ausloeser,
  .hauptnavigation-dropdown:focus-within .hauptnavigation-dropdown-ausloeser {
    color: #ffffff;
  }

  .hauptnavigation-dropdown:hover .hauptnavigation-dropdown-ausloeser::after,
  .hauptnavigation-dropdown:focus-within .hauptnavigation-dropdown-ausloeser::after {
    opacity: 1;
    transform: rotate(225deg) translateY(-1px);
  }

  .hauptnavigation-untermenue {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 13.5rem;
    list-style: none;
    display: block;
    padding: 0.58rem;
    margin: 0;
    border: 1px solid rgba(200, 150, 26, 0.34);
    border-top: 1px solid rgba(232, 184, 48, 0.62);
    border-radius: 0 0 12px 12px;
    background: linear-gradient(
      180deg,
      rgba(10, 18, 12, 0.96) 0%,
      rgba(17, 26, 20, 0.92) 100%
    );
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 180ms ease-in-out, transform 180ms ease-in-out, visibility 180ms ease-in-out;
    z-index: 370;
  }

  .hauptnavigation-untermenue::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.85rem;
    height: 0.85rem;
  }

  .hauptnavigation-dropdown:hover .hauptnavigation-untermenue,
  .hauptnavigation-dropdown:focus-within .hauptnavigation-untermenue {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue li {
    display: block;
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue a {
    position: relative;
    display: block;
    padding: 0.62rem 0.8rem 0.62rem 2.1rem;
    border-radius: 7px;
    color: var(--farbe-gold-hell);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    line-height: 1.25;
    white-space: nowrap;
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue a::before {
    left: 0.58rem;
    top: 50%;
    width: 1.02rem;
    height: 1.1rem;
    transform: translateY(-50%) scale(0.78);
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue a:hover,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a:focus,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a:focus-visible,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
  }

  .hauptnavigation-linkliste .hauptnavigation-untermenue a:hover::before,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a:focus::before,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a:focus-visible::before,
  .hauptnavigation-linkliste .hauptnavigation-untermenue a.active::before {
    opacity: 1;
    transform: translateY(-50%) scale(0.92);
  }
}

@media (min-width: 1600px) {
  nav {
    --ssgh-navbar-seitenabstand: clamp(12rem, 14.5vw, 17rem);
  }
}

@media (max-width: 700px) {
  .hauptnavigation-logo-bild {
    width: 86px;
  }

  .mobile-hauptnavigation a {
    padding-left: calc(2.42rem + 10px);
  }

  .mobile-hauptnavigation a::before {
    left: 1.05rem;
    width: 1.37rem;
    height: 1.46rem;
  }
}

/* =========================================
   GOLDENE SEITENTRENNER
========================================= */

body > section + section,
main > section + section {
  position: relative;
}

body > section + section::before,
main > section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  z-index: 5;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 150, 26, 0.18) 8%,
    rgba(232, 184, 48, 0.72) 50%,
    rgba(200, 150, 26, 0.18) 92%,
    transparent 100%
  );
  box-shadow: 0 1px 7px rgba(232, 184, 48, 0.16);
}

@media (max-width: 700px) {
  body > section + section::before,
  main > section + section::before {
    left: 1.2rem;
    right: 1.25rem;
  }
}

/* =========================================
       HERO - Meine tollen Banner 
    ========================================= */

    .header {
      background:
        linear-gradient(rgba(17, 26, 20, 0.5), rgba(17, 26, 20, 0.72)),
        url("../../images/hero.jpg") center center / cover no-repeat;
      min-height: 76vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 2rem 4rem;
    }

    .header-hintergrundmarke {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.1;
      width: 440px;
      height: 440px;
      pointer-events: none;
    }

    .header-inhalt {
      text-align: center;
      position: relative;
      z-index: 2;
      max-width: 820px;
      margin-top: 1rem;
    }

    .header-hinweisplakette {
      display: inline-block;
      border: 1px solid var(--farbe-gold);
      color: var(--farbe-gold);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      background: rgba(46, 34, 4, 0.7);
    }

    .header h1 {
      font-family: "Playfair Display", serif;
      color: #fff;
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.15;
      margin-bottom: 1rem;
      text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    }

    .header h1 span {
      color: var(--farbe-gold-hell);
    }

    .header p {
      color: rgba(255, 255, 255, 0.84);
      font-size: 1.08rem;
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto 2rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    }

    .header-aktionen {
      display: inline-flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .schaltflaeche-primaer {
      background: var(--farbe-gold);
      color: var(--farbe-text-dunkel);
      padding: 0.85rem 2rem;
      border: none;
      border-radius: 2px;
      font-family: "Source Sans 3", sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s ease;
      text-decoration: none;
      display: inline-block;
    }

    .schaltflaeche-primaer:hover {
      background: var(--farbe-gold-hell);
    }

    .schaltflaeche-kontur {
      background: transparent;
      color: #fff;
      padding: 0.85rem 2rem;
      border: 1px solid rgba(255, 255, 255, 0.45);
      border-radius: 2px;
      font-family: "Source Sans 3", sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
      text-decoration: none;
      display: inline-block;
    }

    .schaltflaeche-kontur:hover {
      border-color: var(--farbe-gold);
      color: var(--farbe-gold-hell);
      background: rgba(255, 255, 255, 0.04);
    }

    .aufnahmestopp-hinweiskasten {
      margin: 0 auto 1.6rem;
      max-width: 760px;
      padding: 0.95rem 1.1rem;
      background: rgba(17, 26, 20, 0.42);
      border: 1px solid rgba(232, 184, 48, 0.4);
      color: #fff;
      border-radius: 4px;
      line-height: 1.7;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .aufnahmestopp-hinweiskasten strong {
      color: var(--farbe-gold-hell);
    }

    /* =========================================
       GENERELLE SEKTIONEN - NICHT drinnen rumfummeln
    ========================================= */

    section {
      padding: 5rem 2rem;
    }

    .inhaltsbereich-innen {
      max-width: 1100px;
      margin: 0 auto;
    }

    .pfad-navigation {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      flex-wrap: wrap;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.88);
      margin-bottom: 1rem;
      padding: 0.45rem 0.8rem;
      border: 1px solid rgba(232, 184, 48, 0.28);
      background: rgba(17, 26, 20, 0.28);
      border-radius: 999px;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      width: fit-content;
    }

    .pfad-navigation a {
      color: var(--farbe-gold-hell);
      text-decoration: none;
    }

    .pfad-navigation a:hover {
      text-decoration: underline;
    }

    .inhaltsbereich-label {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .inhaltsbereich-titel {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--farbe-wald-dunkel);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .inhaltsbereich-trenner {
      width: 48px;
      height: 2px;
      background: var(--farbe-gold);
      margin: 1rem 0 2.5rem;
    }

    .inhaltsbereich-einleitung {
      max-width: 760px;
      color: var(--farbe-text-dezent);
      font-size: 1.02rem;
      line-height: 1.8;
    }

    /* =========================================
       VORTEILE - spezielle extras
    ========================================= */

    .mitgliedschaft-vorteile-bereich {
      background: var(--farbe-wald-dunkel);
    }

    .mitgliedschaft-vorteile-bereich .inhaltsbereich-titel,
    .mitgliedschaft-vorteile-bereich .inhaltsbereich-label,
    .mitgliedschaft-vorteile-bereich .inhaltsbereich-einleitung {
      color: #fff;
    }

    .mitgliedschaft-vorteile-bereich .inhaltsbereich-einleitung {
      color: rgba(255, 255, 255, 0.72);
    }

    .mitgliedschaft-vorteile-raster {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .mitgliedschaft-vorteil-karte {
      background: var(--flaeche-panel);
      border: 1px solid var(--farbe-panel-rahmen);
      border-radius: 4px;
      padding: 1.6rem;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .mitgliedschaft-vorteil-karte:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
    }

    .mitgliedschaft-vorteil-karte h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.15rem;
      color: var(--farbe-gold-hell);
      margin-bottom: 0.55rem;
    }

    .mitgliedschaft-vorteil-karte p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.97rem;
      line-height: 1.7;
    }

    /* =========================================
       ABLAUF 
    ========================================= */

    .ablauf-schritte-raster {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .ablauf-schritt-karte {
      background: #fff;
      border: 1px solid #e4ddca;
      border-radius: 4px;
      padding: 1.7rem;
      box-shadow: 0 10px 25px rgba(17, 26, 20, 0.04);
    }

    .ablauf-schritt-nummer {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--farbe-wald-dunkel);
      color: var(--farbe-gold-hell);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: "Playfair Display", serif;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .ablauf-schritt-karte h3 {
      font-family: "Playfair Display", serif;
      color: var(--farbe-wald-dunkel);
      margin-bottom: 0.6rem;
      font-size: 1.2rem;
    }

    .ablauf-schritt-karte p {
      color: var(--farbe-text-dezent);
      line-height: 1.7;
    }

    /* =========================================
       INFOS
    ========================================= */

    .informationsraster {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .informationskarte {
      background: #fff;
      border: 1px solid #e4ddca;
      border-left: 4px solid var(--farbe-gold);
      border-radius: 4px;
      padding: 1.5rem 1.6rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .informationskarte:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 28px rgba(17, 26, 20, 0.07);
      border-color: #d9c38a;
    }

    .informationskarte-kopf {
      display: flex;
      align-items: center;
      gap: 0.95rem;
      margin-bottom: 0.85rem;
    }

    .informationssymbol-rahmen {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 50%;
      background: rgba(200, 150, 26, 0.12);
      color: var(--farbe-wald-dunkel);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(200, 150, 26, 0.18);
      box-shadow: 0 0 0 rgba(200, 150, 26, 0);
      transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    }

    .informationskarte:hover .informationssymbol-rahmen {
      background: var(--farbe-gold);
      color: #fff;
      border-color: var(--farbe-gold-hell);
      transform: scale(1.08);
      box-shadow: 0 10px 20px rgba(200, 150, 26, 0.25);
    }

    .informationssymbol {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      transition: transform 0.25s ease;
    }

    .informationskarte:hover .informationssymbol {
      transform: scale(1.05);
    }

    .informationskarte h3 {
      font-family: "Playfair Display", serif;
      color: var(--farbe-wald-dunkel);
      margin-bottom: 0;
      font-size: 1.15rem;
      line-height: 1.3;
      transition: color 0.25s ease;
    }

    .informationskarte:hover h3 {
      color: var(--farbe-wald-mittel);
    }

    .informationskarte p {
      color: var(--farbe-text-dezent);
      line-height: 1.75;
    }

    .informationshinweis {
      display: inline-block;
      margin-top: 0.9rem;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 700;
    }

    /* =========================================
       FAQ AKKORDION - wilde sache DON'T  TOUCH IT sonst klatscht it
    ========================================= */

    .faq-bereich {
      background: #f2ede0;
    }

    .faq-akkordeon {
      margin-top: 2rem;
      display: grid;
      gap: 1rem;
    }

    .faq-eintrag {
      background: #fff;
      border: 1px solid #ddd4bd;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(17, 26, 20, 0.04);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .faq-eintrag.active {
      border-color: #cfbf98;
      box-shadow: 0 10px 24px rgba(17, 26, 20, 0.06);
    }

    .faq-frage {
      width: 100%;
      background: #fff;
      border: none;
      padding: 1.25rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      text-align: left;
      transition: background 0.2s ease;
    }

    .faq-frage:hover {
      background: #fcfaf5;
    }

    .faq-frage-text {
      font-family: "Playfair Display", serif;
      font-size: 1.08rem;
      color: var(--farbe-wald-dunkel);
      line-height: 1.4;
    }

    .faq-symbol {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--farbe-wald-dunkel);
      color: var(--farbe-gold-hell);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .faq-eintrag.active .faq-symbol {
      transform: rotate(45deg);
      background: var(--farbe-wald-mittel);
    }

    .faq-antwort {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-antwort-inhalt {
      padding: 0 1.4rem 1.35rem;
      color: var(--farbe-text-dezent);
      line-height: 1.8;
    }

    /* =========================================
       CTA / DOWNLOAD 
    ========================================= */

    .handlungsaufruf-panelbereich {
      background: var(--farbe-text-dunkel);
      color: #fff;
    }

    .handlungsaufruf-panel {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      padding: 2rem;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2rem;
      align-items: center;
    }

    .handlungsaufruf-panel h2 {
      font-family: "Playfair Display", serif;
      color: #fff;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }

    .handlungsaufruf-panel p {
      color: rgba(255, 255, 255, 0.74);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .handlungsaufruf-schaltflaechen {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
    }

    .kontakt-hinweiskasten {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      padding: 1.4rem;
    }

    .kontakt-hinweiskasten h3 {
      font-family: "Playfair Display", serif;
      color: var(--farbe-gold-hell);
      margin-bottom: 0.9rem;
      font-size: 1.15rem;
    }

    .kontakt-hinweiskasten p,
    .kontakt-hinweiskasten a {
      color: rgba(255, 255, 255, 0.74);
      text-decoration: none;
      line-height: 1.8;
    }

    .kontakt-hinweiskasten a:hover {
      color: var(--farbe-gold-hell);
    }

    /* =========================================
       FOOTER
    ========================================= */

    footer {
      background: var(--farbe-text-dunkel);
      padding: 2.5rem 2rem 2rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.82rem;
      letter-spacing: 0.05em;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-linkliste {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }

    .footer-linkliste a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s ease;
    }

    .footer-linkliste a:hover {
      color: var(--farbe-gold-hell);
    }

    .footer-rechtliches {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 0.8rem;
      flex-wrap: wrap;
    }

    .footer-rechtliches a {
      color: rgba(255, 255, 255, 0.35);
      text-decoration: none;
      font-size: 0.78rem;
      transition: color 0.2s ease;
      border-bottom: 1px solid transparent;
    }

    .footer-rechtliches a:hover {
      color: var(--farbe-gold);
      border-bottom-color: var(--farbe-gold);
    }

    .footer-trenner {
      color: rgba(255, 255, 255, 0.15);
    }

    footer span {
      color: var(--farbe-gold);
    }

    /* =========================================
       ANIMATION  - Fetter und die Fette Danke gehen raus an Peter der alte Animeter
    ========================================= */

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .header-inhalt > * {
      animation: fadeUp 0.7s ease both;
    }

    .header-inhalt > *:nth-child(1) {
      animation-delay: 0.1s;
    }

    .header-inhalt > *:nth-child(2) {
      animation-delay: 0.25s;
    }

    .header-inhalt > *:nth-child(3) {
      animation-delay: 0.4s;
    }

    .header-inhalt > *:nth-child(4) {
      animation-delay: 0.55s;
    }

    /* =========================================
       RESPONSIVE - MAX auf MIN
    ========================================= */

    @media (max-width: 1450px) {
      nav {
        padding: 0 1rem;
      }

      .hauptnavigation-linkliste {
        gap: 1rem;
      }

      .hauptnavigation-linkliste a {
        font-size: 0.82rem;
        letter-spacing: 0.02em;
      }

      .hauptnavigation-logo-bild {
        width: 112px;
        top: 22px;
      }

      .hauptnavigation-logo-text {
        font-size: 1rem;
        margin-top: -6px;
      }
    }


    @media (max-width: 1400px) {
      nav {
        padding: 0 1rem;
        min-height: 72px;
        align-items: center;
        overflow: visible;
      }

      .hauptnavigation-linkliste {
        display: none;
      }

      .hauptnavigation-menueschalter {
        display: inline-flex;
      }

      .hauptnavigation-logo {
        gap: 0.55rem;
      }

      .hauptnavigation-logo-bild {
        width: 92px;
        top: 18px;
      }

      .hauptnavigation-logo-text {
        font-size: 0.95rem;
        margin-top: -4px;
      }

      .mobile-hauptnavigation {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(17, 26, 20, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
        flex-direction: column;
        padding: 0.5rem 0;
      }

      .mobile-hauptnavigation.open {
        display: flex;
      }

      .mobile-hauptnavigation a {
        color: rgba(255, 255, 255, 0.88);
        text-decoration: none;
        padding: 1rem 1.25rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .mobile-hauptnavigation a:hover,
      .mobile-hauptnavigation a.active {
        color: var(--farbe-gold-hell);
        background: rgba(255, 255, 255, 0.03);
      }
    }



    @media (max-width: 980px) {
      .mitgliedschaft-vorteile-raster,
      .ablauf-schritte-raster,
      .informationsraster,
      .handlungsaufruf-panel {
        grid-template-columns: 1fr;
      }

      .header-hintergrundmarke {
        width: 320px;
        height: 320px;
        right: -20px;
        opacity: 0.08;
      }
    }

    @media (max-width: 700px) {
      nav {
        padding: 0 1rem;
        min-height: 72px;
        align-items: center;
        overflow: visible;
      }

      .hauptnavigation-linkliste {
        display: none;
      }

      .hauptnavigation-menueschalter {
        display: inline-flex;
      }

      .hauptnavigation-logo {
        gap: 0.55rem;
      }

      .hauptnavigation-logo-bild {
        width: 86px;
        top: 18px;
      }

      .hauptnavigation-logo-text {
        font-size: 0.95rem;
        margin-top: -4px;
      }

      .mobile-hauptnavigation {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(17, 26, 20, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
        flex-direction: column;
        padding: 0.5rem 0;
      }

      .mobile-hauptnavigation.open {
        display: flex;
      }

      .mobile-hauptnavigation a {
        color: rgba(255, 255, 255, 0.88);
        text-decoration: none;
        padding: 1rem 1.25rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .mobile-hauptnavigation a:hover {
        color: var(--farbe-gold-hell);
        background: rgba(255, 255, 255, 0.03);
      }

      .header {
        min-height: 74vh;
        padding: 8.5rem 1.2rem 3rem;
      }

      .header-hintergrundmarke {
        display: none;
      }

      .header h1 {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .header p {
        font-size: 1rem;
      }

      .header-aktionen,
      .handlungsaufruf-schaltflaechen {
        flex-direction: column;
        width: 100%;
      }

      .header-aktionen a,
      .handlungsaufruf-schaltflaechen a {
        width: 100%;
        max-width: 320px;
      }

      .faq-frage {
        padding: 1.1rem 1.1rem;
      }

      .faq-antwort-inhalt {
        padding: 0 1.1rem 1.2rem;
      }

      .informationskarte-kopf {
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      section,
      .mitgliedschaft-vorteile-bereich,
      .faq-bereich,
      .handlungsaufruf-panelbereich {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .handlungsaufruf-panel,
      .kontakt-hinweiskasten,
      .mitgliedschaft-vorteil-karte,
      .ablauf-schritt-karte,
      .informationskarte {
        padding: 1.2rem;
      }

      .faq-frage-text {
        font-size: 1rem;
      }

      .informationssymbol-rahmen {
        width: 44px;
        height: 44px;
        min-width: 44px;
      }
    }
