@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/raleway-latin.woff2") format("woff2");
}

:root {
  --ink: #3f3f3f;
  --ink-2: #626262;
  --forest: #b5c5a4;
  --forest-deep: #53694b;
  --leaf: #b5c5a4;
  --leaf-bright: #e8efe2;
  --sun: #85ae74;
  --mist: #f3f5f1;
  --paper: #ffffff;
  --white: #fff;
  --line: rgba(98, 98, 98, .18);
  --shadow: 0 24px 70px rgba(63, 63, 63, .14);
  --radius: 22px;
  --max: 1180px;
  --font-display: "Montserrat", Arial, sans-serif;
  --font-body: "Raleway", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
}
h1 { font-size: clamp(3.25rem, 7.5vw, 7rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }
::selection { color: var(--forest-deep); background: var(--leaf-bright); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 8px;
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 2.25rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2.25rem), 820px); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--portrait { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section--mist { background: var(--mist); }
.section--forest { color: var(--ink); background: var(--forest); }
.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: #7b8c75;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-tag::before,
.eyebrow::before { width: 2.2rem; height: 3px; content: ""; background: var(--sun); }
.section--forest .section-tag,
.hero .eyebrow { color: var(--leaf-bright); }
.section-heading { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading h2 { margin-bottom: 1.25rem; }
.section-heading p { max-width: 680px; color: var(--ink-2); font-size: 1.12rem; }
.section--forest .section-tag { color: #53634e; }
.section--forest .section-heading p { color: var(--ink-2); }
.accent { color: #648c54; }
.section--forest .accent { color: #3f5f37; }
.hero .accent { color: var(--leaf-bright); }
.contact-band .accent,
.page-hero .accent { color: #3f5f37; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: min(310px, 48vw); height: auto; }
.nav { display: flex; align-items: center; gap: clamp(.8rem, 1.8vw, 1.6rem); }
.nav a {
  position: relative;
  color: #8b8b8b;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
}
.nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a:hover { color: var(--sun); }
.nav-cta {
  padding: .67rem 1rem;
  color: #333333 !important;
  background: var(--forest);
  border-radius: 999px;
}
.nav-cta:hover { background: var(--sun); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  color: var(--ink-2);
  background: var(--white);
  border-radius: 12px;
}
.nav-toggle svg { width: 24px; height: 24px; }

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 82px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #4d4d4d;
}
.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(63,63,63,.82) 0%, rgba(63,63,63,.64) 40%, rgba(63,63,63,.12) 76%, rgba(63,63,63,.18) 100%),
    linear-gradient(0deg, rgba(63,63,63,.42), transparent 45%);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.hero-inner { position: relative; z-index: 2; padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3.2rem, 6vw, 5rem); }
.hero-copy { max-width: 790px; }
.hero h1 { max-width: 770px; margin-bottom: 1.4rem; }
.hero-lead { max-width: 650px; margin-bottom: 2rem; color: rgba(255,255,255,.88); font-size: clamp(1.08rem, 2vw, 1.32rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .8rem 1.2rem;
  border: 2px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #333333; background: var(--forest); }
.button--primary:hover { background: var(--white); }
.button--ghost { border-color: rgba(255,255,255,.68); color: var(--white); background: rgba(255,255,255,.08); }
.button--ghost:hover { color: var(--ink); background: var(--white); }
.button--dark { color: #333333; background: var(--forest); }
.button--dark:hover { background: var(--sun); }
.button svg { width: 18px; height: 18px; }
.proof-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 1.35rem clamp(1rem, 3vw, 2.2rem); border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: #729461; font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; line-height: 1.2; }
.proof-item span { color: #777777; font-size: .85rem; }

.split { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.split--reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.split--reverse .split-copy { order: 2; }
.split-copy h2 { margin-bottom: 1.5rem; }
.split-copy > p { color: var(--ink-2); }
.photo-frame { position: relative; }
.photo-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px 10px 46px 10px; box-shadow: var(--shadow); }
.photo-frame--portrait { width: min(100%, 430px); max-height: 645px; justify-self: end; margin: 0; }
.photo-frame--portrait img { height: auto; max-height: 645px; aspect-ratio: auto; object-fit: contain; box-shadow: none; }
.check-list { display: grid; gap: .8rem; margin: 1.75rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.5rem; }
.check-list li::before {
  position: absolute;
  top: .825em;
  left: 0;
  width: .72rem;
  height: .72rem;
  content: "";
  background: var(--leaf);
  border: 2px solid var(--mist);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--leaf);
  transform: translateY(-50%);
}

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(63,63,63,.12);
  background: rgba(255,255,255,.42);
  border-radius: var(--radius);
}
.service-number { margin-bottom: auto; color: #55764a; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; }
.service-card h3 { margin: 2rem 0 .75rem; color: var(--ink); }
.service-card p { color: var(--ink-2); font-size: .97rem; }
.service-link { margin-top: 1rem; font-size: .9rem; font-weight: 700; text-underline-offset: 4px; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { position: relative; padding: 4.2rem 1.4rem 1.5rem; border-top: 3px solid var(--forest); background: var(--white); box-shadow: 0 8px 32px rgba(63,63,63,.08); }
.step::before {
  position: absolute;
  top: 1.1rem;
  left: 1.4rem;
  content: "0" counter(step);
  counter-increment: step;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}
.step h3 { margin-bottom: .65rem; font-size: 1.2rem; }
.step p { color: var(--ink-2); font-size: .94rem; }

.bio-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 1.5rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.bio-facts li { padding-top: .7rem; border-top: 1px solid var(--line); color: var(--ink-2); font-size: .92rem; }
.bio-facts strong { display: block; color: var(--forest); }

.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.quote {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}
.quote-mark { color: var(--sun); font-family: Georgia, serif; font-size: 4.5rem; line-height: .65; }
.quote p { flex: 1; color: var(--ink-2); font-size: .98rem; }
.quote footer { margin-top: 1.3rem; color: #617754; font-weight: 700; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; cursor: pointer; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 1.15rem; right: .4rem; content: "+"; color: #71983a; font-size: 1.8rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq .answer { max-width: 740px; padding: 0 0 1.4rem; color: var(--ink-2); }

.contact-band { position: relative; overflow: hidden; color: var(--ink); background: #9fb28f; }
.contact-band::after { position: absolute; right: -100px; bottom: -210px; width: 420px; height: 420px; content: ""; border: 80px solid rgba(255,255,255,.2); border-radius: 50%; }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 4rem; }
.contact-layout h2 { margin-bottom: 1rem; }
.contact-layout p { max-width: 650px; color: #4d4d4d; }
.contact-actions { display: grid; gap: .8rem; }
.contact-action { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.38); border-radius: 14px; text-decoration: none; }
.contact-action:hover { border-color: var(--white); background: rgba(255,255,255,.72); }
.contact-action svg { width: 23px; height: 23px; color: #58744e; }
.contact-action small { display: block; color: var(--ink-2); }
.contact-action strong { overflow-wrap: anywhere; }

.site-footer { padding: 3.5rem 0 2rem; color: var(--ink); background: var(--forest); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .8fr; gap: 3rem; }
.footer-brand img { width: min(300px, 100%); margin-bottom: 1.2rem; }
.footer-brand p { max-width: 410px; }
.footer-title { margin-bottom: .8rem; color: #4d5c47; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .4rem; }
.footer-links a { width: fit-content; text-decoration-color: rgba(63,63,63,.35); text-underline-offset: 4px; }
.footer-links a:hover { color: #4f7044; }
.footer-bottom { display: flex; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(63,63,63,.16); justify-content: space-between; gap: 1rem; color: #667060; font-size: .82rem; }

.page-hero { position: relative; overflow: hidden; padding: clamp(5rem, 10vw, 9rem) 0; color: var(--ink); background: var(--forest); }
.page-hero::after { position: absolute; right: -6rem; bottom: -10rem; width: 28rem; height: 28rem; content: ""; border: 7rem solid rgba(255,255,255,.18); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin-bottom: 1.2rem; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p { max-width: 700px; color: #525b4e; font-size: 1.15rem; }
.page-hero--image {
  display: grid;
  min-height: clamp(390px, 48vw, 560px);
  align-items: end;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  color: var(--white);
  background: #3f3f3f;
}
.page-hero--image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(63,63,63,.88) 0%, rgba(63,63,63,.68) 42%, rgba(63,63,63,.16) 78%),
    linear-gradient(0deg, rgba(63,63,63,.5), transparent 58%);
}
.page-hero--image::after { display: none; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero--image .container { z-index: 2; }
.page-hero--image p { color: rgba(255,255,255,.9); }
.page-hero--image .accent { color: var(--leaf-bright); }
.page-hero--angebot .page-hero-media img { object-position: center 46%; }
.page-hero--sarah .page-hero-media img { object-position: center 38%; transform: scaleX(-1); }
.page-hero--stimmen .page-hero-media img { object-position: center 45%; }
.page-hero--netzwerk .page-hero-media img { object-position: center 50%; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr); align-items: start; gap: clamp(2.5rem, 7vw, 6rem); }
.prose h2 { margin: 3.2rem 0 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2rem 0 .7rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose a { font-weight: 700; text-underline-offset: 4px; }
.prose ul { padding-left: 1.2rem; }
.aside-card { position: sticky; top: 110px; padding: 1.7rem; color: var(--ink); background: var(--forest); border-radius: var(--radius); box-shadow: var(--shadow); }
.aside-card h2 { font-size: 1.7rem; }
.aside-card p { color: var(--ink-2); }
.aside-card .button { width: 100%; margin-top: .6rem; }
.aside-card .button--ghost { border-color: rgba(63,63,63,.3); color: var(--ink); background: rgba(255,255,255,.3); }
.aside-card .button--ghost:hover { background: var(--white); }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 1.5rem; }
.method { padding: 1rem 1.1rem; border: 1px solid var(--line); background: var(--white); border-radius: 12px; font-weight: 700; }
.partner-list { display: grid; gap: 1rem; }
.partner { padding: 1.4rem; border: 1px solid var(--line); background: var(--white); border-radius: 14px; }
.partner h2 { margin: 0 0 .35rem; font-size: 1.35rem; }
.partner p { margin: 0; }
.legal { max-width: 900px; }
.legal h2 { margin-top: 2.4rem; font-size: 1.6rem; }
.legal h3 { margin-top: 1.8rem; font-size: 1.2rem; letter-spacing: -.01em; }
.legal p, .legal li { color: var(--ink-2); }
.legal a { font-weight: 700; text-underline-offset: 4px; }
.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--sun); background: #f0f5ec; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 1.2rem max(1.1rem, calc((100vw - var(--max)) / 2));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,.24);
  }
  .nav[data-open] { display: flex; }
  .nav a { padding: .8rem 0; }
  .nav-cta { margin-top: .7rem; padding-inline: 1rem !important; text-align: center; }
  .service-grid, .quotes { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .header-inner { min-height: 72px; }
  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(0deg, rgba(63,63,63,.92) 0%, rgba(63,63,63,.65) 52%, rgba(63,63,63,.08) 100%); }
  .hero-media img { object-position: 61% center; }
  .hero-inner { padding-top: 12rem; }
  .page-hero--image::before { background: linear-gradient(0deg, rgba(63,63,63,.9) 0%, rgba(63,63,63,.58) 58%, rgba(63,63,63,.12) 100%); }
  .page-hero--angebot .page-hero-media img { object-position: 58% center; }
  .page-hero--sarah .page-hero-media img { object-position: 47% center; }
  .page-hero--stimmen .page-hero-media img { object-position: 52% center; }
  .page-hero--netzwerk .page-hero-media img { object-position: 67% center; }
  .proof-grid { grid-template-columns: 1fr; padding: .6rem 0; }
  .proof-item, .proof-item:first-child { padding: .9rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .split, .split--reverse, .contact-layout, .content-grid { grid-template-columns: 1fr; }
  .split--reverse .split-copy { order: initial; }
  .photo-frame { order: -1; }
  .photo-frame--portrait { justify-self: center; }
  .service-grid, .quotes, .steps, .method-grid { grid-template-columns: 1fr; }
  .service-card:last-child, .quote:last-child { grid-column: auto; }
  .service-card { min-height: 280px; }
  .bio-facts { grid-template-columns: 1fr; }
  .contact-layout { align-items: start; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .aside-card { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
