    /* ==========================================
       DESIGN TOKENS
    ========================================== */
    :root {
      --c-dark:         #111117;
      --c-dark-2:       #1A1A22;
      --c-dark-3:       #0A0A0E;
      --c-light:        #F9F7F4;
      --c-white:        #FFFFFF;
      --c-gold:         #C8A96E;
      --c-gold-light:   #E8CEAA;
      --c-gold-dark:    #A68850;
      --c-text:         #1A1A1F;
      --c-text-mid:     #4A4A55;
      --c-text-muted:   #7A7A85;
      --c-text-inv:     #F5F0E8;
      --c-text-inv-dim: #9A9595;
      --c-border:       #E5E2DC;
      --c-border-dark:  #2A2A34;

      --ff-display: 'Playfair Display', Georgia, serif;
      --ff-body:    'Inter', system-ui, sans-serif;

      --sp-xs:  0.5rem;
      --sp-sm:  1rem;
      --sp-md:  1.5rem;
      --sp-lg:  2rem;
      --sp-xl:  3rem;
      --sp-2xl: 5rem;
      --sp-3xl: 8rem;

      --r-sm:  4px;
      --r-md:  8px;
      --r-lg:  16px;
      --r-xl:  24px;

      --sh-sm: 0 1px 4px rgba(0,0,0,.08);
      --sh-md: 0 4px 16px rgba(0,0,0,.10);
      --sh-lg: 0 8px 32px rgba(0,0,0,.15);
      --sh-gold: 0 4px 24px rgba(200,169,110,.25);

      --tr-fast: .18s ease;
      --tr-mid:  .30s ease;

      --max-w: 1140px;
      --nav-h: 72px;
    }

    /* ==========================================
       RESET
    ========================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--ff-body);
      color: var(--c-text);
      background: var(--c-white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ==========================================
       TYPOGRAPHY HELPERS
    ========================================== */
    h1,h2,h3,h4 { font-family: var(--ff-display); line-height: 1.18; font-weight: 700; }

    .label {
      display: inline-block;
      font-size: .75rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--c-gold); margin-bottom: var(--sp-sm);
    }
    .sec-title {
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      margin-bottom: var(--sp-sm);
    }
    .sec-title--inv { color: var(--c-text-inv); }
    .sec-sub {
      font-size: 1.0625rem; color: var(--c-text-mid);
      max-width: 52ch; line-height: 1.7;
    }
    .sec-sub--inv { color: var(--c-text-inv-dim); }

    /* ==========================================
       LAYOUT
    ========================================== */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-md); }
    .sec { padding: var(--sp-3xl) 0; }
    .sec--sm { padding: var(--sp-2xl) 0; }
    .sec-hd { margin-bottom: var(--sp-2xl); }
    .sec-hd--c { text-align: center; }
    .sec-hd--c .sec-sub { margin: 0 auto; }

    /* ==========================================
       REVEAL ANIMATION
    ========================================== */
    .rv {
      opacity: 0; transform: translateY(22px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .rv.on { opacity: 1; transform: none; }
    .rv-d1 { transition-delay: .10s; }
    .rv-d2 { transition-delay: .20s; }
    .rv-d3 { transition-delay: .30s; }

    /* ==========================================
       BUTTONS
    ========================================== */
    .btn {
      display: inline-flex; align-items: center; gap: .5rem;
      font-family: var(--ff-body); font-size: .9375rem; font-weight: 600;
      border-radius: var(--r-md); padding: .875rem 1.75rem;
      border: 2px solid transparent; cursor: pointer;
      transition: all var(--tr-fast); white-space: nowrap;
    }
    .btn--primary {
      background: var(--c-gold); color: #1A1200; border-color: var(--c-gold);
    }
    .btn--primary:hover {
      background: var(--c-gold-dark); border-color: var(--c-gold-dark);
      transform: translateY(-1px); box-shadow: var(--sh-gold);
    }
    .btn--ghost {
      background: transparent; color: var(--c-text-inv);
      border-color: rgba(255,255,255,.35);
    }
    .btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
    .btn--outline {
      background: transparent; color: var(--c-text);
      border-color: var(--c-border);
    }
    .btn--outline:hover { border-color: var(--c-gold); color: var(--c-gold-dark); }
    .btn--sm { font-size: .875rem; padding: .625rem 1.25rem; }

    /* ==========================================
       NAVIGATION
    ========================================== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: var(--nav-h);
      transition: background var(--tr-mid), box-shadow var(--tr-mid);
    }
    .nav.scrolled {
      background: rgba(17,17,23,.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(255,255,255,.06);
    }
    .nav__inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-md);
      height: 100%; display: flex; align-items: center;
      justify-content: space-between; gap: var(--sp-lg);
    }
    .nav__logo {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      color: var(--c-text-inv);
      flex-shrink: 0;
      line-height: 1;
    }
    .nav__logo-main {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: .01em;
    }
    .nav__logo em { font-style: normal; color: var(--c-gold); }
    .nav__logo-sub {
      margin-top: .2rem;
      font-size: .56rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(245,240,232,.58);
    }
    .nav__links { display: flex; align-items: center; gap: var(--sp-lg); }
    .nav__link {
      font-size: .875rem; font-weight: 500;
      color: rgba(245,240,232,.72); transition: color var(--tr-fast);
    }
    .nav__link:hover { color: var(--c-gold); }
    .nav__burger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .nav__burger span {
      display: block; width: 24px; height: 2px;
      background: var(--c-text-inv); border-radius: 2px;
      transition: all var(--tr-fast);
    }
    .nav__mobile {
      display: none; position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: rgba(17,17,23,.98); backdrop-filter: blur(16px);
      padding: var(--sp-lg); z-index: 99;
      flex-direction: column; gap: var(--sp-sm);
      border-top: 1px solid var(--c-border-dark);
    }
    .nav__mobile.open { display: flex; }
    .nav__mob-link {
      font-size: 1rem; font-weight: 500; color: rgba(245,240,232,.8);
      padding: .5rem 0; border-bottom: 1px solid var(--c-border-dark);
      transition: color var(--tr-fast);
    }
    .nav__mob-link:hover { color: var(--c-gold); }

    /* ==========================================
       HERO
    ========================================== */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
      background: var(--c-dark);
    }
    .hero__bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 65% at 68% 45%, rgba(200,169,110,.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 25% 85%, rgba(90,60,160,.07) 0%, transparent 55%),
        linear-gradient(165deg, #111117 0%, #0D0D12 55%, #1A1208 100%);
    }
    .hero__stage {
      position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
      overflow: hidden;
    }
    /* Overlay sitzt über dem <img> – links ausblenden, oben Nav-Bereich abdunkeln */
    .hero__stage::after {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        linear-gradient(to left,  transparent 28%, var(--c-dark) 74%),
        linear-gradient(to bottom, var(--c-dark) 0%, transparent 22%),
        linear-gradient(to top,    var(--c-dark) 0%, transparent 14%);
    }
    .hero__stage img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top;
      display: block;
    }

    .hero__body {
      position: relative; z-index: 1;
      max-width: var(--max-w); margin: 0 auto;
      padding: calc(var(--nav-h) + var(--sp-3xl)) var(--sp-md) var(--sp-3xl);
      width: 100%;
    }
    .hero__pre {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .8rem; font-weight: 600; letter-spacing: .14em;
      text-transform: uppercase; color: var(--c-gold);
      margin-bottom: var(--sp-md);
    }
    .hero__pre::before {
      content: ''; display: block; width: 30px; height: 1px; background: var(--c-gold);
    }
    .hero__h1 {
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      color: var(--c-text-inv); line-height: 1.08;
      max-width: 14ch; margin-bottom: var(--sp-md);
    }
    .hero__h1 em { font-style: normal; color: var(--c-gold); }
    .hero__sub {
      font-size: clamp(1rem, 2vw, 1.175rem);
      color: rgba(245,240,232,.68);
      max-width: 46ch; margin-bottom: var(--sp-xl); line-height: 1.65;
    }
    .hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-2xl); }
    .hero__meta { display: flex; flex-wrap: wrap; gap: var(--sp-lg); }
    .hero__meta-i {
      display: flex; align-items: center; gap: .45rem;
      font-size: .875rem; color: rgba(245,240,232,.45);
    }
    .hero__meta-i svg { color: var(--c-gold); flex-shrink: 0; }
    .hero__scroll {
      position: absolute; bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      color: rgba(245,240,232,.3); font-size: .6875rem;
      letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
      transition: color var(--tr-fast);
    }
    .hero__scroll:hover { color: var(--c-gold); }
    .hero__scroll-line {
      width: 1px; height: 38px;
      background: linear-gradient(to bottom, var(--c-gold), transparent);
      animation: scrollpulse 2s ease-in-out infinite;
    }
    @keyframes scrollpulse {
      0%,100% { opacity: .6; transform: scaleY(1); }
      50%      { opacity: .3; transform: scaleY(.6); }
    }

    /* ==========================================
       TRUST STRIP
    ========================================== */
    .trust {
      background: var(--c-dark-2);
      border-top: 1px solid var(--c-border-dark);
      border-bottom: 1px solid var(--c-border-dark);
      padding: var(--sp-xl) 0;
    }
    .trust__grid {
      display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-lg);
    }
    .trust__item { display: flex; align-items: flex-start; gap: var(--sp-sm); }
    .trust__icon {
      width: 44px; height: 44px; border-radius: var(--r-md); flex-shrink: 0;
      background: rgba(200,169,110,.11); border: 1px solid rgba(200,169,110,.2);
      display: flex; align-items: center; justify-content: center; color: var(--c-gold);
    }
    .trust__t { font-size: .875rem; font-weight: 600; color: var(--c-text-inv); margin-bottom: .1rem; }
    .trust__s { font-size: .8rem; color: var(--c-text-inv-dim); line-height: 1.45; }

    /* ==========================================
       LEISTUNGEN
    ========================================== */
    .leist { background: var(--c-light); }
    .leist__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-lg); }

    .card {
      background: var(--c-white); border-radius: var(--r-xl);
      padding: var(--sp-xl); border: 1px solid var(--c-border);
      position: relative; overflow: hidden;
      transition: transform var(--tr-mid), box-shadow var(--tr-mid), border-color var(--tr-mid);
    }
    .card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--c-border); transition: background var(--tr-mid);
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(200,169,110,.3); }
    .card:hover::before { background: linear-gradient(to right, var(--c-gold), var(--c-gold-light)); }
    .card--feat {
      border-color: rgba(200,169,110,.32);
      background: linear-gradient(160deg, #FFFCF6 0%, #fff 100%);
    }
    .card--feat::before { background: linear-gradient(to right, var(--c-gold), var(--c-gold-light)); }

    .card-badge {
      display: inline-block; font-size: .68rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--c-gold-dark); background: rgba(200,169,110,.11);
      border: 1px solid rgba(200,169,110,.24); border-radius: 100px;
      padding: .25rem .75rem; margin-bottom: var(--sp-md);
    }
    .card-icon {
      width: 50px; height: 50px; border-radius: var(--r-lg);
      background: linear-gradient(135deg, rgba(200,169,110,.14), rgba(200,169,110,.04));
      border: 1px solid rgba(200,169,110,.18);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: var(--sp-md); font-size: 1.4rem;
    }
    .card-icon svg { width: 24px; height: 24px; color: var(--c-gold-dark); }
    .card h3 { font-size: 1.35rem; color: var(--c-text); margin-bottom: .35rem; }
    .card-anlass {
      font-size: .8rem; font-weight: 600; color: var(--c-gold-dark);
      margin-bottom: var(--sp-sm); display: flex; align-items: center; gap: .35rem;
    }
    .card-anlass::before { content: ''; display: block; width: 12px; height: 1px; background: var(--c-gold); }
    .card-desc { font-size: .9375rem; color: var(--c-text-mid); line-height: 1.65; margin-bottom: var(--sp-md); }
    .card-feats { display: flex; flex-direction: column; gap: .5rem; margin-bottom: var(--sp-lg); }
    .card-feat {
      display: flex; align-items: flex-start; gap: .6rem;
      font-size: .875rem; color: var(--c-text-mid);
    }
    .card-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--c-gold); flex-shrink: 0; margin-top: .48em;
    }

    /* ==========================================
       REPERTOIRE
    ========================================== */
    .repo { background: var(--c-dark); position: relative; overflow: hidden; }
    .repo__bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 65% 55% at 82% 28%, rgba(200,169,110,.07) 0%, transparent 58%),
        radial-gradient(ellipse 45% 75% at 18% 82%, rgba(80,55,145,.06) 0%, transparent 55%);
    }
    .repo__inner { position: relative; z-index: 1; }
    .repo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3xl); align-items: start; }

    .genres { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--sp-xl); }
    .genre {
      display: inline-block; font-size: .875rem; font-weight: 500;
      padding: .5rem 1.1rem; border-radius: 100px; border: 1px solid;
      transition: all var(--tr-fast); cursor: default;
    }
    .genre--a { background: rgba(200,169,110,.14); border-color: rgba(200,169,110,.38); color: var(--c-gold-light); }
    .genre--b { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.11); color: rgba(245,240,232,.58); }
    .genre:hover { background: rgba(200,169,110,.2); border-color: rgba(200,169,110,.5); color: var(--c-gold-light); }

    .eventfit { display: flex; flex-direction: column; gap: .625rem; }
    .ef {
      display: flex; align-items: center; gap: var(--sp-sm);
      padding: .875rem var(--sp-md);
      background: rgba(255,255,255,.04); border: 1px solid var(--c-border-dark);
      border-radius: var(--r-md); transition: all var(--tr-fast);
    }
    .ef:hover { background: rgba(200,169,110,.08); border-color: rgba(200,169,110,.2); }
    .ef-emoji {
      width: 34px; height: 34px; text-align: center; flex-shrink: 0;
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      background: rgba(200,169,110,.1); border: 1px solid rgba(200,169,110,.2);
      color: var(--c-gold-light);
    }
    .ef-emoji svg { width: 18px; height: 18px; }
    .ef-name { font-size: .9375rem; font-weight: 600; color: var(--c-text-inv); }
    .ef-note { font-size: .8rem; color: var(--c-text-inv-dim); }

    /* ==========================================
       ÜBER JENS
    ========================================== */
    .bio { background: var(--c-white); }
    .bio__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--sp-3xl); align-items: center; }

    .photo-wrap { position: relative; }
    .photo-frame {
      border-radius: var(--r-xl); overflow: hidden;
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, #EAE2D2 0%, #D5C9B5 100%);
    }
    .photo-frame img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
    }
    .photo-accent {
      position: absolute; bottom: -18px; right: -18px;
      width: 110px; height: 110px; border-radius: var(--r-xl);
      background: var(--c-gold); z-index: -1;
    }
    .photo-badge {
      position: absolute; top: var(--sp-md); right: -var(--sp-sm);
      background: var(--c-dark); border-radius: var(--r-lg);
      padding: var(--sp-sm) var(--sp-md); box-shadow: var(--sh-lg);
      text-align: center; right: calc(-1 * var(--sp-sm));
    }
    .pb-num {
      font-family: var(--ff-display); font-size: 1.75rem; font-weight: 700;
      color: var(--c-gold); line-height: 1;
    }
    .pb-txt { font-size: .68rem; color: rgba(245,240,232,.55); font-weight: 500; letter-spacing: .05em; }

    .bio-pull {
      font-family: var(--ff-display); font-size: 1.2rem; font-style: italic;
      color: var(--c-gold-dark);
      border-left: 3px solid var(--c-gold); padding-left: var(--sp-md);
      margin-bottom: var(--sp-lg); line-height: 1.5;
    }
    .bio-p { font-size: .9375rem; color: var(--c-text-mid); line-height: 1.78; margin-bottom: var(--sp-md); }
    .bio-chips { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: var(--sp-lg); }
    .bio-chip {
      display: flex; align-items: center; gap: .45rem;
      font-size: .875rem; font-weight: 500; color: var(--c-text);
      background: var(--c-light); border: 1px solid var(--c-border);
      border-radius: var(--r-md); padding: .45rem .875rem;
    }
    .bio-chip svg {
      width: 15px; height: 15px;
      color: var(--c-gold-dark); flex-shrink: 0;
    }

    /* ==========================================
       GALERIE
    ========================================== */
    .gal { background: var(--c-light); }
    .gal__grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: .625rem;
    }
    .gal__item {
      border-radius: var(--r-lg); overflow: hidden;
      position: relative; cursor: pointer;
      background: #D8D0C0;
    }
    .gal__item::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 50%);
      opacity: 0; transition: opacity var(--tr-mid);
    }
    .gal__item:hover::after { opacity: 1; }
    .gal__item--wide { grid-column: span 2; }
    .gal__item--tall { grid-row: span 2; }
    .gal__item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .5s ease;
    }
    .gal__item:hover img { transform: scale(1.04); }
    .gal__item--wide  { min-height: 280px; }
    .gal__item--tall  { min-height: 520px; }
    .gal__item:not(.gal__item--wide):not(.gal__item--tall) { min-height: 220px; }

    /* ==========================================
       TESTIMONIALS
    ========================================== */
    .testi {
      background:
        radial-gradient(ellipse 70% 85% at 12% 15%, rgba(200,169,110,.08) 0%, transparent 55%),
        linear-gradient(180deg, #fff 0%, #fdfaf4 100%);
    }
    .testi__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: calc(var(--sp-lg) + .4rem); }
    .tcard {
      display: flex; flex-direction: column;
      background: linear-gradient(160deg, #fffdf9 0%, #ffffff 52%, #fcf7ec 100%);
      border-radius: var(--r-xl); padding: var(--sp-xl);
      border: 1px solid rgba(200,169,110,.26);
      position: relative; overflow: hidden;
      box-shadow: 0 14px 34px rgba(17,17,23,.08), 0 2px 14px rgba(200,169,110,.12);
      transition: transform var(--tr-mid), box-shadow var(--tr-mid), border-color var(--tr-mid);
    }
    .tcard::before {
      content: '\201C'; font-family: var(--ff-display); font-size: 2.8rem;
      color: rgba(200,169,110,.4);
      position: absolute; top: .8rem; right: 1rem; line-height: 1;
    }
    .tcard::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, var(--c-gold-dark), var(--c-gold-light));
    }
    .tcard:hover {
      transform: translateY(-4px);
      border-color: rgba(200,169,110,.42);
      box-shadow: 0 20px 44px rgba(17,17,23,.12), 0 8px 24px rgba(200,169,110,.2);
    }
    .tcard-stars {
      display: inline-flex; align-items: center;
      color: #7A5A23; font-size: .88rem; letter-spacing: .08em;
      margin-bottom: var(--sp-md);
      background: rgba(200,169,110,.17);
      border: 1px solid rgba(200,169,110,.35);
      border-radius: 100px;
      padding: .3rem .68rem;
      width: fit-content;
    }
    .tcard-q {
      font-size: .95rem; color: var(--c-text-mid); line-height: 1.72;
      margin-bottom: var(--sp-lg);
    }
    .tcard-auth {
      display: flex; align-items: center; gap: var(--sp-sm);
      margin-top: auto; padding-top: var(--sp-md);
      border-top: 1px dashed rgba(122,122,133,.28);
    }
    .tcard-av {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(145deg, #E4C78D, #B88E4A);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
      color: #1A1200; flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(200,169,110,.14);
    }
    .tcard-name { font-size: .95rem; font-weight: 700; color: var(--c-text); }
    .tcard-evt  {
      font-size: .77rem; color: #6B6464;
      display: inline-block; margin-top: .2rem;
      background: rgba(17,17,23,.05);
      border-radius: 100px; padding: .18rem .55rem;
    }
    .testi-note {
      text-align: center; font-size: .79rem; color: #6B6464;
      margin-top: var(--sp-lg); padding: .85rem var(--sp-md);
      border: 1px dashed rgba(200,169,110,.35);
      border-radius: var(--r-md); font-style: italic;
      background: rgba(255,255,255,.72);
    }

    /* ==========================================
       BUCHUNGSABLAUF
    ========================================== */
    .steps-sec { background: var(--c-dark); position: relative; overflow: hidden; }
    .steps-sec__bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(200,169,110,.08) 0%, transparent 60%);
    }
    .steps-sec__inner { position: relative; z-index: 1; }
    .steps {
      display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-xl);
      position: relative;
    }
    .steps::before {
      content: ''; position: absolute; top: 27px;
      left: calc(100% / 6); right: calc(100% / 6); height: 1px;
      background: linear-gradient(to right, transparent, rgba(200,169,110,.38), transparent);
    }
    .step { text-align: center; }
    .step__num {
      width: 54px; height: 54px; border-radius: 50%;
      background: rgba(200,169,110,.11); border: 2px solid rgba(200,169,110,.33);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700;
      color: var(--c-gold); margin: 0 auto var(--sp-lg); position: relative; z-index: 1;
    }
    .step h3 { font-size: 1.1rem; color: var(--c-text-inv); margin-bottom: var(--sp-sm); }
    .step p  { font-size: .9rem; color: var(--c-text-inv-dim); line-height: 1.65; }
    .steps-cta { text-align: center; margin-top: var(--sp-2xl); }

    /* ==========================================
       FAQ
    ========================================== */
    .faq { background: var(--c-light); }
    .faq__list { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--c-border); }
    .faq-item:first-child { border-top: 1px solid var(--c-border); }
    .faq-q {
      width: 100%; display: flex; align-items: center;
      justify-content: space-between; gap: var(--sp-md);
      padding: var(--sp-md) 0;
      font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
      color: var(--c-text); text-align: left;
      background: none; border: none; cursor: pointer;
      transition: color var(--tr-fast);
    }
    .faq-q:hover { color: var(--c-gold-dark); }
    .faq-ico {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--c-border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all var(--tr-fast); color: var(--c-text-mid);
    }
    .faq-item.open .faq-ico { background: var(--c-gold); color: #1A1200; transform: rotate(45deg); }
    .faq-a {
      display: none; font-size: .9375rem; color: var(--c-text-mid);
      line-height: 1.7; padding-bottom: var(--sp-md); max-width: 66ch;
    }
    .faq-item.open .faq-a { display: block; }

    /* ==========================================
       KONTAKT
    ========================================== */
    .kontakt { background: var(--c-dark); position: relative; overflow: hidden; }
    .kontakt__bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 75% at 92% 50%, rgba(200,169,110,.08) 0%, transparent 55%),
        radial-gradient(ellipse 38% 55% at 8% 20%,  rgba(80,55,145,.06) 0%, transparent 50%);
    }
    .kontakt__inner { position: relative; z-index: 1; }
    .kontakt__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--sp-3xl); align-items: start; }

    .form-g { margin-bottom: var(--sp-md); }
    .form-l {
      display: block; font-size: .875rem; font-weight: 600;
      color: rgba(245,240,232,.8); margin-bottom: .35rem;
    }
    .form-i,
    .form-s,
    .form-ta {
      width: 100%; font-family: var(--ff-body); font-size: .9375rem;
      color: var(--c-text-inv);
      background: rgba(255,255,255,.05); border: 1px solid var(--c-border-dark);
      border-radius: var(--r-md); padding: .75rem 1rem;
      transition: all var(--tr-fast); outline: none; -webkit-appearance: none;
    }
    .form-s { cursor: pointer; }
    .form-s option { background: #1A1A22; color: var(--c-text-inv); }
    .form-i::placeholder, .form-ta::placeholder { color: rgba(245,240,232,.28); }
    .form-i:focus, .form-s:focus, .form-ta:focus {
      border-color: rgba(200,169,110,.5);
      background: rgba(255,255,255,.07);
      box-shadow: 0 0 0 3px rgba(200,169,110,.1);
    }
    .form-ta { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
    .form-hint { font-size: .8rem; color: rgba(245,240,232,.38); margin-top: var(--sp-sm); }

    .kinfo { display: flex; flex-direction: column; gap: var(--sp-lg); }
    .kinfo h3 { font-size: 1.35rem; color: var(--c-text-inv); margin-bottom: .35rem; }
    .kinfo-sub { font-size: .9375rem; color: var(--c-text-inv-dim); line-height: 1.65; margin-bottom: var(--sp-lg); }
    .kdetail { display: flex; align-items: flex-start; gap: var(--sp-sm); }
    .kdetail-icon {
      width: 40px; height: 40px; border-radius: var(--r-md); flex-shrink: 0;
      background: rgba(200,169,110,.1); border: 1px solid rgba(200,169,110,.2);
      display: flex; align-items: center; justify-content: center; color: var(--c-gold);
    }
    .kdetail-lbl {
      font-size: .78rem; font-weight: 600; color: var(--c-gold);
      text-transform: uppercase; letter-spacing: .07em; margin-bottom: .1rem;
    }
    .kdetail-val { font-size: .9375rem; color: var(--c-text-inv); }
    .kdetail-val a { color: var(--c-text-inv); transition: color var(--tr-fast); }
    .kdetail-val a:hover { color: var(--c-gold); }
    .kbox {
      padding: var(--sp-md);
      background: rgba(200,169,110,.08); border: 1px solid rgba(200,169,110,.18);
      border-radius: var(--r-md);
    }
    .kbox p { font-size: .875rem; color: rgba(245,240,232,.68); line-height: 1.6; }
    .kbox strong { color: var(--c-gold); display: block; margin-bottom: .25rem; }

    /* ==========================================
       FOOTER
    ========================================== */
    .footer {
      background: var(--c-dark-3);
      border-top: 1px solid var(--c-border-dark);
      padding: var(--sp-xl) 0;
    }
    .footer__inner {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: var(--sp-md);
    }
    .footer__logo { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: rgba(245,240,232,.55); }
    .footer__logo em { font-style: normal; color: var(--c-gold); }
    .footer__copy { font-size: .8rem; color: rgba(245,240,232,.3); }
    .footer__links { display: flex; gap: var(--sp-lg); }
    .footer__link { font-size: .8rem; color: rgba(245,240,232,.42); transition: color var(--tr-fast); }
    .footer__link:hover { color: var(--c-gold); }

    /* ==========================================
       MOBILE STICKY CTA
    ========================================== */
    .mob-cta {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
      background: rgba(17,17,23,.97); backdrop-filter: blur(12px);
      border-top: 1px solid var(--c-border-dark);
      padding: .875rem var(--sp-md); gap: .75rem;
    }
    .mob-cta .btn { flex: 1; justify-content: center; }

    /* ==========================================
       FOCUS / A11Y
    ========================================== */
    :focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }

    /* ==========================================
       RESPONSIVE
    ========================================== */
    @media (max-width: 1024px) {
      .bio__grid    { grid-template-columns: 1fr 1.2fr; gap: var(--sp-2xl); }
      .kontakt__grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
      .kinfo { border-top: 1px solid var(--c-border-dark); padding-top: var(--sp-xl); }
    }

    @media (max-width: 768px) {
      :root { --sp-3xl: 5rem; --sp-2xl: 3.5rem; }
      .nav__links, .nav__cta-d { display: none; }
      .nav__burger { display: flex; }
      .nav__logo-main { font-size: 1.06rem; }
      .nav__logo-sub  { font-size: .5rem; letter-spacing: .14em; }

      /* Mobil: Spalten-Layout – Bild oben, Text darunter */
      .hero { flex-direction: column; align-items: stretch; min-height: 100vh; }
      .hero__stage {
        position: relative;
        top: auto; right: auto; bottom: auto; left: auto;
        width: 100%; height: 340px;
        margin-top: var(--nav-h);
        flex-shrink: 0;
      }
      .hero__stage img { object-position: center 18%; }
      .hero__stage::after {
        background: linear-gradient(to bottom, transparent 0%, transparent 65%, var(--c-dark) 100%);
      }
      .hero__body { padding-top: var(--sp-lg); }
      .hero__ctas { flex-direction: column; }
      .hero__ctas .btn { justify-content: center; }

      .trust__grid { grid-template-columns: 1fr 1fr; }
      .leist__grid  { grid-template-columns: 1fr; }
      .repo__grid   { grid-template-columns: 1fr; gap: var(--sp-2xl); }
      .bio__grid    { grid-template-columns: 1fr; }
      .photo-wrap   { max-width: 300px; }
      .testi__grid  { grid-template-columns: 1fr; }
      .gal__grid    { grid-template-columns: 1fr 1fr; }
      .gal__item--wide { grid-column: span 1; }
      .gal__item--tall { grid-row: span 1; }

      .steps { grid-template-columns: 1fr; }
      .steps::before { display: none; }
      .step { text-align: left; display: flex; gap: var(--sp-md); }
      .step__num { margin: 0; flex-shrink: 0; }

      .form-row { grid-template-columns: 1fr; }
      .footer__inner { flex-direction: column; align-items: flex-start; }

      .mob-cta { display: flex; }
      body { padding-bottom: 72px; }
    }

    @media (max-width: 480px) {
      .trust__grid { grid-template-columns: 1fr; }
      .gal__grid   { grid-template-columns: 1fr; }
    }

    /* ==========================================
       MARQUEE TICKER
    ========================================== */
    .marquee-band {
      background: var(--c-gold);
      overflow: hidden;
      padding: .68rem 0;
      position: relative; z-index: 2;
    }
    .marquee-track {
      display: inline-flex;
      white-space: nowrap;
      animation: marqueeScroll 30s linear infinite;
    }
    .marquee-band:hover .marquee-track { animation-play-state: paused; }
    .marquee-item {
      font-size: .72rem; font-weight: 700;
      letter-spacing: .13em; text-transform: uppercase;
      color: #1A1200; padding: 0 1.75rem;
    }
    .marquee-sep {
      color: rgba(26,18,0,.35); font-size: .72rem;
      align-self: center; flex-shrink: 0;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ==========================================
       AVAILABILITY BADGE
    ========================================== */
    .hero__badge {
      display: inline-flex; align-items: center; gap: .5rem;
      font-family: var(--ff-body); font-size: .8rem; font-weight: 500;
      color: rgba(245,240,232,.65);
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 100px; padding: .375rem 1rem;
      margin-bottom: var(--sp-md);
    }
    .badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #4ADE80; flex-shrink: 0;
      animation: dotPing 2.4s ease-in-out infinite;
    }
    @keyframes dotPing {
      0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
      65%       { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
    }

    /* ==========================================
       HERO HEADLINE SHIMMER
    ========================================== */
    .hero__h1 em {
      background: linear-gradient(90deg,
        var(--c-gold-dark) 0%,
        #F4DDA0 30%,
        var(--c-gold) 50%,
        #F4DDA0 70%,
        var(--c-gold-dark) 100%);
      background-size: 250% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      animation: shimmerSlide 6s linear infinite;
    }
    @keyframes shimmerSlide {
      from { background-position: 200% center; }
      to   { background-position: 0% center; }
    }

    /* ==========================================
       DIAGONAL SECTION CUTS
    ========================================== */
    .leist {
      clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%);
      padding-top: calc(var(--sp-3xl) + 52px);
    }
    .bio {
      clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%);
      padding-top: calc(var(--sp-3xl) + 52px);
    }
    @media (max-width: 768px) {
      .leist, .bio { clip-path: none; padding-top: var(--sp-3xl); }
    }

    /* ==========================================
       SECTION LABEL REFINEMENT
    ========================================== */
    .label {
      display: inline-flex; align-items: center; gap: .45rem;
    }
    .label::before {
      content: ''; display: block;
      width: 20px; height: 1px;
      background: var(--c-gold); flex-shrink: 0;
    }

    /* ==========================================
       CARD HOVER GLOW
    ========================================== */
    .card:hover {
      box-shadow:
        0 16px 48px rgba(0,0,0,.12),
        0 0 60px rgba(200,169,110,.07);
    }

    /* ==========================================
       BIO PHOTO GOLD RING
    ========================================== */
    .photo-frame {
      box-shadow:
        0 0 0 3px rgba(200,169,110,.3),
        0 0 0 8px rgba(200,169,110,.07),
        var(--sh-lg);
    }

    /* ==========================================
       HERO MOUSE GLOW
    ========================================== */
    .hero-glow {
      position: absolute;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,169,110,.07) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      pointer-events: none; z-index: 1;
      transition: left .15s ease, top .15s ease;
    }

    /* ==========================================
       GRAIN TEXTURE ON DARK SECTIONS
    ========================================== */
    .hero::before,
    .repo::before,
    .steps-sec::before,
    .kontakt::before {
      content: '';
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
      opacity: .035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }
