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

    :root {
      --bg:          #FFFFFF;
      --bg-subtle:   #F2F5F7;
      --bg-mid:      #E3E9ED;
      --border:      #D6DEE3;
      --accent-pale: #B8C9D6;
      --accent-mid:  #6F8FA6;
      --accent:      #3F6E8C;
      --accent-dark: #2C4F66;
      --navy:        #0E1A22;
      --ink:         #111111;
      --ink-soft:    #2E3A42;
      --ink-muted:   #6B7C86;
      --white:       #FFFFFF;
      --font-serif:  'Cormorant Garamond', Georgia, serif;
      --font-sans:   'Albert Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-sans); color: var(--ink); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }

    /* ─── NOTFALL-BANNER ─────────────────────────────────── */
    .notfall-bar {
      background: var(--accent);
      color: rgba(255,255,255,0.92);
      text-align: center;
      padding: 10px 24px;
      font-size: 14px;
      letter-spacing: 0.04em;
    }
    .notfall-bar a { font-weight: 600; color: #fff; text-decoration: underline; text-underline-offset: 3px; }

    /* ─── HERO ───────────────────────────────────────────── */
    .hero-wrap {
      position: relative;
      width: 100%;
      height: 67vh; 
      min-height: 420px;
    }
    .hero-wrap > img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 40%;
      display: block;
      filter: saturate(85%) contrast(95%) brightness(95%);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom,
        rgba(63,110,140,0.10) 0%,
        rgba(63,110,140,0.05) 50%,
        rgba(14,26,34,0.70) 100%);
    }
    .hero-tagline {
      position: absolute; bottom: 64px; left: 50%;
      transform: translateX(-50%);
      text-align: center; color: #fff; white-space: nowrap;
    }
    .hero-tagline p {
      font-family: var(--font-serif);
      font-size: clamp(17px,2.5vw,30px);
      font-weight: 300; font-style: italic; letter-spacing: 0.05em;
      text-shadow: 0 1px 10px rgba(10,10,60,0.4);
    }
    .scroll-cue {
      position: absolute; bottom: 20px; left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.65);
      cursor: pointer; animation: bob 2.4s ease-in-out infinite;
    }
    .scroll-cue svg { width: 24px; height: 24px; }
    @keyframes bob {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(7px); }
    }

    /* ─── STICKY NAV ─────────────────────────────────────── */
    .main-nav {
      position: sticky; top: 0; z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 16px rgba(63,110,140,0.08);
      display: flex; align-items: center; justify-content: center;
      gap: 44px; height: 66px;
    }
    .main-nav a {
      font-family: var(--font-sans);
      font-size: 13px; font-weight: 600;
      letter-spacing: 0.20em; text-transform: uppercase;
      color: var(--ink-muted);
      padding: 3px 0; border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s;
    }
    .main-nav a:hover,
    .main-nav a.active { color: var(--accent); border-bottom-color: var(--accent); }

    /* ─── SECTION GRUNDLAYOUT ────────────────────────────── */
    section { padding: 100px 40px; }
    .inner { max-width: 1080px; margin: 0 auto; }
    .eyebrow {
      display: block;
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.26em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 16px;
    }
    .h2 {
      font-family: var(--font-serif);
      font-size: clamp(32px, 4.5vw, 54px);
      font-weight: 400; line-height: 1.13;
      color: var(--ink); margin-bottom: 28px;
    }
    .h2 em { font-style: italic; color: var(--accent); }
    .rule {
      width: 44px; height: 2px; background: var(--accent-mid);
      border: none; margin-bottom: 36px;
    }
    .body-text {
      font-size: 17px; font-weight: 300; line-height: 1.85;
      color: var(--ink-soft);
    }
    .body-text + .body-text { margin-top: 20px; }

    /* ─── PHILOSOPHIE ────────────────────────────────────── */
    #philosophie { background: var(--white); }
    .phil-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .phil-quote {
      background: var(--bg-subtle);
      border-left: 3px solid var(--accent-mid);
      padding: 28px 30px; margin-bottom: 36px;
      border-radius: 0 2px 2px 0;
    }
    .phil-quote p {
      font-family: var(--font-serif);
      font-size: 22px; font-style: italic; font-weight: 300;
      line-height: 1.55; color: var(--ink);
      margin-bottom: 10px;
    }
    .phil-quote cite {
      font-size: 13.5px; font-weight: 400; letter-spacing: 0.1em;
      color: var(--accent); font-style: normal;
    }
    .phil-photo { position: sticky; top: 90px; }
    .phil-photo .photo-box {
      width: 100%; height: 620px; border-radius: 2px;
      background: var(--bg-mid);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(14,26,34,0.10);
    }
    .phil-photo .photo-box img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: 60% bottom;
      display: block;
      filter: contrast(1.02) brightness(0.96) saturate(0.92);
    }

    /* ─── ÜBER MICH ──────────────────────────────────────── */
    #ueber-mich { background: var(--bg-subtle); }
    .bio-grid {
      display: grid; grid-template-columns: 300px 1fr;
      gap: 80px; align-items: start;
    }
    .bio-photo .photo-box {
      width: 100%; height: 400px; border-radius: 2px;
      background: var(--bg-mid);
      overflow: hidden; margin-bottom: 20px;
      display: flex; align-items: center; justify-content: center;
    }
    .bio-photo .photo-box img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
    .bio-photo-caption {
      font-size: 14px; letter-spacing: 0.06em;
      color: var(--ink-muted); text-align: center;
    }
    .bio-memberships {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }
    .bio-memberships h4 {
      font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
    }
    .bio-memberships li {
      font-size: 15px; font-weight: 300; color: var(--ink-muted);
      line-height: 1.7; list-style: none; padding-left: 14px; position: relative;
    }
    .bio-memberships li::before {
      content: '—'; position: absolute; left: 0; color: var(--accent-mid);
      font-size: 11px; top: 1px;
    }
    .cv-block { margin-bottom: 40px; }
    .cv-block h4 {
      font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
    }
    .cv-row {
      display: grid; grid-template-columns: 110px 1fr;
      gap: 12px; padding: 12px 0;
      border-bottom: 1px solid var(--border);
      align-items: baseline;
    }
    .cv-row:last-child { border-bottom: none; }
    .cv-year {
      font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
      color: var(--accent-mid); white-space: nowrap;
    }
    .cv-desc { font-size: 16px; font-weight: 300; line-height: 1.65; color: var(--ink-soft); }
    .cv-desc strong { font-weight: 500; color: var(--ink); }

    /* ─── ANGEBOT ────────────────────────────────────────── */
    #angebot { background: var(--white); }
    .angebot-lead { max-width: 640px; margin-bottom: 64px; }
    .angebot-cols {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; background: var(--border);
    }
    .angebot-card {
      background: var(--white); padding: 44px 40px;
      transition: background .2s;
    }
    .angebot-card:hover { background: var(--bg-subtle); }
    .angebot-card .card-icon {
      width: 36px; height: 36px;
      color: var(--accent);
      margin-bottom: 22px;
    }
    .angebot-card h3 {
      font-family: var(--font-serif);
      font-size: 24px; font-weight: 400; color: var(--ink);
      margin-bottom: 12px; line-height: 1.2;
    }
    .angebot-card .body-text { font-size: 15.5px; }
    .angebot-card .tag-list {
      display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
    }
    .tag {
      font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
      background: var(--bg-mid); color: var(--accent-dark);
      padding: 4px 12px; border-radius: 20px;
    }

    /* ─── KOSTEN ─────────────────────────────────────────── */
    #kosten { background: var(--bg-subtle); }
    .kosten-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .kosten-box {
      background: var(--white); padding: 36px;
      border-top: 3px solid var(--accent-mid);
      margin-top: 36px;
    }
    .kosten-box h4 {
      font-family: var(--font-serif); font-size: 22px; font-weight: 400;
      color: var(--ink); margin-bottom: 14px;
    }
    .kosten-box p { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }
    .kosten-notice {
      margin-top: 24px; padding: 18px 22px;
      background: var(--bg-mid); border-left: 3px solid var(--accent-mid);
      font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--ink-soft);
    }
    .kosten-notice strong { font-weight: 500; color: var(--ink); }

    /* ─── PRAXIS ─────────────────────────────────────────── */
    #praxis { background: var(--navy); }
    #praxis .eyebrow { color: var(--accent-mid); }
    #praxis .h2 { color: var(--white); }
    #praxis .h2 em { color: var(--accent-pale); }
    #praxis .rule { background: var(--accent); }
    .praxis-grid {
      display: grid;
      grid-template-columns: 1fr 2fr; 
      gap: 56px;
      margin-top: 60px;
    }
    .praxis-col h4 {
      font-size: 12px; font-weight: 600; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--accent-mid);
      margin-bottom: 20px;
    }
    .praxis-col p, .praxis-col address {
      font-style: normal; font-size: 16px;
      font-weight: 300; line-height: 1.9;
      color: rgba(255,255,255,0.62);
    }
    .praxis-col .hl { color: rgba(255,255,255,0.90); font-weight: 400; }
    .praxis-col .anreise-item {
      display: flex; gap: 10px; align-items: flex-start;
      margin-bottom: 10px;
    }
    .praxis-col .anreise-item svg {
      width: 16px; height: 16px; flex-shrink: 0;
      margin-top: 3px; color: var(--accent-mid);
    }
    .praxis-col .anreise-item span {
      font-size: 15.5px; font-weight: 300; color: rgba(255,255,255,0.62); line-height: 1.65;
    }
    .praxis-divider {
      margin: 60px 0 0;
      border: none; border-top: 1px solid rgba(255,255,255,0.08);
    }

    /* ─── PRAXIS FOTOGALERIE ─────────────────────────────── */
    .praxis-photos {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 4px; margin-top: 40px;
    }
    .praxis-photo-item {
      position: relative; overflow: hidden;
      height: 220px; background: var(--navy);
    }
    .praxis-photo-item img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
    }
    .praxis-photo-caption {
      position: absolute; bottom: 10px; left: 14px;
      font-family: var(--font-serif); font-style: italic;
      font-size: 11px; color: rgba(255,255,255,0.60);
      pointer-events: none;
    }

    /* ─── PRAXIS KARTE ───────────────────────────────────── */
    .praxis-map {
      position: relative; margin-top: 4px;
      height: 280px; overflow: hidden;
    }
    .praxis-map iframe {
      width: 100%; height: 280px; border: 0; display: block;
      filter: grayscale(82%) brightness(0.80) contrast(1.08) sepia(38%) hue-rotate(174deg);
    }
    .praxis-map-card {
      position: absolute; bottom: 0; left: 0;
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.10);
      border-right: 1px solid rgba(255,255,255,0.10);
      padding: 20px 28px 22px;
    }
    .praxis-map-label {
      font-size: 8.5px; font-weight: 600; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--accent-mid); margin-bottom: 8px;
    }
    .praxis-map-address {
      font-family: var(--font-serif); font-size: 20px; font-weight: 300;
      color: rgba(255,255,255,0.92); letter-spacing: 0.02em;
      line-height: 1.3; margin-bottom: 14px;
    }
    .praxis-map-address small {
      font-size: 15px; color: rgba(255,255,255,0.55);
    }
    .praxis-map-link {
      display: inline-block; font-size: 9px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--accent-mid);
      border-bottom: 1px solid rgba(111,143,166,0.45); padding-bottom: 2px;
    }

    /* ─── KONTAKT ────────────────────────────────────────── */
    #kontakt { background: var(--bg-subtle); }
    .kontakt-grid {
      display: grid; grid-template-columns: 1fr 1.1fr;
      gap: 80px; align-items: start;
    }
    .kontakt-notice {
      background: var(--bg-mid); border-left: 3px solid var(--accent-mid);
      padding: 18px 22px; margin-top: 32px; margin-bottom: 32px;
      font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ink-soft);
    }
    .kontakt-notice strong { font-weight: 500; color: var(--ink); }
    .kontakt-notice a { color: var(--accent); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
    .contact-item {
      display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px;
    }
    .contact-item .ci-icon {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--bg-mid); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
    }
    .contact-item .ci-icon svg { width: 16px; height: 16px; }
    .contact-item .ci-text strong {
      display: block; font-size: 12px; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 3px;
    }
    .contact-item .ci-text span { font-size: 16px; font-weight: 300; color: var(--ink-soft); }

    /* ─── KONTAKT CTA-SPALTE ─────────────────────────────── */
    .kontakt-cta-col { display: flex; flex-direction: column; gap: 28px; }
    .cta-label {
      font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
    }
    .cta-hint {
      font-size: 11.5px; color: var(--ink-muted);
      margin-top: 10px; font-weight: 300; line-height: 1.7;
    }
    .kontakt-divider { border: none; border-top: 1px solid var(--border); }

    /* ─── BUTTONS ────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 38px;
      font-family: var(--font-sans); font-size: 12px;
      font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
      border: 1.5px solid var(--accent); color: var(--accent);
      cursor: pointer; background: transparent;
      transition: background .22s, color .22s;
    }
    .btn:hover { background: var(--accent); color: var(--white); }
    .btn-filled { background: var(--accent); color: var(--white); }
    .btn-filled:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer {
      background: var(--navy); color: rgba(255,255,255,0.42);
      padding: 34px 40px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 16px;
    }
    footer .f-logo img {
      height: 32px; filter: brightness(0) invert(1); opacity: 0.65;
    }
    footer .f-copy { font-size: 13.5px; }
    footer .f-links { display: flex; gap: 24px; font-size: 13.5px; }
    footer .f-links a { transition: color .2s; }
    footer .f-links a:hover { color: var(--accent-mid); }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 960px) {
      section { padding: 72px 24px; }
      .phil-grid, .bio-grid, .kosten-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 44px; }
      .angebot-cols { grid-template-columns: 1fr; }
      .praxis-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 640px) {
      .main-nav { gap: 14px; flex-wrap: wrap; height: auto; padding: 12px 16px; justify-content: center; }
      .main-nav a { font-size: 12.5px; letter-spacing: 0.12em; }
      .praxis-grid { grid-template-columns: 1fr; }
      .praxis-photos { grid-template-columns: 1fr; }
      .hero-wrap { height: 68vh; }
      footer { flex-direction: column; text-align: center; }
      footer .f-links { justify-content: center; }
      .body-text { font-size: 17.5px; line-height: 1.9; }
      .eyebrow { font-size: 13px; }
      .notfall-bar { font-size: 14.5px; }
      .cv-year { font-size: 14.5px; }
      .cv-desc { font-size: 16.5px; line-height: 1.75; }
      .cv-row { grid-template-columns: 90px 1fr; gap: 10px; }
      .angebot-card h3 { font-size: 22px; }
      .angebot-card .body-text { font-size: 16.5px; }
      .kosten-box p { font-size: 17px; }
      .kosten-box h4 { font-size: 22px; }
      .phil-quote p { font-size: 20px; }
      .bio-photo-caption { font-size: 14.5px; }
      .contact-item .ci-text strong { font-size: 15.5px; }
      .praxis-col span, .praxis-col p { font-size: 16px; }
      .tag { font-size: 13px; }
      section { padding: 60px 20px; }
    }