/* ─── RESET & ROOT ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold:       #C9A84C;
      --gold-light: #E4C97A;
      --gold-dim:   #8a6e2f;
      --black:      #0a0a0a;
      --dark:       #111111;
      --dark2:      #1a1a1a;
      --mid:        #2a2a2a;
      --text:       #e8e0d0;
      --text-muted: #8a8070;
      --white:      #f5f0e8;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Montserrat', sans-serif;
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      background: var(--black);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.7;
      overflow-x: hidden;
      cursor: none;
    }

    /* ─── CUSTOM CURSOR ────────────────────────────────────────── */
    .cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s;
      mix-blend-mode: exclusion;
    }
    .cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.08s, width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), opacity 0.3s;
      opacity: 0.5;
    }
    .cursor.hover { width: 20px; height: 20px; }
    .cursor-ring.hover { width: 56px; height: 56px; opacity: 0.2; }

    /* ─── SCROLLBAR ────────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dim); }

    /* ─── NAVIGATION ───────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: padding 0.5s var(--ease-out-expo), background 0.5s, border-color 0.5s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      padding: 16px 60px;
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(12px);
      border-color: rgba(201,168,76,0.15);
    }

    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      cursor: none;
    }
    .logo-icon svg { width: 38px; height: 38px; }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .logo-name {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--gold);
    }
    .logo-sub {
      font-size: 8px;
      letter-spacing: 0.3em;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-top: 3px;
    }

    /* Nav links */
    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: none;
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.4s var(--ease-out-expo);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    /* Nav CTA */
    .nav-cta {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--gold);
      padding: 10px 22px;
      text-decoration: none;
      cursor: none;
      transition: background 0.3s, transform 0.2s;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }
    .nav-cta:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    /* Mobile hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: none;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px; height: 1px;
      background: var(--gold);
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* Mobile menu */
    .nav-mobile {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--black);
      z-index: 99;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      transform: translateY(-100%);
      transition: transform 0.6s var(--ease-out-expo);
    }
    .nav-mobile.open { transform: translateY(0); }
    .nav-mobile a {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 300;
      color: var(--text);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.3s;
    }
    .nav-mobile a:hover { color: var(--gold); }

    /* ─── HERO ─────────────────────────────────────────────────── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 40%, rgba(10,10,10,0.7) 100%),
        url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
      transform: scale(1.05);
      transition: transform 8s ease-out;
    }
    .hero-bg.loaded { transform: scale(1); }

    /* Gold line decoration */
    .hero-line {
      position: absolute;
      left: 60px;
      top: 50%;
      width: 1px;
      height: 0;
      background: var(--gold);
      transform: translateY(-50%);
      transition: height 1.2s var(--ease-out-expo) 0.5s;
    }
    .hero-line.visible { height: 120px; }

    .hero-content {
      position: relative;
      padding: 0 60px 100px;
      max-width: 900px;
    }
    .hero-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s var(--ease-out-expo) 0.3s, transform 0.8s var(--ease-out-expo) 0.3s;
    }
    .hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(52px, 7vw, 96px);
      font-weight: 300;
      line-height: 0.95;
      color: var(--white);
      margin-bottom: 32px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s var(--ease-out-expo) 0.5s, transform 0.9s var(--ease-out-expo) 0.5s;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-title.visible { opacity: 1; transform: translateY(0); }

    .hero-subtitle {
      font-size: 14px;
      font-weight: 300;
      color: var(--text-muted);
      max-width: 480px;
      letter-spacing: 0.05em;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s var(--ease-out-expo) 0.7s, transform 0.8s var(--ease-out-expo) 0.7s;
    }
    .hero-subtitle.visible { opacity: 1; transform: translateY(0); }

    .hero-actions {
      margin-top: 40px;
      display: flex;
      gap: 20px;
      align-items: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s var(--ease-out-expo) 0.9s, transform 0.8s var(--ease-out-expo) 0.9s;
    }
    .hero-actions.visible { opacity: 1; transform: translateY(0); }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--black);
      text-decoration: none;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 14px 28px;
      cursor: none;
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: transform 0.3s var(--ease-out-expo);
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-light);
      transform: translateX(-105%);
      transition: transform 0.5s var(--ease-out-expo);
    }
    .btn-primary:hover { transform: translateY(-2px); }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-primary .arrow { position: relative; z-index: 1; font-size: 16px; transition: transform 0.3s; }
    .btn-primary:hover .arrow { transform: translateX(4px); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: none;
      transition: color 0.3s;
    }
    .btn-ghost:hover { color: var(--gold); }
    .btn-ghost .line {
      display: block;
      width: 28px; height: 1px;
      background: currentColor;
      transition: width 0.4s var(--ease-out-expo);
    }
    .btn-ghost:hover .line { width: 40px; }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 40px;
      right: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      transition: opacity 1s 1.5s;
    }
    .hero-scroll.visible { opacity: 1; }
    .hero-scroll span {
      font-size: 9px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-muted);
      writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.1); }
    }

    /* ─── STATS / ZAHLEN ───────────────────────────────────────── */
    #zahlen {
      background: var(--dark);
      padding: 80px 0;
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      overflow: hidden;
    }
    .zahlen-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(201,168,76,0.1);
    }
    .zahlen-item {
      background: var(--dark);
      padding: 48px 40px;
      position: relative;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    }
    .zahlen-item.visible { opacity: 1; transform: translateY(0); }
    .zahlen-item:nth-child(2) { transition-delay: 0.1s; }
    .zahlen-item:nth-child(3) { transition-delay: 0.2s; }
    .zahlen-item:nth-child(4) { transition-delay: 0.3s; }

    .zahlen-number {
      font-family: var(--font-display);
      font-size: clamp(48px, 5vw, 72px);
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .zahlen-suffix {
      font-size: 0.5em;
      font-weight: 300;
      vertical-align: super;
    }
    .zahlen-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .zahlen-line {
      position: absolute;
      bottom: 0; left: 40px;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.8s var(--ease-out-expo) 0.3s;
    }
    .zahlen-item.visible .zahlen-line { width: 40px; }

    /* ─── SECTIONS COMMON ──────────────────────────────────────── */
    section { position: relative; }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .section-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(36px, 4vw, 58px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
    }
    .section-heading em { font-style: italic; color: var(--gold); }
    .section-text {
      font-size: 14px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.9;
      max-width: 600px;
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ─── UNTERNEHMEN ──────────────────────────────────────────── */
    #unternehmen {
      padding: 120px 0;
      background: var(--black);
    }
    .unternehmen-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .unternehmen-image {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
    }
    .unternehmen-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.05);
      transition: transform 8s ease-out;
      filter: grayscale(30%) contrast(1.1);
    }
    .unternehmen-image:hover img { transform: scale(1); }
    .unternehmen-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
      z-index: 1;
    }
    .img-frame {
      position: absolute;
      top: -16px; right: -16px;
      width: calc(100% - 32px);
      height: calc(100% - 32px);
      border: 1px solid rgba(201,168,76,0.25);
      z-index: 0;
      pointer-events: none;
    }
    .unternehmen-content { padding-right: 20px; }
    .unternehmen-list {
      list-style: none;
      margin-top: 32px;
    }
    .unternehmen-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 13px;
      font-weight: 300;
      color: var(--text-muted);
    }
    .unternehmen-list li::before {
      content: '';
      display: block;
      width: 20px; height: 1px;
      background: var(--gold);
      margin-top: 10px;
      flex-shrink: 0;
    }

    /* ─── LEISTUNGEN ───────────────────────────────────────────── */
    #leistungen {
      padding: 120px 0;
      background: var(--dark);
    }
    .leistungen-header {
      margin-bottom: 64px;
    }
    .leistungen-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(201,168,76,0.08);
    }
    .leistung-card {
      background: var(--dark);
      padding: 56px 48px;
      position: relative;
      overflow: hidden;
      cursor: none;
      transition: background 0.4s;
    }
    .leistung-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.6s var(--ease-out-expo);
    }
    .leistung-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .leistung-card:hover { background: var(--dark2); }
    .leistung-card:hover::before { width: 100%; }
    .leistung-card:hover::after { opacity: 1; }
    .leistung-card:hover .leistung-icon { color: var(--gold-light); transform: translateY(-4px); }
    .leistung-card:hover .leistung-title { color: var(--gold); }

    .leistung-number {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: rgba(201,168,76,0.3);
      margin-bottom: 32px;
    }
    .leistung-icon {
      font-size: 32px;
      color: var(--gold);
      margin-bottom: 24px;
      display: block;
      transition: color 0.3s, transform 0.4s var(--ease-out-expo);
    }
    .leistung-title {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 16px;
      transition: color 0.3s;
    }
    .leistung-text {
      font-size: 13px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.9;
    }

    /* ─── IMMOBILIENANKAUF ─────────────────────────────────────── */
    #ankauf {
      padding: 120px 0;
      background: var(--black);
      overflow: hidden;
    }
    .ankauf-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .ankauf-content {}
    .ankauf-criteria {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .criterium {
      background: var(--dark);
      padding: 24px;
      border-left: 2px solid var(--gold);
      transition: background 0.3s, border-left-width 0.3s;
      cursor: none;
    }
    .criterium:hover {
      background: var(--dark2);
      border-left-width: 3px;
    }
    .criterium-title {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .criterium-text {
      font-size: 12px;
      font-weight: 300;
      color: var(--text-muted);
    }
    .ankauf-cta {
      margin-top: 48px;
    }
    .ankauf-email {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--gold);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.05em;
      text-decoration: none;
      border-bottom: 1px solid rgba(201,168,76,0.3);
      padding-bottom: 4px;
      margin-top: 16px;
      transition: color 0.3s, border-color 0.3s;
      cursor: none;
    }
    .ankauf-email:hover {
      color: var(--gold-light);
      border-color: var(--gold-light);
    }

    /* Floating building graphic */
    .ankauf-visual {
      position: relative;
      height: 500px;
    }
    .ankauf-img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: grayscale(20%) contrast(1.1);
      transition: filter 0.6s;
    }
    .ankauf-img:hover { filter: grayscale(0) contrast(1.05); }
    .ankauf-overlay {
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to top, var(--black), transparent);
    }
    .ankauf-badge {
      position: absolute;
      top: 32px; right: -16px;
      background: var(--gold);
      color: var(--black);
      padding: 20px 24px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-align: center;
      line-height: 1.4;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    }
    .ankauf-badge strong {
      display: block;
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 400;
      letter-spacing: 0;
    }

    /* ─── KONTAKT ──────────────────────────────────────────────── */
    #kontakt {
      padding: 120px 0;
      background: var(--dark);
    }
    .kontakt-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }
    .kontakt-info {}
    .kontakt-address {
      margin-top: 40px;
    }
    .kontakt-address-line {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 12px;
      font-size: 13px;
      font-weight: 300;
      color: var(--text-muted);
    }
    .kontakt-address-line .icon {
      color: var(--gold);
      margin-top: 1px;
      font-size: 14px;
      flex-shrink: 0;
    }
    .kontakt-links {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .kontakt-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.3s;
      cursor: none;
    }
    .kontakt-link:hover { color: var(--gold); }
    .kontakt-link .icon { color: var(--gold); font-size: 14px; }

    /* Form */
    .kontakt-form {}
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-group {
      position: relative;
      margin-bottom: 16px;
    }
    .form-group label {
      display: block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(201,168,76,0.3);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      padding: 14px 16px;
      outline: none;
      transition: border-color 0.3s, background 0.3s;
      cursor: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-bottom-color: var(--gold);
      background: rgba(201,168,76,0.03);
    }
    .form-group textarea { resize: none; min-height: 120px; }

    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin: 24px 0;
    }
    .form-checkbox input[type="checkbox"] {
      width: 18px; height: 18px;
      min-width: 18px;
      background: transparent;
      border: 1px solid var(--gold-dim);
      appearance: none;
      cursor: none;
      position: relative;
      padding: 0;
    }
    .form-checkbox input[type="checkbox"]:checked {
      background: var(--gold);
      border-color: var(--gold);
    }
    .form-checkbox input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      top: 2px; left: 5px;
      width: 5px; height: 9px;
      border: 1.5px solid var(--black);
      border-top: none;
      border-left: none;
      transform: rotate(45deg);
    }
    .form-checkbox label {
      font-size: 12px;
      font-weight: 300;
      color: var(--text-muted);
      cursor: none;
      margin: 0;
    }
    .form-checkbox a {
      color: var(--gold);
      text-decoration: none;
    }
    .form-checkbox a:hover { text-decoration: underline; }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 16px 36px;
      cursor: none;
      position: relative;
      overflow: hidden;
      transition: color 0.4s;
    }
    .btn-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: translateX(-105%);
      transition: transform 0.5s var(--ease-out-expo);
    }
    .btn-submit:hover { color: var(--black); }
    .btn-submit:hover::before { transform: translateX(0); }
    .btn-submit span { position: relative; z-index: 1; }

    .form-success {
      display: none;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 24px;
      text-align: center;
      font-size: 14px;
      color: var(--gold);
      margin-top: 16px;
    }
    .form-error {
      display: none;
      color: #e57373;
      font-size: 12px;
      margin-top: 8px;
    }

    /* ─── FOOTER ───────────────────────────────────────────────── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(201,168,76,0.12);
      padding: 48px 0;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }
    .footer-legal {
      font-size: 11px;
      font-weight: 300;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }
    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .footer-links a {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
      cursor: none;
    }
    .footer-links a:hover { color: var(--gold); }

    /* ─── DIVIDERS ─────────────────────────────────────────────── */
    .gold-divider {
      width: 48px; height: 1px;
      background: var(--gold);
      margin: 24px 0;
    }

    /* ─── RESPONSIVE ───────────────────────────────────────────── */
    @media (max-width: 1024px) {
      nav, nav.scrolled { padding-left: 32px; padding-right: 32px; }
      .section-inner { padding-left: 32px; padding-right: 32px; }
      .zahlen-grid { padding: 0 32px; }
      .hero-content { padding: 0 32px 80px; }
      .hero-scroll { right: 32px; }
      .hero-line { left: 32px; }
      .footer-inner { padding: 0 32px; }
      .unternehmen-layout, .ankauf-layout, .kontakt-layout { gap: 48px; }
    }

    @media (max-width: 768px) {
      body { cursor: auto; }
      .cursor, .cursor-ring { display: none; }
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      nav, nav.scrolled { padding: 20px 24px; }
      .section-inner { padding: 0 24px; }
      .zahlen-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px;
      }
      .unternehmen-layout,
      .ankauf-layout,
      .kontakt-layout { grid-template-columns: 1fr; gap: 40px; }
      .leistungen-grid { grid-template-columns: 1fr; }
      .hero-content { padding: 0 24px 80px; }
      .hero-scroll { display: none; }
      .hero-line { display: none; }
      .hero-title { font-size: 44px; }
      .ankauf-badge { right: 0; }
      .ankauf-criteria { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
      .img-frame { display: none; }
    }

    @media (max-width: 480px) {
      .zahlen-grid { grid-template-columns: 1fr; }
      .hero-title { font-size: 36px; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .leistung-card { padding: 36px 28px; }
      #unternehmen, #leistungen, #ankauf, #kontakt { padding: 80px 0; }
    }
