  :root {
    --navy: #1a2a4a;
    --blue: #2d5090;
    --gold: #e8a020;
    --gold-light: #f5c060;
    --white: #ffffff;
    --offwhite: #f8f6f2;
    --gray: #666;
    --dark: #111;
    --border: #e0dbd0;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--dark);
    background: var(--white);
    font-size: 17px;
    line-height: 1.7;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 48px;
    background: rgba(26,42,74,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--gold);
    transition: padding .3s;
  }
  .nav-logo img,
  .nav-logo .custom-logo { height: 52px; width: auto; display: block; }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--gold); }

  /* Burger button */
  .nav-burger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    width: 36px; height: 36px; cursor: pointer; gap: 5px;
    background: none; border: none; padding: 0;
  }
  .nav-burger span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px; transition: .3s;
  }
  .nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  #home {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center top;
    filter: brightness(.55);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(26,42,74,.85) 38%, rgba(26,42,74,.2) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 700px;
    padding: 0 64px;
    animation: fadeUp .9s ease both;
  }
  .hero-eyebrow {
    font-size: 13px; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900; line-height: 1.12;
    color: var(--white); margin-bottom: 28px;
  }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-sub {
    font-size: 18px; color: rgba(255,255,255,.82);
    max-width: 520px; margin-bottom: 44px; font-weight: 300;
  }
  .btn-primary {
    display: inline-block;
    background: var(--gold); color: var(--navy);
    font-weight: 700; font-size: 14px;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: background .2s, color .2s;
  }
  .btn-primary:hover { background: transparent; color: var(--gold-light); }
  .btn-secondary {
    display: inline-block;
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white); font-weight: 600; font-size: 14px;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none; margin-left: 16px;
    transition: border-color .2s, color .2s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

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

  /* ── SECTIONS ── */
  section { padding: 100px 0; }
  .container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
  .section-label {
    font-size: 12px; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700; line-height: 1.2;
    color: var(--navy); margin-bottom: 24px;
  }
  .divider {
    width: 56px; height: 3px;
    background: var(--gold); margin-bottom: 40px;
  }

  /* ── ÜBER MICH ── */
  #ueber { background: var(--offwhite); }
  .ueber-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .ueber-text p { color: #444; margin-bottom: 18px; }
  .stats-row { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
  .stat { border-left: 3px solid var(--gold); padding-left: 16px; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem; font-weight: 900; color: var(--navy); line-height: 1;
  }
  .stat-label { font-size: 13px; color: var(--gray); font-weight: 600; letter-spacing:.04em; }
  .standpunkt {
    background: var(--navy); padding: 44px;
    color: rgba(255,255,255,.88); border-top: 4px solid var(--gold);
  }
  .standpunkt h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; color: var(--gold); margin-bottom: 16px;
  }
  .standpunkt p { font-size: 15.5px; margin-bottom: 14px; line-height: 1.75; }

  /* ── LEISTUNGEN ── */
  #leistungen { background: var(--white); }
  .leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px; margin-top: 60px; border: 2px solid var(--border);
  }
  .leistung-card {
    padding: 44px 36px;
    border: 2px solid transparent;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    position: relative; overflow: hidden;
    background: var(--white);
  }
  .leistung-card::before {
    content:''; position: absolute; top:0; left:0; right:0;
    height: 4px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform .3s;
  }
  .leistung-card:hover {
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    transform: translateY(-4px);
  }
  .leistung-card:hover::before { transform: scaleX(1); }
  .leistung-icon {
    width: 52px; height: 52px; background: var(--navy);
    display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  }
  .leistung-icon svg { width: 26px; height: 26px; fill: var(--gold); }
  .leistung-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; color: var(--navy); margin-bottom: 14px;
  }
  .leistung-card p { font-size: 15px; color: #555; line-height: 1.7; }

  /* ── NACHFOLGE ── */
  #nachfolge { background: var(--navy); padding: 100px 0; }
  .nachfolge-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .nachfolge-inner .section-title { color: var(--white); }
  .nachfolge-inner .divider { background: var(--gold); }
  .nachfolge-inner p { color: rgba(255,255,255,.75); margin-bottom: 18px; }
  .quote-box {
    background: rgba(255,255,255,.06);
    border-left: 4px solid var(--gold);
    padding: 32px 36px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-style: italic;
    color: rgba(255,255,255,.9); line-height: 1.65;
  }
  .quote-box cite {
    display: block; margin-top: 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px; font-style: normal;
    font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gold);
  }

  /* ── KONTAKT ── */
  #kontakt { background: var(--offwhite); }
  .kontakt-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .kontakt-info p { color: #444; margin-bottom: 20px; }
  .kontakt-detail {
    display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
  }
  .kontakt-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
  }
  .kontakt-icon svg { width: 18px; height: 18px; fill: var(--gold); }
  .kontakt-detail span { font-size: 15px; color: #333; padding-top: 10px; }

  /* ── FORM ── */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .contact-form input,
  .contact-form textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid var(--border);
    background: var(--white);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px; color: var(--dark);
    outline: none; transition: border-color .2s;
    border-radius: 0;
  }
  .contact-form input:focus,
  .contact-form textarea:focus { border-color: var(--navy); }
  .contact-form textarea { height: 140px; resize: vertical; }
  .btn-dark {
    display: inline-block;
    background: var(--navy); color: var(--white);
    font-weight: 700; font-size: 14px;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 16px 40px; border: none; cursor: pointer;
    transition: background .2s, opacity .2s;
    font-family: 'Source Sans 3', sans-serif;
    align-self: flex-start;
  }
  .btn-dark:hover { background: var(--blue); }
  .btn-dark:disabled { opacity: .6; cursor: not-allowed; }

  /* ── FOOTER ── */
  footer { background: var(--dark); padding: 48px 0 32px; }
  .footer-inner {
    max-width: 1140px; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 32px; margin-bottom: 24px;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-logo img { height: 44px; width: auto; }
  .footer-text { color: rgba(255,255,255,.5); font-size: 13.5px; }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a {
    color: rgba(255,255,255,.55); font-size: 13px;
    text-decoration: none; transition: color .2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    text-align: center; color: rgba(255,255,255,.3);
    font-size: 12.5px;
    max-width: 1140px; margin: 0 auto; padding: 0 40px;
  }

  /* ── IMPRESSUM ── */
  .impressum-wrap { padding-top: 100px; }
  .impressum-content { max-width: 780px; }
  .impressum-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy); font-size: 2rem; margin-bottom: 12px;
  }
  .impressum-content h3 {
    font-size: 1rem; font-weight: 700; color: var(--navy);
    margin: 32px 0 8px; letter-spacing: .03em;
  }
  .impressum-content p,
  .impressum-content address {
    font-style: normal; color: #444; font-size: 15.5px; line-height: 1.8;
    margin-bottom: 8px;
  }
  .impressum-content a { color: var(--blue); }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    nav { padding: 12px 24px; }
    .nav-links {
      display: none; flex-direction: column; gap: 0;
      position: absolute; top: 100%; left: 0; right: 0;
      background: rgba(26,42,74,.98);
      padding: 16px 0; border-bottom: 2px solid var(--gold);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block; padding: 12px 24px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .nav-burger { display: flex; }
    .hero-content { padding: 0 28px; }
    .hero-sub { font-size: 16px; }
    .btn-secondary { margin-left: 0; margin-top: 12px; display: block; text-align: center; }
    .ueber-grid,
    .nachfolge-inner,
    .kontakt-grid { grid-template-columns: 1fr; gap: 44px; }
    .leistungen-grid { grid-template-columns: 1fr; }
    section { padding: 72px 0; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .stats-row { gap: 24px; }
  }
  @media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-content { padding: 0 20px; }
    .container { padding: 0 20px; }
    .leistung-card { padding: 32px 24px; }
    .standpunkt { padding: 32px 24px; }
    .quote-box { padding: 24px; font-size: 1.1rem; }
  }
