/*
 * ╔══════════════════════════════════════════════════════════════════════════════════════════╗
 * ║                                                                                          ║
 * ║  ████████╗██╗  ██╗███████╗████████╗ █████╗ ██████╗ ██╗   ██╗ ██████╗                     ║
 * ║     ██╔══╝██║  ██║██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██║   ██║██╔════╝                     ║
 * ║     ██║   ███████║█████╗     ██║   ███████║██████╔╝██║   ██║██║  ███╗                    ║
 * ║     ██║   ██╔══██║██╔══╝     ██║   ██╔══██║██╔══██╗██║   ██║██║   ██║                    ║
 * ║     ██║   ██║  ██║███████╗   ██║   ██║  ██║██████╔╝╚██████╔╝╚██████╔╝                    ║
 * ║     ╚═╝   ╚═╝  ╚═╝╚══════╝   ╚═╝   ╚═╝  ╚═╝╚═════╝  ╚═════╝  ╚═════╝                     ║
 * ║                                                                                          ║
 * ║                                      🐛  v2.7.1                                         ║
 * ║                                                                                          ║
 * ║                        CSS crafted with ❤ love, one bug at a time.                      ║
 * ║                                                                                          ║
 * ║                                                                                          ║
 * ╠══════════════════════════════════════════════════════════════════════════════════════════╣
 * ║                                                                                          ║
 * ║  © 2026 THETABUG — All rights reserved.                                                  ║
 * ║                                                                                          ║
 * ║  This stylesheet and its contents are the intellectual property of                       ║
 * ║  THETABUG. 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
 * Version: 2.7.1
 * License: All Rights Reserved
 */
    *,
    *::before,
    *::after {
      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;
      --farbe-rahmenlinie: #ddd5c0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Source Sans 3", sans-serif;
      background: var(--farbe-creme);
      color: var(--farbe-text);
      line-height: 1.7;
      font-size: 1rem;
    }

    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. Mal sehen wie lange ;)
========================================= */

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;
  }
}

/* =========================================
       PAGE HEADER
    ========================================= */

    .unterseite-kopfzeile {
      background:
        linear-gradient(rgba(17, 26, 20, 0.52), rgba(17, 26, 20, 0.72)),
        url("../../images/hero.jpg") center center / cover no-repeat;
      padding: 9rem 2rem 3.5rem;
      color: #fff;
    }

    .unterseite-kopfzeile-innen {
      max-width: 900px;
      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;
    }


    .unterseite-kopfzeile h1 {
      font-family: "Playfair Display", serif;
      color: #fff;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.15;
      margin-bottom: 0.4rem;
    }

    .unterseite-kopfzeile-untertext {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.92rem;
      font-weight: 300;
    }

    .unterseite-kopfzeilenleiste {
      width: 48px;
      height: 2px;
      background: var(--farbe-gold);
      margin-top: 1.2rem;
    }

    /* =========================================
       MAIN CONTENT
    ========================================= */

    main {
      max-width: 980px;
      margin: 0 auto;
      padding: 4rem 2rem 6rem;
    }

    main img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .inhaltsverzeichnis {
      background: #fff;
      border: 1px solid var(--farbe-rahmenlinie);
      border-left: 3px solid var(--farbe-gold);
      border-radius: 6px;
      padding: 1.5rem 2rem;
      margin-bottom: 3rem;
      box-shadow: 0 10px 24px rgba(17, 26, 20, 0.04);
    }

    .toc-title {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 600;
      margin-bottom: 0.8rem;
    }

    .inhaltsverzeichnis ol {
      padding-left: 1.2rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.35rem 0;
    }

    .inhaltsverzeichnis li {
      font-size: 0.92rem;
      color: var(--farbe-text-dezent);
      margin-bottom: 0.1rem;
      line-height: 1.5;
    }

    .inhaltsverzeichnis a {
      color: var(--farbe-wald-hell);
      text-decoration: none;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .inhaltsverzeichnis a:hover {
      color: var(--farbe-gold);
      text-decoration: underline;
    }

    .textblock {
      margin-bottom: 3.2rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--farbe-rahmenlinie);
      scroll-margin-top: 2rem;
    }

    .textblock:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .block-num {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    h2 {
      font-family: "Playfair Display", serif;
      color: var(--farbe-wald-dunkel);
      font-size: 1.6rem;
      margin-bottom: 1.15rem;
      line-height: 1.25;
    }

    h3 {
      font-family: "Source Sans 3", sans-serif;
      font-size: 0.84rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--farbe-text-dezent);
      margin-top: 1.75rem;
      margin-bottom: 0.55rem;
    }

    h3:first-of-type {
      margin-top: 0;
    }

    p {
      color: var(--farbe-text-dezent);
      font-weight: 300;
      margin-bottom: 1rem;
      line-height: 1.75;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

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

    ul,
    ol {
      color: var(--farbe-text-dezent);
      font-weight: 300;
      padding-left: 1.45rem;
      margin-bottom: 1rem;
    }

    ul li,
    ol li {
      margin-bottom: 0.45rem;
      line-height: 1.7;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    li > ul,
    li > ol {
      margin-top: 0.55rem;
      margin-bottom: 0.55rem;
    }

    main a {
      color: var(--farbe-wald-hell);
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    main a:hover {
      color: var(--farbe-gold);
    }

    main strong {
      font-weight: 600;
      color: var(--farbe-wald-dunkel);
    }

    .hervorgehobener-hinweiskasten {
      background: #eef5f0;
      border-radius: 6px;
      border-left: 3px solid var(--farbe-wald-hell);
      padding: 1rem 1.25rem;
      margin: 1.2rem 0;
      font-size: 0.95rem;
      color: var(--farbe-text);
      box-shadow: 0 8px 20px rgba(17, 26, 20, 0.03);
      line-height: 1.7;
    }

    .hervorgehobener-hinweiskasten strong {
      font-weight: 600;
      color: var(--farbe-wald-dunkel);
    }

    .rights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .right-card {
      background: #fff;
      border: 1px solid var(--farbe-rahmenlinie);
      border-radius: 6px;
      padding: 1rem 1.2rem;
      box-shadow: 0 8px 20px rgba(17, 26, 20, 0.03);
    }

    .right-card-title {
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--farbe-wald-dunkel);
      margin-bottom: 0.4rem;
    }

    .right-card p {
      font-size: 0.85rem;
      margin-bottom: 0;
    }

    .last-updated {
      font-size: 0.78rem;
      color: var(--farbe-text-dezent);
      opacity: 0.75;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--farbe-rahmenlinie);
      line-height: 1.65;
    }

    /* =========================================
       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;
    }

    .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,
    .footer-linkliste a.active {
      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,
    .footer-rechtliches a.active {
      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);
    }

    /* =========================================
       RESPONSIVE
    ========================================= */

    @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: 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,
      .mobile-hauptnavigation a.active {
        color: var(--farbe-gold-hell);
        background: rgba(255, 255, 255, 0.03);
      }

      .unterseite-kopfzeile,
      main {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .unterseite-kopfzeile {
        padding-top: 8.5rem;
      }

      .inhaltsverzeichnis {
        padding: 1.2rem 1.1rem;
      }

      .inhaltsverzeichnis ol {
        grid-template-columns: 1fr;
        padding-left: 1rem;
      }

      h2 {
        font-size: 1.35rem;
      }

      p,
      ul li,
      ol li {
        font-size: 0.98rem;
      }
    }

    @media (max-width: 560px) {
      main {
        padding-top: 3rem;
        padding-bottom: 5rem;
      }

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

      .hervorgehobener-hinweiskasten,
      .inhaltsverzeichnis {
        border-radius: 5px;
      }
    }
