*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* Abgestimmt auf Logo (Royal Blue, metallisches Gold) & Schriftzug */
      --bg:       #050A14;
      --bg2:      #08121F;
      --bg3:      #0C192D;
      --bg4:      #102240;
      --gold:     #D4AF37;
      --gold-l:   #ECD078;
      --gold-d:   #4A3B14;
      --blue:     #6BA3E8;
      --text:     #E8EDF4;
      --text-2:   #94A3C8;
      --text-3:   #5C6B8A;
      --gold-rgb: 212, 175, 55;
      --blue-glow-rgb: 30, 64, 175;
      --border:   rgba(var(--gold-rgb), 0.16);
      --border-2: rgba(var(--gold-rgb), 0.34);
    }

    html { scroll-behavior: smooth; }

    body {
      background:
        radial-gradient(ellipse 100% 70% at 50% -15%, rgba(var(--blue-glow-rgb), 0.22), transparent 55%),
        radial-gradient(ellipse 80% 50% at 80% 100%, rgba(var(--gold-rgb), 0.04), transparent 50%),
        var(--bg);
      color: var(--text);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 18px;
      line-height: 1.8;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* ========== NAV ========== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 22px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background .4s, padding .3s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(5, 10, 20, 0.94);
      backdrop-filter: blur(12px);
      border-bottom-color: var(--border);
      padding: 14px 48px;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      line-height: 0;
      text-decoration: none;
    }
    .nav-logo {
      height: 44px;
      width: auto;
      display: block;
      object-fit: contain;
      transition: height .3s;
    }
    nav.scrolled .nav-logo {
      height: 34px;
    }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: .2em;
      color: var(--text-2);
      text-decoration: none;
      text-transform: uppercase;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold-l); }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 140px 40px 100px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 90% 70% at 50% 42%, rgba(20, 45, 95, 0.45) 0%, transparent 58%),
        linear-gradient(180deg, #0a1428 0%, #050a14 48%, #060d18 100%);
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        repeating-linear-gradient(
          to bottom,
          transparent 0,
          transparent 4px,
          rgba(255, 255, 255, 0.018) 4px,
          rgba(255, 255, 255, 0.018) 5px
        ),
        radial-gradient(ellipse 78% 52% at 50% 48%, rgba(var(--blue-glow-rgb), 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 52% 38% at 50% 50%, rgba(var(--gold-rgb), 0.08) 0%, transparent 58%),
        radial-gradient(ellipse 32% 24% at 50% 44%, rgba(40, 70, 140, 0.12) 0%, transparent 55%);
      pointer-events: none;
    }
    /* feines Rauschen + Vignette */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
      opacity: 0.45;
      box-shadow: inset 0 0 120px 40px rgba(0, 0, 0, 0.35);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      max-width: 920px;
    }
    .hero-logo {
      width: clamp(72px, 14vw, 112px);
      height: auto;
      margin-bottom: 28px;
      object-fit: contain;
      opacity: .95;
      animation: fadeDown .8s ease both;
    }
    .hero-ornament {
      width: 72px;
      margin-bottom: 44px;
      opacity: .55;
      color: var(--gold);
      animation: fadeDown .8s ease both;
    }
    .hero-ornament--temple {
      width: clamp(108px, 22vw, 152px);
      height: auto;
      margin-bottom: 36px;
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-10px); }
      to   { opacity: .55; transform: translateY(0); }
    }
    .hero-title {
      margin: 0;
      line-height: 0;
      animation: fadeUp .9s .15s ease both;
    }
    .hero-title-img {
      display: block;
      width: auto;
      max-width: min(94vw, 720px);
      height: auto;
      margin: 0 auto;
      filter:
        drop-shadow(0 6px 28px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 48px rgba(25, 45, 95, 0.35));
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-rule {
      display: flex;
      align-items: center;
      gap: 18px;
      width: 240px;
      margin: 36px auto;
      animation: fadeUp .9s .3s ease both;
    }
    .hero-rule::before, .hero-rule::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold));
    }
    .hero-rule::after {
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    .hero-diamond {
      width: 7px; height: 7px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .hero-tagline {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: .3em;
      color: var(--text-2);
      text-transform: uppercase;
      animation: fadeUp .9s .42s ease both;
    }
    .hero-sub {
      font-style: italic;
      font-size: 17px;
      color: var(--text-3);
      margin-top: 10px;
      margin-bottom: clamp(40px, 8vh, 80px);
      animation: fadeUp .9s .54s ease both;
    }
    .scroll-hint {
      position: absolute;
      bottom: 44px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      animation: fadeUp 1s .8s ease both;
    }
    .scroll-label {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: .25em;
      color: var(--text-3);
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px;
      height: 44px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: .25; }
      50%      { opacity: 1; }
    }

    /* ========== SECTION BASE ========== */
    .sec {
      padding: 96px 48px;
      max-width: 940px;
      margin: 0 auto;
    }
    .sec-full {
      border-top: 1px solid var(--border);
    }
    .sec-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: .35em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .sec-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 600;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 0;
    }
    .ornament {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 28px 0 52px;
    }
    .ornament::before, .ornament::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }
    .ornament-dot {
      width: 5px; height: 5px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* ========== SOCIALS ========== */
    .socials-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .social-card {
      display: flex;
      align-items: center;
      gap: 22px;
      padding: 20px 26px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-left: 2px solid var(--gold-d);
      text-decoration: none;
      color: var(--text);
      position: relative;
      transition: border-left-color .22s, background .22s;
      overflow: hidden;
    }
    .social-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(var(--gold-rgb), .06) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .22s;
    }
    .social-card:hover { border-left-color: var(--gold); background: var(--bg4); }
    .social-card:hover::before { opacity: 1; }
    .social-card:hover .social-arrow { color: var(--gold); right: 22px; }
    .social-icon {
      width: 20px; height: 20px;
      fill: var(--text-2);
      flex-shrink: 0;
      transition: fill .22s;
    }
    .social-card:hover .social-icon { fill: var(--gold-l); }
    .social-name {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--text);
    }
    .social-handle {
      margin-left: auto;
      font-style: italic;
      font-size: 16px;
      color: var(--text-3);
      margin-right: 48px;
    }
    .social-arrow {
      position: absolute;
      right: 26px;
      font-family: serif;
      font-size: 22px;
      color: var(--text-3);
      transition: color .22s, right .22s;
    }

    /* ========== VITA ========== */
    .vita-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: start;
    }
    @media (min-width: 800px) {
      .vita-layout {
        grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
        gap: 48px;
      }
      .vita-text--full {
        grid-column: 1 / -1;
      }
    }
    .vita-photo {
      margin: 0;
    }
    .vita-photo img {
      display: block;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      height: auto;
      border: 1px solid var(--border);
      border-left: 2px solid var(--gold-d);
      background: var(--bg3);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    }
    @media (min-width: 800px) {
      .vita-photo img {
        margin: 0;
        max-width: none;
      }
    }
    .vita-text p {
      font-size: 19px;
      font-weight: 300;
      line-height: 1.95;
      color: var(--text);
      margin-bottom: 28px;
    }
    .vita-defines-title {
      font-family: inherit;
      font-size: 19px;
      font-weight: 600;
      line-height: 1.45;
      color: var(--text);
      margin: 0 0 16px;
    }
    .vita-defines-list {
      list-style: disc;
      padding-left: 1.4em;
      margin: 0 0 28px;
    }
    .vita-defines-list li {
      font-size: 19px;
      font-weight: 300;
      line-height: 1.95;
      color: var(--text);
      margin-bottom: 20px;
      padding-left: 0.15em;
    }
    .vita-defines-list li::marker {
      color: var(--gold);
    }
    .vita-defines-list li:last-child {
      margin-bottom: 0;
    }
    .vita-defines-list strong {
      font-weight: 600;
      color: var(--text);
    }
    blockquote {
      border-left: 2px solid var(--gold);
      padding: 20px 32px;
      margin: 44px 0 0;
      background: rgba(var(--gold-rgb), .05);
    }
    blockquote p {
      font-style: italic;
      font-size: 20px;
      color: var(--text-2);
      line-height: 1.7;
      margin: 0;
    }
    blockquote cite {
      display: block;
      margin-top: 12px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: .2em;
      color: var(--gold);
      font-style: normal;
    }

    /* ========== THREE PILLARS ========== */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .pillar {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 28px 48px;
      position: relative;
    }
    .pillar + .pillar { border-left: 1px solid var(--border); }

    .pillar-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    /* Dorisch inspiriert: Stylobat, Architrav/Fries, Kapitell, kannelierter Schaft, Basis */
    .col-top    {
      width: 90%;
      height: 7px;
      background: linear-gradient(to bottom, var(--bg3), rgba(var(--gold-rgb), .04));
      border: 1px solid var(--border);
      border-radius: 1px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    }
    .col-frieze {
      width: 86%;
      height: 5px;
      margin-top: -1px;
      background: repeating-linear-gradient(
        90deg,
        rgba(var(--gold-rgb), .08) 0px,
        rgba(var(--gold-rgb), .08) 3px,
        transparent 3px,
        transparent 6px
      );
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      opacity: .9;
    }
    .col-cap    {
      width: 76%;
      height: 16px;
      margin-top: -1px;
      background: linear-gradient(to bottom, rgba(var(--gold-rgb), .14), rgba(var(--gold-rgb), .06));
      border: 1px solid var(--border);
      border-bottom: none;
      border-radius: 2px 2px 10px 10px / 2px 2px 14px 14px;
      box-shadow: inset 0 -2px 6px rgba(0,0,0,.12);
    }
    .col-shaft  {
      width: 34%;
      min-height: 148px;
      margin-top: -1px;
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      background:
        repeating-linear-gradient(
          90deg,
          rgba(var(--gold-rgb), .07) 0px,
          rgba(var(--gold-rgb), .07) 3px,
          rgba(var(--gold-rgb), .03) 3px,
          rgba(var(--gold-rgb), .03) 7px
        );
      box-shadow:
        inset 5px 0 10px rgba(0,0,0,.18),
        inset -5px 0 10px rgba(0,0,0,.18),
        inset 0 0 0 1px rgba(255,255,255,.03);
    }
    .col-base   {
      width: 76%;
      height: 14px;
      margin-top: -1px;
      background: linear-gradient(to top, rgba(var(--gold-rgb), .12), rgba(var(--gold-rgb), .05));
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 10px 10px 2px 2px / 14px 14px 2px 2px;
      box-shadow: inset 0 2px 5px rgba(0,0,0,.1);
    }
    .col-bot    {
      width: 90%;
      height: 8px;
      background: linear-gradient(to bottom, var(--bg3), rgba(0,0,0,.12));
      border: 1px solid var(--border);
      border-radius: 0 0 1px 1px;
      margin-bottom: 32px;
      box-shadow: 0 2px 8px rgba(0,0,0,.15);
    }

    .pillar-icon {
      width: 40px;
      height: 40px;
      fill: var(--gold);
      color: var(--gold);
      opacity: .72;
      margin-bottom: 20px;
      margin-top: 20px;
      flex-shrink: 0;
    }
    .pillar-icon--temple,
    .pillar-icon--wreath {
      width: 48px;
      height: 48px;
      opacity: .78;
    }

    .pillar-name {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text);
      text-align: center;
      margin-bottom: 14px;
    }
    .pillar-desc {
      font-size: 15px;
      color: var(--text-2);
      text-align: center;
      line-height: 1.75;
    }

    /* ========== KARDINALSTUGENDEN ========== */
    .stoic-lead {
      font-size: 19px;
      font-style: italic;
      color: var(--text-2);
      font-weight: 300;
      line-height: 1.9;
      margin-bottom: 56px;
      max-width: 720px;
    }
    .virtues {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .virtue {
      background: var(--bg);
      padding: 40px 36px;
    }
    .virtue-latin {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: .04em;
      color: var(--gold);
    }
    .virtue-de {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--text-3);
      margin: 5px 0 18px;
    }
    .virtue-quote {
      font-style: italic;
      font-size: 17px;
      color: var(--text-2);
      line-height: 1.65;
    }

    /* ========== PLACEMENTS ========== */
    .placement-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 0;
    }
    .placement-card {
      border: 1px solid var(--border);
      padding: 44px 36px;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: var(--bg3);
    }
    .placement-title {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 12px;
    }
    .placement-body {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.7;
      flex: 1;
    }
    .placement-body--after-title {
      margin-bottom: 22px;
    }
    .setup-spec {
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .setup-spec-row {
      margin: 0;
    }
    .setup-spec dt {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 5px;
    }
    .setup-spec dd {
      margin: 0;
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.55;
    }
    .placement-soon {
      display: block;
      margin-top: 28px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: .2em;
      color: var(--text-3);
      text-transform: uppercase;
    }
    .placement-contact {
      margin-top: 40px;
      text-align: center;
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: .16em;
      color: var(--text-3);
    }
    .placement-contact a { color: var(--gold); text-decoration: none; }
    .placement-contact a:hover { color: var(--gold-l); }

    /* Deep-Link Setup-Bereich (z. B. Twitch-Profil) */
    #setup {
      scroll-margin-top: 90px;
    }

    /* ========== FOOTER / LEGAL ========== */
    footer {
      border-top: 1px solid var(--border);
      margin-top: 0;
    }
    .footer-inner {
      max-width: 940px;
      margin: 0 auto;
      padding: 64px 48px 48px;
    }
    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      list-style: none;
      margin-bottom: 40px;
    }
    .footer-nav a {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--text-2);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-nav a:hover { color: var(--gold); }

    .legal-block {
      margin-bottom: 60px;
      scroll-margin-top: 90px;
    }
    .legal-heading {
      font-family: 'Cinzel', serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text);
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 28px;
    }
    .legal-body {
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.95;
    }
    .legal-body p { margin-bottom: 14px; }
    .legal-body strong { color: var(--text); font-weight: 500; }
    .legal-body h2.legal-heading {
      margin-top: 48px;
    }
    .legal-body h2.legal-heading:first-of-type {
      margin-top: 0;
    }
    .legal-body h3 {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text);
      margin: 22px 0 10px;
    }
    .legal-body h4 {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text);
      margin: 22px 0 8px;
    }
    .legal-body ul {
      margin: 0 0 14px 1.25em;
      padding: 0;
    }
    .legal-body li { margin-bottom: 8px; }
    .legal-body .legal-notice {
      font-size: 0.85em;
      letter-spacing: 0.03em;
      line-height: 1.75;
      text-transform: uppercase;
      color: var(--text);
      margin: 16px 0;
    }
    .copyright {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: .14em;
      color: var(--text-3);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 720px) {
      nav { padding: 16px 20px; }
      nav.scrolled { padding: 12px 20px; }
      body.subpage nav { padding: 12px 20px; }
      .nav-logo { height: 38px; }
      nav.scrolled .nav-logo { height: 30px; }
      .nav-links { display: none; }

      .hero { padding: 120px 24px 90px; }
      .sec  { padding: 72px 24px; }
      .footer-inner { padding: 48px 24px 40px; }

      .pillars-grid { grid-template-columns: 1fr; gap: 48px; }
      .pillar + .pillar { border-left: none; border-top: 1px solid var(--border); padding-top: 48px; }

      .virtues { grid-template-columns: 1fr; }
      .placement-grid { grid-template-columns: 1fr; }

      .social-handle { display: none; }

      .legal-page { padding: 100px 24px 40px; }
    }

    /* ========== LEGAL SUBPAGES (Impressum / Datenschutz) ========== */
    .legal-page {
      padding: 120px 48px 64px;
      max-width: 940px;
      margin: 0 auto;
    }
    .legal-page .ornament {
      margin: 24px 0 40px;
    }
    .back-link {
      display: inline-block;
      margin-top: 48px;
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      transition: color .2s;
    }
    .back-link:hover { color: var(--gold-l); }

    body.subpage nav {
      background: rgba(5, 10, 20, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 48px;
    }
    body.subpage .nav-logo {
      height: 34px;
    }
