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

    :root {
      --bg:       #07070f;
      --bg2:      #0d0d1c;
      --bg3:      #131328;
      --gold:     #c8a24a;
      --gold-lt:  #e8c97a;
      --gold-dk:  #7a5e1a;
      --white:    #f2f2f0;
      --muted:    #7878a0;
      --border:   rgba(200,162,74,.13);
      --border-h: rgba(200,162,74,.4);
      --r:        12px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── Noise overlay ─────────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: .028;
    }

    /* ── NAV ───────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      height: 72px;
      background: rgba(7,7,15,.75);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background .3s;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.35rem;
      font-weight: 600;
      letter-spacing: .05em;
      color: var(--white);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex; gap: 2.5rem; list-style: none;
    }
    .nav-links a {
      color: var(--muted); font-size: .85rem; font-weight: 500;
      text-decoration: none; letter-spacing: .04em; text-transform: uppercase;
      transition: color .2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--gold); transform: scaleX(0);
      transform-origin: left; transition: transform .25s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      background: var(--gold); color: #07070f;
      padding: .55rem 1.4rem; border-radius: 6px;
      font-size: .82rem; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

    @media (max-width: 768px) {
      .nav-links { display: none; }
    }

    /* ── SECTIONS ──────────────────────────────── */
    section { position: relative; z-index: 1; }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 5vw, 3rem);
    }

    /* ── HERO ──────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      text-align: center;
      padding: 120px 2rem 80px;
      overflow: hidden;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .6rem;
      font-size: .75rem; font-weight: 600; letter-spacing: .15em;
      text-transform: uppercase; color: var(--gold);
      border: 1px solid var(--border-h);
      padding: .4rem 1rem; border-radius: 100px;
      margin-bottom: 2.5rem;
    }
    .hero-eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: .4; transform: scale(.6); }
    }

    h1 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(3.2rem, 9vw, 7.5rem);
      font-weight: 600;
      line-height: 1.0;
      letter-spacing: -.01em;
      margin-bottom: 1.8rem;
      max-width: 14ch;
    }
    h1 em {
      font-style: italic;
      background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 3rem;
      font-weight: 400;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
      margin-bottom: 4rem;
    }

    .btn-primary {
      background: var(--gold);
      color: #07070f;
      padding: .9rem 2.2rem;
      border-radius: 8px;
      font-size: .9rem; font-weight: 700; letter-spacing: .05em;
      text-decoration: none; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: .6rem;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 0 0 0 rgba(200,162,74,0);
    }
    .btn-primary:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(200,162,74,.25);
    }

    .btn-secondary {
      border: 1px solid var(--border-h);
      color: var(--white);
      padding: .9rem 2.2rem;
      border-radius: 8px;
      font-size: .9rem; font-weight: 500; letter-spacing: .03em;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .6rem;
      transition: border-color .2s, background .2s;
    }
    .btn-secondary:hover {
      border-color: var(--gold);
      background: rgba(200,162,74,.06);
    }

    .hero-trust {
      display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: .5rem;
      font-size: .8rem; font-weight: 500; color: var(--muted);
    }
    .trust-item svg { color: var(--gold); flex-shrink: 0; }

    /* Decorative orb */
    .hero-orb {
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,162,74,.08) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    /* ── MARQUEE ───────────────────────────────── */
    .marquee-wrap {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.1rem 0;
      overflow: hidden;
      background: var(--bg2);
    }
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 28s linear infinite;
      width: max-content;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-item {
      white-space: nowrap;
      font-size: .78rem; font-weight: 600; letter-spacing: .12em;
      text-transform: uppercase; color: var(--muted);
      padding: 0 2.5rem;
    }
    .marquee-item span { color: var(--gold); margin-right: 2.5rem; }

    /* ── STATS ─────────────────────────────────── */
    #stats {
      padding: 6rem 0;
      background: var(--bg2);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    @media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; } }

    .stat-card {
      background: var(--bg3);
      padding: 3rem 2rem;
      text-align: center;
      border: 1px solid var(--border);
      transition: border-color .3s;
    }
    .stat-card:hover { border-color: var(--border-h); }

    .stat-number {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      display: block;
    }
    .stat-label {
      font-size: .8rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: var(--muted);
      margin-top: .6rem; display: block;
    }

    /* ── PROBLEM ───────────────────────────────── */
    #problem {
      padding: 8rem 0;
    }
    .problem-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    @media (max-width: 768px) { .problem-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

    .section-eyebrow {
      font-size: .72rem; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.2rem; display: block;
    }
    h2 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 600; line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .body-text {
      color: var(--muted); line-height: 1.8; font-size: .95rem;
      margin-bottom: 1.2rem;
    }

    .problem-list {
      list-style: none; display: flex; flex-direction: column; gap: 1rem;
    }
    .problem-list li {
      display: flex; align-items: flex-start; gap: .8rem;
      font-size: .9rem; color: var(--muted); line-height: 1.5;
    }
    .problem-list li::before {
      content: '×'; color: #d45555; font-weight: 700;
      font-size: 1.1rem; flex-shrink: 0; margin-top: -.05em;
    }

    .solution-list {
      list-style: none; display: flex; flex-direction: column; gap: 1rem;
      margin-top: 1.5rem;
    }
    .solution-list li {
      display: flex; align-items: flex-start; gap: .8rem;
      font-size: .9rem; color: var(--muted); line-height: 1.5;
    }
    .solution-list li::before {
      content: '✓'; color: var(--gold); font-weight: 700;
      font-size: 1rem; flex-shrink: 0; margin-top: .05em;
    }

    /* ── LEISTUNGEN ────────────────────────────── */
    #leistungen {
      padding: 8rem 0;
      background: var(--bg2);
    }
    #anfrage { padding: 6rem 0 8rem; }
    .section-header {
      text-align: center; margin-bottom: 4rem;
    }
    .section-header p {
      color: var(--muted); font-size: 1rem;
      max-width: 480px; margin: 0 auto;
    }

    .leistungen-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5px;
    }
    @media (max-width: 1100px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .leistungen-grid { grid-template-columns: 1fr; } }

    .leistung-card {
      background: var(--bg3);
      padding: 3rem 2.5rem;
      border: 1px solid var(--border);
      transition: border-color .3s, transform .3s;
      position: relative;
      overflow: hidden;
    }
    .leistung-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0); transition: transform .35s;
    }
    .leistung-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
    .leistung-card:hover::before { transform: scaleX(1); }

    .leistung-icon {
      width: 52px; height: 52px;
      background: rgba(200,162,74,.1);
      border: 1px solid var(--border-h);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.8rem;
      font-size: 1.4rem;
    }
    .leistung-num {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 4rem; font-weight: 300;
      color: rgba(200,162,74,.08);
      position: absolute; top: 1.5rem; right: 2rem;
      line-height: 1; pointer-events: none;
    }

    .leistung-card h3 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.7rem; font-weight: 600;
      margin-bottom: .8rem; line-height: 1.2;
    }
    .leistung-card p {
      color: var(--muted); font-size: .88rem;
      line-height: 1.7; margin-bottom: 1.5rem;
    }
    .leistung-features {
      list-style: none; display: flex; flex-direction: column; gap: .5rem;
    }
    .leistung-features li {
      font-size: .82rem; color: var(--muted);
      display: flex; align-items: center; gap: .5rem;
    }
    .leistung-features li::before {
      content: ''; width: 4px; height: 4px;
      border-radius: 50%; background: var(--gold); flex-shrink: 0;
    }

    /* ── PROCESS ───────────────────────────────── */
    #process { padding: 8rem 0; }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 4rem;
      position: relative;
    }
    @media (max-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
    @media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

    .process-grid::before {
      content: '';
      position: absolute;
      top: 2rem; left: 12%; right: 12%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-h), var(--border-h), transparent);
      z-index: 0;
    }
    @media (max-width: 768px) { .process-grid::before { display: none; } }

    .process-step {
      text-align: center; padding: 0 1.5rem;
      position: relative; z-index: 1;
    }
    .process-num {
      width: 64px; height: 64px;
      background: var(--bg3);
      border: 1px solid var(--border-h);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.6rem; font-weight: 600; color: var(--gold);
      transition: background .3s, box-shadow .3s;
    }
    .process-step:hover .process-num {
      background: rgba(200,162,74,.12);
      box-shadow: 0 0 24px rgba(200,162,74,.15);
    }
    .process-step h4 {
      font-size: 1rem; font-weight: 700;
      margin-bottom: .5rem; letter-spacing: .01em;
    }
    .process-step p {
      font-size: .82rem; color: var(--muted); line-height: 1.6;
    }

    /* ── PREISE ────────────────────────────────── */
    #preise {
      padding: 8rem 0;
      background: var(--bg2);
    }

    .preise-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      align-items: start;
      margin-top: 4rem;
    }
    @media (max-width: 1100px) { .preise-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .preise-grid { grid-template-columns: 1fr; } }

    .price-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 2.5rem 2rem;
      transition: border-color .3s, transform .3s;
      position: relative;
    }
    .price-card:hover { border-color: var(--border-h); transform: translateY(-4px); }

    .price-card.featured {
      border-color: var(--gold);
      background: linear-gradient(160deg, rgba(200,162,74,.07) 0%, var(--bg3) 60%);
      transform: scale(1.03);
    }
    .price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

    .price-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: #07070f;
      font-size: .72rem; font-weight: 800; letter-spacing: .1em;
      text-transform: uppercase; padding: .3rem .9rem; border-radius: 100px;
      white-space: nowrap;
    }

    .price-tier {
      font-size: .72rem; font-weight: 700; letter-spacing: .15em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 1rem; display: block;
    }
    .price-card.featured .price-tier { color: var(--gold); }

    .price-name {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.9rem; font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .price-amount {
      margin-bottom: 2rem;
    }
    .price-amount .amount {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 3.2rem; font-weight: 700; color: var(--white);
      line-height: 1;
    }
    .price-amount .currency {
      font-size: 1.4rem; color: var(--muted);
      vertical-align: top; margin-top: .3rem; display: inline-block;
    }
    .price-amount .period {
      font-size: .82rem; color: var(--muted); margin-top: .3rem;
      display: block;
    }
    .price-gross {
      font-size: .75rem; color: var(--muted); margin-top: .2rem;
      display: block; opacity: .7;
    }

    .price-divider {
      height: 1px; background: var(--border); margin-bottom: 2rem;
    }

    .price-features {
      list-style: none; display: flex; flex-direction: column; gap: .8rem;
      margin-bottom: 2rem;
    }
    .price-features li {
      display: flex; align-items: center; gap: .7rem;
      font-size: .85rem; color: var(--muted);
    }
    .price-features li.active { color: var(--white); }
    .price-check {
      width: 18px; height: 18px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .price-check.yes {
      background: rgba(200,162,74,.15);
      color: var(--gold); font-size: .7rem; font-weight: 700;
    }
    .price-check.no {
      background: rgba(120,120,160,.1);
      color: var(--muted); font-size: .7rem;
    }

    .price-cta {
      display: block; text-align: center;
      padding: .85rem;
      border-radius: 8px;
      font-size: .85rem; font-weight: 700; letter-spacing: .05em;
      text-transform: uppercase; text-decoration: none;
      transition: all .2s;
    }
    .price-cta.gold {
      background: var(--gold); color: #07070f;
    }
    .price-cta.gold:hover {
      background: var(--gold-lt);
      box-shadow: 0 6px 24px rgba(200,162,74,.3);
    }
    .price-cta.outline {
      border: 1px solid var(--border-h); color: var(--white);
    }
    .price-cta.outline:hover { border-color: var(--gold); background: rgba(200,162,74,.06); }

    .price-note {
      text-align: center; margin-top: 2.5rem;
      font-size: .8rem; color: var(--muted);
    }

    .preise-extra {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    @media (max-width: 768px) { .preise-extra { grid-template-columns: 1fr; } }

    .addon-box {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 2rem 2.2rem;
    }
    .addon-box h3 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.4rem; font-weight: 600;
      margin-bottom: 1.2rem;
    }
    .addon-note {
      font-size: .75rem; color: var(--muted); font-weight: 400; font-family: inherit;
      display: block; margin-top: .3rem;
    }
    .addon-list {
      list-style: none; display: flex; flex-direction: column; gap: .6rem;
    }
    .addon-list li {
      font-size: .85rem; color: var(--muted);
      display: flex; align-items: flex-start; gap: .6rem;
    }
    .addon-list li::before {
      content: '✓'; color: var(--gold); font-size: .8rem; flex-shrink: 0; margin-top: .1rem;
    }
    .addon-price-list {
      list-style: none; display: flex; flex-direction: column; gap: .7rem;
    }
    .addon-price-list li {
      display: flex; justify-content: space-between; align-items: baseline;
      font-size: .85rem; color: var(--white);
      padding-bottom: .7rem; border-bottom: 1px solid var(--border);
    }
    .addon-price-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .addon-price {
      color: var(--gold); font-weight: 700; white-space: nowrap; margin-left: 1rem;
    }

    /* ── PORTFOLIO ─────────────────────────────── */
    #portfolio { padding: 8rem 0; }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }
    @media (max-width: 768px) { .portfolio-grid { grid-template-columns: 1fr; } }

    .portfolio-card {
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: border-color .3s, transform .3s;
      cursor: pointer;
    }
    .portfolio-card:hover { border-color: var(--border-h); transform: translateY(-6px); }

    .browser-bar {
      background: #1a1a2e;
      padding: .7rem 1rem;
      display: flex; align-items: center; gap: .8rem;
      border-bottom: 1px solid var(--border);
    }
    .browser-dots { display: flex; gap: .4rem; }
    .browser-dots span {
      width: 10px; height: 10px; border-radius: 50%;
    }
    .browser-dots span:nth-child(1) { background: #ff5f57; }
    .browser-dots span:nth-child(2) { background: #febc2e; }
    .browser-dots span:nth-child(3) { background: #28c840; }
    .browser-url {
      flex: 1; background: rgba(255,255,255,.05);
      border-radius: 4px; height: 22px;
      display: flex; align-items: center;
      padding: 0 .7rem;
      font-size: .7rem; color: var(--muted);
    }

    .browser-content {
      height: 220px; overflow: hidden; position: relative;
    }
    .browser-content img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }

    .portfolio-info {
      padding: 1.2rem 1.4rem;
      background: var(--bg3);
    }
    .portfolio-cat {
      font-size: .68rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--gold); margin-bottom: .3rem;
    }
    .portfolio-name { font-size: 1rem; font-weight: 600; }

    /* ── TESTIMONIALS ──────────────────────────── */
    #testimonials {
      padding: 8rem 0;
      background: var(--bg2);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
    }
    @media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

    .testimonial-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 2rem;
      transition: border-color .3s;
    }
    .testimonial-card:hover { border-color: var(--border-h); }

    .testimonial-stars {
      color: var(--gold); font-size: 1rem; margin-bottom: 1.2rem;
      letter-spacing: .15em;
    }
    .testimonial-text {
      font-size: .9rem; color: var(--muted);
      line-height: 1.7; margin-bottom: 1.5rem;
      font-style: italic;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: .9rem;
    }
    .testimonial-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-dk), var(--gold));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: .9rem; color: #07070f;
      flex-shrink: 0;
    }
    .testimonial-name { font-weight: 700; font-size: .88rem; }
    .testimonial-role { font-size: .75rem; color: var(--muted); }

    /* ── ÜBER MICH ─────────────────────────────── */
    #about { padding: 8rem 0; }

    .about-inner {
      display: grid; grid-template-columns: 1fr 1.5fr;
      gap: 5rem; align-items: center;
    }
    @media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

    .about-visual {
      aspect-ratio: 4/5;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .about-visual-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(200,162,74,.05) 0%, transparent 60%);
    }
    .about-visual-initials {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 8rem; font-weight: 700;
      color: rgba(200,162,74,.12);
      line-height: 1;
      position: relative; z-index: 1;
    }
    .about-visual-badge {
      position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      background: rgba(200,162,74,.12);
      border: 1px solid var(--border-h);
      padding: .6rem 1.2rem; border-radius: 100px;
      font-size: .75rem; font-weight: 600; color: var(--gold);
      white-space: nowrap;
    }
    .about-visual-lines {
      position: absolute; inset: 0; pointer-events: none;
      background: repeating-linear-gradient(
        90deg,
        transparent, transparent 49px,
        rgba(200,162,74,.02) 49px, rgba(200,162,74,.02) 50px
      );
    }

    .about-content h2 { margin-bottom: 1.5rem; }
    .about-content .body-text { margin-bottom: 1rem; }

    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin-top: 2rem;
    }
    .about-stat {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.2rem 1.5rem;
      transition: border-color .3s;
    }
    .about-stat:hover { border-color: var(--border-h); }
    .about-stat .num {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 2.2rem; font-weight: 700; color: var(--gold);
      line-height: 1;
    }
    .about-stat .lbl {
      font-size: .75rem; color: var(--muted); margin-top: .2rem;
    }

    /* ── CTA SECTION ───────────────────────────── */
    #cta {
      padding: 8rem 0;
      background: linear-gradient(160deg, rgba(200,162,74,.06) 0%, transparent 50%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center;
    }
    #cta.page-cta { padding-top: calc(72px + 8rem); border-top: none; }
    #cta h2 { margin-bottom: 1rem; }
    #cta p {
      color: var(--muted); font-size: 1rem;
      max-width: 450px; margin: 0 auto 3rem;
    }

    .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-whatsapp {
      background: #25d366; color: #fff;
      padding: 1rem 2.4rem;
      border-radius: 8px;
      font-size: .9rem; font-weight: 700; letter-spacing: .04em;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .8rem;
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn-whatsapp:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37,211,102,.3);
    }
    .btn-whatsapp svg { width: 20px; height: 20px; }

    /* ── KONTAKTFORMULAR ──────────────────────── */
    .contact-card {
      max-width: 680px; margin: 3rem auto 0;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 3rem;
      position: relative;
      overflow: hidden;
      transition: border-color .3s;
    }
    .contact-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .contact-card:hover { border-color: var(--border-h); }
    @media (max-width: 600px) { .contact-card { padding: 2.2rem 1.5rem; } }

    .contact-form {
      display: flex; flex-direction: column; gap: 1.4rem;
      text-align: left;
    }
    .form-row {
      display: grid; grid-template-columns: 1fr; gap: 1.4rem;
    }

    .form-group { display: flex; flex-direction: column; gap: .5rem; }
    .form-group label {
      font-size: .75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .08em; color: var(--gold);
    }
    .form-input, .form-textarea {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: 8px; color: var(--white);
      font-family: inherit; font-size: .95rem;
      padding: .9rem 1.1rem; transition: border-color .2s, box-shadow .2s, background .2s;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: .7; }
    .form-input:focus, .form-textarea:focus {
      outline: none; border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200,162,74,.12);
      background: var(--bg);
    }
    .form-textarea { resize: vertical; min-height: 150px; }
    .form-honeypot {
      position: absolute; left: -9999px; width: 1px; height: 1px;
      opacity: 0; overflow: hidden;
    }
    .form-submit {
      background: var(--gold); color: #07070f;
      border: none; border-radius: 8px;
      padding: 1.05rem 2.4rem; font-size: .9rem; font-weight: 700;
      letter-spacing: .04em; text-transform: uppercase;
      cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
      margin-top: .4rem;
    }
    .form-submit:hover:not(:disabled) {
      background: var(--gold-lt); transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(200,162,74,.25);
    }
    .form-submit:active:not(:disabled) { transform: translateY(0); }
    .form-submit:disabled { opacity: .6; cursor: not-allowed; }
    .form-submit svg { transition: transform .2s; }
    .form-submit:hover:not(:disabled) svg { transform: translateX(3px); }
    .form-status { font-size: .9rem; min-height: 1.4em; text-align: center; }
    .form-status.success { color: #4ade80; }
    .form-status.error { color: #f87171; }

    /* ── FOOTER ────────────────────────────────── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 4rem 0 2rem;
    }
    .footer-inner {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr;
      gap: 4rem; margin-bottom: 3rem;
    }
    @media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }

    .footer-brand p {
      font-size: .85rem; color: var(--muted); margin-top: .8rem; line-height: 1.7;
      max-width: 280px;
    }
    .footer-col h5 {
      font-size: .72rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
    .footer-col ul a {
      font-size: .85rem; color: var(--muted); text-decoration: none;
      transition: color .2s;
    }
    .footer-col ul a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 2rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p {
      font-size: .78rem; color: var(--muted);
    }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ── FLOATING WHATSAPP ─────────────────────── */
    .whatsapp-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
      width: 58px; height: 58px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 32px rgba(37,211,102,.5);
    }
    .whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
    .whatsapp-float-pulse {
      position: absolute; inset: -4px;
      border-radius: 50%; border: 2px solid #25d366;
      animation: wp-pulse 2.5s infinite;
    }
    @keyframes wp-pulse {
      0%   { transform: scale(1);   opacity: .8; }
      100% { transform: scale(1.6); opacity: 0;  }
    }

    /* ── FADE-IN ANIMATION ─────────────────────── */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.visible { opacity: 1; transform: none; }

    /* delay variants */
    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; }
    .d4 { transition-delay: .4s; }

    /* ── QUICK LINKS (Startseite) ─────────────── */
    #quicklinks { padding: 8rem 0; background: var(--bg2); }

    .quicklinks-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
    }
    @media (max-width: 900px) { .quicklinks-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .quicklinks-grid { grid-template-columns: 1fr; } }

    .quicklink-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 2.5rem 2rem;
      text-align: center;
      text-decoration: none;
      color: var(--white);
      display: block;
      transition: border-color .3s, transform .3s;
    }
    .quicklink-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
    .quicklink-icon {
      width: 52px; height: 52px;
      background: rgba(200,162,74,.1);
      border: 1px solid var(--border-h);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.2rem;
      font-size: 1.4rem;
    }
    .quicklink-card h3 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.4rem; font-weight: 600; margin-bottom: .5rem;
    }
    .quicklink-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

    /* ── CTA STRIP (Unterseiten) ───────────────── */
    .cta-strip {
      padding: 5rem 0;
      background: linear-gradient(160deg, rgba(200,162,74,.06) 0%, transparent 50%);
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .cta-strip h3 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; margin-bottom: 1.5rem;
    }

    /* ── PAGE HEADER (Unterseiten) ─────────────── */
    .page-header {
      padding: calc(72px + 5rem) 0 4rem;
      text-align: center;
    }
    .page-header .section-eyebrow { display: inline-block; margin-bottom: 1rem; }
    .page-header h1 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(2.6rem, 6vw, 4.5rem);
      font-weight: 600;
      line-height: 1.1;
    }
    .page-header p {
      color: var(--muted);
      font-size: 1rem;
      max-width: 540px;
      margin: 1.2rem auto 0;
      line-height: 1.7;
    }
