  /* ═══════════════════════════════════════════════
     DESIGN TOKENS
  ═══════════════════════════════════════════════ */
  :root {
    --gold:       #B8953F;
    --gold-light: #D4AE60;
    --gold-pale:  #EDE0C4;
    --olive:      #5C6B35;
    --olive-dark: #3D4825;
    --olive-mist: #E8EDD8;
    --midnight:   #1A2744;
    --midnight-2: #243356;
    --taupe:      #8B7D6B;
    --taupe-light:#C4B8A8;
    --offwhite:   #F5F2EC;
    --cream:      #FAF8F3;
    --cognac:     #7A3B1E;
    --dark:       #1C1C1C;
    --mid:        #555555;
    --border:     rgba(184,149,63,0.2);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed; width: 8px; height: 8px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.2s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed; width: 32px; height: 32px;
    border: 1px solid var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.35s var(--ease-out), width 0.35s, height 0.35s, border-color 0.3s;
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring {
    width: 52px; height: 52px; border-color: var(--olive);
  }

  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { cursor: none; font-family: var(--font-body); border: none; background: none; }

  /* Selection */
  ::selection { background: var(--gold-pale); color: var(--midnight); }

  /* ═══════════════════════════════════════════════
     TYPOGRAPHY
  ═══════════════════════════════════════════════ */
  .display-xl {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
  }
  .display-lg {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
  }
  .display-md {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
  }
  .display-sm {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.3;
  }
  .label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .body-lg { font-size: 1.1rem; line-height: 1.75; font-weight: 300; color: var(--mid); }
  .body-md { font-size: 0.95rem; line-height: 1.8; font-weight: 300; color: var(--mid); }

  /* ═══════════════════════════════════════════════
     LAYOUT UTILITIES
  ═══════════════════════════════════════════════ */
  .container { max-width: 1340px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5rem); }
  .container-sm { max-width: 820px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5rem); }

  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

  .gold-line {
    width: 60px; height: 1px;
    background: var(--gold);
    display: block;
    margin: 1.5rem 0;
  }

  /* ═══════════════════════════════════════════════
     NAVIGATION
  ═══════════════════════════════════════════════ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.8rem clamp(1.5rem, 5vw, 5rem);
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.6s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.4s;
  }
  .nav.scrolled {
    background: rgba(245,242,236,0.92);
    backdrop-filter: blur(12px);
    padding: 1.2rem clamp(1.5rem, 5vw, 5rem);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
  }
  .nav-logo:hover { opacity: 0.8; }
  .nav-logo-img {
    height: 34px;
    width: auto;
    display: block;
    transition: filter 0.4s;
  }

  .nav-links {
    display: flex; gap: 2.5rem; align-items: center;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.75);
    transition: color 0.3s;
    position: relative;
  }
  .nav.scrolled .nav-links a { color: var(--taupe); }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.35s var(--ease-out);
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

  .nav-cta {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 0.6rem 1.4rem;
    border-radius: 0;
    transition: background 0.3s, color 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold); color: var(--cream) !important; }
  .nav-cta::after { display: none !important; }

  .nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    padding: 4px;
  }
  .nav-toggle span {
    width: 26px; height: 1px;
    background: var(--offwhite);
    display: block; transition: all 0.4s;
  }
  .nav.scrolled .nav-toggle span { background: var(--midnight); }

  /* Mobile nav */
  .nav-mobile {
    position: fixed; inset: 0;
    background: var(--midnight);
    z-index: 999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2.5rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
  }
  .nav-mobile.open { opacity: 1; pointer-events: all; }
  .nav-mobile a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--offwhite);
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }
  .nav-mobile a:hover { color: var(--gold); }
  .nav-mobile .close-btn {
    position: absolute; top: 2rem; right: 2.5rem;
    font-size: 2rem; color: var(--taupe-light);
    background: none; border: none;
  }

  /* ═══════════════════════════════════════════════
     HERO
  ═══════════════════════════════════════════════ */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: flex-end;
    overflow: hidden;
    background: var(--midnight);
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(92,107,53,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 50% 70% at 20% 80%, rgba(184,149,63,0.12) 0%, transparent 50%),
      linear-gradient(160deg, #0d1520 0%, #1a2744 40%, #1f2d1a 100%);
  }

  /* Animated grain overlay */
  .hero-grain {
    position: absolute; inset: -200%;
    width: 400%; height: 400%;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px;
    animation: grain 0.8s steps(2) infinite;
  }
  @keyframes grain {
    0%,100% { transform: translate(0,0); }
    25% { transform: translate(-2%, -4%); }
    50% { transform: translate(-5%, 2%); }
    75% { transform: translate(3%, -1%); }
  }

  /* Decorative vertical lines */
  .hero-lines {
    position: absolute; inset: 0;
    pointer-events: none;
  }
  .hero-lines::before,
  .hero-lines::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(184,149,63,0.3), transparent);
  }
  .hero-lines::before { left: clamp(1.5rem, 5vw, 5rem); animation: lineReveal 1.8s var(--ease-out) forwards; }
  .hero-lines::after  { right: clamp(1.5rem, 5vw, 5rem); animation: lineReveal 2s var(--ease-out) forwards; }
  @keyframes lineReveal {
    from { transform: scaleY(0); transform-origin: top; }
    to   { transform: scaleY(1); transform-origin: top; }
  }

  /* Floating orb */
  .hero-orb {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(92,107,53,0.4), rgba(184,149,63,0.1) 50%, transparent 70%);
    top: -100px; right: -100px;
    animation: orbFloat 12s ease-in-out infinite alternate;
    pointer-events: none;
  }
  @keyframes orbFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-40px, 40px) scale(1.08); }
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 5vw, 5rem);
    width: 100%;
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
  }
  .hero-eyebrow .label { color: var(--gold); }
  .hero-eyebrow-line { flex: 1; max-width: 80px; height: 1px; background: var(--gold); opacity: 0.5; }

  .hero-headline {
    color: var(--offwhite);
    max-width: 800px;
    opacity: 0; animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold);
    display: block;
  }

  .hero-sub {
    margin-top: 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.45);
    opacity: 0; animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
  }

  .hero-actions {
    margin-top: 3rem;
    display: flex; gap: 1.2rem; align-items: center;
    flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.9s 0.9s var(--ease-out) forwards;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.8rem;
    background: var(--gold);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.1rem 2.4rem;
    border: 1px solid var(--gold);
    transition: background 0.35s, color 0.35s, transform 0.3s var(--ease-out);
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--olive-dark);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    z-index: 0;
  }
  .btn-primary:hover::before { transform: scaleX(1); }
  .btn-primary:hover { border-color: var(--olive-dark); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-primary .arrow { position: relative; z-index: 1; transition: transform 0.3s; }
  .btn-primary:hover .arrow { transform: translateX(5px); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.8rem;
    background: transparent;
    color: rgba(245,242,236,0.7);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.1rem 2.4rem;
    border: 1px solid rgba(245,242,236,0.25);
    transition: border-color 0.35s, color 0.35s;
  }
  .btn-ghost:hover { border-color: rgba(245,242,236,0.6); color: var(--offwhite); }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(245,242,236,0.35);
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: fadeIn 1.5s 1.5s both;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(184,149,63,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(0.6) translateY(5px); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* ═══════════════════════════════════════════════
     TRUST BAR
  ═══════════════════════════════════════════════ */
  .trust-bar {
    background: var(--midnight);
    border-top: 1px solid rgba(184,149,63,0.2);
    padding: 1.8rem 0;
    overflow: hidden;
  }
  .trust-inner {
    display: flex; gap: 4rem;
    align-items: center; justify-content: center;
    flex-wrap: wrap;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.8rem;
    white-space: nowrap;
  }
  .trust-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  .trust-item span {
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.5);
  }

  /* ═══════════════════════════════════════════════
     SECTION DEFAULTS
  ═══════════════════════════════════════════════ */
  section { position: relative; overflow: hidden; }

  .section-intro {
    padding: clamp(5rem, 10vw, 9rem) 0;
  }

  .section-eyebrow {
    display: flex; align-items: center; gap: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .section-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
  }
  .section-line { width: 40px; height: 1px; background: var(--border); }

  /* Scroll reveal */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .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; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ═══════════════════════════════════════════════
     ÜBER MICH / MISSION
  ═══════════════════════════════════════════════ */
  .about {
    background: var(--offwhite);
    padding: clamp(5rem, 10vw, 9rem) 0;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
  }
  .about-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
  }
  .about-image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 40%, var(--taupe) 100%);
    position: relative; overflow: hidden;
  }
  .about-image-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .about-image-placeholder .portrait-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 1rem;
    color: rgba(245,242,236,0.2);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .about-image-placeholder .portrait-icon svg {
    width: 80px; opacity: 0.15;
  }

  .about-frame-line {
    position: absolute;
    border: 1px solid var(--gold);
    opacity: 0.35;
  }
  .about-frame-line.tl { top: -14px; left: -14px; width: 80px; height: 80px; border-right: none; border-bottom: none; }
  .about-frame-line.br { bottom: -14px; right: -14px; width: 80px; height: 80px; border-left: none; border-top: none; }

  .about-tag {
    position: absolute; bottom: 2rem; left: -2rem;
    background: var(--gold);
    color: var(--cream);
    padding: 0.8rem 1.4rem;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  }

  .about-text { }
  .about-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    color: var(--olive);
    line-height: 1.4;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
  }
  .about-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .about-credentials {
    display: flex; flex-direction: column; gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  .credential-item {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.78rem; letter-spacing: 0.08em;
    color: var(--taupe);
  }
  .credential-item::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* ═══════════════════════════════════════════════
     LEISTUNGEN (Services)
  ═══════════════════════════════════════════════ */
  .services {
    background: var(--cream);
    padding: clamp(5rem, 10vw, 9rem) 0;
  }
  .services-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: var(--border);
  }
  .service-card {
    background: var(--cream);
    padding: clamp(2rem, 4vw, 3.5rem);
    position: relative; overflow: hidden;
    transition: background 0.4s;
    display: flex; flex-direction: column;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease-out);
  }
  .service-card:hover { background: var(--offwhite); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(92,107,53,0.08);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.4s;
  }
  .service-card:hover .service-num { color: rgba(184,149,63,0.12); }

  .service-icon {
    width: 36px; height: 36px;
    margin-bottom: 1.5rem;
    color: var(--olive);
  }
  .service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .service-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--taupe);
    font-weight: 300;
    flex: 1;
    margin-bottom: 2rem;
  }
  .service-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-bottom: 2rem;
  }
  .service-tag {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.25rem 0.65rem;
  }
  .service-link {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--olive);
    display: flex; align-items: center; gap: 0.6rem;
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
  }
  .service-link::after {
    content: '→';
    transition: transform 0.3s;
  }
  .service-card:hover .service-link { gap: 0.9rem; color: var(--gold); }

  /* ═══════════════════════════════════════════════
     PAIN TO GAIN
  ═══════════════════════════════════════════════ */
  .pain-gain {
    background: var(--midnight);
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
  }
  .pain-gain::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 50%, rgba(92,107,53,0.15) 0%, transparent 60%);
    pointer-events: none;
  }
  .pain-gain-header { margin-bottom: 4rem; }
  .pain-gain-header .label { color: var(--gold-light); }
  .pain-gain-header .display-md { color: var(--offwhite); }

  .pain-items {
    display: flex; flex-direction: column; gap: 0;
  }
  .pain-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem 0;
    transition: background 0.3s;
  }
  .pain-item:last-child { border-bottom: none; }
  .pain-item:hover { background: rgba(255,255,255,0.02); }

  .pain-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    color: rgba(245,242,236,0.5);
    line-height: 1.5;
    padding-right: 3rem;
  }
  .pain-arrow {
    width: 60px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .pain-arrow svg {
    width: 28px; color: var(--gold); opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
  }
  .pain-item:hover .pain-arrow svg { opacity: 1; transform: scale(1.2); }
  .gain-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(245,242,236,0.85);
    line-height: 1.5;
    padding-left: 3rem;
  }

  /* ═══════════════════════════════════════════════
     KULTUR SPECIAL (Coaching with Culture)
  ═══════════════════════════════════════════════ */
  .culture {
    background: var(--olive-dark);
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative; overflow: hidden;
  }
  .culture::before {
    content: 'KULTUR';
    position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 300;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.05em;
  }
  .culture-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
    position: relative; z-index: 1;
  }
  .culture-label { color: var(--gold-light); margin-bottom: 2rem; }
  .culture-title { color: var(--offwhite); margin-bottom: 1.5rem; }
  .culture-body {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245,242,236,0.65);
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .culture-locations {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-bottom: 2.5rem;
  }
  .culture-loc {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(184,149,63,0.3);
    padding: 0.4rem 0.9rem;
    background: rgba(184,149,63,0.05);
  }
  .culture-visual {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(184,149,63,0.15), rgba(92,107,53,0.2));
    border: 1px solid rgba(184,149,63,0.2);
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .culture-visual-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(184,149,63,0.2);
    text-align: center;
  }
  .culture-price-badge {
    position: absolute; top: 2rem; right: -1rem;
    background: var(--gold);
    color: var(--cream);
    padding: 1rem 1.5rem;
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  }
  .culture-price-badge strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0;
  }

  /* ═══════════════════════════════════════════════
     PREISE
  ═══════════════════════════════════════════════ */
  .pricing {
    background: var(--offwhite);
    padding: clamp(5rem, 10vw, 9rem) 0;
  }
  .pricing-intro { margin-bottom: clamp(3rem, 5vw, 5rem); }
  .pricing-intro .display-md { margin-bottom: 1rem; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: var(--border);
    margin-bottom: 3rem;
  }
  .price-card {
    background: var(--offwhite);
    padding: 2.5rem;
    transition: background 0.3s;
    position: relative;
  }
  .price-card.featured {
    background: var(--midnight);
  }
  .price-card:hover:not(.featured) { background: var(--cream); }
  .price-card.featured:hover { background: var(--midnight-2); }

  .price-card-eyebrow {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .price-card.featured .price-card-eyebrow { color: var(--gold-light); }
  .price-name {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 400;
    color: var(--midnight); margin-bottom: 0.5rem;
    line-height: 1.25;
  }
  .price-card.featured .price-name { color: var(--offwhite); }
  .price-duration {
    font-size: 0.75rem; color: var(--taupe-light); margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
  }
  .price-card.featured .price-duration { color: rgba(245,242,236,0.45); }
  .price-value {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 300;
    color: var(--gold); line-height: 1;
    margin-bottom: 0.3rem;
  }
  .price-vat {
    font-size: 0.65rem; letter-spacing: 0.1em;
    color: var(--taupe-light);
  }
  .price-card.featured .price-vat { color: rgba(245,242,236,0.35); }
  .price-divider {
    width: 40px; height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
  }
  .price-card.featured .price-divider { background: rgba(184,149,63,0.3); }
  .price-features {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .price-features li {
    font-size: 0.8rem; color: var(--taupe);
    display: flex; gap: 0.6rem; align-items: flex-start;
    line-height: 1.5;
  }
  .price-card.featured .price-features li { color: rgba(245,242,236,0.55); }
  .price-features li::before {
    content: '—';
    color: var(--gold); opacity: 0.6;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .pricing-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--taupe);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
  }

  /* ═══════════════════════════════════════════════
     TESTIMONIALS
  ═══════════════════════════════════════════════ */
  .testimonials {
    background: var(--cream);
    padding: clamp(5rem, 10vw, 9rem) 0;
    overflow: hidden;
  }
  .testimonials-header { margin-bottom: 3rem; }
  .testimonials-track {
    display: flex; gap: 2px;
    overflow: hidden;
    position: relative;
  }
  .testimonials-track::before,
  .testimonials-track::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 100px;
    z-index: 2;
    pointer-events: none;
  }
  .testimonials-track::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
  .testimonials-track::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

  .testimonials-slider {
    display: flex; gap: 2px;
    transition: transform 0.6s var(--ease-out);
    will-change: transform;
  }
  .testimonial-card {
    min-width: clamp(300px, 45vw, 540px);
    background: var(--offwhite);
    padding: clamp(2rem, 4vw, 3rem);
    flex-shrink: 0;
    position: relative;
  }
  .testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 6rem; line-height: 0.7;
    color: var(--gold); opacity: 0.15;
    margin-bottom: 1rem;
  }
  .testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-style: italic;
    color: var(--midnight);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 1rem;
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--olive-mist);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--olive);
  }
  .testimonial-meta {}
  .testimonial-name {
    font-size: 0.8rem; font-weight: 500;
    color: var(--midnight); letter-spacing: 0.05em;
  }
  .testimonial-role {
    font-size: 0.7rem; color: var(--taupe);
    letter-spacing: 0.08em;
  }

  .testimonials-nav {
    display: flex; gap: 0.8rem;
    margin-top: 2.5rem;
    justify-content: center;
  }
  .t-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    color: var(--taupe);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .t-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,149,63,0.05); }

  /* ═══════════════════════════════════════════════
     CTA SECTION
  ═══════════════════════════════════════════════ */
  .cta-section {
    background: var(--olive);
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(26,39,68,0.3), transparent);
  }
  .cta-inner {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 700px; margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
  }
  .cta-inner .label { color: var(--gold-pale); margin-bottom: 1.5rem; display: block; }
  .cta-inner .display-md { color: var(--offwhite); margin-bottom: 1rem; }
  .cta-sub {
    font-size: 0.9rem; color: rgba(245,242,236,0.65);
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 2.5rem;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 0.8rem;
    background: var(--gold);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1.3rem 3rem;
    border: 1px solid var(--gold);
    transition: background 0.35s, color 0.35s;
  }
  .cta-btn:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

  /* ═══════════════════════════════════════════════
     KONTAKT
  ═══════════════════════════════════════════════ */
  .contact {
    background: var(--cream);
    padding: clamp(5rem, 10vw, 9rem) 0;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: start;
  }
  .contact-info {}
  .contact-info .display-sm { margin-bottom: 1.5rem; color: var(--midnight); }
  .contact-body {
    font-size: 0.95rem; line-height: 1.85;
    color: var(--taupe); font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .contact-details { display: flex; flex-direction: column; gap: 1rem; }
  .contact-detail {
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .contact-detail-icon {
    width: 20px; color: var(--gold); flex-shrink: 0; margin-top: 0.1rem;
  }
  .contact-detail-text { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }
  .contact-detail-text strong { color: var(--midnight); display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.2rem; }

  .contact-form {}
  .form-group { margin-bottom: 1.5rem; }
  .form-label {
    display: block;
    font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--taupe);
    margin-bottom: 0.6rem;
  }
  .form-input,
  .form-textarea {
    width: 100%;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 0.9rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 300;
    color: var(--dark);
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    -webkit-appearance: none;
  }
  .form-input:focus,
  .form-textarea:focus {
    border-color: var(--olive);
    background: var(--cream);
  }
  .form-textarea { resize: none; height: 140px; }
  .form-submit {
    width: 100%;
    background: var(--midnight);
    color: var(--offwhite);
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1.2rem 2rem;
    border: 1px solid var(--midnight);
    transition: background 0.35s, border-color 0.35s;
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  }
  .form-submit:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
  .form-note { font-size: 0.72rem; color: var(--taupe-light); margin-top: 0.8rem; text-align: center; }

  /* ═══════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════ */
  .footer {
    background: var(--midnight);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(184,149,63,0.15);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.8rem;
    transition: opacity 0.3s;
  }
  .footer-brand .footer-logo:hover { opacity: 0.75; }
  .footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
  }
  .footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(245,242,236,0.35);
    margin-bottom: 1.5rem;
  }
  .footer-social {
    display: flex; gap: 1rem;
  }
  .footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(184,149,63,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,242,236,0.4);
    font-size: 0.7rem; letter-spacing: 0.05em;
    transition: border-color 0.3s, color 0.3s;
  }
  .footer-social a:hover { border-color: var(--gold); color: var(--gold); }

  .footer-col-title {
    font-size: 0.62rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.2rem;
  }
  .footer-links { display: flex; flex-direction: column; gap: 0.6rem; list-style: none; }
  .footer-links a {
    font-size: 0.82rem; color: rgba(245,242,236,0.45);
    transition: color 0.3s;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .footer-links a:hover { color: rgba(245,242,236,0.85); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy {
    font-size: 0.7rem; color: rgba(245,242,236,0.25);
    letter-spacing: 0.08em;
  }
  .footer-legal {
    display: flex; gap: 1.5rem;
    list-style: none;
  }
  .footer-legal a {
    font-size: 0.68rem; letter-spacing: 0.1em;
    color: rgba(245,242,236,0.25);
    transition: color 0.3s;
    text-transform: uppercase;
  }
  .footer-legal a:hover { color: var(--gold); }

  /* ═══════════════════════════════════════════════
     COOKIE BANNER
  ═══════════════════════════════════════════════ */
  .cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--midnight);
    border-top: 1px solid rgba(184,149,63,0.25);
    padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    flex-wrap: wrap; z-index: 500;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-text {
    font-size: 0.78rem; color: rgba(245,242,236,0.55);
    max-width: 600px; line-height: 1.6;
  }
  .cookie-text a { color: var(--gold); }
  .cookie-btn {
    background: var(--gold);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.75rem 1.8rem;
    border: none; white-space: nowrap;
    flex-shrink: 0;
  }
  .cookie-btn:hover { background: var(--gold-light); }

  /* ═══════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrap { max-width: 420px; }
    .culture-inner { grid-template-columns: 1fr; }
    .culture-visual { max-height: 400px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pain-item { grid-template-columns: 1fr; gap: 1rem; }
    .pain-arrow { transform: rotate(90deg); justify-content: flex-start; }
    .gain-text { padding-left: 0; }
    .pain-text { padding-right: 0; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .culture::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    .hero-scroll { display: none; }
  }
