   /* ── CSS-Variablen ── */
   :root {
       --beige: #f5f0e8;
       --beige-mid: #ede5d5;
       --beige-dark: #c9b99a;
       --blue-light: #b8d8e8;
       --blue-mid: #7fb5cf;
       --blue-deep: #4a8aab;
       --text-dark: #2c2c2c;
       --text-mid: #555;
       --white: #ffffff;
       --radius: 12px;
       --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }

   /* ── Reset & Base ── */
   *,
   *::before,
   *::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   }

   html {
       scroll-behavior: smooth;
   }

   body {
       font-family: 'Jost', sans-serif;
       background: var(--beige);
       color: var(--text-dark);
       line-height: 1.7;
       font-weight: 300;
   }

   img {
       max-width: 100%;
       display: block;
   }

   a {
       color: inherit;
       text-decoration: none;
   }

   /* ── NAVIGATION ── */
   nav {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       z-index: 100;
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 1.2rem 3rem;

       background: rgba(245, 240, 232, 0.2);
       background: rgba(245, 240, 232, 0.08);
       backdrop-filter: blur(6px);
       -webkit-backdrop-filter: blur(6px);
       transition: all 0.4s ease;
   }

   nav.scrolled {
       background: rgba(245, 240, 232, 0.85);
       backdrop-filter: blur(16px);
       -webkit-backdrop-filter: blur(16px);
       box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
   }

   .nav-logo {
       font-family: 'Cormorant Garamond', serif;
       font-size: 1.35rem;
       font-weight: 600;
       letter-spacing: 0.02em;
       color: var(--blue-deep);
   }

   .nav-links {
       display: flex;
       list-style: none;
       gap: 2.2rem;
   }

   .nav-links a {
       font-size: 0.82rem;
       font-weight: 400;
       letter-spacing: 0.08em;
       text-transform: uppercase;
       color: var(--text-mid);
       position: relative;
       transition: color var(--transition);
   }

   .nav-links a::after {
       content: '';
       position: absolute;
       bottom: -4px;
       left: 0;
       width: 0;
       height: 1.5px;
       background: var(--blue-mid);
       transition: width var(--transition);
   }

   .nav-links a:hover {
       color: var(--blue-deep);
   }

   .nav-links a:hover::after {
       width: 100%;
   }

   /* Hamburger */
   .hamburger {
       display: none;
       flex-direction: column;
       gap: 5px;
       cursor: pointer;
       padding: 4px;
       background: none;
       border: none;
   }

   .hamburger span {
       display: block;
       width: 24px;
       height: 2px;
       background: var(--blue-deep);
       border-radius: 2px;
       transition: var(--transition);
   }

   .hamburger.open span:nth-child(1) {
       transform: translateY(7px) rotate(45deg);
   }

   .hamburger.open span:nth-child(2) {
       opacity: 0;
   }

   .hamburger.open span:nth-child(3) {
       transform: translateY(-7px) rotate(-45deg);
   }

   /* Mobile menu */
   .mobile-menu {
       display: none;
       position: fixed;
       top: 65px;
       left: 0;
       right: 0;
       background: var(--beige);
       border-bottom: 1px solid var(--beige-mid);
       padding: 1.5rem 2rem;
       z-index: 99;
       flex-direction: column;
       gap: 1.2rem;
   }

   .mobile-menu.open {
       display: flex;
   }

   .mobile-menu a {
       font-size: 0.9rem;
       font-weight: 400;
       letter-spacing: 0.06em;
       text-transform: uppercase;
       color: var(--text-mid);
       padding: 0.5rem 0;
       border-bottom: 1px solid var(--beige-mid);
   }

   /* ── HERO ── */
   .hero {
       min-height: 100vh;
       display: grid;
       grid-template-columns: 1fr 1fr;
       position: relative;
       overflow: hidden;
   }

   .hero-left {
       background: var(--blue-light);
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 8rem 4rem 4rem;
       position: relative;
   }

   .hero-left::after {
       content: '';
       position: absolute;
       right: -40px;
       top: 0;
       bottom: 0;
       width: 80px;
       background: var(--blue-light);
       clip-path: polygon(0 0, 0 100%, 100% 50%);
       z-index: 2;
   }

   .hero-text {
       max-width: 480px;
   }

   .hero-eyebrow {
       font-size: 0.75rem;
       font-weight: 500;
       letter-spacing: 0.18em;
       text-transform: uppercase;
       color: var(--blue-deep);
       margin-bottom: 1.2rem;
       opacity: 0;
       animation: fadeUp 0.8s 0.2s forwards;
   }

   .hero-title {
       font-family: 'Cormorant Garamond', serif;
       font-size: clamp(2.8rem, 5vw, 4.2rem);
       font-weight: 300;
       line-height: 1.15;
       color: var(--text-dark);
       margin-bottom: 1.6rem;
       opacity: 0;
       animation: fadeUp 0.8s 0.4s forwards;
   }

   .hero-title em {
       font-style: italic;
       color: var(--blue-deep);
   }

   .hero-desc {
       font-size: 1rem;
       color: var(--text-mid);
       max-width: 380px;
       margin-bottom: 2.4rem;
       opacity: 0;
       animation: fadeUp 0.8s 0.6s forwards;
   }

   .hero-cta-group {
       display: flex;
       gap: 1rem;
       flex-wrap: wrap;
       opacity: 0;
       animation: fadeUp 0.8s 0.8s forwards;
   }

   .btn-primary {
       display: inline-block;
       padding: 0.85rem 2rem;
       background: var(--blue-deep);
       color: var(--white);
       border-radius: 50px;
       font-size: 0.85rem;
       font-weight: 400;
       letter-spacing: 0.06em;
       transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
   }

   .btn-primary:hover {
       background: var(--blue-mid);
       transform: translateY(-2px);
       box-shadow: 0 8px 24px rgba(74, 138, 171, 0.3);
   }

   .btn-outline {
       display: inline-block;
       padding: 0.85rem 2rem;
       border: 1.5px solid var(--blue-deep);
       color: var(--blue-deep);
       border-radius: 50px;
       font-size: 0.85rem;
       font-weight: 400;
       letter-spacing: 0.06em;
       transition: all var(--transition);
   }

   .btn-outline:hover {
       background: var(--blue-deep);
       color: var(--white);
       transform: translateY(-2px);
   }

   .hero-right {
       background: var(--beige);
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 8rem 3rem 4rem 5rem;
       position: relative;
   }

   .hero-image-wrap {
       position: relative;
       opacity: 0;
       animation: fadeIn 1s 0.5s forwards;
   }

   .hero-image-wrap img {
       width: 100%;
       max-width: 340px;
       height: auto;
       object-fit: cover;
       border-radius: 200px 200px 120px 120px;
       box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
   }

   .hero-badge {
       position: absolute;
       bottom: -18px;
       right: -18px;
       background: var(--white);
       border: 2px solid var(--blue-light);
       border-radius: 50%;
       width: 130px;
       height: 130px;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       text-align: center;
       padding: 1rem;
       box-shadow: 0 8px 24px rgba(74, 138, 171, 0.2);
   }

   .hero-badge strong {
       font-family: 'Cormorant Garamond', serif;
       font-size: 1.6rem;
       color: var(--blue-deep);
       line-height: 1;
   }

   .hero-badge span {
       font-size: 0.6rem;
       letter-spacing: 0.06em;
       text-transform: uppercase;
       color: var(--text-mid);
       margin-top: 4px;
   }

   /* Dekorative Blase */
   .hero-blob {
       position: absolute;
       top: 10%;
       right: 8%;
       width: 260px;
       height: 260px;
       background: radial-gradient(circle, rgba(184, 216, 232, 0.4) 0%, transparent 70%);
       border-radius: 50%;
       pointer-events: none;
   }

   /* ── SECTION GEMEINSAM ── */
   section {
       padding: 6rem 3rem;
   }

   .container {
       max-width: 1100px;
       margin: 0 auto;
   }

   .section-label {
       font-size: 0.72rem;
       font-weight: 500;
       letter-spacing: 0.2em;
       text-transform: uppercase;
       color: var(--blue-mid);
       margin-bottom: 0.8rem;
   }

   .section-title {
       font-family: 'Cormorant Garamond', serif;
       font-size: clamp(2rem, 3.5vw, 3rem);
       font-weight: 300;
       line-height: 1.2;
       color: var(--text-dark);
       margin-bottom: 1.2rem;
   }

   .section-title em {
       font-style: italic;
       color: var(--blue-deep);
   }

   /* ── ANGEBOT / CARDS ── */
   .angebot-bg {
       background: var(--beige-mid);
   }

   .cards-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 1.8rem;
       margin-top: 3rem;
   }

   .card {
       background: var(--white);
       border-radius: var(--radius);
       padding: 2.2rem 2rem;
       border: 1px solid var(--beige-mid);
       transition: transform var(--transition), box-shadow var(--transition);
       cursor: default;
   }

   .card:hover {
       transform: translateY(-6px);
       box-shadow: 0 16px 48px rgba(74, 138, 171, 0.14);
   }

   .card-icon {
       width: 52px;
       height: 52px;
       border-radius: 50%;
       background: var(--blue-light);
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 1.4rem;
       font-size: 1.4rem;
   }

   .card h3 {
       font-family: 'Cormorant Garamond', serif;
       font-size: 1.35rem;
       font-weight: 600;
       color: var(--text-dark);
       margin-bottom: 0.7rem;
   }

   .card p {
       font-size: 0.92rem;
       color: var(--text-mid);
       line-height: 1.7;
   }

   /* ── ÜBER MICH ── */
   .ueber-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 5rem;
       align-items: center;
       margin-top: 2rem;
   }

   .ueber-image-wrap {
       position: relative;
   }

   .ueber-image-wrap img {
       width: 100%;
       border-radius: var(--radius);
       box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
   }

   .ueber-deco {
       position: absolute;
       top: -20px;
       left: -20px;
       width: 80%;
       height: 80%;
       border: 2px solid var(--blue-light);
       border-radius: var(--radius);
       z-index: -1;
   }

   .ueber-text p {
       color: var(--text-mid);
       font-size: 0.97rem;
       margin-bottom: 1rem;
   }

   .ueber-qualif {
       margin-top: 2rem;
       display: flex;
       flex-direction: column;
       gap: 0.7rem;
   }

   .qualif-item {
       display: flex;
       align-items: flex-start;
       gap: 0.8rem;
       font-size: 0.88rem;
       color: var(--text-mid);
   }

   .qualif-dot {
       width: 8px;
       height: 8px;
       min-width: 8px;
       border-radius: 50%;
       background: var(--blue-mid);
       margin-top: 6px;
   }

   /* ── HALTUNG / TABS ── */
   .haltung-bg {
       background: var(--blue-light);
   }

   .tabs {
       display: flex;
       gap: 0.5rem;
       margin: 2rem 0 2.5rem;
       flex-wrap: wrap;
   }

   .tab-btn {
       padding: 0.6rem 1.5rem;
       border: 1.5px solid var(--blue-mid);
       border-radius: 50px;
       background: transparent;
       color: var(--blue-deep);
       font-family: 'Jost', sans-serif;
       font-size: 0.83rem;
       font-weight: 400;
       cursor: pointer;
       transition: all var(--transition);
   }

   .tab-btn.active,
   .tab-btn:hover {
       background: var(--blue-deep);
       border-color: var(--blue-deep);
       color: var(--white);
   }

   .tab-panel {
       display: none;
   }

   .tab-panel.active {
       display: block;
       animation: fadeIn 0.4s;
   }

   .tab-panel p {
       color: var(--text-mid);
       font-size: 0.97rem;
       max-width: 720px;
   }

   /* ── KOSTEN ── */
   .kosten-cards {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       margin-top: 3rem;
   }

   .kosten-card {
       background: var(--white);
       border-radius: var(--radius);
       padding: 2.2rem 2rem;
       border: 1px solid var(--beige-mid);
       position: relative;
       overflow: hidden;
   }

   .kosten-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 4px;
       background: linear-gradient(90deg, var(--blue-light), var(--blue-deep));
   }

   .kosten-card h3 {
       font-family: 'Cormorant Garamond', serif;
       font-size: 1.35rem;
       font-weight: 600;
       margin-bottom: 0.5rem;
   }

   .kosten-preis {
       font-size: 2rem;
       font-family: 'Cormorant Garamond', serif;
       color: var(--blue-deep);
       font-weight: 300;
       margin-bottom: 0.5rem;
   }

   .kosten-card p {
       font-size: 0.88rem;
       color: var(--text-mid);
   }

   .kosten-hinweis {
       margin-top: 2rem;
       padding: 1.4rem 1.8rem;
       background: var(--beige-mid);
       border-radius: var(--radius);
       font-size: 0.88rem;
       color: var(--text-mid);
       border-left: 3px solid var(--blue-mid);
   }

   /* ═══════════════════════════════════════════════════════════
   WERDEGANG — Berufliche Tätigkeiten & Weiterbildung
   Einfügen ans ENDE deiner style.css (vor dem letzten })
   ═══════════════════════════════════════════════════════════ */

   /* ── Hintergrund ── */
   .werdegang-bg {
       background: var(--beige);
       position: relative;
       overflow: hidden;
   }

   /* Dezentes geometrisches Hintergrundmuster */
   .werdegang-bg::before {
       content: '';
       position: absolute;
       inset: 0;
       background-image:
           radial-gradient(circle at 15% 20%, rgba(184, 216, 232, 0.18) 0%, transparent 50%),
           radial-gradient(circle at 85% 75%, rgba(127, 181, 207, 0.12) 0%, transparent 45%);
       pointer-events: none;
   }

   /* ── Zwei-Spalten-Layout ── */
   .werdegang-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
       margin-top: 3.5rem;
       position: relative;
   }

   /* Mittellinie zwischen den Spalten */
   .werdegang-grid::before {
       content: '';
       position: absolute;
       top: 80px;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 1px;
       background: linear-gradient(to bottom,
               transparent,
               var(--blue-light) 10%,
               var(--blue-light) 90%,
               transparent);
   }

   /* ── Spalten-Header ── */
   .werdegang-col-header {
       display: flex;
       align-items: center;
       gap: 0.9rem;
       margin-bottom: 2rem;
       padding-bottom: 1rem;
       border-bottom: 1.5px solid var(--blue-light);
   }


   .werdegang-col-header h3 {
       font-family: 'Cormorant Garamond', serif;
       font-size: 1.5rem;
       font-weight: 600;
       color: var(--text-dark);
   }

   /* ── TIMELINE ── */
   .timeline {
       position: relative;
       padding-left: 1.6rem;
   }

   /* Vertikale Linie */
   .timeline::before {
       content: '';
       position: absolute;
       top: 6px;
       bottom: 0;
       left: 6px;
       width: 2px;
       background: linear-gradient(to bottom,
               var(--blue-mid),
               var(--blue-light) 80%,
               transparent);
       border-radius: 2px;
   }

   /* ── Timeline-Item ── */
   .tl-item {
       display: flex;
       gap: 1.1rem;
       position: relative;
       padding-bottom: 1.8rem;
   }

   .tl-item--last {
       padding-bottom: 0;
   }

   /* Punkt */
   .tl-dot {
       width: 14px;
       height: 14px;
       min-width: 14px;
       border-radius: 50%;
       background: var(--white);
       border: 2.5px solid var(--blue-mid);
       margin-top: 4px;
       position: relative;
       left: -1.65rem;
       flex-shrink: 0;
       transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
       z-index: 1;
   }

   /* Edu-Variante (Weiterbildung) */
   .tl-dot--edu {
       border-color: var(--blue-deep);
       background: var(--blue-light);
   }

   /* Hover-Effekt auf dem ganzen Item */
   .tl-item:hover .tl-dot {
       transform: scale(1.4);
       background: var(--blue-mid);
       border-color: var(--blue-deep);
   }

   .tl-item:hover .tl-dot--edu {
       background: var(--blue-deep);
   }

   /* Inhalt */
   .tl-content {
       padding-top: 0;
   }

   .tl-date {
       display: inline-block;
       font-size: 0.72rem;
       font-weight: 500;
       letter-spacing: 0.1em;
       text-transform: uppercase;
       color: var(--blue-deep);
       background: rgba(184, 216, 232, 0.35);
       padding: 0.15rem 0.65rem;
       border-radius: 50px;
       margin-bottom: 0.35rem;
       /* Glimmer-Animation beim Laden */
       position: relative;
       overflow: hidden;
   }

   .tl-date::after {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 60%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
       animation: shimmer 3s infinite;
   }

   @keyframes shimmer {
       0% {
           left: -100%;
       }

       60%,
       100% {
           left: 160%;
       }
   }

   .tl-text {
       font-size: 0.9rem;
       color: var(--text-mid);
       line-height: 1.6;
       margin: 0;
   }

   .tl-text strong {
       color: var(--text-dark);
       font-weight: 500;
   }

   /* ── VERBÄNDE-BOX ── */
   .verbände-box {
       margin-top: 2.5rem;
       padding: 1.6rem 1.8rem;
       background: linear-gradient(135deg, var(--blue-light) 0%, rgba(184, 216, 232, 0.4) 100%);
       border-radius: var(--radius);
       border: 1px solid rgba(127, 181, 207, 0.4);
       position: relative;
       overflow: hidden;
   }

   /* Dezenter Glanz-Overlay */
   .verbände-box::before {
       content: '';
       position: absolute;
       top: -40%;
       right: -20%;
       width: 180px;
       height: 180px;
       background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 65%);
       pointer-events: none;
   }

   .verbände-header {
       display: flex;
       align-items: center;
       gap: 0.7rem;
       margin-bottom: 1rem;
   }

   .verbände-header h4 {
       font-family: 'Cormorant Garamond', serif;
       font-size: 1.25rem;
       font-weight: 600;
       color: var(--text-dark);
   }

   .verbände-tags {
       display: flex;
       gap: 0.7rem;
       margin-bottom: 0.8rem;
       flex-wrap: wrap;
   }

   .verband-tag {
       display: inline-block;
       padding: 0.35rem 1.1rem;
       background: var(--white);
       color: var(--blue-deep);
       border-radius: 50px;
       font-size: 0.8rem;
       font-weight: 500;
       letter-spacing: 0.1em;
       text-transform: uppercase;
       box-shadow: 0 2px 10px rgba(74, 138, 171, 0.18);
       transition: transform var(--transition), box-shadow var(--transition);
   }

   .verband-tag:hover {
       transform: translateY(-2px);
       box-shadow: 0 6px 18px rgba(74, 138, 171, 0.28);
   }

   .verbände-desc {
       font-size: 1rem;
       color: var(--text-mid);
       line-height: 1.6;
       margin: 0;
       font-weight: 400;
   }

   /* ── RESPONSIVE ── */
   @media (max-width: 900px) {
       .werdegang-grid {
           grid-template-columns: 1fr;
           gap: 3rem;
       }

       .werdegang-grid::before {
           display: none;
       }
   }


   /* ── FAQ / ACCORDION ── */
   .faq-bg {
       background: var(--beige-mid);
   }

   .accordion {
       margin-top: 2.5rem;
       display: flex;
       flex-direction: column;
       gap: 1rem;
   }

   .acc-item {
       background: var(--white);
       border-radius: var(--radius);
       border: 1px solid var(--beige-mid);
       overflow: hidden;
   }

   .acc-trigger {
       width: 100%;
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 1.3rem 1.8rem;
       background: none;
       border: none;
       text-align: left;
       cursor: pointer;
       font-family: 'Jost', sans-serif;
       font-size: 0.97rem;
       font-weight: 400;
       color: var(--text-dark);
       transition: background var(--transition);
   }

   .acc-trigger:hover {
       background: var(--beige);
   }

   .acc-arrow {
       width: 22px;
       height: 22px;
       border-radius: 50%;
       background: var(--blue-light);
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
       transition: transform var(--transition);
       font-size: 0.8rem;
       color: var(--blue-deep);
   }

   .acc-item.open .acc-arrow {
       transform: rotate(180deg);
   }

   .acc-body {
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.45s ease;
   }

   .acc-body-inner {
       padding: 0 1.8rem 1.4rem;
       font-size: 0.92rem;
       color: var(--text-mid);
       line-height: 1.8;
   }

   /* ── KONTAKT ── */
   .kontakt-bg {
       background: var(--blue-light);
   }

   .kontakt-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
       align-items: start;
       margin-top: 2.5rem;
   }

   .kontakt-info {
       display: flex;
       flex-direction: column;
       gap: 1.4rem;
   }

   .kontakt-item {
       display: flex;
       gap: 1rem;
       align-items: flex-start;
   }

   .kontakt-icon {
       width: 42px;
       height: 42px;
       min-width: 42px;
       border-radius: 50%;
       background: var(--white);
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1rem;
       box-shadow: 0 2px 8px rgba(74, 138, 171, 0.15);
   }

   .kontakt-item-text strong {
       display: block;
       font-size: 0.8rem;
       letter-spacing: 0.08em;
       text-transform: uppercase;
       color: var(--blue-deep);
       margin-bottom: 2px;
   }

   .kontakt-item-text span {
       font-size: 0.95rem;
       color: var(--text-mid);
   }

   /* Kontaktformular */
   .kontakt-form {
       display: flex;
       flex-direction: column;
       gap: 1rem;
   }

   .form-group {
       display: flex;
       flex-direction: column;
       gap: 0.4rem;
   }

   .form-group label {
       font-size: 0.78rem;
       font-weight: 500;
       letter-spacing: 0.06em;
       text-transform: uppercase;
       color: var(--blue-deep);
   }

   .form-group input,
   .form-group textarea,
   .form-group select {
       padding: 0.85rem 1.1rem;
       border: 1.5px solid var(--beige-mid);
       border-radius: 8px;
       background: var(--white);
       font-family: 'Jost', sans-serif;
       font-size: 0.95rem;
       color: var(--text-dark);
       transition: border-color var(--transition);
       outline: none;
   }

   .form-group input:focus,
   .form-group textarea:focus,
   .form-group select:focus {
       border-color: var(--blue-mid);
   }

   .form-group textarea {
       resize: vertical;
       min-height: 130px;
   }

   .form-row {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 1rem;
   }

   .form-success {
       display: none;
       padding: 1rem 1.4rem;
       background: var(--white);
       border-radius: 8px;
       border-left: 3px solid var(--blue-deep);
       font-size: 0.9rem;
       color: var(--text-mid);
   }

   /* ── NOTFALL ── */
   .notfall-banner {
       background: #fdf2f2;
       border: 1.5px solid #e8c4c4;
       border-radius: var(--radius);
       padding: 2rem 2.4rem;
       display: flex;
       gap: 1.6rem;
       align-items: flex-start;
       margin-top: 2.5rem;
   }

   .notfall-banner p {
       font-size: 0.9rem;
       color: var(--text-mid);
   }

   .notfall-links {
       display: flex;
       flex-direction: column;
       gap: 1rem;
       margin-top: 0.8rem;
   }

   .notfall-link {
       display: inline-block;
       width: fit-content;
       padding: 0.5rem 1.2rem;
       background: #c0392b;
       color: white;
       border-radius: 50px;
       font-size: 0.82rem;
       font-weight: 400;
       transition: background var(--transition);
   }

   .notfall-link:hover {
       background: #8b251c;
   }

   /* ── FOOTER ── */
   footer {
       background: var(--text-dark);
       color: rgba(255, 255, 255, 0.7);
       padding: 3rem;
       text-align: center;
   }

   .footer-inner {
       max-width: 900px;
       margin: 0 auto;
   }

   .footer-name {
       font-family: 'Cormorant Garamond', serif;
       font-size: 1.5rem;
       color: var(--white);
       margin-bottom: 0.3rem;
   }

   .footer-sub {
       font-size: 0.82rem;
       letter-spacing: 0.06em;
       margin-bottom: 2rem;
   }

   .footer-links {
       display: flex;
       gap: 1.5rem;
       justify-content: center;
       flex-wrap: wrap;
       font-size: 0.82rem;
   }

   .footer-links a {
       color: rgba(255, 255, 255, 0.6);
       transition: color var(--transition);
   }

   .footer-links a:hover {
       color: var(--blue-light);
   }

   .footer-divider {
       width: 40px;
       height: 1px;
       background: rgba(255, 255, 255, 0.2);
       margin: 1.5rem auto;
   }

   .footer-copy {
       font-size: 0.78rem;
   }

   /* ── ANIMATIONEN ── */
   @keyframes fadeUp {
       from {
           opacity: 0;
           transform: translateY(28px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
       }

       to {
           opacity: 1;
       }
   }

   .reveal {
       opacity: 0;
       transform: translateY(30px);
       transition: opacity 0.7s ease, transform 0.7s ease;
   }

   .reveal.visible {
       opacity: 1;
       transform: translateY(0);
   }

   /* Staggered delays */
   .reveal-delay-1 {
       transition-delay: 0.1s;
   }

   .reveal-delay-2 {
       transition-delay: 0.2s;
   }

   .reveal-delay-3 {
       transition-delay: 0.3s;
   }

   /* ── ANGEBOT: erweiterte Elemente ── */
   .angebot-bg {
       background: var(--beige-mid);
   }

   .angebot-intro {
       font-size: 0.97rem;
       color: var(--text-mid);
       max-width: 720px;
       line-height: 1.85;
       margin-bottom: 0.5rem;
   }

   .cards-grid {
       grid-template-columns: repeat(2, 1fr);
       margin-top: 2rem;
   }

   .card-num {
       font-family: 'Cormorant Garamond', serif;
       font-size: 2.4rem;
       font-weight: 300;
       color: rgba(127, 181, 207, 0.28);
       line-height: 1;
       margin-bottom: 0.7rem;
       transition: color var(--transition);
   }

   .card:hover .card-num {
       color: rgba(74, 138, 171, 0.42);
   }

   .card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 3px;
       background: linear-gradient(90deg, var(--blue-light), var(--blue-deep));
       transform: scaleX(0);
       transform-origin: left;
       transition: transform var(--transition);
   }

   .card:hover::before {
       transform: scaleX(1);
   }

   .card:hover .card-icon {
       background: var(--blue-mid);
       transform: scale(1.08);
   }

   /* ── Divider ── */
   .section-divider {
       display: flex;
       align-items: center;
       gap: 1rem;
       margin: 3rem 0 1.6rem;
   }

   .section-divider span {
       font-size: 0.7rem;
       font-weight: 500;
       letter-spacing: 0.16em;
       text-transform: uppercase;
       color: var(--blue-mid);
       white-space: nowrap;
   }

   .section-divider::before,
   .section-divider::after {
       content: '';
       flex: 1;
       height: 1px;
       background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
   }

   /* ── Therapiethemen ── */
   .themen-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
       gap: 0.8rem;
   }

   .thema-chip {
       background: var(--white);
       border: 1px solid rgba(127, 181, 207, 0.25);
       border-radius: 50px;
       padding: 0.65rem 1.2rem;
       display: flex;
       align-items: center;
       gap: 0.6rem;
       font-size: 0.85rem;
       color: var(--text-mid);
       transition: background var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
       cursor: default;
   }

   .thema-chip:hover {
       background: var(--blue-deep);
       border-color: var(--blue-deep);
       color: var(--white);
       transform: translateY(-2px);
   }

   .thema-dot {
       width: 7px;
       height: 7px;
       min-width: 7px;
       border-radius: 50%;
       background: var(--blue-mid);
       transition: background var(--transition);
   }

   .thema-chip:hover .thema-dot {
       background: rgba(255, 255, 255, 0.6);
   }

   /* ── Werte-Badges ── */
   .werte-strip {
       display: flex;
       gap: 0.8rem;
       flex-wrap: wrap;
       margin-top: 2.2rem;
   }

   .wert-badge {
       display: inline-flex;
       align-items: center;
       padding: 0.45rem 1.1rem;
       background: rgba(184, 216, 232, 0.35);
       color: var(--blue-deep);
       border-radius: 50px;
       font-size: 0.75rem;
       font-weight: 500;
       letter-spacing: 0.07em;
       text-transform: uppercase;
       transition: background var(--transition), transform var(--transition), color var(--transition);
       cursor: default;
   }

   .wert-badge:hover {
       background: var(--blue-mid);
       color: var(--white);
       transform: translateY(-2px);
   }

   /* ── Responsive Anpassungen ── */
   @media (max-width: 900px) {
       .cards-grid {
           grid-template-columns: 1fr 1fr;
       }
   }

   @media (max-width: 600px) {
       .cards-grid {
           grid-template-columns: 1fr;
       }

       .themen-grid {
           grid-template-columns: 1fr 1fr;
       }
   }

   @media (max-width: 400px) {
       .themen-grid {
           grid-template-columns: 1fr;
       }
   }

   /* ── RESPONSIVE ── */
   @media (max-width: 900px) {
       nav {
           padding: 1rem 1.5rem;
       }

       .nav-links {
           display: none;
       }

       .hamburger {
           display: flex;
       }

       .hero {
           grid-template-columns: 1fr;
           min-height: auto;
       }

       .hero-left {
           padding: 8rem 2rem 3rem;
       }

       .hero-left::after {
           display: none;
       }

       .hero-right {
           padding: 2rem 2rem 4rem;
       }

       .hero-image-wrap img {
           width: 260px;
           height: 340px;
       }

       .cards-grid {
           grid-template-columns: 1fr;
       }

       .ueber-grid {
           grid-template-columns: 1fr;
           gap: 2.5rem;
       }

       .kosten-cards {
           grid-template-columns: 1fr;
       }

       .kontakt-grid {
           grid-template-columns: 1fr;
           gap: 2.5rem;
       }

       .form-row {
           grid-template-columns: 1fr;
       }

       section {
           padding: 4rem 1.5rem;
       }
   }

   @media (max-width: 600px) {
       .hero-badge {
           width: 100px;
           height: 100px;
           bottom: -12px;
           right: -12px;
       }

       .hero-badge strong {
           font-size: 1.2rem;
       }
   }

   window.addEventListener('scroll', ()=> {
           console.log(window.scrollY);
       });