@charset "utf-8";

:root {
  /* ======================================================================
     TYPOGRAFIE
     ====================================================================== */
  /* ------------------------------
     Basisfont
     ------------------------------ */	 
     --font-base: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* ------------------------------
     Schriftgewicht
     ------------------------------ */
     --fw-regular: 400;
     --fw-medium: 500;
	 --fw-semibold: 600;
     --fw-bold: 700;

  /* ------------------------------
     Schriftgrößen
     ------------------------------ */
     --fs-h1: clamp(42px, 5.5vw, 78px); /* H1: skaliert von mobil bis Desktop */
     --fs-h2: clamp(22px, 2.4vw, 34px); /* H2: skaliert moderat */
     --fs-h3: clamp(16px, 2vw, 18px);   /* H3: mobil 16px, Desktop bis 18px */
     --fs-body: 15px;                   /* Fließtext: mobil ideal (15–16px) */
     --fs-small: 14px;                  /* Kleiner Text: Fußnoten/Meta */
     --fs-eyebrow: 12px;                /* Eyebrow/Label (z.B. Kicker) */
     --fs-nav: 15px;                    /* Seitenmenü */
     --fs-lang: 12px;                   /* Sprachmenü */
     --fs-brand-name: 14px;             /* Wortmarke "TOUCHED TO BE" */
     --fs-brand-tagline: 13px;          /* Raum für... */
     --fs-brand-by: 12px;               /* by Michael Köllner... */
	 --fs-footer: 14px;                 /* Basis-Schriftgröße im Footer */
	 --fs-hero-seo: 15px;               /* SEO-Zeile im Hero */
	 --fs-rahmen-p: 16px;               /* Fließtext in .bp-rahmen-panel */
	 --fs-2col-p: 16px;                 /* Fließtext in 2-Spalten-Textblöcken */
    
  /* ------------------------------
     Linienhöhen
     ------------------------------ */
     --lh-body: 1.6;                    /* Fließtext */
     --lh-tight: 1.1;                   /* H1 */
     --lh-heading: 1.35;                 /* H2 */

  /* ------------------------------
     Buchstaben-Abstand
     ------------------------------ */
     --ls-h1: -0.01em;                  /* H1 */
     --ls-h2: -0.005em;                 /* H2 */
     --ls-h3: 0;                        /* H3 */
     --ls-body: 0.01em;                 /* Body */
     --ls-eyebrow: 0.10em;              /* --Modul 1 etc. */
     --ls-brand-name: 0.15em;           /* TOUCHED TO BE */
     --ls-nav: 0.02em;                  /* Navigationslinks */
     --ls-lang: 0.10em;                 /* Sprachmenü */
     --ls-footer-brand: 0.14em;         /* Brand im Footer */
     --ls-footer-coltitle: 0.10em;      /* Footer Spaltentitel */


  /* ======================================================================
     LAYOUT 
     ====================================================================== */
  /* ------------------------------
     Breiten
     ------------------------------ */	
     --container: 1120px; /* Standard-Container */
     --narrow: 760px;     /* Narrow-Container für Fließtext */

  /* ------------------------------
     Abrundungen Ecken
     ------------------------------ */
     --radius-lg: clamp(12px, 2vw, 20px); /* skaliert zwischen mobil und Desktop */

  /* ------------------------------
     Abstände - Weißraum
     ------------------------------ */
     --sp-1: clamp(10px, 1vw, 12px);
     --sp-2: clamp(14px, 1.5vw, 18px);
     --sp-3: clamp(20px, 2.5vw, 28px);
     --sp-4: clamp(28px, 4vw, 44px);
     --sp-5: clamp(40px, 6vw, 72px); 


  /* ======================================================================
     FARBPALETTE / FLÄCHEN
     ====================================================================== */

  /* ------------------------------
     Farben
     ------------------------------ */
     --p-main: #F1EADA;                   /* Haupt-Hintergrund */
     --p-panel: rgba(206,193,168,.22);    /* Panel-Section */
     --p-page: #f8f3ec;                   /* Seite / neutrale Fläche */
     --p-about: #fcf7f1;                  /* About/leicht wärmer */
     --p-surface: rgba(255,255,255,.70);  /* Cards/Surface */
     --p-white: #fff;                  /* Impressum, Datenschutz */
	 
 /* -------------------------------
    Tokens zu Farben
    ------------------------------ */
     --bg-main: var(--p-main);      /* Haupt-Hintergrund */
     --bg-panel: var(--p-panel);    /* Panel-Sektion */
     --bg-page: var(--p-page);      /* Page-Flächen */
     --bg-about: var(--p-about);    /* About-Flächen */
     --bg-surface: var(--p-surface);/* Card/Surface */
	 --bg-white: var(--p-white);

  /* ------------------------------
     Akzente (k=key)
     ------------------------------ */
     --k1-soft: #6F7C85;           /* K1 weich (z.B. Ausbildung) */
     --k1-hard: #3F5561;           /* K1 stark (z.B. Links) */


  /* ------------------------------
     Textfarben
     ------------------------------ */
     --text-main: #141414;               /* Primärtext */
     --text-muted: rgba(20,20,20,0.85);  /* Sekundärtext (immer noch gut lesbar) */
     --text-soft: rgba(20,20,20,0.75);   /* Noch dezenter (Meta/Details) */


  /* ======================================================================
     BORDERS / SHADOWS / LINIEN / TRENNER
     ====================================================================== */

  /* ------------------------------
     Schatten
     ------------------------------ */
     --shadow-ambient: 0 8px 20px rgba(27,22,19,.08); /* Grundschatten */
     --shadow-lift: 0 5px 15px rgba(27,22,19,.10);    /* etwas stärker */

  /* ------------------------------
     Rahmen
     ------------------------------ */
     --border-soft: rgba(88,71,56,.14); 

  /* ------------------------------
     Haarlinie Dark-section
     ------------------------------ */
    --dark-hair: rgba(255,255,255,0.20); /* Linien auf dunklem Hintergrund */

  /* ------------------------------
     Trennerlinie unter dem Heading
     ------------------------------ */
     --divider-mini: rgba(111,124,133,0.75);        /* normal */
     --divider-mini-dark: rgba(255,255,255,0.30);   /* in Dark Sections */
     --divider-mini-image: rgba(255,255,255,0.40);  /* auf Bild-CTA */

  /* ------------------------------
     K1-Streifen an den Cards
     ------------------------------ */
     --k1-strip: rgba(111,124,133,0.30);        /* Standard */
     --k1-strip-strong: rgba(63,85,97,0.35);    /* stärker, falls nötig */


  /* ======================================================================
     DARK SECTION
     ====================================================================== */

     --dark-bg: #1b1613;                 /* Hintergrund dunkel */
     --dark-fg: rgba(255,255,255,0.96);  /* Primärtext auf dunkel */
     --dark-muted: rgba(255,255,255,0.82); /* Sekundärtext auf dunkel */


  /* ======================================================================
     LINKS
     ====================================================================== */

     --link-underline: rgba(111,124,133,0.75);         /* normal */
     --link-underline-strong: rgba(63,85,97,0.85);     /* hover/aktiv */
     --link-underline-dark: rgba(255,255,255,0.50);    /* auf dunkel */


  /* ======================================================================
     BUTTONS
     ====================================================================== */

  /* ------------------------------
     Größe
     ------------------------------ */
     --btn-font-size: 15px;         /* Button-Schriftgröße */
     --btn-font-weight: 500;        /* Button-Gewicht */
     --btn-letter-spacing: 0em;     /* neutral -> Lesbarkeit */
     --btn-radius: 14px;            /* eigene Button-Rundung (du nutzt teils radius-lg) */
     --btn-pad-y: 12px;             /* vertikales Padding */
     --btn-pad-x: 16px;             /* horizontales Padding */
     --btn-min-h: 44px;             /* min. Touchhöhe */
     --btn-transition: 160ms ease;  /* Übergang für Hover/Active/Focus */

  /* ------------------------------
     Primary-Button
     ------------------------------ */
     --btn-primary-bg: #141414;                 /* Hintergrund */
     --btn-primary-fg: rgba(255,255,255,0.92);  /* Text */
     --btn-primary-border: rgba(20,20,20,0.28); /* Border */

   /* Active/Pressed: Background + „Feedback“-Border */
     --btn-primary-bg-active: rgba(20,20,20,0.88); /* Hintergrund beim Drücken (:active) */
     --btn-primary-active: rgba(20,20,20,0.42);    /* Feedback-Farbe (z.B. Border/Overlay) */

  /* ------------------------------
     Secondary-Button
     ------------------------------ */
     --btn-secondary-bg: rgba(255,255,255,0.40);   /* Hintergrund */
     --btn-secondary-fg: #141414;                  /* Text */
     --btn-secondary-border: rgba(20,20,20,0.20);  /* Border */

  /* Focus-Ring */
     --btn-focus: rgba(20,20,20,0.22);     /* Fokusring hell */
     --btn-focus-dark: rgba(255,255,255,0.22); /* Fokusring in Dark Sections */

  /* Buttons in Dark Sections (wenn Primary dort hell sein soll) */
     --btn-primary-bg-dark: rgba(255,255,255,0.96);     /* Primary BG in Dark */
     --btn-primary-border-dark: rgba(255,255,255,0.30); /* Primary Border in Dark */
     --btn-primary-fg-dark: rgba(20,20,20,0.92);        /* Primary Text in Dark (auf hellem Button) */
     --btn-secondary-fg-dark: rgba(255,255,255,0.90);   /* Secondary Text in Dark */


  /* ======================================================================
     HEADER / NAV / SPRACHEN
     ====================================================================== */

  /* Header-Höhen */
     --header-h: 90px;                              /* Headerhöhe normal */
     --header-h-scrolled: 56px;                     /* Headerhöhe beim Scrollen (Shrink) */
     --header-ease: 220ms cubic-bezier(.2,.8,.2,1); /* Animation/Timing für Header-Transitions */

  /* Language Visibility States (Opacity) */
     --lang-inactive: 0.60; /* inaktive Sprache */
     --lang-active: 0.92;   /* aktive Sprache */


  /* ======================================================================
     HERO BILD
     ====================================================================== */

     --hero-img-h: 280px;                       /* Standard-Höhe des Hero-Bildcontainers */
	 --hero-img-a: url("/img/hero/hero-a.jpg"); /* Hero-Bildquelle */
     --hero-pos-x: 50%;                         /* Bildausschnitt horizontal */
     --hero-pos-y: 50%;                         /* Bildausschnitt vertikal */
     --hero-scale: 1.0;                         /* Zoomfaktor (1.0 = kein Zoom) */


  /* ======================================================================
     FOOTER
     ====================================================================== */

     --footer-meta: rgba(255,255,255,0.70);            /* Meta-Zeile (klein, dezent) */
     --footer-marknote: rgba(255,255,255,0.65);        /* Markennote/Feintext */
     --footer-link-underline: rgba(255,255,255,0.55);  /* Unterlinie für Footer-Links */
     --footer-coltitle: rgba(255,255,255,0.85);        /* Spaltentitel (kräftiger) */


  /* ======================================================================
     IMAGE CTA 
     ====================================================================== */

     --cta-bright: .5; /* Helligkeitswert fürs Hintergrundbild in der Bild-CTA */
}





/* ======================================================================
   GLOBALE EINSTELLUNGEN
   ====================================================================== */

*,*::before,*::after{box-sizing:border-box}
html{height:100%;margin:0;padding: 0}
body{margin:0;padding:0;min-height:100dvh;background:var(--bg-main);color:var(--text-main);font-family:var(--font-base);font-size:var(--fs-body);font-weight:var(--fw-regular);line-height: var(--lh-body);letter-spacing:var(--ls-body);text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x: hidden}
a, button,.btn,[role="button"]{touch-action:manipulation}	
h1,h2,h3{margin: 0 0 var(--sp-2);font-family:var(--font-base);text-wrap: balance; 


  overflow-wrap: normal;
  word-break: normal;     
  text-wrap: balance;}
h1{font-size:var(--fs-h1);line-height:var(--lh-tight);letter-spacing:var(--ls-h1);font-weight:var(--fw-semibold);hyphens:auto}
h2 {font-size: var(--fs-h2);line-height: var(--lh-heading);letter-spacing: var(--ls-h2);font-weight: var(--fw-medium)}
h3 {font-size: var(--fs-h3);line-height: var(--lh-heading);letter-spacing: var(--ls-h3);font-weight: var(--fw-medium)}
p { margin: 0 0 var(--sp-2);overflow-wrap: break-word}
p:last-child {margin-bottom: 0}
a {color: inherit;text-underline-offset: 0.18em;transition: opacity 0.2s ease-in-out;-webkit-tap-highlight-color: transparent; text-decoration-skip-ink: auto}
a:focus-visible{outline: 2px solid var(--btn-focus);outline-offset: 2px;border-radius: 6px}
a.seiten_links {font-size: 0.95em;text-decoration: none;opacity: 0.75;vertical-align: super;margin-left: 2px;display: inline-block;padding: 2px 4px}
.link {position: relative;display: inline-block;font-size: var(--fs-body);font-weight: var(--fw-medium);color: var(--k1-hard);text-decoration: none;padding: 4px 0; transition: color var(--btn-transition);-webkit-tap-highlight-color: transparent}
.link:active {opacity: 0.7}
img { max-width:100%; height:auto; display:block}


 /* BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:var(--btn-min-h);padding:var(--btn-pad-y) var(--btn-pad-x);border-radius:var(--radius-lg);border:1px solid transparent;font-size:var(--btn-font-size);font-weight:var(--btn-font-weight);letter-spacing:var(--btn-letter-spacing);line-height:1.1;text-decoration:none;cursor:pointer;user-select:none;-webkit-tap-highlight-color:transparent;transition:background-color var(--btn-transition),border-color var(--btn-transition),color var(--btn-transition),filter var(--btn-transition),opacity var(--btn-transition);-webkit-appearance:none;appearance:none;touch-action:manipulation}  
.btn--primary{background: var(--btn-primary-bg);color: var(--btn-primary-fg);border-color: var(--btn-primary-border);text-align:center}
.btn--secondary{background: var(--btn-secondary-bg);color: var(--btn-secondary-fg);border-color: var(--btn-secondary-border);text-align:center}

/* Hover nur auf Geräten mit Hover */
@media (hover:hover) and (pointer:fine){
.btn--primary:hover{background: color-mix(in srgb, var(--btn-primary-bg) 82%, #ffffff 18%);border-color: color-mix(in srgb, var(--btn-primary-border) 75%, #ffffff 25%);filter: none;}
.btn--secondary:hover{background: rgba(255,255,255,.90);border-color: rgba(63,85,97,.40);filter: brightness(1.02)}
}

/* Reset für ältere Browser, damit kein doppelter Fokus-Rahmen entsteht */
.btn:focus:not(:focus-visible){outline: none}
.btn:focus-visible{outline: 2px solid transparent;outline-offset: 2px;box-shadow: 0 0 0 4px var(--btn-focus)}
@media (forced-colors: active){.btn:focus-visible{outline: 2px solid CanvasText;box-shadow: none}
}

/* Primary/Secondary auf Dark */
.bp-section--dark .btn--primary {background: var(--btn-primary-bg-dark);color: var(--btn-primary-fg-dark);border-color: var(--btn-primary-border-dark)}
.bp-section--dark .btn--secondary {color: var(--btn-secondary-fg-dark);border-color: rgba(255, 255, 255, 0.30);background: rgba(255, 255, 255, 0.02)}

/* Mobil-Feedback beim Antippen */
.bp-section--dark .btn:active {opacity: 0.85}

/* Focus-Zustand auf Dark (Global für alle Geräte) */
.bp-section--dark .btn:focus-visible {outline: none;box-shadow: 0 0 0 4px var(--btn-focus-dark)}
  
button.btn{font: inherit;color: inherit;background: none;border: 0;padding: 0;margin: 0}
button.btn::-moz-focus-inner{border: 0;padding: 0}


/* Basis: Animationen (Mobile First) */
/* Reveal (Mobile): performant – kein blur */
.bp-reveal [data-reveal]{
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 320ms cubic-bezier(.2,.8,.2,1),
    transform 520ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform; /* filter raus */
}

.bp-reveal.is-visible [data-reveal]{
  opacity: 1;
  transform: translateY(0);
}

/* Delays bleiben */
.bp-reveal.is-visible [data-reveal="1"]{transition-delay:0ms;}
.bp-reveal.is-visible [data-reveal="2"]{transition-delay:80ms;}
.bp-reveal.is-visible [data-reveal="3"]{transition-delay:160ms;}
.bp-reveal.is-visible [data-reveal="4"]{transition-delay:240ms;}



/* Falls der Nutzer Animationen reduziert hat (Barrierefreiheit 2026) */
@media (prefers-reduced-motion: reduce) {
.bp-reveal [data-reveal] {transition: opacity 300ms ease; /* Nur sanftes Einblenden, kein Versatz */transform: none !important;filter: none !important;}
}

/* Button-Gruppen - Basis (Mobile First) */
.bp-actions {margin-top: 24px; display: flex;flex-direction: column;gap: 12px}

/* Optionale Anpassung: Buttons auf Mobile volle Breite geben */
.bp-actions .btn {width: 100%}

/* Horizontale Linien */
.bp-actions__divider,.bp-actions__divider-dark {margin-top: var(--sp-4);height: 1px;width: min(200px, 100%);background: var(--border-soft)}
.bp-actions__divider-dark {background: var(--divider-mini-dark)}

/* Scrollverhalten */
.bp-no-scroll{overflow:hidden;overscroll-behavior:none;}

		

/* ======================================================================
    HILFSKLASSEN
   ====================================================================== */

.text-muted { color: var(--text-muted)}
.bp-section--dark .text-muted {color: var(--dark-muted)}
.small {font-size: var(--fs-small);line-height: 1.55}
.bp-section--dark .small {color: var(--dark-muted)}
.link--muted { color: var(--text-muted);transition: color var(--btn-transition)}
.bp-section--dark .link--muted { color: var(--dark-muted); }


/* ======================================================================
   HAUPTKOMPONENTEN DER WEBSITE, WIEDERKEHREND AUF JEDER SEITE
   ====================================================================== */
/* --------------------------------------------------
   BrandING -WORTLOGO
   -------------------------------------------------- */   
.bp-brand {display: inline-flex;flex-direction: column;gap:5px;text-decoration: none;transform: none;transition: opacity var(--header-ease), transform var(--header-ease);will-change: opacity, transform}
.bp-brand__name {font-weight: var(--fw-bold);letter-spacing: var(--ls-brand-name);text-transform: uppercase;font-size: var(--fs-brand-name); color: var(--text-main);white-space: nowrap;text-rendering: optimizeLegibility}
.bp-brand__tagline {font-weight: var(--fw-regular);font-size: var(--fs-brand-tagline);line-height: 1.2;letter-spacing: 0.04em;color: var(--text-muted)}
.bp-brand__by {text-transform: none;font-size: var(--fs-brand-by);letter-spacing: 0.06em;font-weight: var(--fw-regular)}
.bp-brand:active {opacity: 0.8;transform: scale(0.98)}

/* =========================================================
   BRAND NUR IM SHRINK-ZUSTAND ZENTRIEREN
   (Normalzustand bleibt 1:1 wie bisher)
   ========================================================= */

/* Anker setzen (nur zur Sicherheit; schadet nicht) */
.bp-header .bp-mnav{
  position: relative;
}

/* Normalzustand: explizit nichts “absolut” – verhindert Abschneiden */
.bp-header:not(.is-scrolled) .bp-mnav__brand{
  position: static;
  transform: none;
  left: auto;
  top: auto;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

/* Shrink: Brand absolut exakt in die Mitte */
.bp-header.is-scrolled .bp-mnav__brand{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  /* damit sie auf sehr schmalen Screens nicht unter den Burger läuft */
  max-width: calc(100% - 92px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Shrink: rechts (Burger) bleibt “oben” */
.bp-header.is-scrolled .bp-mnav .rechts{
  position: relative;
  z-index: 3;
}

/* Shrink: optional – links braucht keine Breite wegnehmen */
.bp-header.is-scrolled .bp-mnav .links{
  flex: 0 0 auto;
}


/* --------------------------------------------------
   Eyebrow (Label mit K1-Strich)
   -------------------------------------------------- */
.bp-eyebrow,.bp-card__kicker {display: inline-flex;align-items: center;gap: 10px;font-size: var(--fs-eyebrow);letter-spacing: var(--ls-eyebrow);text-transform: uppercase;color: var(--k1-hard);font-weight: var(--fw-medium);margin: 0 0 10px;opacity: 0.98}
.bp-eyebrow::before,.bp-card__kicker::before {content: "";width: 30px;height: 1px;background: rgba(111,124,133,.72)}


/* --------------------------------------------------
   Mini Divider (kurzer dicker Strich unter H2)
   -------------------------------------------------- */
.bp-mini-divider { margin: 12px 0 16px; width: 44px;height: 2px;border-radius: 999px;background: var(--divider-mini)}
.bp-section--dark .bp-mini-divider {background: var(--divider-mini-dark)}
.bp-section--image-cta .bp-mini-divider {background: var(--divider-mini-image)}


/* --------------------------------------------------
   Hairline (feine 1px Linie)
   -------------------------------------------------- */
.bp-hairline {margin-top: var(--sp-3);height: 1px;width: 100%;background: var(--border-soft);border: none}
.bp-section--dark .bp-hairline {background: var(--dark-hair);opacity: 0.6}


/* --------------------------------------------------
   Listen
   -------------------------------------------------- */
.bp-list{padding-left: 1.2rem;margin: 0}
.bp-list li + li{ margin-top: 6px; }
.bp-list li{font-size: var(--fs-small);color: var(--text-muted);line-height: 1.5}

.page-angebot .bp-card .bp-list,.page-angebot .bp-mini-card .bp-list{padding-left: 0;margin: 0;list-style: none}
.page-angebot .bp-card .bp-list li,.page-angebot .bp-mini-card .bp-list li{position: relative;padding-left: 18px;font-size: 14px;color: var(--text-muted);line-height: 1.6}
.page-angebot .bp-card .bp-list li + li,.page-angebot .bp-mini-card .bp-list li + li{margin-top: 8px}
.page-angebot .bp-card .bp-list li::before,.page-angebot .bp-mini-card .bp-list li::before{content: "•";position: absolute;left: 0;top: 0.3em;font-size: 0.9em;opacity: 0.7}

/* --------------------------------------------------
   LINKS 
   -------------------------------------------------- */
/* Navigation */


/* Sprachlinks - Basis (Mobile First) */


/* Inline-Link auf Dark - Basis (Mobile First) */
.bp-section--dark .link {color: var(--dark-fg)}


/* --------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------- */     
.bp-quotes {display: grid; gap: 22px; margin-top: var(--sp-3)}
.bp-quote {margin: 0; padding: 0; max-width: none; position: relative; padding-left: 32px}
.bp-quote::before {content: "“";position: absolute;left: 0;top: -6px;font-size: 56px; line-height: 1; color: rgba(88,71,56,.20);pointer-events: none}
.bp-quote__text {margin: 0;color: rgba(20,20,20,.88);font-size: clamp(16px, 0.55vw + 14px, 18px);line-height: 1.65;font-weight: var(--fw-regular);overflow-wrap: break-word}
.bp-quote__cite {display: block;margin-top: 14px;font-style: normal;color: var(--k1-hard);font-size: var(--fs-small)}
.bp-quote__rule {margin-top: 18px;height: 1px;width: 100%;background: var(--border-soft)}

/* Dark Section Varianten */
.bp-section--dark .bp-quote__text { color: rgba(255,255,255,.90); }
.bp-section--dark .bp-quote__cite { color: rgba(255,255,255,.82); }
.bp-section--dark .bp-quote__rule { background: var(--dark-hair); }
.bp-section--dark .bp-quote::before { color: rgba(255,255,255,.26); }    

       

/* --------------------------------------------------
   ANIMATIONEN REDUZIEREN
   -------------------------------------------------- */ 
@media (prefers-reduced-motion: reduce) {.bp-reveal [data-reveal] {opacity: 1 !important;transform: none !important;filter: none !important;transition: none !important;animation: none !important}

html {scroll-behavior: auto !important}
}


/* ======================================================================
   LAYOUT & SECTIONS
   ====================================================================== */

.bp-container {width: min(var(--container), calc(100% - 48px));margin: 0 auto}
.bp-container--narrow {width: min(var(--narrow), calc(100% - 48px));margin: 0 auto}
.bp-header-spacer {height: var(--header-h)}
.bp-header {height: var(--header-h);position: fixed;top: 0; left: 0; right: 0;z-index: 1000;display: flex;align-items: center;background: rgba(241, 234, 218); backdrop-filter: none;
  -webkit-backdrop-filter: none;transition:height var(--header-ease),background var(--header-ease),border-color var(--header-ease)}
.bp-header.is-scrolled {height: var(--header-h-scrolled);background: rgba(241, 234, 218, 0.97);border-bottom-color: rgba(111, 124, 133, 0.18)}
.bp-header__grid {position: relative;display: block;width: 100%}

/* Navigation  */
.desktop{display:none}

/* 1-spaltiges Layout */
.bp-grid {display: grid;grid-template-columns: 1fr; gap: 22px;margin-top: var(--sp-3)}
.bp-grid--3, .bp-grid--2 {grid-template-columns: 1fr}
.bp-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: none;
  background: var(--p-surface);

  /* Performance: Blur auf Cards raus */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  box-shadow: var(--shadow-ambient);
  overflow: hidden;

  transform: none !important;

  /* Performance: keine filter-transition */
  transition: box-shadow var(--btn-transition);

  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Dekorativer Streifen oben */
.bp-card::before {content: "";position: absolute;left: 0; right: 0; top: 0;height: 2px;background: var(--k1-strip);transition: background var(--btn-transition)}

/* Innerer Glanz-Effekt (Bezel) */
.bp-card::after {content: "";position: absolute;inset: 0;border-radius: inherit;pointer-events: none;box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46)}
.bp-card h3 {margin-bottom: 10px}
.bp-card p {margin-bottom: 16px}
.bp-card .btn {margin-top: auto;align-self: flex-start}

/* Dark Section Varianten*/
.bp-section--dark .bp-card {background: rgba(255, 255, 255, 0.06);box-shadow: none; backdrop-filter: none;-webkit-backdrop-filter: none}
.bp-section--dark .bp-card::before { background: rgba(255, 255, 255, 0.10); }
.bp-section--dark .bp-card::after { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10); }

/* Panel Section Varianten */
.bp-section--panel .bp-card {background: rgba(255, 255, 255, 0.74);box-shadow: var(--shadow-lift)}

.bp-card__title {margin: 0 0 10px;font-size: clamp(20px, 1.8vw, 26px);line-height: 1.2;letter-spacing: -0.01em;font-weight: var(--fw-medium)}
.bp-card__body {margin: 0 0 14px;  color: var(--text-main); font-size: var(--fs-small)}
.bp-card__actions { display: flex; gap: 12px; flex-direction: column; margin-top: 8px;}
.bp-card__actions .btn { width: 100%; }

/* Hilfe-Block: Liste ohne Einzug */
.bp-keypoints { list-style: none; padding-left: 0; margin-left: 0; display: flex; flex-direction: column; gap: 8px; }

/* Link-Optik für Telefon/Web (Mobil-Optimiert) */
.linklike { color: inherit; text-decoration: none; border-bottom: 1px solid var(--link-underline); padding-top: 2px; padding-bottom: 1px; display: inline-block; -webkit-tap-highlight-color: transparent; }

/* Auf dem Handy: Feedback beim Antippen (statt Hover) */
.linklike:active { opacity: 0.7; border-bottom-color: var(--link-underline-strong); }

/* --- BASIS (Mobile First: Kompakter Rhythmus) --- */
.bp-section { padding: var(--sp-5) 0; }
.bp-section--panel { background: var(--bg-panel); }
.bp-section--dark { background: var(--dark-bg); color: var(--dark-fg); }
.bp-section--surface { background: rgba(255, 255, 255, 0.42); }
.bp-section--about { background: var(--bg-about); }
.bp-section__head { margin-bottom: var(--sp-3)}

/* Satzspiegel-Pattern (Mobil-Optimiert) */
.bp-section__body {max-width: 65ch; margin-left: auto;margin-right: auto}
.bp-section__body p,.bp-section__body .bp-keypoints p {max-width: none}

/* Offset für Sprungmarken wegen fixed Header */
#kontakt {scroll-margin-top: calc(var(--header-h-scrolled) + 24px)}
[id] {scroll-margin-top: calc(var(--header-h-scrolled) + 32px)}

/* ======================================================================
   FÜR ALLE SEITEN
   ====================================================================== */



/* Header */
.bp-mnav{
  display:flex;
  align-items:center;            /* statt flex-start */
  justify-content:space-between;
  gap:12px;
  width:100%;


  padding-top: 40px;             /* wenn du “tiefer” willst: 14 -> 16 */
  padding-bottom: 22px;
}
/* Toggle: Touch-Target Optimierung (2026 Standard) */
.bp-mnav__toggle {
  appearance: none;
  -webkit-appearance: none; /* iOS Fix */
  border: 0;
  background: transparent;
  /* 2026 Best Practice: Mindestens 44x44px Trefferfläche für Daumenbedienung */
  min-width: 44px;
  min-height: 44px;
  padding: 11px; 
  border-radius: 12px; /* Modernerer Look als pures Rund */
  cursor: pointer;
  margin-left: 0;
  padding-top:0;
  
  /* Verhindert den grauen Kasten beim Tippen auf iOS */
  -webkit-tap-highlight-color: transparent;
}

/* Fokus-Zustand für Tastatur-Nutzer (Barrierefreiheit) */
.bp-mnav__toggle:focus-visible {
  outline: 3px solid #0056b3; /* Kontrastreicher für 2026 WCAG */
  outline-offset: 2px;
}

/* Burger: Performance-optimiert */
.bp-mnav__burger {
  display: block;
  width: 24px; /* Etwas breiter für bessere Sichtbarkeit */
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 2px;

}

.bp-mnav__burger::before,
.bp-mnav__burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease; /* Sanfte Animation vorbereitet */
}

.bp-mnav__burger::before { top: -8px; }
.bp-mnav__burger::after { top: 8px; }

.bp-mnav .alles{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.bp-mnav .rechts{
  position: relative;     /* Anker für absolute Positionierung */
  min-width: 44px;         /* optional: Touchfläche */
  min-height: 44px;        /* optional: Touchfläche */
}

/* Burger-Button oben rechts im .rechts Container */
.bp-mnav .rechts .bp-mnav__toggle{
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.bp-header.is-scrolled .bp-mnav{padding-top:10px;padding-bottom:10px;}
.bp-header.is-scrolled .bp-mnav__brand .bp-brand__tagline,.bp-header.is-scrolled .bp-mnav__brand .bp-brand__by{display:none;}




/* =========================
   OVERLAY
   ========================= */

.bp-mnav__overlay[hidden] {display: none}
.bp-mnav__overlay {position: fixed;inset: 0;z-index: 9999}

/* Der abgedunkelte Hintergrund */
.bp-mnav__scrim{position:absolute;inset:0;background:rgba(0,0,0,.25);}
@supports (backdrop-filter: blur(8px)){
  .bp-mnav__scrim{backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);}
}

/* Das eigentliche Menü-Panel */
.bp-mnav__panel{position:absolute;top:max(10px,env(safe-area-inset-top));right:10px;left:10px;max-height:calc(100dvh - max(10px,env(safe-area-inset-top)) - max(10px,env(safe-area-inset-bottom)));overflow:auto;-webkit-overflow-scrolling:touch;border-radius:18px;background:var(--p-white,#fff);color:#111;box-shadow:0 18px 50px rgba(0,0,0,.28);outline:none;will-change:transform,opacity;}

/* Header innerhalb des Panels */
.bp-mnav__panel-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:16px 16px 10px}

/* dark Mode */
@media (prefers-color-scheme: dark){.bp-mnav__panel{background:#0f0f10;color:#f2f2f2;box-shadow:0 18px 50px rgba(0,0,0,.5);} .bp-mnav__panel-top{border-bottom-color:rgba(255,255,255,.10);}}

.bp-mnav__panel-brand.bp-brand{display:grid;grid-template-rows:auto auto auto;row-gap:6px;text-decoration:none;color:inherit;min-width:0;}
.bp-mnav__panel-brand .bp-brand__name{display:block;line-height:1.1;font-weight:700;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.bp-mnav__panel-brand .bp-brand__tagline{margin:0;padding:0;line-height:1.25;font-size:.75rem;}

/* Schließen-Button */
.bp-mnav__close{appearance:none;-webkit-appearance:none;border:0;background:transparent;padding:12px;margin-top:-12px;border-radius:999px;cursor:pointer;line-height:1;font-size:1.1rem;opacity:.8;transition:opacity .2s ease,background .2s ease;-webkit-tap-highlight-color:transparent;} .bp-mnav__close:active{background:rgba(0,0,0,.05);opacity:1;}


/* Navigations-Liste */
.bp-mnav__nav {display: grid;padding: 10px 10px 6px;gap: 2px}
.nav__link {display: block;
  padding: 10px 8px;
  border-radius: 10px;

  text-decoration: none;
  color: inherit;

  /* ruhige Trennlinie statt Underline */
  border-bottom: 1px solid var(--bg-main)} 

.bp-mnav__lang{display:flex;flex-wrap:wrap;gap:10px;padding:12px 16px 16px;padding-bottom:max(16px,env(safe-area-inset-bottom))}
.bp-mnav__lang-link{text-decoration:none;color:inherit;padding:8px 14px;border-radius:999px;font-size:13px;opacity:.75;transition:all .2s ease;-webkit-tap-highlight-color:transparent;}
.bp-mnav__lang-link.is-active,
.bp-mnav__lang-link[aria-current="page"]{opacity:1;font-weight:600;background:rgba(0,0,0,.06);}
@media (prefers-color-scheme: dark){
  .bp-mnav__lang{border-top-color:rgba(255,255,255,.10);}
  .bp-mnav__lang-link.is-active,
  .bp-mnav__lang-link[aria-current="page"]{background:rgba(255,255,255,.10);}
}


/* CTA-Fragment */
.bp-form-feedback{position:relative;border-radius:var(--radius-lg);padding:20px 18px;margin:0 0 14px;box-shadow:none;text-align:center;caret-color:transparent;user-select:none;pointer-events:none;opacity:1;}
.bp-form-feedback::before{content:none;position:absolute;left:0;right:0;top:0;height:2px;border-radius:inherit;background:var(--k1-strip);}
.bp-form-feedback::after{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;box-shadow:inset 0 1px 0 rgba(255,255,255,.10);}
.bp-form-feedback--success{background:rgba(111,124,133,.16);border:1px solid rgba(111,124,133,.22);color:rgba(255,255,255,.90);}
.bp-form-feedback--success::before{background:rgba(111,124,133,.32);}
.bp-form-feedback--error{background:rgba(181,158,125,.16);border:1px solid rgba(181,158,125,.26);color:rgba(255,255,255,.90);}
.bp-form-feedback--error::before{background:rgba(181,158,125,.42);}
.bp-form-feedback--error ul{list-style:none;padding:0;margin:0;}
.bp-form-feedback--error li + li{margin-top:6px;}


/* Hero */
.bp-hero { min-height: auto; display: flex; align-items: flex-start; padding: clamp(28px, 5vw, 56px) 0; }
.bp-hero__grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start;}
.bp-hero__tagline { margin-top: 20px; font-size: clamp(16px, 1.6vw, 20px); max-width: min(70ch, 100%); line-height: 1.5; }
.bp-hero__seo { margin-top: 14px; font-size: var(--fs-hero-seo); max-width: min(70ch, 100%); color: var(--text-muted); }
.bp-hero__image { position: relative; height: var(--hero-img-h); order:1 ;border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-ambient); background: transparent; align-self: start; }
.bp-hero__image::before { content: ""; position: absolute; inset: 0; background-image: var(--hero-img-a); background-size: cover; background-position: var(--hero-pos-x) var(--hero-pos-y); transform: scale(var(--hero-scale)); filter: none; backface-visibility: hidden; }
.bp-hero__grid > div:first-child{order:2}
	
/* Einladung / CTA / FORMULAR */
.bp-section--image-cta { position: relative; color: var(--dark-fg); overflow: hidden; padding: var(--sp-5) 0; }
.bp-section--image-cta::before { content: ""; position: absolute; inset: 0; background-image: var(--hero-img-a); background-size: cover; background-position: var(--hero-pos-x) var(--hero-pos-y); filter: grayscale(.05) brightness(var(--cta-bright, .5)); transform: scale(1.03); pointer-events: none; }
.bp-section--image-cta > .bp-container--narrow { position: relative; z-index: 1; }
.bp-section--image-cta .text-muted { color: var(--dark-muted); }
.bp-section--image-cta .bp-cta-lead p a.link { color: inherit; font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 0.18em; }
.bp-section--image-cta .bp-cta-lead p a.link::after { content: none !important; }
.bp-cta-layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
.bp-cta-lead { margin-bottom: 30px; }
.bp-cta-lead p { max-width: min(60ch, 100%); line-height: 1.6; }
.bp-cta-card { margin-left: 0; padding: 0; max-width: none; color: var(--dark-fg); background: transparent; }
.bp-cta-card h3 { margin: 0 0 12px; font-size: var(--fs-h3); letter-spacing: -0.01em; color: var(--dark-fg); }
.bp-cta-card p { margin: 0 0 14px; font-size: var(--fs-small); color: rgba(255, 255, 255, 0.78); }
.bp-form { display: grid; gap: 14px; margin-top: 6px; }
.bp-form-row { display: flex; flex-direction: column; gap: 4px; }
.bp-form-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.82); }
.bp-form-input, .bp-form-textarea { font-family: var(--font-base); font-size: 16px; padding: 10px 0 6px; border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.80); border-radius: 0; background: transparent; color: var(--dark-fg); -webkit-appearance: none; appearance: none; }
.bp-form-input::placeholder, .bp-form-textarea::placeholder { color: rgba(255, 255, 255, 0.55); }
.bp-form-input:focus, .bp-form-textarea:focus { outline: none; border-bottom-color: rgba(255, 255, 255, 1); }
.bp-form-textarea { min-height: 96px; resize: vertical; }
.bp-form-footer { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.bp-section--image-cta .bp-form-note { font-size: 12px; color: rgba(255, 255, 255, 0.70); max-width: 48ch; }
.bp-section--image-cta .btn--primary { background: rgba(255, 255, 255, 0.80); color: #141414; border-color: rgba(255, 255, 255, 0.40); width: 100%; }

/* FOOTER */
.bp-footer { padding: 28px 0 32px; font-size: var(--fs-footer); }
.bp-footer__grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.bp-footer__brand { display: none; }
.bp-footer__linksgrid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 4px; align-items: start; }
.bp-footer__col-title { font-size: 14px; letter-spacing: var(--ls-footer-coltitle); text-transform: uppercase; margin: 0 0 20px 0; line-height: 1.2; color: var(--footer-coltitle); }
.bp-footer__link { display: block; padding: 6px 0; line-height: 1.25; text-decoration: none; color: var(--dark-muted); text-underline-offset: 0.18em; }
.bp-footer__spacer { display: block; }
.bp-footer__meta { margin-top: 24px; padding-top: 14px; border-top: 1px solid var(--dark-hair); font-size: 11px; color: var(--footer-meta); }
.bp-footer__marknote { margin-top: 6px; font-size: 10px; letter-spacing: 0.02em; color: var(--footer-marknote); line-height: 1.4; }


/* ======================================================================
   SEITENSPEZIFISCH noch nicht untersucht
   ====================================================================== */
/* Index */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo { margin: 0; display: flex; justify-content: center; }
.about-photo img { display: block; width: 100%; max-width: 260px; height: auto; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-ambient); }
.bp-section--about .about-text{order: 1;}
.bp-section--about .about-photo{order: 2; margin-top: var(--sp-3);} 
.about-text { max-width: 100%; }
.about-text h2 { font-family: var(--font-base); font-weight: 600; font-size: clamp(1.65rem, 2.4vw, 2rem); line-height: 1.25; margin: 0 0 1.5rem; }
.bp-orient-item { padding-top: 0; padding-bottom: 16px; border-top: 0; border-bottom: 1px solid var(--border-soft); }
.bp-orient-item:last-child { border-bottom: 1px solid var(--border-soft); padding-bottom: 16px; }
.bp-section--dark .bp-orient-item, .bp-section--dark .bp-orient-item:last-child { border-bottom-color: var(--dark-hair); }
.bp-welcome { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.bp-welcome__text p { max-width: min(78ch, 100%); }
.bp-welcome__stack { display: grid; gap: 14px; }
.bp-mini-card { position: relative; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.90); box-shadow: none; padding: 16px 16px 12px; border: 1px solid rgba(88, 71, 56, 0.14); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.bp-mini-card::before { content: ""; position: absolute; left: 16px; top: 10px; width: 24px; height: 1px; background: rgba(111, 124, 133, 0.45); }
.bp-mini-card__title { margin: 0 0 6px; padding-top: 12px; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(20, 20, 20, 0.78); font-weight: var(--fw-medium); }
.bp-mini-card__body { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.55; max-width: none; }


/* Ausbildung-Ratenzahlung */
.bp-keypoints { margin-top: var(--sp-3); display: grid; gap: 18px; grid-template-columns: 1fr; }
.bp-keypoint { padding: 18px 0; border-top: 1px solid var(--border-soft); }
.bp-keypoint:first-child { padding-top: 0; border-top: 0; }
.bp-rahmen-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.bp-rahmen-panel { padding: 0; }
.bp-rahmen-panel h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.25; font-weight: var(--fw-medium); letter-spacing: -0.01em; }
.bp-rahmen-panel p { margin: 0 0 12px; font-size: var(--fs-rahmen-p); line-height: 1.72; color: rgba(20, 20, 20, 0.82); }
.bp-rahmen-panel p:last-child { margin-bottom: 0; }
#modelle .bp-grid--3, #modelle .bp-grid--2 { display:grid; grid-template-columns:1fr; gap:22px; }
#modelle .bp-grid--3 .bp-card, #modelle .bp-grid--2 .bp-card { display:flex; flex-direction:column; }
#modelle .bp-card { padding:20px; }
#modelle .bp-card h3 { margin:10px 0 14px; }
#modelle .bp-card p { margin:0 0 4px; }
#modelle .bp-card p.text-muted:has(> small) { position:relative; margin-top:16px; padding:14px 16px 14px 34px; border:0; border-radius:14px; background:rgba(111,124,133,0.08); }
#modelle .bp-card p.text-muted:has(> small)::before { content:"“"; position:absolute; left:10px; top:9px; font-size:24px; line-height:1; color:rgba(63,85,97,0.22); pointer-events:none; }
#modelle .bp-card p.text-muted > small { display:block; background:transparent !important; border:0 !important; padding:0 !important; margin:0 !important; border-radius:0 !important; font-size:13px; line-height:1.65; font-style:italic; letter-spacing:0; color:rgba(20,20,20,0.76); }
.bp-section--panel #modelle .bp-card p.text-muted:has(> small) { background:rgba(111,124,133,0.10); }
#gewissen .bp-grid.bp-grid--2 { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
#gewissen .bp-commitment-card { padding: 20px 20px 16px; }
#gewissen .bp-commitment-card h3 { font-size: 17px; line-height: 1.25; margin: 6px 0 12px; }
#gewissen .bp-commitment-card p { font-size: var(--fs-body); line-height: var(--lh-body); margin: 0 0 12px; color: rgba(20, 20, 20, 0.82); }
#gewissen .bp-commitment-card p + p { margin-top: 10px; }
#gewissen .bp-commitment-card strong { font-weight: inherit; color: inherit; }
#gewissen .bp-commitment-card .bp-keyline { margin: 14px 0; padding: 10px 12px; background: rgba(111, 124, 133, 0.08); border-radius: 12px; font-weight: var(--fw-medium); color: rgba(20, 20, 20, 0.88); text-align: center; }
.anu{margin-bottom:8px;display:inline-block}



/* Angebot */
.page-angebot .bp-quote__cite { margin-top: 10px; font-size: 14px; opacity: 0.85; }
.page-angebot .bp-section--about .bp-quotes { margin-top: 0; margin-bottom: 0; }
.page-angebot .bp-section--about blockquote { margin: 0; }
.page-angebot .bp-section--about .bp-container--narrow > :first-child { margin-top: 0; }
.page-angebot .bp-section--about .bp-container--narrow > :last-child { margin-bottom: 0; }
.page-angebot .bp-section--dark .bp-quotes { max-width: min(48ch, 100%);margin: var(--sp-3) auto 0;}
.page-angebot .bp-section--dark .bp-quote {padding-left: 0;text-align: center;}
.page-angebot .bp-section--dark .bp-quote::before {left: 50%;translate: -50% 0;transform: none; }
.page-angebot .bp-section--dark .bp-quote__cite {text-align: center;}
.bp-fineprint {font-size: 12px;line-height: 1.45;}

section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* Wrapper der linken Spalte "auflösen": Kinder werden Grid-Items */
section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2 > div{
  display: contents;
}

/* Reihenfolge im Grid festlegen */
section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2 > div > p:nth-of-type(1){
  grid-row: 1;margin:0
}
section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2 > div > p:nth-of-type(2){
  grid-row: 2;margin:0
}
section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2 > aside{
  grid-row: 3;
  margin: 6px 0;        /* optional: optischer Abstand */
}
section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2 > div > p:nth-of-type(3){
  grid-row: 4;margin:0
}
section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2 > div > .bp-actions__divider{
  grid-row: 5;margin-top:0;
}
section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2 > div > .bp-actions{
  grid-row: 6;
}

/* Sicherheit: volle Breite für die Kachel */
section[aria-labelledby="training-heading"] .bp-grid.bp-grid--2 > aside{
  grid-column: 1;
}


/* Ausbildung */
/* START: Kachel (aside) zwischen Absatz 1 und Absatz 2 */
section[aria-labelledby="start-heading"] .bp-grid.bp-grid--2{
  display: flex;
  flex-direction: column;
}

/* Wichtig: linker Text-Wrapper liefert KEINE eigene Box mehr,
   seine Kinder hängen direkt im Eltern-Flow -> dadurch sortierbar */
section[aria-labelledby="start-heading"] .bp-grid.bp-grid--2 > div:first-child{
  display: contents;
}

/* Reihenfolge festlegen */
section[aria-labelledby="start-heading"] .bp-grid.bp-grid--2 > div:first-child > p:first-of-type{
  order: 1;margin:0
}

section[aria-labelledby="start-heading"] .bp-grid.bp-grid--2 > aside{
  order: 2;margin:0
}

section[aria-labelledby="start-heading"] .bp-grid.bp-grid--2 > div:first-child > p:nth-of-type(2){
  order: 3;margin:0
}

section[aria-labelledby="start-heading"] .bp-grid.bp-grid--2 > div:first-child > .bp-actions__divider{
  order: 4;margin:0
}

section[aria-labelledby="start-heading"] .bp-grid.bp-grid--2 > div:first-child > .bp-actions{
  order: 5;margin:0
}

/* Optional: damit die Kachel optisch „im Textfluss“ sitzt */
section[aria-labelledby="start-heading"] .bp-grid.bp-grid--2 > aside{
  margin-top: 2px;
}


/* ERWEITERUNG: Kachel VOR Divider + Button (Mobile) */
section[aria-labelledby="extension-heading"] .bp-grid.bp-grid--2 {
  display: flex;
  flex-direction: column;
}

/* linken Text-Wrapper auflösen */
section[aria-labelledby="extension-heading"] 
.bp-grid.bp-grid--2 > div:first-child {
  display: contents;
}

/* Reihenfolge festlegen */
section[aria-labelledby="extension-heading"] 
.bp-grid.bp-grid--2 > div:first-child > p:first-of-type {
  order: 1;margin:0
}

section[aria-labelledby="extension-heading"] 
.bp-grid.bp-grid--2 > div:first-child > p:nth-of-type(2) {
  order: 2;margin:0
}

/* KACHEL */
section[aria-labelledby="extension-heading"] 
.bp-grid.bp-grid--2 > aside {
  order: 3;margin:0
}

/* STRICH */
section[aria-labelledby="extension-heading"] 
.bp-grid.bp-grid--2 > div:first-child > .bp-actions__divider {
  order: 4;margin:0
}

/* BUTTON */
section[aria-labelledby="extension-heading"] 
.bp-grid.bp-grid--2 > div:first-child > .bp-actions {
  order: 5;margin:0
}



/* Über mich */
.about-portrait { margin: 0 0 14px; display: flex; justify-content: flex-start; }
.about-portrait img { display: block; border-radius: 16px; }
.about-aside .bp-card { padding-top: 22px; }
.about-aside .about-portrait { margin: 0 0 12px; display: block; }
.about-aside .about-portrait img { width: 130px; height: auto; border-radius: 16px; display: block; }
.about-aside .about-top { display: grid; grid-template-columns: 100px 1fr; column-gap: 20px; align-items: start; margin: 0 0 12px; }
.about-aside .about-top .bp-card__title { margin: 0 0 6px !important; text-align: left !important; }
.about-aside .about-top .bp-card__body { margin: 0; }
.about-aside .about-after { margin-top: 8px; }
.about-aside .about-after .bp-card__body + .bp-card__body,
.about-aside .bp-card__body + .bp-card__body { margin-top: 10px; }

/*Termin buchen*/
.bp-orient-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: var(--sp-3); }
.bp-orient-item__title { margin: 0 0 14px; font-size: 16px; letter-spacing: -0.01em; font-weight: var(--fw-medium); }
.bp-orient-item__body { margin: 0 0 10px; max-width: 100%; }

/* Impressum */
.bp-legal { max-width: min(72ch, 100%); }
.bp-legal h3 { margin-top: var(--sp-4); margin-bottom: var(--sp-1); padding-top: var(--sp-3); border-top: 1px solid var(--divider-mini); text-align: left; line-height: 1.3; }
.bp-legal h3:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.bp-legal h3 + p { margin-top: 0; }
.bp-legal .bp-source { margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--border-soft); font-style: italic; }

/* IMPRESSUM; DATENSCHUTZ */
.background--white{background:var(--bg-white) }
.bp-legal h2{margin-top:var(--sp-4);margin-bottom:var(--sp-2);padding-top:var(--sp-2);border-top:1px solid var(--divider-mini);line-height:1.3;}
.bp-legal h2:first-of-type{margin-top:0;padding-top:0;border-top:0;}
.bp-legal h3{margin-top:var(--sp-3);margin-bottom:var(--sp-1);padding-top:0;border-top:0;}


/* Besondere Menschen */
.bp-prose p { max-width: min(78ch, 100%); }
.bp-prose p + p { margin-top: 18px; }
.bp-article { max-width: min(78ch, 100%); margin-left: auto; margin-right: auto; }
.text_head { margin-bottom: -10px; }
.eingeruckt { text-indent: 15px; }
/* ÜBERSCHREIBUNG !!!!!! */


.page-besondere-menschen .bp-article h3{
  font-size: 18px;          /* statt var(--fs-h3) = 16–18 */
  line-height: 1.25;
  font-weight: var(--fw-semibold);
  margin-top: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;  /* gibt mehr „Titel“-Gefühl */
}

.page-besondere-menschen .bp-article h3 + p{
  margin-top: 0;
}


/* FAQ */
.bp-faq-grid { margin-top: var(--sp-3); display: grid; gap: 14px; }
.bp-faq-item { border: 1px solid var(--border-soft); border-radius: 16px; background: rgba(255, 255, 255, 0.40); overflow: hidden; transition: background var(--btn-transition), border-color var(--btn-transition); }
.bp-faq-item[open] { background: rgba(255, 255, 255, 0.62); border-color: rgba(88, 71, 56, 0.18); }
.bp-faq-q { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px; line-height: 1.35; cursor: pointer; font-size: 16px; font-weight: var(--fw-medium); letter-spacing: -0.01em; color: rgba(20, 20, 20, 0.92); -webkit-tap-highlight-color: transparent; }
.bp-faq-q::-webkit-details-marker { display: none; }
.bp-faq-q { display: flex; }
.bp-faq-icon { flex: 0 0 auto; width: 18px; height: 18px; position: relative; opacity: 0.62; }
.bp-faq-icon::before, .bp-faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 1px; background: rgba(63, 85, 97, 0.62); translate: -50% -50%; transition: transform var(--btn-transition), opacity var(--btn-transition), translate var(--btn-transition); }
.bp-faq-icon::after { transform: rotate(90deg); }
.bp-faq-item[open] .bp-faq-icon::after { opacity: 0; transform: rotate(90deg) scaleX(0.6); }
.bp-faq-a { padding: 0 18px 20px; color: rgba(20, 20, 20, 0.86); line-height: 1.6; }
.bp-faq-a p { max-width: min(78ch, 100%); }
/* Ausbildung: Abschluss-Card Link wie im CTA/FAQ: unterstrichen */
#faq-ueber-mich a.link,#faq-weiterleitung a.link,#anfahrt a.link,#einschraenkungen a.link, #lebensgeschichte a.link, #koerperarbeit a.link{
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

#faq-ueber-mich a.link::after,#faq-weiterleitung a.link::after, #anfahrt a.link::after,,#einschraenkungen a.link::after, #lebensgeschichte a.link::after, #koerperarbeit a.link::after{
  content: none !important; /* falls dein .link irgendwo ein Pseudo-Element nutzt */
}


/* FAQ und Ausbildung deutschland */
.bp-faq-item {scroll-margin-top: 120px}

/* Ausbildung (auch ein bishcen ausbildung-ratenzahlung) */
.page-ausbildung .bp-section--panel .bp-grid--3 .bp-card .bp-list { margin-top: 10px; margin-bottom: 14px; padding-left: 0; list-style: none; }
.page-ausbildung .bp-section--panel .bp-grid--3 .bp-card .bp-list li { position: relative; padding-left: 18px; font-size: 13px; line-height: 1.7; color: var(--text-soft); }
.page-ausbildung .bp-section--panel .bp-grid--3 .bp-card .bp-list li::before { content: "•"; position: absolute; left: 0; top: 0.35em; font-size: 0.9em; color: var(--k1-soft); }
.no-underline { text-decoration: none !important; }
.no-underline::after { content: none !important; }
.bp-card__body.text-muted { color: var(--text-muted); }
			
/* Ausbildung Deutschlandseite */ 
#angebot-faq .bp-keypoint:last-child{padding-bottom:0;}
.about-photo img{transform:none;backface-visibility:visible;}
#haltung-zitat .bp-quote__text{font-size: clamp(16px, 0.55vw + 14px, 18px);line-height:1.65;font-weight: var(--fw-regular);overflow-wrap: break-word}
#haltung-zitat .bp-quote__cite{display: block;margin-top:14px;font-style: normal;font-size: var(--fs-small)opacity:.85;}
#haltung-zitat .bp-quotes{margin-top:0;}
.bp-mini-grid{display:grid;grid-template-columns:1fr;gap:22px;margin-top:var(--sp-3);}







.bp-orient-item {
    display: flex;
    flex-direction: column;
}.bp-orient-item a {
    margin-top: auto;
}
/* Links in den Orient-Kacheln: unten ausrichten, aber nur Textbreite */
.bp-orient-item .link {
    margin-top: auto;          /* bleibt: drückt Link nach unten */
    align-self: flex-start;    /* kein Stretch in der Breite */
    display: inline-block;     /* nur so breit wie Inhalt */
    width: fit-content;        /* sichert: keine volle Breite */
}
 .bp-orient-item > a.link,.bp-resonanz-more > a.bp-link-pill{
    display: inline-block;
    margin-top: 10px;

    padding: 6px 10px;          /* kleiner als Buttons */
    border-radius: 999px;

    border: 1px solid rgba(0,0,0,.12); /* dünn */
    background: transparent;     /* NICHT buttonig */
    color: inherit;

    font-weight: 600;
    font-size: 0.92em;          /* kleiner als Fließtext/Buttons */
    line-height: 1.15;
    text-decoration: none;
	transition: opacity 0.2s ease;
  }


.bp-orient-item > a.link:hover,.bp-resonanz-more > a.bp-link-pill:hover {
  opacity: 0.7;
}

/* Besondere Menschen – mittlere Section bewusst breiter */
.page-besondere-menschen .bm-wide .bp-section__head,
.page-besondere-menschen .bm-wide .bp-prose {
  max-width: 980px; /* Varianz: deutlich breiter als --narrow */
  margin-left: auto;
  margin-right: auto;
}

