/* ===========================================================
   Lokale Schriften
   =========================================================== */

/* Figtree */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/figtree-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/figtree-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/figtree-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/figtree-700.woff2') format('woff2');
}

/* Newsreader */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/newsreader-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/newsreader-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/newsreader-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/newsreader-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/newsreader-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/newsreader-600-italic.woff2') format('woff2');
}

/* ===========================================================
   reflexionszeit - Stylesheet
   Martina Ackers-Peilert
   Aufbau:
     1. Grundlagen und Farben
     2. Wiederkehrende Bausteine
     3. Kopfbereich und Navigation
     4. Sektionen von oben nach unten
     5. Fussbereich
     6. Unterseiten (Impressum, Datenschutz)
     7. Mobile Ansichten
   =========================================================== */


/* ============ 1. GRUNDLAGEN UND FARBEN ============ */

:root{
  --tinte:#33566E;
  --blau:#40708C;
  --blau-dunkel:#2A4A60;
  --blau-hell:#3C6480;
  --blau-linie:#3F6884;
  --gold:#B07F4C;
  --gold-dunkel:#96683A;
  --sand:#EEDFC1;
  --sand-dunkel:#E6D6B4;
  --creme:#F4EFE4;
  --linie:#E7DFCE;
  --linie-kopf:#E4DBC9;
  --hell:#E7EDEF;
  --text:#4a5551;
  --text-grau:#6b736f;
  --text-leise:#5a625d;
  --text-fein:#7a827d;
  --text-tag:#9aa29d;
  --hell-auf-dunkel:#CDD8DE;
  --label-auf-dunkel:#A7C1CB;
  --rand-hell:#C9D3D7;
}

*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--creme);
  color:#2E3336;
  font-family:'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{ max-width:100%; height:auto; }

a{
  color:var(--blau);
  text-decoration:none;
  transition:color .2s ease, background-color .2s ease, border-color .2s ease;
}
a:hover{ color:var(--gold); }

h1,h2,h3{
  font-family:'Newsreader', Georgia, 'Times New Roman', serif;
  font-weight:500;
  color:var(--tinte);
  margin:0;
}
p{ margin:0; }
ul{ margin:0; }

::selection{ background:#B07F4C33; }

.wrap{
  max-width:1180px;
  margin:0 auto;
}

/* Sichtbarer Sprunglink nur bei Tastaturbedienung */
.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  z-index:200;
  background:var(--tinte);
  color:#ffffff;
  padding:12px 20px;
  border-radius:0 0 10px 0;
  font-weight:600;
}
.skip-link:focus{ left:0; color:#ffffff; }

/* Sichtbarer Fokusrahmen fuer Tastaturbedienung */
a:focus-visible,
button:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
  border-radius:4px;
}

/* Sprungziele nicht unter dem klebenden Kopf verstecken */
[id]{ scroll-margin-top:96px; }


/* ============ 2. WIEDERKEHRENDE BAUSTEINE ============ */

/* --- Sektionen --- */
.section{ padding:70px 28px; }
.section--linie{ border-top:1px solid var(--linie); }
.section--schmal{ padding:20px 28px 60px; }
.section--act{ padding:6px 28px 56px; }
.section--fortbildung{
  padding:80px 28px 40px;
  border-top:1px solid var(--linie-kopf);
  margin-top:40px;
}
.section--wege{ padding:70px 28px 30px; }
.section--bildung{ padding:20px 28px 40px; }

.box{
  margin:0 28px;
  padding:56px 28px;
  border-radius:26px;
}
.box--dunkel{
  background:var(--tinte);
  color:var(--hell);
}
.box--dunkel h2,
.box--dunkel h3{ color:#ffffff; }

/* --- Raster --- */
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}

/* --- Ueberschriften --- */
.h2{
  font-size:38px;
  line-height:1.12;
  margin-bottom:20px;
}
.h2--gross{ font-size:42px; line-height:1.1; margin-bottom:18px; }
.h2--mittel{ font-size:40px; line-height:1.1; margin-bottom:16px; }
.h2--klein{ font-size:36px; margin-bottom:0; }
.h2--name{ font-size:34px; line-height:1.12; margin-bottom:8px; }

.h3{
  font-size:30px;
  line-height:1.14;
  margin-bottom:16px;
  color:#ffffff;
}
.h3--dunkel{ color:var(--tinte); }
.h3--klein{ font-size:26px; line-height:1.16; margin-bottom:12px; }

/* --- Kleine Auszeichnung ueber Ueberschriften --- */
.eyebrow{
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--gold);
  margin-bottom:16px;
}
.eyebrow--line{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:22px;
}
.eyebrow__dash{
  width:26px;
  height:1px;
  background:var(--gold);
  display:inline-block;
}
.eyebrow--sand{ color:var(--sand); }
.eyebrow--eng{ font-size:12.5px; letter-spacing:.14em; margin-bottom:12px; }

/* --- Fliesstext --- */
.text{
  font-size:17px;
  line-height:1.7;
  color:var(--text);
  margin-bottom:16px;
}
.text:last-of-type{ margin-bottom:0; }
.text strong{ color:var(--blau); }
.text--hell{ color:var(--hell-auf-dunkel); }
.text--hell strong{ color:var(--sand); }
.text--klein{ font-size:15.5px; line-height:1.65; margin-bottom:14px; }
.text--gross{ font-size:17px; line-height:1.75; }
.sand{ color:var(--sand); }
.gold{ color:var(--gold); }

/* --- Schaltflaechen --- */
.btn{
  display:inline-block;
  padding:15px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:16px;
  line-height:1.2;
  border:none;
  cursor:pointer;
}
.btn--klein{ padding:13px 24px; font-size:15px; }
.btn--gross{ padding:16px 32px; font-size:17px; }
.btn--nav{ padding:10px 18px; font-size:15px; }

.btn--gold{ background:var(--gold); color:#ffffff; }
.btn--gold:hover{ background:var(--gold-dunkel); color:#ffffff; }

.btn--blau{ background:var(--blau); color:#ffffff; }
.btn--blau:hover{ background:var(--blau-dunkel); color:#ffffff; }

.btn--sand{ background:var(--sand); color:var(--tinte); }
.btn--sand:hover{ background:var(--sand-dunkel); color:var(--tinte); }

.btn--linie{
  background:transparent;
  color:var(--blau);
  border:1.5px solid var(--rand-hell);
  padding:15px 26px;
}
.btn--linie:hover{ border-color:var(--blau); color:var(--blau); }
.btn--linie.btn--klein{ padding:12px 22px; font-size:14.5px; }

.btn-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}
.btn-row--weit{ margin-top:30px; }

/* --- Kleine Beschriftungen und Etiketten --- */
.mini-label{
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--label-auf-dunkel);
  font-weight:600;
  margin-bottom:8px;
}
.mini-label--grau{ color:var(--text-tag); font-size:12.5px; margin-bottom:10px; }

.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
  padding:0;
  margin:0 0 22px;
}
.tag{
  border-radius:999px;
  padding:7px 14px;
  font-size:13px;
}
.tag--blau{ background:var(--blau); color:#ffffff; }
.tag--hell{ background:var(--hell); color:var(--blau); font-weight:500; }

/* --- Dekorationselemente --- */
.deko-ring{
  position:absolute;
  inset:-18px -18px auto auto;
  width:150px;
  height:150px;
  border:1.5px solid var(--rand-hell);
  border-radius:50%;
  z-index:0;
}
.deko-ring--gross{
  inset:-80px -80px auto auto;
  width:280px;
  height:280px;
  border-color:#47657c;
}
.deko-kreis{
  position:absolute;
  inset:auto auto -16px -16px;
  width:120px;
  height:120px;
  background:#E6DCC6;
  border-radius:50%;
  z-index:0;
}

/* --- Einblenden beim Laden --- */
@keyframes floatIn{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:none; }
}
.reveal{ animation:floatIn .7s ease both; }
.reveal--slow{ animation-duration:.9s; }

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .reveal,
  .reveal--slow{ animation:none; }
  *{ transition:none !important; }
}


/* ============ 3. KOPFBEREICH UND NAVIGATION ============ */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,244,238,.92);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--linie-kopf);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:8px 28px;
}
.logo{ display:flex; align-items:center; }
.logo img{ height:58px; width:auto; display:block; }

.main-nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:15px;
  font-weight:500;
}
.main-nav a{ color:#3a4744; }
.main-nav a:hover{ color:var(--gold); }
.main-nav a.btn{ color:#ffffff; }
/* Schrift der Schaltflaeche bleibt auch beim Ueberfahren weiss */
.main-nav a.btn:hover{ color:#ffffff; }

/* Burger-Schaltflaeche, nur auf kleinen Bildschirmen sichtbar */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:10px;
  background:transparent;
  border:1px solid var(--linie-kopf);
  border-radius:10px;
  cursor:pointer;
  flex-direction:column;
  justify-content:space-between;
}
.nav-toggle__bar{
  display:block;
  height:2px;
  width:100%;
  background:var(--tinte);
  border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1){ transform:translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3){ transform:translateY(-10px) rotate(-45deg); }


/* ============ 4. SEKTIONEN ============ */

/* --- Hero --- */
.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
  padding:78px 28px 64px;
}
.hero__text{ min-width:0; }
.hero__title{
  font-size:60px;
  line-height:1.04;
  letter-spacing:-.01em;
  margin-bottom:22px;
}
.hero__title em{ font-style:italic; color:var(--gold); }
.hero__lead{
  font-size:20px;
  line-height:1.6;
  color:var(--text);
  max-width:520px;
  margin-bottom:16px;
}
.hero__sub{
  font-size:16px;
  line-height:1.6;
  color:var(--text-grau);
  max-width:520px;
  margin-bottom:32px;
}
.hero .btn-row{ margin-top:0; }

.hero__facts{
  display:flex;
  gap:20px;
  margin-top:44px;
  flex-wrap:wrap;
}
.fact{ flex:1; min-width:130px; }
.fact__title{
  font-family:'Newsreader', Georgia, serif;
  font-size:22px;
  color:var(--blau);
  font-weight:500;
  margin-bottom:4px;
}
.fact__text{
  font-size:13.5px;
  color:var(--text-fein);
  line-height:1.45;
}

.hero__media{ position:relative; }
.hero__frame{
  position:relative;
  z-index:1;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 24px 60px -28px rgba(43,81,74,.5);
  aspect-ratio:4/5;
  background:#EFEAE0;
}
.portrait-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  mix-blend-mode:multiply;
  filter:grayscale(1) brightness(1.03) contrast(1.02);
}
.portrait-img--hell{ filter:grayscale(1) brightness(1.1) contrast(.96); }

.hero__quote{
  position:absolute;
  left:-22px;
  bottom:26px;
  z-index:2;
  background:#ffffff;
  border-radius:14px;
  padding:16px 20px;
  box-shadow:0 14px 34px -16px rgba(43,81,74,.42);
  max-width:230px;
  margin:0;
}
.hero__quote blockquote{
  margin:0;
  font-family:'Newsreader', Georgia, serif;
  font-style:italic;
  font-size:18px;
  color:var(--tinte);
  line-height:1.35;
}

/* --- Fuersorge-Dreieck --- */
.dreieck{
  background:var(--hell);
  border-radius:22px;
  padding:38px 34px;
}
.dreieck__label{
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--text-fein);
  text-align:center;
  margin-bottom:8px;
}
.dreieck__svg{ width:100%; height:auto; display:block; }
.dreieck__text{
  font-size:14.5px;
  line-height:1.6;
  color:var(--text);
  margin-top:18px;
  text-align:center;
}
.dreieck__text strong{ color:var(--blau); }

/* --- Grundlagen-Chips --- */
.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  list-style:none;
  padding:0;
  margin:0;
}
.chip{
  background:#ffffff;
  border:1px solid var(--linie-kopf);
  border-radius:999px;
  padding:11px 22px;
  font-weight:600;
  font-size:15px;
  color:var(--tinte);
}

/* --- Was ist ACT --- */
.act{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.act__text{
  font-family:'Newsreader', Georgia, serif;
  font-size:24px;
  line-height:1.5;
  color:var(--tinte);
}
.act__text em{ font-style:italic; }
.act__text strong{ font-weight:600; }

/* --- Leitbild --- */
.leitbild{ text-align:center; }
.leitbild .eyebrow{ margin-bottom:18px; }
.leitbild__row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  margin-bottom:24px;
}
.leitbild__wort{
  font-family:'Newsreader', Georgia, serif;
  font-size:26px;
  color:#cdd8cf;
}
.leitbild__pfeil{ color:#88A5B0; font-size:22px; }
.leitbild__raum{
  font-family:'Newsreader', Georgia, serif;
  font-style:italic;
  font-size:34px;
  color:#ffffff;
  background:var(--blau);
  padding:8px 26px;
  border-radius:999px;
}
.leitbild__text{
  font-size:19px;
  line-height:1.7;
  color:var(--hell-auf-dunkel);
  max-width:760px;
  margin:0 auto;
}

/* --- Einzelsupervision --- */
.supervision{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
  margin:56px 28px;
  padding:60px 52px;
  position:relative;
  overflow:hidden;
}
.supervision__text{ position:relative; }
.badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:var(--gold);
  color:#ffffff;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:600;
  padding:8px 16px;
  border-radius:999px;
  margin-bottom:20px;
}
.supervision .text{ font-size:17.5px; }

.sv-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
}
.sv-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:var(--blau-hell);
  border-radius:14px;
  padding:20px 22px;
}
.sv-item__dot{ color:var(--sand); font-size:20px; line-height:1; }
.sv-item__titel{ color:#ffffff; display:block; }
.sv-item__text{
  display:block;
  font-size:14.5px;
  color:var(--hell-auf-dunkel);
  line-height:1.5;
}

/* --- Fortbildung --- */
.label-mitte{
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:center;
  margin-bottom:22px;
}
.label-mitte__linie{ height:1px; width:40px; background:var(--gold); }
.label-mitte__wort{
  font-size:13px;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--gold);
}

.kopf-mitte{
  text-align:center;
  max-width:680px;
  margin:0 auto 46px;
}
.kopf-mitte--schmal{ max-width:640px; margin-bottom:42px; }
.kopf-mitte--eng{ max-width:none; margin-bottom:40px; }

.modul-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.modul{
  background:#ffffff;
  border:1px solid var(--linie);
  border-radius:18px;
  padding:26px 24px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.modul:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px -26px rgba(43,81,74,.5);
}
.modul--dunkel{
  background:var(--tinte);
  border-color:var(--tinte);
}
.modul--dunkel:hover{
  box-shadow:0 20px 40px -26px rgba(43,81,74,.7);
}
.modul__titel--hell{ color:#ffffff; }
.modul__text--hell{ color:#ffffff; }
.modul__kopf{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-bottom:12px;
}
.modul__nr{
  font-family:'Newsreader', Georgia, serif;
  font-size:32px;
  color:var(--gold);
  line-height:1;
}
.modul__tag{
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-tag);
  font-weight:600;
}
.modul__titel{
  font-size:21px;
  margin-bottom:8px;
}
.modul__text{
  font-size:15px;
  line-height:1.6;
  color:var(--text-leise);
}
/* Dark card — must come after .modul__titel/.modul__text to win */
.modul--dunkel .modul__titel,
.modul--dunkel .modul__text{ color:#ffffff; }
.act-box-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.booster{
  margin-top:20px;
  background:var(--hell);
  border:1px dashed #bcc8bc;
  border-radius:18px;
  padding:26px 28px;
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.booster__stern{
  font-family:'Newsreader', Georgia, serif;
  font-size:32px;
  color:#7BA0AE;
}
.booster__inhalt{ flex:1; min-width:240px; }
.booster__titel{ font-size:21px; margin-bottom:4px; }

/* --- Formate --- */
.format-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.format{
  background:#ffffff;
  border:1px solid var(--linie);
  border-radius:16px;
  padding:24px;
}
.format__titel{
  font-size:19px;
  margin-bottom:6px;
  color:var(--blau);
}
.format__text{
  font-size:14.5px;
  line-height:1.55;
  color:var(--text-leise);
  margin-bottom:10px;
}
.format__std{
  font-size:13px;
  font-weight:600;
  color:var(--gold);
}

/* --- Zwei Wege --- */
.wege-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:stretch;
}
.weg{
  border-radius:24px;
  padding:40px 38px;
}
.weg--dunkel{ background:var(--tinte); color:var(--hell); }
.weg--hell{ background:#ffffff; border:1px solid var(--linie); }
.weg .text{ margin-bottom:24px; }

.spalten-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:26px;
  align-items:start;
}
.liste-hell{
  padding-left:18px;
  font-size:14.5px;
  line-height:1.75;
  color:#D7E1E6;
}
.liste-dunkel{
  margin:0 0 26px;
  padding-left:18px;
  font-size:15px;
  line-height:1.85;
  color:var(--text);
}
.liste-dunkel strong{ color:var(--tinte); }

.weg__fuss{ padding-top:20px; }
.weg__fuss--dunkel{ border-top:1px solid var(--blau-linie); }
.weg__fuss--hell{ border-top:1px solid var(--linie); }
.weg__fuss .mini-label{ margin-bottom:10px; }
.weg__fuss .btn-row{ margin-top:0; }

/* --- Bildungseinrichtungen --- */
.bildung{
  background:#ffffff;
  border:1px solid var(--linie);
  border-radius:22px;
  padding:34px 38px;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:36px;
  align-items:center;
}
.bildung .text strong{ color:var(--tinte); }
.bildung__seite{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}
.bildung__seite .tag-row{ margin-bottom:0; }

/* --- Ueber mich --- */
.ueber{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:52px;
  align-items:center;
  padding:60px 28px;
}
.ueber__media{ position:relative; }
.ueber__frame{
  position:relative;
  z-index:1;
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:3/4;
  box-shadow:0 22px 50px -28px rgba(43,81,74,.5);
  background:#F1ECE2;
}
.rolle{
  font-size:15px;
  color:var(--text-grau);
  margin-bottom:20px;
}
.marke{ font-style:italic; color:var(--gold); }
.zitat{
  font-family:'Newsreader', Georgia, serif;
  font-style:italic;
  font-size:22px;
  line-height:1.4;
  color:var(--blau);
  border-left:3px solid var(--gold);
  padding-left:20px;
  margin:0;
}
.zitat--top{ margin-top:32px; }
.act-box{
  background:var(--tinte);
  border-radius:18px;
  padding:36px 32px;
  text-align:right;
  display:flex;
  align-items:center;
}
.act-box__text{
  font-size:17px;
  line-height:1.65;
  color:#ffffff;
}
.grid-2--top{ align-items:start; }
.zertifikate{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:28px;
}
.act-siegel{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:50%;
  flex-shrink:0;
}
.dgsv-siegel{
  height:110px;
  width:auto;
  flex-shrink:0;
}
.ueber__zitat-bereich{
  grid-column:1 / -1;
  padding-top:8px;
}

/* --- Kontakt --- */
.kontakt{
  margin:40px 28px 70px;
  padding:60px 48px;
}
.kontakt__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}
.kontakt .h2{ margin-bottom:18px; }
.kontakt__box{
  background:var(--blau-hell);
  border-radius:18px;
  padding:32px 30px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.kontakt__item .mini-label{ margin-bottom:5px; }
.kontakt__wert{
  color:#ffffff;
  font-size:17px;
  font-weight:500;
  line-height:1.45;
}
.kontakt__wert a{ color:#ffffff; }
.kontakt__wert a:hover{ color:var(--sand); }
.kontakt__signatur{
  border-top:1px solid var(--blau-linie);
  padding-top:16px;
  font-size:14.5px;
  color:var(--hell-auf-dunkel);
  line-height:1.5;
}


/* ============ 5. FUSSBEREICH ============ */

.site-footer{
  border-top:1px solid var(--linie-kopf);
  padding:26px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.site-footer__logo{
  height:50px;
  width:auto;
  opacity:.85;
}
.site-footer__text{
  font-size:13.5px;
  color:#8b938e;
}
.site-footer__nav{
  display:flex;
  gap:18px;
  font-size:13.5px;
}
.site-footer__nav a{ color:#8b938e; }
.site-footer__nav a:hover{ color:var(--gold); }


/* ============ 6. UNTERSEITEN ============ */

.rechtstext{
  max-width:820px;
  margin:0 auto;
  padding:70px 28px 80px;
}
.rechtstext h1{
  font-size:42px;
  line-height:1.1;
  margin-bottom:28px;
}
.rechtstext h2{
  font-size:24px;
  margin:40px 0 12px;
}
.rechtstext h3{
  font-size:19px;
  margin:26px 0 8px;
}
.rechtstext p,
.rechtstext li{
  font-size:16.5px;
  line-height:1.75;
  color:var(--text);
}
.rechtstext p{ margin-bottom:14px; }
.rechtstext ul{
  padding-left:20px;
  margin-bottom:14px;
}
.rechtstext .zurueck{
  display:inline-block;
  margin-top:36px;
  font-weight:600;
}
.hinweis{
  background:#ffffff;
  border:1px dashed var(--gold);
  border-radius:14px;
  padding:18px 22px;
  margin:0 0 26px;
  font-size:15px;
  line-height:1.6;
  color:var(--text);
}
.hinweis strong{ color:var(--gold-dunkel); }


/* ============ 7. MOBILE ANSICHTEN ============ */

@media (max-width:900px){

  /* Navigation wird zum Klappmenue */
  .nav-toggle{ display:flex; }
  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:var(--creme);
    border-bottom:1px solid var(--linie-kopf);
    box-shadow:0 18px 34px -22px rgba(43,81,74,.5);
    padding:8px 18px 18px;
  }
  .main-nav.is-open{ display:flex; }
  .main-nav a{
    padding:14px 4px;
    border-bottom:1px solid var(--linie-kopf);
    font-size:16px;
  }
  .main-nav a:last-child{ border-bottom:none; }
  .main-nav a.btn{
    margin-top:14px;
    text-align:center;
    padding:14px 18px;
  }
  .header-inner{ padding:12px 18px; position:relative; }

  /* Raster einspaltig */
  .grid-2,
  .hero,
  .supervision,
  .modul-grid,
  .format-grid,
  .wege-grid,
  .spalten-2,
  .bildung,
  .ueber,
  .kontakt__grid{
    grid-template-columns:1fr;
    gap:34px;
  }
  .spalten-2{ gap:24px; }
  .modul-grid,
  .format-grid{ gap:18px; }

  /* Abstaende */
  .section,
  .hero,
  .section--fortbildung,
  .section--wege{ padding-left:20px; padding-right:20px; }
  .section{ padding-top:48px; padding-bottom:48px; }
  .hero{ padding-top:56px; padding-bottom:48px; }
  .box{ margin-left:16px; margin-right:16px; padding:36px 24px; }
  .supervision{ margin:40px 16px; padding:40px 26px; }
  .kontakt{ margin:32px 16px 56px; padding:40px 26px; }
  .weg{ padding:32px 26px; }
  .bildung{ padding:28px 24px; }

  /* Schriftgroessen */
  .hero__title{ font-size:38px; }
  .h2,
  .h2--gross,
  .h2--mittel,
  .h2--klein,
  .h2--name{ font-size:28px; line-height:1.15; }
  .h3{ font-size:24px; }
  .act__text{ font-size:20px; }
  .leitbild__raum{ font-size:27px; padding:7px 20px; }
  .leitbild__wort{ font-size:22px; }
  .leitbild__text{ font-size:17px; }
  .rechtstext h1{ font-size:30px; }

  /* Freigestellte Elemente in den Fluss holen */
  .hero__quote{
    position:static;
    max-width:none;
    margin-top:16px;
  }
  .deko-ring,
  .deko-ring--gross,
  .deko-kreis{ display:none; }

  .site-footer{
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
  }
}

@media (max-width:600px){
  .hero__title{ font-size:31px; }
  .hero__lead{ font-size:18px; }
  .logo img{ height:46px; }
  .btn{ padding:14px 24px; font-size:15px; }
  .btn--gross{ padding:15px 26px; font-size:16px; }
  .btn-row .btn{ width:100%; text-align:center; }
  .hero__facts{ gap:16px; }
  .fact{ flex:1 1 100%; }
  .dreieck{ padding:28px 20px; }
  .modul{ padding:22px 20px; }
  .leitbild__row{ gap:12px; }
  .leitbild__pfeil{ transform:rotate(90deg); }
}

/* ============ DRUCKANSICHT ============ */

@media print{
  .site-header,
  .nav-toggle,
  .btn,
  .skip-link{ display:none !important; }
  body{ background:#ffffff; }
  .box--dunkel,
  .weg--dunkel{ background:#ffffff !important; color:#000000 !important; }
  .box--dunkel h2,
  .box--dunkel h3,
  .weg--dunkel h3{ color:#000000 !important; }
  .text--hell,
  .leitbild__text,
  .kontakt__wert{ color:#000000 !important; }
  a{ color:#000000; text-decoration:underline; }
}
