:root {
    --ink: #1a1a18;
    --cream: #f5f2ec;
    --warm: #f0ebe0;
    --gold: #b8955a;
    --gold-light: #d4b07a;
    --teal: #89CCCA;
    --teal-d: #4A9B99;
    --teal-vd: #1F5E5C;
    --teal-light: #C8EAEA;
    --mauve: #B87A8A;
    --mauve-light: #F7EDEF;
    --mauve-d: #7A3A4A;
    --muted: #7a7870;
    --line: rgba(26,26,24,0.12);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-weight: 300; line-height: 1.6; overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 5vw; background: rgba(245,242,236,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
  .nav-logo { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; letter-spacing: .04em; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: .75rem; }
  .nav-logo-mark { display: flex; align-items: center; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; color: var(--muted); transition: color .25s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: .65rem 1.6rem; background: var(--ink); color: var(--cream); border: none; cursor: pointer; font-family: var(--sans); transition: background .25s, color .25s; text-decoration: none; }
  .nav-cta:hover { background: var(--gold); color: var(--ink); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
  .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); }

  /* HERO */
  #hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 80px; overflow: hidden; }
  .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 8vw 6vw 8vw 8vw; }
  .hero-tag { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: flex; align-items: center; gap: .75rem; }
  .hero-tag::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
  h1 { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 300; line-height: 1.06; letter-spacing: -.01em; margin-bottom: 2rem; }
  h1 em { font-style: italic; color: var(--gold); }
  .hero-desc { font-size: 1.05rem; line-height: 1.75; color: var(--muted); max-width: 42ch; margin-bottom: .75rem; }
  .hero-sub { font-size: .88rem; color: var(--muted); max-width: 40ch; margin-bottom: 3rem; padding-left: 1rem; border-left: 2px solid var(--teal); }
  .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .btn-primary { display: inline-flex; align-items: center; gap: .6rem; background: var(--ink); color: var(--cream); padding: 1rem 2.2rem; font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background .25s, color .25s, transform .2s; }
  .btn-primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
  .btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
  .btn-ghost { display: inline-flex; align-items: center; gap: .5rem; background: none; color: var(--ink); padding: 1rem 0; font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; border-bottom: 1px solid var(--ink); transition: color .25s, border-color .25s; }
  .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
  .hero-right { position: relative; overflow: hidden; background: var(--ink); }
  .hero-portrait-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, #2c2c28 0%, #1a1a18 60%, #2e2a20 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
  .hero-portrait-placeholder svg { opacity: .3; }
  .hero-portrait-placeholder p { font-family: var(--serif); font-size: 1rem; color: rgba(245,242,236,.3); font-style: italic; letter-spacing: .05em; }
  .hero-overlay-text { position: absolute; bottom: 3rem; left: -1px; background: var(--cream); padding: 1.5rem 2.5rem; max-width: 300px; border-top: 3px solid var(--teal); }
  .hero-overlay-text .quote { font-family: var(--serif); font-size: 1.05rem; font-style: italic; line-height: 1.55; color: var(--ink); margin-bottom: .5rem; }
  .hero-overlay-text .cite { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

  /* PAIN SECTION */
  #pain { padding: 7rem 0; background: var(--ink); color: var(--cream); }
  #pain .section-tag { color: var(--gold-light); }
  #pain .section-tag::before { background: var(--gold-light); }
  .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
  .pain-intro h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.18; color: var(--cream); }
  .pain-intro h2 em { font-style: italic; color: var(--gold); }
  .pain-intro p { font-size: .95rem; line-height: 1.8; color: rgba(245,242,236,.6); margin-top: 1.5rem; max-width: 44ch; }
  .pain-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .pain-item { padding: 1.4rem 0; border-bottom: 1px solid rgba(245,242,236,.08); display: flex; gap: 1.2rem; align-items: flex-start; }
  .pain-item:first-child { border-top: 1px solid rgba(245,242,236,.08); }
  .pain-icon { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); line-height: 1; flex-shrink: 0; margin-top: .1rem; }
  .pain-text strong { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--cream); margin-bottom: .25rem; }
  .pain-text span { font-size: .85rem; color: rgba(245,242,236,.55); line-height: 1.6; }

  /* SECTIONS */
  section { position: relative; }
  .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 8vw; }
  .section-tag { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .75rem; }
  .section-tag::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold); }
  h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.15; letter-spacing: -.01em; }
  h2 em { font-style: italic; color: var(--gold); }

  /* ÜBER */
  #ueber { padding: 8rem 0; background: var(--warm); }
  .ueber-grid { display: grid; grid-template-columns: 1.15fr 1.35fr; gap: 5rem; align-items: center; }
  .ueber-visual { position: relative; padding-bottom: 3rem; }
  .ueber-photo { width: 100%; aspect-ratio: 3/4; background: var(--ink); display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .ueber-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(180deg, #252520 0%, #1a1a18 100%); display: flex; align-items: center; justify-content: center; }
  .ueber-photo-placeholder svg { opacity: .2; }
  .ueber-accent { position: absolute; top: -1.5rem; left: -1.5rem; width: 60%; aspect-ratio: 1; border: 1px solid var(--gold-light); z-index: -1; opacity: .4; }
  .stat-block { position: absolute; bottom: 0; right: -2rem; left: 1rem; background: var(--cream); padding: 1.2rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; border-left: 3px solid var(--gold); }
  .stat .num { font-family: var(--serif); font-size: 2rem; font-weight: 300; line-height: 1; color: var(--gold); }
  .stat .label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
  .ueber-content h2 { margin-bottom: 1.5rem; }
  .ueber-content p { font-size: .95rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.2rem; max-width: 52ch; }
  .expertise-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin: 2rem 0; }
  .pill { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: .45rem 1rem; border: 1px solid var(--line); color: var(--muted); transition: border-color .25s, color .25s; }
  .pill:hover { border-color: var(--gold); color: var(--gold); }

  /* LEISTUNGEN */
  #leistungen { padding: 8rem 0; background: var(--cream); }
  .leistungen-header { margin-bottom: 4rem; }
  .leistungen-header h2 { max-width: 22ch; margin: .5rem 0 1rem; }
  .leistungen-header p { color: var(--muted); font-size: .95rem; max-width: 52ch; }
  .leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
  .leistung-card { background: var(--cream); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: background .3s; }
  .leistung-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
  .leistung-card:hover::after { transform: scaleX(1); }
  .leistung-card:hover { background: var(--warm); }
  .leistung-icon { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; color: var(--gold); }
  .leistung-num { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: rgba(26,26,24,.06); line-height: 1; position: absolute; top: 1.5rem; right: 2rem; }
  .leistung-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; line-height: 1.25; }
  .leistung-card p { font-size: .88rem; line-height: 1.75; color: var(--muted); }
  .leistung-card .tag-list { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem; }
  .leistung-card .tag { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; background: rgba(184,149,90,.1); color: var(--gold); }

  /* ERGEBNIS-SECTION */
  #ergebnisse { padding: 8rem 0; background: var(--warm); }
  .ergebnis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; }
  .ergebnis-card { }
  .ergebnis-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: .75rem; }
  .ergebnis-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: .6rem; line-height: 1.3; }
  .ergebnis-card p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
  .ergebnis-divider { width: 2rem; height: 1px; background: var(--teal); margin-bottom: 1.2rem; }

  /* WEBINARE */
  #webinare { padding: 8rem 0; background: var(--cream); }
  .webinare-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1rem; }
  .webinar-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); }
  .webinar-item { background: var(--cream); display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 2rem; padding: 2rem 2.5rem; transition: background .25s; cursor: pointer; text-decoration: none; color: inherit; }
  .webinar-item:hover { background: var(--ink); color: var(--cream); }
  .webinar-item:hover .webinar-date-box { border-color: var(--teal); }
  .webinar-item:hover .webinar-date-box .month { color: var(--teal-light); }
  .webinar-item:hover .webinar-meta { color: rgba(245,242,236,.5); }
  .webinar-item:hover .webinar-cta { color: var(--teal); }
  .webinar-item:hover .tag-teal { background: rgba(137,204,202,.2); color: var(--teal-light); }
  .webinar-date-box { text-align: center; border: 1px solid var(--line); padding: .75rem; }
  .webinar-date-box .day { font-family: var(--serif); font-size: 2rem; font-weight: 300; line-height: 1; }
  .webinar-date-box .month { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: .2rem; }
  .webinar-info h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: .35rem; }
  .webinar-meta { font-size: .78rem; color: var(--muted); display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .webinar-meta span { display: flex; align-items: center; gap: .3rem; }
  .webinar-cta { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); white-space: nowrap; display: flex; align-items: center; gap: .4rem; }
  .tag-teal { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .7rem; background: rgba(137,204,202,.12); color: var(--teal-vd); border-radius: 2px; }

  /* BLOG */
  #blog { padding: 8rem 0; background: var(--warm); }
  .blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1rem; }
  .blog-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2px; background: var(--line); }
  .blog-card { background: var(--cream); overflow: hidden; }
  .blog-img-wrap { overflow: hidden; aspect-ratio: 16/9; background: var(--ink); }
  .blog-card:first-child .blog-img-wrap { aspect-ratio: 4/3; }
  .blog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #252520 0%, #1a1a18 100%); font-family: var(--serif); font-size: 3rem; color: rgba(245,242,236,.07); font-style: italic; }
  .blog-body { padding: 2rem; }
  .blog-cat { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-d); margin-bottom: .75rem; }
  .blog-body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; line-height: 1.3; margin-bottom: .75rem; }
  .blog-card:first-child .blog-body h3 { font-size: 1.7rem; }
  .blog-body p { font-size: .85rem; line-height: 1.65; color: var(--muted); }
  .blog-footer { padding: 1rem 2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }
  .blog-date { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
  .blog-read { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: .3rem; transition: color .25s; }
  .blog-read:hover { color: var(--gold); }

  /* CTA */
  #cta { padding: 10rem 0; background: var(--ink); text-align: center; position: relative; overflow: hidden; }
  .cta-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(184,149,90,.1) 0%, transparent 70%); pointer-events: none; }
  #cta .section-tag { justify-content: center; color: var(--gold-light); }
  #cta .section-tag::before { display: none; }
  #cta h2 { color: var(--cream); margin: 1.2rem auto 1.5rem; max-width: 20ch; }
  #cta h2 em { color: var(--gold); }
  #cta p { color: rgba(245,242,236,.55); font-size: .95rem; max-width: 46ch; margin: 0 auto 3rem; line-height: 1.8; }
  .btn-large { display: inline-flex; align-items: center; gap: .8rem; background: var(--gold); color: var(--ink); padding: 1.15rem 3rem; font-family: var(--sans); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background .25s, transform .2s; font-weight: 400; }
  .btn-large:hover { background: var(--gold-light); transform: translateY(-3px); }

  /* FOOTER */
  footer { background: #111110; color: rgba(245,242,236,.5); padding: 4rem 8vw 2.5rem; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand .logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--cream); margin-bottom: 1rem; display: block; }
  .footer-brand .logo span { color: var(--gold); }
  .footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 28ch; }
  footer h5 { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.2rem; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: .6rem; }
  footer ul a { font-size: .82rem; color: rgba(245,242,236,.45); text-decoration: none; transition: color .2s; }
  footer ul a:hover { color: var(--teal); }
  .footer-bottom { border-top: 1px solid rgba(245,242,236,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .72rem; }

  /* MODAL */
  .modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(26,26,24,.7); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 2rem; }
  .modal-overlay.open { display: flex; }
  .modal { background: var(--cream); max-width: 520px; width: 100%; padding: 3.5rem; position: relative; animation: modalIn .3s ease; }
  @keyframes modalIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform:none; } }
  .modal-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1; }
  .modal-close:hover { color: var(--ink); }
  .modal h3 { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin-bottom: .75rem; }
  .modal p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; }
  .form-field { margin-bottom: 1.2rem; }
  .form-field label { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
  .form-field input, .form-field select { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); background: var(--warm); font-family: var(--sans); font-size: .88rem; color: var(--ink); outline: none; transition: border-color .25s; appearance: none; }
  .form-field input:focus, .form-field select:focus { border-color: var(--teal); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-submit { width: 100%; padding: 1rem; background: var(--ink); color: var(--cream); border: none; font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .25s; margin-top: .5rem; }
  .form-submit:hover { background: var(--gold); color: var(--ink); }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .leistungen-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .ueber-grid { grid-template-columns: 1fr; gap: 4rem; }
    .ueber-visual { max-width: 400px; }
    .stat-block { position: static; margin-top: 2rem; }
    .ueber-accent { display: none; }
    .pain-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ergebnis-grid { grid-template-columns: 1fr 1fr; }
    #referenzen .ref-grid { grid-template-columns: repeat(3,1fr) !important; }
  }
  @media (max-width: 768px) {
    #hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 6rem 8vw 5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .leistungen-grid { grid-template-columns: 1fr; }
    .webinar-item { grid-template-columns: 80px 1fr; }
    .webinar-cta { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
    .modal { padding: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .ergebnis-grid { grid-template-columns: 1fr; }
    #referenzen .ref-grid { grid-template-columns: repeat(2,1fr) !important; }
  }