    /*
 * ╔══════════════════════════════════════════════════════════════════════════════════════════╗
 * ║                                                                                          ║
 * ║  ████████╗██╗  ██╗███████╗████████╗ █████╗ ██████╗ ██╗   ██╗ ██████╗                     ║
 * ║     ██╔══╝██║  ██║██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██║   ██║██╔════╝                     ║
 * ║     ██║   ███████║█████╗     ██║   ███████║██████╔╝██║   ██║██║  ███╗                    ║
 * ║     ██║   ██╔══██║██╔══╝     ██║   ██╔══██║██╔══██╗██║   ██║██║   ██║                    ║
 * ║     ██║   ██║  ██║███████╗   ██║   ██║  ██║██████╔╝╚██████╔╝╚██████╔╝                    ║
 * ║     ╚═╝   ╚═╝  ╚═╝╚══════╝   ╚═╝   ╚═╝  ╚═╝╚═════╝  ╚═════╝  ╚═════╝                     ║
 * ║                                                                                          ║
 * ║                                      🐛  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-gold-weich: rgba(200, 150, 26, 0.12);
      --farbe-creme: #f9f5ec;
      --farbe-creme-dunkel: #f1ecdf;
      --farbe-text-dunkel: #111a14;
      --farbe-text: #2c3e30;
      --farbe-text-dezent: #607060;
      --farbe-rahmenlinie: #ddd5c0;
      --farbe-weiss: #ffffff;
      --schatten-weich: 0 10px 24px rgba(17, 26, 20, 0.05);
      --schatten-mittel: 0 14px 32px rgba(17, 26, 20, 0.08);
      --schatten-stark: 0 18px 38px rgba(17, 26, 20, 0.18);
    }

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

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

    button {
      font: 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;
  }
}

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

    .unterseite-kopfzeile {
      background:
        linear-gradient(rgba(17, 26, 20, 0.52), rgba(17, 26, 20, 0.78)),
        url("../../images/hero.jpg") center center / cover no-repeat;
      padding: 9.25rem 2rem 4rem;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .unterseite-kopfzeile::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 120px;
      background: linear-gradient(to top, rgba(249, 245, 236, 1), rgba(249, 245, 236, 0));
      pointer-events: none;
    }

    .unterseite-kopfzeile-innen {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .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 1.0rem;
      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;
    }


    .header-hinweisplakette {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      border: 1px solid rgba(232, 184, 48, 0.35);
      background: rgba(255, 255, 255, 0.08);
      color: var(--farbe-gold-hell);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .unterseite-kopfzeile h1 {
      font-family: "Playfair Display", serif;
      color: #fff;
      font-size: clamp(2.25rem, 4vw, 3.5rem);
      line-height: 1.12;
      margin-bottom: 0.75rem;
      max-width: 800px;
    }

    .unterseite-kopfzeile-untertext {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.03rem;
      font-weight: 300;
      max-width: 780px;
    }

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

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

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

    .majestaeten-einleitungspanel {
      background: var(--farbe-weiss);
      border: 1px solid var(--farbe-rahmenlinie);
      border-left: 3px solid var(--farbe-gold);
      border-radius: 10px;
      padding: 1.35rem 1.5rem;
      margin-bottom: 2.7rem;
      box-shadow: var(--schatten-weich);
    }

    .majestaeten-einleitungspanel p {
      color: var(--farbe-text-dezent);
      font-weight: 300;
      margin-bottom: 0.8rem;
    }

    .majestaeten-einleitungspanel p:last-child {
      margin-bottom: 0;
    }

    .inhaltsbereich {
      margin-bottom: 3.5rem;
    }

    .inhaltsbereich-kopfzeile {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .inhaltsbereich h2 {
      font-family: "Playfair Display", serif;
      color: var(--farbe-wald-dunkel);
      font-size: clamp(1.7rem, 2.2vw, 2.3rem);
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }

    .inhaltsbereich-einleitung {
      color: var(--farbe-text-dezent);
      font-weight: 300;
      max-width: 760px;
      margin-bottom: 1.5rem;
    }

    /* =========================================
       PORTRAITS
    ========================================= */

    .portrait-button {
      border: none;
      background: none;
      padding: 0;
      cursor: pointer;
      width: 100%;
      text-align: left;
    }

    .portrait-rahmen {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(200, 150, 26, 0.28);
      background: linear-gradient(180deg, #f7f1e4 0%, #ffffff 100%);
      box-shadow:
        inset 0 0 0 6px rgba(200, 150, 26, 0.08),
        0 10px 22px rgba(17, 26, 20, 0.08);
    }

    .portrait-rahmen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .portrait-zoomhinweis {
      position: absolute;
      top: 0.65rem;
      right: 0.65rem;
      width: 27px;
      height: 27px;
      border-radius: 50%;
      background: rgba(17, 26, 20, 0.68);
      color: var(--farbe-gold-hell);
      border: 1px solid rgba(232, 184, 48, 0.28);
      display: grid;
      place-items: center;
      font-size: 0.94rem;
      font-weight: 600;
      line-height: 1;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
      transition:
        transform 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
    }

    .portrait-button:hover .portrait-zoomhinweis,
    .portrait-button:focus-visible .portrait-zoomhinweis {
      transform: scale(1.08);
      background: rgba(232, 184, 48, 0.95);
      color: #111a14;
      border-color: rgba(232, 184, 48, 0.95);
      box-shadow: 0 10px 20px rgba(17, 26, 20, 0.22);
    }

    /* =========================================
       CURRENT MAJESTIES
    ========================================= */

    .aktuelle-majestaeten-rahmen {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1.5rem;
      align-items: stretch;
    }

    .aktuelle-majestaeten-buehne {
      background:
        linear-gradient(135deg, rgba(26, 58, 42, 0.98), rgba(45, 90, 61, 0.94));
      color: #fff;
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 34px rgba(17, 26, 20, 0.18);
      min-height: 100%;
    }

    .aktuelle-majestaeten-buehne::before {
      content: "✦";
      position: absolute;
      top: 0.8rem;
      right: 1.2rem;
      font-size: 4.5rem;
      color: rgba(232, 184, 48, 0.12);
      line-height: 1;
      pointer-events: none;
    }

    .aktuelle-majestaeten-kopfzeile {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(232, 184, 48, 0.92);
      margin-bottom: 0.7rem;
      font-weight: 700;
    }

    .aktuelle-majestaeten-buehne h3 {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.7rem, 3vw, 2.45rem);
      line-height: 1.15;
      margin-bottom: 0.75rem;
      color: #fff;
      max-width: 560px;
    }

    .aktuelle-majestaeten-buehne p {
      color: rgba(255, 255, 255, 0.82);
      font-weight: 300;
      max-width: 560px;
    }

    .aktuelle-majestaeten-jahr {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 92px;
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(232, 184, 48, 0.4);
      background: rgba(255, 255, 255, 0.08);
      color: var(--farbe-gold-hell);
      font-weight: 700;
      letter-spacing: 0.06em;
      margin-top: 1rem;
    }

    .aktuelle-majestaeten-raster {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .majestaet-karte {
      background: var(--farbe-weiss);
      border: 1px solid var(--farbe-rahmenlinie);
      border-radius: 20px;
      padding: 1.1rem;
      box-shadow: var(--schatten-weich);
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 1rem;
      align-items: start;
      min-height: 100%;
    }

    .majestaet-rolle {
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .majestaet-name {
      font-family: "Playfair Display", serif;
      color: var(--farbe-wald-dunkel);
      font-size: 1.35rem;
      line-height: 1.15;
      margin-bottom: 0.2rem;
    }

    .majestaet-metadaten {
      color: var(--farbe-text-dezent);
      font-size: 0.96rem;
      margin-bottom: 0.35rem;
    }

    .majestaet-textbereich {
      color: var(--farbe-text-dezent);
      font-weight: 300;
      font-size: 0.95rem;
    }

    /* =========================================
       RECENT YEARS
    ========================================= */

    .juengste-majestaeten-raster {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .juengste-majestaeten-karte {
      background: #fff;
      border: 1px solid var(--farbe-rahmenlinie);
      border-radius: 18px;
      padding: 1.35rem;
      box-shadow: var(--schatten-weich);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .juengste-majestaeten-karte:hover {
      transform: translateY(-2px);
      box-shadow: var(--schatten-mittel);
      border-color: rgba(200, 150, 26, 0.55);
    }

    .juengste-majestaeten-kopf {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      flex-wrap: wrap;
      padding-bottom: 0.9rem;
      margin-bottom: 0.95rem;
      border-bottom: 1px solid rgba(221, 213, 192, 0.8);
    }

    .juengste-majestaeten-jahr {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 84px;
      padding: 0.42rem 0.78rem;
      border-radius: 999px;
      background: var(--farbe-gold-weich);
      color: var(--farbe-wald-dunkel);
      font-weight: 700;
      letter-spacing: 0.06em;
    }

    .juengste-majestaeten-titel {
      color: var(--farbe-text-dezent);
      font-size: 0.93rem;
    }

    .juengste-majestaeten-personen {
      display: grid;
      gap: 1rem;
    }

    .juengste-majestaeten-person {
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 0.9rem;
      align-items: start;
      padding: 0.8rem;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(249, 245, 236, 0.85), rgba(255, 255, 255, 1));
      border: 1px solid rgba(221, 213, 192, 0.7);
    }

    .juengste-majestaeten-rolle {
      font-size: 0.72rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 700;
      margin-bottom: 0.15rem;
    }

    .juengste-majestaeten-name {
      font-family: "Playfair Display", serif;
      color: var(--farbe-wald-dunkel);
      font-size: 1.08rem;
      line-height: 1.12;
      margin-bottom: 0.15rem;
    }

    .juengste-majestaeten-untertitel {
      color: var(--farbe-text-dezent);
      font-size: 0.91rem;
      font-weight: 300;
    }

    /* =========================================
       DECADE CHRONICLE
    ========================================= */

    .chronik-jahrzehnt-liste {
      display: grid;
      gap: 1rem;
    }

    .decade-item {
      background: #fff;
      border: 1px solid var(--farbe-rahmenlinie);
      border-radius: 18px;
      box-shadow: var(--schatten-weich);
      overflow: hidden;
    }

    .chronik-jahrzehnt-umschalter {
      width: 100%;
      border: none;
      background: none;
      padding: 1.2rem 1.35rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      text-align: left;
      color: inherit;
    }

    .chronik-jahrzehnt-umschalter:hover {
      background: rgba(249, 245, 236, 0.45);
    }

    .chronik-jahrzehnt-metadaten {
      display: flex;
      flex-direction: column;
      gap: 0.18rem;
    }

    .chronik-jahrzehnt-beschriftung {
      font-size: 0.76rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 700;
    }

    .chronik-jahrzehnt-titel {
      font-family: "Playfair Display", serif;
      color: var(--farbe-wald-dunkel);
      font-size: 1.35rem;
      line-height: 1.15;
    }

    .chronik-jahrzehnt-anzahl {
      color: var(--farbe-text-dezent);
      font-size: 0.93rem;
    }

    .chronik-jahrzehnt-symbol {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(200, 150, 26, 0.3);
      background: var(--farbe-gold-weich);
      display: grid;
      place-items: center;
      color: var(--farbe-wald-dunkel);
      font-size: 1rem;
      flex: 0 0 38px;
      transition: transform 0.2s ease;
    }

    .decade-item.open .chronik-jahrzehnt-symbol {
      transform: rotate(180deg);
    }

    .chronik-jahrzehnt-inhalt {
      display: none;
      padding: 0 1.35rem 1.35rem;
    }

    .decade-item.open .chronik-jahrzehnt-inhalt {
      display: block;
    }

    .chronik-jahrzehnt-eintraege {
      display: grid;
      gap: 0.75rem;
      padding-top: 0.2rem;
    }

    .chronik-jahrzehnt-zeile {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 1rem;
      align-items: start;
      background: linear-gradient(180deg, rgba(249, 245, 236, 0.9), rgba(255, 255, 255, 1));
      border: 1px solid rgba(221, 213, 192, 0.8);
      border-radius: 14px;
      padding: 0.95rem 1rem;
    }

    .chronik-jahrzehnt-jahr {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      border-radius: 999px;
      background: rgba(200, 150, 26, 0.14);
      color: var(--farbe-wald-dunkel);
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 0.35rem 0.85rem;
    }

    .decade-persons {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .decade-persons.one-person {
      grid-template-columns: minmax(0, 1fr);
      max-width: 520px;
    }

    .chronik-jahrzehnt-person {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 0.8rem;
      align-items: start;
    }

    .chronik-jahrzehnt-rolle {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--farbe-gold);
      font-weight: 700;
      margin-bottom: 0.1rem;
    }

    .chronik-jahrzehnt-name {
      font-family: "Playfair Display", serif;
      color: var(--farbe-wald-dunkel);
      font-size: 1.03rem;
      line-height: 1.12;
    }

    .chronik-jahrzehnt-untertext {
      color: var(--farbe-text-dezent);
      font-size: 0.9rem;
      font-weight: 300;
    }

    .decade-thumb .portrait-rahmen {
      border-radius: 12px;
    }

    .leerzustand {
      background: #fff;
      border: 1px dashed var(--farbe-rahmenlinie);
      border-radius: 18px;
      padding: 1.35rem;
      color: var(--farbe-text-dezent);
      font-weight: 300;
    }

    /* =========================================
       LIGHTBOX
    ========================================= */

    .grossansicht {
      position: fixed;
      inset: 0;
      background: rgba(9, 15, 11, 0.85);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      z-index: 9999;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .grossansicht.open {
      display: flex;
    }

    .grossansicht-innen {
      position: relative;
      width: min(92vw, 520px);
      max-height: 92vh;
      display: grid;
      gap: 0.9rem;
      justify-items: center;
    }

    .grossansicht-schliessen {
      position: absolute;
      top: -0.4rem;
      right: -0.2rem;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      background: rgba(17, 26, 20, 0.82);
      color: #fff;
      cursor: pointer;
      font-size: 1.2rem;
      line-height: 1;
      display: grid;
      place-items: center;
      z-index: 2;
    }

    .grossansicht-portrait-rahmen {
      width: 100%;
      aspect-ratio: 3 / 4;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: var(--schatten-stark);
      background: #fff;
      position: relative;
      isolation: isolate;
    }

    .grossansicht-portrait-rahmen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .grossansicht-fotoeinblendung {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 1.2rem 1.1rem 1rem;
      background:
        linear-gradient(180deg, rgba(17, 26, 20, 0) 0%, rgba(17, 26, 20, 0.22) 18%, rgba(17, 26, 20, 0.82) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 240'%3E%3Cpath d='M0 140C90 145 155 100 240 100c71 0 94 33 150 33s79-33 150-33c85 0 150 45 240 40v100H0Z' fill='rgba(17,26,20,0.72)'/%3E%3Cpath d='M90 170h720' stroke='%23e8b830' stroke-opacity='.42' stroke-width='2'/%3E%3Cpath d='M120 118c34 0 34 26 68 26s34-26 68-26' fill='none' stroke='%23e8b830' stroke-opacity='.75' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M644 118c34 0 34 26 68 26s34-26 68-26' fill='none' stroke='%23e8b830' stroke-opacity='.75' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center bottom / cover no-repeat;
      color: #fff;
      pointer-events: none;
    }

    .grossansicht-einblendung-kopfzeile {
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(232, 184, 48, 0.96);
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .grossansicht-einblendung-name {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.35rem, 3vw, 1.9rem);
      line-height: 1.08;
      color: #fff;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
      margin-bottom: 0.18rem;
    }

    .grossansicht-einblendung-unterzeile {
      font-size: 0.92rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.88);
      font-weight: 300;
    }

    .grossansicht-bildunterschrift {
      text-align: center;
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.98rem;
      font-weight: 300;
      max-width: 480px;
    }

    .grossansicht-bildunterschrift strong {
      display: block;
      font-family: "Playfair Display", serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--farbe-gold-hell);
      margin-bottom: 0.2rem;
    }

    /* =========================================
       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: 980px) {
      .aktuelle-majestaeten-rahmen {
        grid-template-columns: 1fr;
      }

      .juengste-majestaeten-raster {
        grid-template-columns: 1fr;
      }

      .chronik-jahrzehnt-zeile {
        grid-template-columns: 100px 1fr;
      }
    }

    @media (max-width: 760px) {
      .majestaet-karte {
        grid-template-columns: 1fr;
      }

      .juengste-majestaeten-person {
        grid-template-columns: 1fr;
      }

      .chronik-jahrzehnt-zeile {
        grid-template-columns: 1fr;
      }

      .chronik-jahrzehnt-jahr {
        justify-self: start;
      }

      .decade-persons {
        grid-template-columns: 1fr;
      }

      .chronik-jahrzehnt-person {
        grid-template-columns: 90px 1fr;
      }
    }

    @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.6rem;
        padding-bottom: 3.25rem;
      }
    }

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

      .chronik-jahrzehnt-person {
        grid-template-columns: 1fr;
      }

      .grossansicht {
        padding: 1rem 0.8rem;
      }
    }
