/* =========================================================
   Empathie Akademie – Dachmarke + Bereiche (Empathie/Yoga/Paarberatung)
   Reines CSS, kein Build nötig. Farben unten anpassbar.
   ========================================================= */

:root {
  /* Farbwelt – Standard = Empathie (Violett) */
  --purple:         #4a2c7d;
  --purple-dark:    #37205e;
  --purple-soft:    #6a4bab;
  --lavender:       #d3cce3;
  --lavender-light: #ece8f4;
  --lavender-tint:  #f6f4fb;
  --glow:           rgba(106,75,171,.20);
  --ink:            #2e2a33;
  --muted:          #6b6577;
  --white:          #ffffff;
  --cta:            #201b28;
  --cta-hover:      #000000;

  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(55, 32, 94, .10);
  --shadow-lg: 0 20px 50px rgba(55, 32, 94, .16);
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

/* --- Bereichs-Themes (Klasse auf <body>) --- */
body.theme-yoga {
  --purple:#2f7d5b; --purple-dark:#245f45; --purple-soft:#4aa87d;
  --lavender:#cfe6da; --lavender-light:#e6f3ec; --lavender-tint:#f2f9f5;
  --glow: rgba(74,168,125,.22);
}
body.theme-paar {
  --purple:#bd5a49; --purple-dark:#97463a; --purple-soft:#d98a7d;
  --lavender:#f0dcd6; --lavender-light:#f8ece8; --lavender-tint:#fbf5f2;
  --glow: rgba(217,138,125,.25);
}

/* ---------- Reset / Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.15; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.3px; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.bg-lavender { background: var(--lavender); }
.bg-lavender-light { background: var(--lavender-light); }
.bg-tint { background: var(--lavender-tint); }
.text-center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 720px; }
.text-center .lead { margin-left: auto; margin-right: auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--purple);
  margin: 0 0 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--cta); color: #fff; }
.btn--primary:hover { background: var(--cta-hover); box-shadow: var(--shadow); }
.btn--purple { background: var(--purple); color: #fff; }
.btn--purple:hover { background: var(--purple-dark); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn--outline:hover { background: var(--purple); color: #fff; }
.btn--light { background: #fff; color: var(--purple); }
.btn--light:hover { background: var(--lavender-light); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(55,32,94,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 42px; height: 42px; flex: 0 0 auto; }
.brand small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; letter-spacing: .5px; }
.brand-word { display: block; line-height: 1.05; font-size: 1.35rem; font-weight: 800; letter-spacing: -.3px; }
.brand-accent { color: var(--purple); }
.footer-brand .brand-word { font-size: 1.2rem; color: #fff; }
.footer-brand .brand-word .brand-accent { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-weight: 500; padding: 8px 14px; border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--lavender-light); text-decoration: none; }
.nav-links a.active { color: var(--purple); font-weight: 600; }
.nav-links .btn, .nav-links .btn.active { color: #fff; }
.nav-links .btn:hover { color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; width: 44px; height: 44px; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 26px; height: 2.5px; background: var(--ink);
  border-radius: 2px; transition: transform .25s, opacity .25s; position: relative;
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after  { position: absolute; top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, var(--glow), transparent 60%),
    linear-gradient(160deg, var(--lavender-light) 0%, var(--lavender) 100%);
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding-block: 96px; }
.hero .eyebrow { color: var(--purple-dark); }
.hero h1 { margin: 0 0 18px; }
.hero h1 .accent { color: var(--purple); }
.hero p { font-size: 1.2rem; color: #4a4453; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__art { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(55,32,94,.25)); }
.hero__art .headfill { fill: var(--purple); }

/* Bild-Karte im Hero (Yoga/Paar) */
.hero__card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: var(--lavender);
}

/* ---------- Karten ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid rgba(55,32,94,.08); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--lavender-light); color: var(--purple); margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin: 0 0 10px; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Hub-Kacheln (Bereichsauswahl, Bild-Kacheln) ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tile {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end;
  aspect-ratio: 566 / 1096;                 /* treu zum Format der Bilder */
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); color: #fff; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); text-decoration: none; }
.tile__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; transition: transform .5s ease;
}
.tile:hover .tile__bg { transform: scale(1.05); }
/* Farbstich (voller Kachel) + Verlauf unten für Lesbarkeit */
.tile__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top,
      var(--tile-strong) 2%,
      color-mix(in srgb, var(--tile-strong) 65%, transparent) 26%,
      transparent 62%),
    color-mix(in srgb, var(--tile-tint) 30%, transparent);
}
.tile__body {
  position: relative; z-index: 2; padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.tile__body h3 { margin: 0; font-size: 1.5rem; color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.38); }
.tile__body p { margin: 0; color: rgba(255,255,255,.94); font-size: .98rem; text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.tile__more { font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; color: #fff; }
.tile__more svg { width: 18px; height: 18px; transition: transform .2s; }
.tile--empathie:hover .tile__more svg { transform: translateX(4px); }
.tile--yoga:hover .tile__more svg,
.tile--paar:hover .tile__more svg { transform: translate(3px, -3px); }

/* Bereichsfarben (Stich) */
.tile--empathie { --tile-tint: #6a4bab; --tile-strong: #37205e; }  /* Kids – Lila   */
.tile--yoga     { --tile-tint: #4aa87d; --tile-strong: #204b39; }  /* Yoga – Grün   */
.tile--paar     { --tile-tint: #d98a7d; --tile-strong: #8a3c2f; }  /* Paar – Orange/Braun */

/* Journey / Pfeil-Boxen */
.arrow-box { display: flex; align-items: stretch; border-radius: var(--radius-sm); overflow: hidden;
  font-weight: 700; margin-bottom: 18px; min-height: 88px; box-shadow: var(--shadow); }
.arrow-box .from { background: var(--lavender-light); color: var(--purple-dark); padding: 14px 18px;
  display: grid; align-content: center; flex: 1; font-size: .95rem; line-height: 1.3; }
.arrow-box .to { background: var(--purple); color: #fff; padding: 14px 26px 14px 34px; display: grid;
  align-content: center; flex: 1; clip-path: polygon(22px 0, 100% 0, 100% 100%, 22px 100%, 0 50%);
  margin-left: -14px; font-size: .95rem; line-height: 1.3; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--lavender); }

/* Voll­breites Banner-Bild oben in einem Abschnitt */
.section-banner {
  display: block; width: 100%;
  height: clamp(220px, 34vw, 360px);
  object-fit: cover; object-position: center 44%;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  margin-bottom: 44px;
}

.img-placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--radius); display: grid; place-items: center;
  text-align: center; color: var(--purple-dark);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.35) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--lavender) 0%, var(--lavender-light) 100%);
  border: 2px dashed color-mix(in srgb, var(--purple) 35%, transparent);
  font-size: .9rem; padding: 20px;
}
.img-placeholder span { max-width: 80%; }

/* ---------- Checklisten ---------- */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding: 8px 0 8px 34px; color: var(--ink); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--purple); box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--purple); }
.check-list li::after { content: ""; position: absolute; left: 6px; top: 15px; width: 8px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* ---------- Statistik ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.stat .num { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; color: var(--purple); }
.stat .lbl { color: var(--muted); font-size: .98rem; }

/* ---------- CTA-Band ---------- */
.cta-band { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%); color: #fff;
  border-radius: var(--radius); padding: 56px 48px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin: 0 0 12px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 26px; font-size: 1.1rem; }

/* ---------- Über mich ---------- */
.creds { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.creds li { background: #fff; border: 1px solid rgba(55,32,94,.08); border-left: 4px solid var(--purple);
  border-radius: var(--radius-sm); padding: 12px 16px; }
.creds .year { color: var(--purple); font-weight: 700; }
.quote { border-left: 4px solid var(--purple); padding: 6px 0 6px 20px; margin: 20px 0;
  font-style: italic; color: #4a4453; font-size: 1.1rem; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-block { display: grid; gap: 20px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--lavender-light); color: var(--purple); display: grid; place-items: center; }
.info-item h4 { margin: 0 0 2px; font-size: 1rem; }
.info-item p { margin: 0; color: var(--muted); }
.phone-line { display: inline-flex; align-items: center; gap: 10px; }
.wa-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: #25D366; color: #fff; flex: 0 0 auto;
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-link:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,.45); text-decoration: none; }
.wa-link svg { width: 18px; height: 18px; }

.form { display: grid; gap: 16px; background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form label { font-weight: 600; font-size: .92rem; display: block; margin-bottom: 6px; }
.form input, .form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid rgba(55,32,94,.18);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--purple) 15%, transparent); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .hint { font-size: .82rem; color: var(--muted); margin: 0; }
/* Honeypot – für Menschen unsichtbar, fängt Spam-Bots ab */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Datenschutz-Einwilligung */
.form .consent { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--muted); font-weight: 400; }
.form .consent input[type="checkbox"] { width: auto; margin-top: 3px; flex: 0 0 auto; accent-color: var(--purple); }
/* Fehlerhinweis */
.form-error { background: #fdecec; border-left: 4px solid #d64545; color: #8a2b2b;
  padding: 10px 14px; border-radius: var(--radius-sm); font-size: .9rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--purple-dark); color: rgba(255,255,255,.8); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; margin: 0 0 14px; font-size: 1rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .logo { width: 40px; height: 40px; }
.footer-brand strong { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 44px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .88rem; }

/* ---------- Page hero ---------- */
.page-hero { background: linear-gradient(160deg, var(--lavender-light) 0%, var(--lavender) 100%); padding: 72px 0 60px; }
.page-hero .eyebrow { color: var(--purple-dark); }
.page-hero h1 { margin: 0 0 14px; }
.page-hero p { max-width: 640px; font-size: 1.15rem; color: #4a4453; margin: 0; }

/* ---------- Prosa ---------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 28px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 12px; gap: 4px; box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(55,32,94,.08); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-links .btn { justify-content: center; margin-top: 4px; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: 64px; }
  .hero__art, .hero__card { max-width: 360px; margin: 0 auto; }
  .grid-3, .grid-2, .tiles { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 4 / 5; max-height: 78vh; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 24px; }
  .form .row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .tile:hover { transform: none; }
}
