/* ===================== SCHRIFTEN (lokal gehostet) ===================== */
@font-face {
  font-family: "Anton";
  src: url("fonts/Anton-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-Italic-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ===================== TOKENS ===================== */
:root {
  --bg:        #fcf7e3;   /* warmes Buttergelb (Seite) */
  --bg-alt:    #fbf2cf;   /* etwas kräftiger */
  --cream:     #fffdf4;
  --yellow:    #ffd23f;   /* Sticker / Akzent */
  --yellow-2:  #ffe27a;
  --peri:      #8b97f2;   /* Periwinkle (Tabellen-Header, Akzent) */
  --peri-soft: #aab4f6;   /* Brush-Highlight */
  --ink:       #141312;
  --muted:     #56544c;
  --line:      rgba(20,19,18,.12);
  --dark:      #161514;   /* dunkle Sektion / Footer */
  --li:        #0a66c2;
  --display: "Anton", Impact, sans-serif;
  --sans:  "Google Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1180px;
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.6;
  background: linear-gradient(180deg, #fffdf6 0%, #fdf7e6 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.muted { color: var(--muted); }
section[id] { scroll-margin-top: 90px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ===================== TYPO ===================== */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.9rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: .5px;
}
.title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: .96;
  letter-spacing: .4px;
}
.title--center { text-align: center; margin: 0 auto 1rem; }
.title--light { color: var(--cream); }
.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow--peri { color: #5664d6; }
.eyebrow--yellow { color: var(--yellow); }
.lead { color: var(--muted); font-size: 1.22rem; max-width: 30rem; margin: 1.6rem 0 2rem; }
.lead-strong { color: var(--ink); font-weight: 700; font-size: 1.15rem; margin-top: .4rem; }

/* ===================== SIGNATURE ELEMENTS ===================== */
/* Gelber Sticker (rotiert) */
.sticker {
  display: inline-block;
  background: var(--yellow);
  color: #fff;
  font-weight: 800;
  font-style: italic;
  font-size: .95rem;
  padding: .5rem 1.1rem;
  border-radius: 14px;
  transform: rotate(-2.5deg);
  box-shadow: 0 10px 22px -12px rgba(0,0,0,.4);
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.sticker--wave { position: absolute; top: -18px; left: -16px; transform: rotate(-6deg); z-index: 3; }

/* Periwinkle Brush-Highlight hinter Text */
.swash { position: relative; z-index: 0; display: inline-block; white-space: nowrap; }
.swash::before {
  content: "";
  position: absolute;
  left: -.16em; right: -.16em; top: 16%; bottom: 4%;
  background: var(--peri-soft);
  border-radius: 62% 38% 56% 44% / 58% 56% 44% 42%;
  transform: rotate(-1.4deg);
  z-index: -1;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem;
  border-radius: 999px; padding: .8rem 1.5rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  cursor: pointer; border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { box-shadow: 0 14px 26px -12px rgba(0,0,0,.6); }
.btn--ghost { background: rgba(255,255,255,.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { box-shadow: 0 14px 26px -12px rgba(255,210,63,.8); }
.ico { width: 18px; height: 18px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: #5664d6; font-weight: 800; font-size: 1.05rem; margin-top: 1.6rem;
}
.link-arrow span { transition: transform .15s ease; }
.link-arrow:hover span { transform: translateX(5px); }

/* ===================== NAV (Glas-Pill) ===================== */
.nav { position: sticky; top: 0; z-index: 50; padding: 14px 16px; background: transparent; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  max-width: 1000px; margin: 0 auto; height: 60px;
  padding: 0 12px 0 24px;
  background: rgba(255,253,244,.38);
  -webkit-backdrop-filter: blur(32px) saturate(1.9);
  backdrop-filter: blur(32px) saturate(1.9);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  box-shadow: 0 12px 36px -16px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.8), inset 0 -1px 0 rgba(255,255,255,.18);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav--scrolled .nav__inner {
  background: rgba(255,253,244,.66);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.85);
}
.nav__logo { font-weight: 800; font-size: 1.18rem; letter-spacing: -.01em; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: .95rem; font-weight: 600; color: var(--ink); transition: color .15s; }
.nav__links a:hover { color: #5664d6; }

/* ===================== HERO ===================== */
.hero { padding: 56px 0 84px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__text .display { margin-top: 1.4rem; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__cta--center { justify-content: center; }

.trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.trust li { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; }
.trust li span { font-size: 1.05rem; }

/* Foto-Block */
.hero__media { display: flex; justify-content: center; }
.photo {
  position: relative;
  width: 100%; max-width: 420px;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(160deg, var(--yellow-2), #fff4b0);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 14px 14px 0 0 var(--peri-soft);
}
.photo__ph {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 10px;
  color: rgba(20,19,18,.45); border-radius: 26px;
}
.photo__ph .ph-ico { width: 52px; height: 52px; }
.photo__ph span { font-weight: 700; letter-spacing: .03em; }
/* Eingebettetes Foto füllt den Rahmen */
.photo__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 25px;
}
.searchbar {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: rgba(255,255,255,.5); color: var(--ink); font-weight: 600; font-size: .92rem;
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.6);
  padding: .55rem 1rem; border-radius: 999px;
  box-shadow: 0 12px 26px -14px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.75);
}
.searchbar .ico { width: 15px; height: 15px; color: #777; }

/* ===================== ZAHLEN / COUNTER ===================== */
.stats {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.32);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
}
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-big { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 4px 12px; }
.stats__grid .stat-big:not(:last-child) { border-right: 1px solid var(--line); }
.stat-big__num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1; letter-spacing: .5px;
  font-variant-numeric: tabular-nums;
}
.stat-big__label { font-weight: 600; color: var(--muted); font-size: 1.02rem; max-width: 18ch; }

/* ===================== SECTIONS ===================== */
.section { padding: 92px 0; }
.section--alt { background: rgba(251,242,207,.6); }

/* Über mich (zweispaltig) */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.about-photo { margin-top: 1.8rem; max-width: 440px; }
.about-photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 10px 10px 0 0 var(--peri-soft);
}
.split__body p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.2rem; }
.creds { list-style: none; margin: 2rem 0 1.6rem; display: grid; gap: .7rem; }
.creds li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 600; font-size: 1.02rem; }
.creds li span { font-size: 1.1rem; line-height: 1.4; }

.logos { margin-top: 1.6rem; }
.logos__label { font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.logos__row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: .8rem; }
.logo-chip {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 10px; padding: .5rem .9rem; font-weight: 700; font-size: .9rem;
}

/* Leistungen */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 2.6rem; }
.card {
  position: relative; background: var(--cream);
  border: 2px solid var(--ink); border-radius: 20px;
  padding: 30px 26px; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 10px 10px 0 0 var(--peri-soft); }
.card__num { font-family: var(--display); font-size: 1.3rem; color: var(--peri); }
.card h3 { font-size: 1.32rem; font-weight: 800; margin: .5rem 0 .7rem; line-height: 1.15; }
.card p { color: var(--muted); font-size: 1rem; }

/* LinkedIn-Posts (Vorschau-Karten: Bild + Headline) */
.posts__intro { max-width: 48ch; margin-top: 1rem; }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2.6rem; }
.post {
  display: flex; flex-direction: column;
  background: var(--cream); border: 2px solid var(--ink);
  border-radius: 18px; overflow: hidden; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: 10px 10px 0 0 var(--peri-soft); }
.post__img { aspect-ratio: 4 / 5; background: var(--bg-alt); }
.post__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post__body { padding: 20px 22px; display: flex; flex-direction: column; gap: .8rem; flex: 1; border-top: 2px solid var(--ink); }
.post__headline { font-size: 1.12rem; font-weight: 800; line-height: 1.3; }
.post__meta { margin-top: auto; display: flex; gap: 1.2rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.post__stat { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .92rem; color: var(--muted); }
.post__stat svg { width: 18px; height: 18px; color: var(--muted); }
.post__stat--like svg { color: var(--li); }
.post__cta { font-weight: 700; color: #5664d6; font-size: .92rem; }
.post:hover .post__cta { text-decoration: underline; }
.posts__cta { text-align: center; margin-top: 2.6rem; }

/* Workshops */
.workshops { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.workshops__intro .muted { font-size: 1.12rem; max-width: 40ch; margin-top: 1.2rem; }
.formats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6rem; }
.pill { background: var(--yellow); color: var(--ink); font-weight: 700; font-size: .9rem; padding: .45rem 1rem; border-radius: 999px; border: 2px solid var(--ink); }

.agenda {
  background: rgba(255,253,244,.6); border: 2px solid var(--ink);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-radius: 18px; overflow: hidden;
  box-shadow: 12px 12px 0 0 var(--peri-soft);
}
.agenda__title { background: var(--peri); color: #fff; font-weight: 800; padding: 14px 20px; font-size: 1.05rem; }
.agenda__item { border-top: 1px solid var(--line); }
.agenda__item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 46px 14px 20px; position: relative;
}
.agenda__item summary::-webkit-details-marker { display: none; }
.agenda__time { color: #5664d6; font-weight: 700; font-variant-numeric: tabular-nums; flex-shrink: 0; min-width: 46px; }
.agenda__topic { font-weight: 700; line-height: 1.35; }
.agenda__item summary::after {
  content: "+"; position: absolute; right: 18px; top: 12px;
  font-size: 1.45rem; font-weight: 400; line-height: 1; color: #5664d6; transition: transform .2s ease;
}
.agenda__item[open] summary::after { content: "\2013"; }
.agenda__item[open] summary { background: rgba(139,151,242,.09); }
.agenda__item summary:hover { background: rgba(139,151,242,.06); }
.agenda__body { padding: 2px 24px 16px 80px; color: var(--muted); }
.agenda__body p { font-size: .96rem; line-height: 1.6; }

/* Buch (dunkle Sektion) */
.section--dark { background: var(--dark); color: var(--cream); }
.buch { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
.buch__text .title { margin-bottom: 1.2rem; }
.muted-light { color: #c9c5bb; font-size: 1.12rem; max-width: 46ch; }
.muted-light strong { color: #fff; }
.checks { list-style: none; margin: 1.8rem 0; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 1.9rem; color: #ddd9cf; font-size: 1.02rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--yellow); font-weight: 800; }

/* Buch-Foto (Julian mit dem echten Buch) */
.buch__photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 14px 14px 0 0 var(--peri);
}

/* Buch-Cover (CSS-Nachbau Springer essentials – nicht mehr verwendet) */
.book { display: flex; justify-content: center; perspective: 1400px; }
.book__cover {
  position: relative;
  width: 280px; aspect-ratio: 1 / 1.42;
  background: linear-gradient(180deg, #3f9fb8 0%, #379ab4 26%, #18365a 26%, #11294a 100%);
  border-radius: 4px 8px 8px 4px;
  padding: 22px 22px 20px;
  display: flex; flex-direction: column;
  color: #fff;
  box-shadow: -10px 24px 46px -16px rgba(0,0,0,.7);
  transform: rotateY(-16deg) rotateX(3deg);
  transition: transform .4s ease;
}
.book:hover .book__cover { transform: rotateY(-6deg); }
.book__cover::after { /* Buchrücken */
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 12px;
  background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(255,255,255,.08));
  border-radius: 4px 0 0 4px;
}
.book__series { font-family: Georgia, serif; font-size: 1.5rem; letter-spacing: .02em; color: var(--yellow); }
.book__authors { font-size: .62rem; margin-top: auto; opacity: .92; }
.book__title { font-weight: 800; font-size: 1.42rem; line-height: 1.08; margin: 6px 0 8px; }
.book__sub { font-size: .64rem; line-height: 1.35; color: #bcd0e6; }
.book__publisher { font-family: Georgia, serif; font-size: .8rem; margin-top: 18px; opacity: .95; }

/* Resonanz / Quotes */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 2.6rem; }
.quote {
  background: var(--cream); border: 2px solid var(--ink); border-radius: 20px;
  padding: 32px 30px; display: flex; flex-direction: column; gap: 1.6rem;
}
.quote blockquote { font-size: 1.2rem; line-height: 1.5; font-weight: 500; }
.quote__by { display: flex; align-items: center; gap: 14px; }
.quote__by div { flex: 1; line-height: 1.3; }
.quote__by strong { font-size: 1rem; }
.quote__by span { display: block; font-size: .85rem; color: var(--muted); }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--peri), #6b78e0); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.quote__li { width: 32px; height: 32px; border-radius: 50%; background: #dce8f6; color: var(--li); display: grid; place-items: center; }

/* Presse & News */
.press__head { text-align: center; }
.press { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 2.8rem; }
.press__card {
  flex: 1 1 280px; max-width: calc((100% - 44px) / 3);
  display: flex; flex-direction: column; gap: 13px;
  background: rgba(255,253,244,.6); border: 2px solid var(--ink);
  -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  border-radius: 20px; padding: 20px; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.press__card:hover { transform: translateY(-4px); box-shadow: 10px 10px 0 0 var(--peri-soft); }
.press__tag {
  align-self: flex-start;
  border: 1.5px solid var(--peri); color: #5664d6; background: rgba(255,255,255,.4);
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: 999px;
}
.press__media { aspect-ratio: 16 / 10; border-radius: 12px; overflow: hidden; background: var(--bg-alt); border: 1px solid var(--line); }
.press__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.press__outlet { font-size: 1.22rem; font-weight: 800; line-height: 1.2; }
.press__desc { color: var(--muted); font-size: .97rem; line-height: 1.6; flex: 1; }
.press__link {
  align-self: flex-start; margin-top: .4rem;
  background: var(--peri); color: #fff; font-weight: 700; font-size: .9rem;
  padding: .6rem 1.25rem; border-radius: 999px;
  transition: background .15s ease, transform .15s ease;
}
.press__card:hover .press__link { background: #6b78e0; transform: translateY(-1px); }

/* FAQ (natives Accordion) */
.faq { max-width: 820px; margin: 2.6rem auto 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 1.25rem 2.6rem 1.25rem 0;
  font-weight: 800; font-size: 1.18rem; line-height: 1.35; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: .1rem; top: 1.1rem;
  font-size: 1.7rem; font-weight: 400; line-height: 1; color: #5664d6;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item summary:hover { color: #5664d6; }
.faq__a { padding: 0 2.6rem 1.4rem 0; color: var(--muted); }
.faq__a p { font-size: 1.06rem; line-height: 1.7; max-width: 72ch; }

/* CTA */
.cta { text-align: center; }
.cta__inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.display--cta { margin-top: .4rem; }
.cta .lead { margin: .4rem auto 1rem; }

/* ===================== KONTAKT-FORMULAR ===================== */
.contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.display--contact { color: var(--cream); font-size: clamp(2.4rem, 5vw, 4.4rem); margin: 1rem 0 1.2rem; }
.display--contact .swash::before { background: var(--yellow); }
.contact .muted-light { margin-bottom: 2rem; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field {
  width: 100%;
  font-family: var(--sans); font-size: 1rem; color: #fff;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.16);
  border-radius: 14px; padding: 1rem 1.1rem;
  transition: border-color .15s ease, background .15s ease;
}
.field::placeholder { color: #9b988f; }
.field:hover { background: rgba(255,255,255,.09); }
.field:focus { outline: none; border-color: var(--yellow); background: rgba(255,255,255,.1); }
.field--area { resize: vertical; min-height: 130px; line-height: 1.5; }

/* Custom Select */
.field-select { position: relative; }
.field-select select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 2.6rem; cursor: pointer;
}
.field-select select option { color: #141312; }
.field-select select:invalid { color: #9b988f; }
.field-select__chevron {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; color: #cfccc3; pointer-events: none;
}

.form__submit { align-self: flex-start; margin-top: 6px; }
.form__status { font-size: .9rem; min-height: 1.2em; margin-top: 2px; }
.form__status--ok { color: var(--yellow-2); }
.form__status--err { color: #ff9b8a; }

/* Foto-Variante in dunkler Sektion */
.contact__media { display: flex; justify-content: center; }
.photo--dark { box-shadow: 14px 14px 0 0 var(--peri); }
.photo--dark .photo__ph { color: rgba(20,19,18,.5); }

/* Footer */
.footer { background: var(--dark); color: #e9e6dd; padding: 56px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__logo { font-weight: 800; font-size: 1.35rem; }
.footer__tag { font-size: .88rem; color: #a7a399; }
.footer__mail { font-size: .9rem; color: var(--yellow); margin-top: 4px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; align-content: flex-start; }
.footer__links a { font-size: .9rem; color: #c8c4b9; transition: color .15s; }
.footer__links a:hover { color: #fff; }
.footer__copy { font-size: .82rem; color: #807c72; padding-top: 22px; }

/* ===================== RECHTLICHE SEITEN ===================== */
.backlink { font-weight: 600; font-size: .95rem; color: var(--ink); transition: color .15s; }
.backlink:hover { color: #5664d6; }
.legal-head { padding: 48px 0 8px; }
.legal-head .display { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.legal { padding: 16px 0 84px; }
.legal .container { max-width: 800px; }
.legal-prose h2 { font-size: 1.4rem; font-weight: 800; margin: 2.2rem 0 .6rem; line-height: 1.2; }
.legal-prose h3 { font-size: 1.08rem; font-weight: 700; margin: 1.5rem 0 .4rem; }
.legal-prose p, .legal-prose li { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.legal-prose p { margin-bottom: .9rem; }
.legal-prose ul { margin: .4rem 0 1rem 1.3rem; }
.legal-prose li { margin-bottom: .35rem; }
.legal-prose a { color: #5664d6; text-decoration: underline; }
.legal-prose strong { color: var(--ink); }
.legal-prose address { font-style: normal; line-height: 1.7; }
.legal-updated { font-size: .9rem; color: var(--muted); margin-top: .6rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { order: -1; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .workshops { grid-template-columns: 1fr; gap: 40px; }
  .buch { grid-template-columns: 1fr; gap: 44px; }
  .book__cover { transform: rotateY(-8deg); }
  .quotes { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__media { order: -1; }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .press__card { max-width: calc((100% - 22px) / 2); }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .section { padding: 64px 0; }
  .cards { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .form__row { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 0; }
  .stat-big { padding: 24px 0; }
  .stats__grid .stat-big:not(:last-child) { border-right: none; border-bottom: 1px solid var(--line); }
  .posts { grid-template-columns: 1fr; }
  .press__card { max-width: 100%; }
}

/* ===================== WOW / ANIMATIONEN ===================== */
/* Weicher Verlauf-Mesh (gelb + periwinkle) über die ganze Seite – fixe Tiefe */
.hero { position: relative; z-index: 0; }
body::before {
  content: ""; position: fixed; inset: -12%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(34% 30% at 82% 10%, rgba(255,210,63,.55), transparent 60%),
    radial-gradient(32% 32% at 10% 26%, rgba(139,151,242,.46), transparent 62%),
    radial-gradient(36% 32% at 90% 66%, rgba(139,151,242,.34), transparent 62%),
    radial-gradient(40% 32% at 16% 90%, rgba(255,210,63,.42), transparent 62%),
    radial-gradient(28% 24% at 55% 48%, rgba(255,226,122,.22), transparent 60%);
  filter: blur(26px);
}

/* Feines Film-Grain über der ganzen Seite (sehr dezent) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: no-preference) {
  /* Sehr langsamer Mesh-Drift über die ganze Seite */
  body::before { animation: meshDrift 48s ease-in-out infinite alternate; }
  @keyframes meshDrift {
    from { transform: translate3d(0, 0, 0) scale(1.05); }
    to   { transform: translate3d(-3%, 2.5%, 0) scale(1.13); }
  }

  /* Scroll-Reveal */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
  .reveal.is-visible { opacity: 1; transform: none; }

  /* Hero-Intro: Headline-Wörter */
  .hero .display .w { display: inline-block; opacity: 0; transform: translateY(.5em); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
  .hero .display.words-in .w { opacity: 1; transform: none; }

  /* Hero-Intro: restliche Elemente faden gestaffelt rein */
  .hero__text .sticker, .hero .lead, .hero__cta, .trust, .hero__media {
    animation: heroIn .8s both cubic-bezier(.2,.7,.2,1);
  }
  .hero__text .sticker { animation-delay: .05s; }
  .hero__media { animation-delay: .2s; }
  .hero .lead { animation-delay: .55s; }
  .hero__cta { animation-delay: .68s; }
  .trust { animation-delay: .8s; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}
