/* Gemeinsame Gestaltung der Unterseiten (Impressum, Datenschutz, Danke).
   Dieselben Farben und Schriften wie die Startseite - eine Rechtsseite in
   einem anderen Look wirkt wie eine fremde Seite, und genau dort will der
   Besucher sicher sein, dass er noch richtig ist. */
:root{
  --bg:#FAF6F0; --surface:#FFFFFF; --surface-2:#F3EDE3; --sand:#F5E9D8;
  --ink:#2C2925; --ink-soft:#5B554D; --muted:#8B8378; --line:#E9E0D3;
  --green:#3E8E5A; --green-600:#317048; --green-050:#EAF3ED;
  --shadow-sm:0 1px 2px rgba(60,50,35,.05),0 2px 6px rgba(60,50,35,.06);
  --shadow-md:0 10px 30px rgba(60,50,35,.10);
  --radius:18px; --radius-sm:12px;
  --head:'Fraunces',Georgia,serif; --body:'Mulish',system-ui,sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:var(--body);background:var(--bg);color:var(--ink);line-height:1.7;-webkit-font-smoothing:antialiased}
h1,h2,h3{font-family:var(--head);font-weight:500;line-height:1.15;letter-spacing:-.01em}
a{color:inherit}
.wrap{max-width:760px;margin:0 auto;padding:40px 22px 72px}
.schmal{max-width:560px;text-align:center}
body.mitte{display:grid;place-items:center;min-height:100dvh}

.brand{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--head);font-weight:600;font-size:1.28rem;
  text-decoration:none;margin-bottom:2.4rem}
.logo-mark{width:38px;height:38px;flex-shrink:0;display:block}
.brand .it{color:var(--green)}

h1{font-size:clamp(2rem,5vw,2.7rem);margin-bottom:1rem}
h2{font-size:1.25rem;font-weight:600;margin:2rem 0 .5rem}
p{color:var(--ink-soft);margin-bottom:.7rem}
p.lead{font-size:1.1rem}
strong{color:var(--ink)}
.wrap a[href]{color:var(--green);font-weight:600;overflow-wrap:anywhere}
.einleitung{margin-bottom:1.6rem}

.box{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(22px,4vw,32px);box-shadow:var(--shadow-sm);margin:1.4rem 0 2rem}
.box h2:first-child{margin-top:0}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:.55rem;font-weight:700;font-size:1rem;
  padding:.85rem 1.6rem;border-radius:999px;cursor:pointer;border:none;text-decoration:none;min-height:50px;
  transition:transform .18s ease,box-shadow .18s ease,background .18s}
.btn:focus-visible{outline:3px solid var(--green);outline-offset:2px}
.btn-primary{background:var(--green);color:#fff!important;box-shadow:0 6px 16px rgba(62,142,90,.28)}
.btn-primary:hover{background:var(--green-600);transform:translateY(-2px)}

.zurueck{display:inline-block;margin-top:2.4rem;color:var(--green);font-weight:700;text-decoration:none}
.zurueck:hover{text-decoration:underline}

.haken{width:74px;height:74px;border-radius:50%;background:var(--green-050);display:grid;place-items:center;
  margin:0 auto 1.6rem}
.haken svg{width:34px;height:34px;stroke:var(--green);fill:none;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:round}

.fuss{margin-top:3rem;padding-top:1.4rem;border-top:1px solid var(--line);font-size:.86rem;color:var(--muted);
  display:flex;flex-wrap:wrap;gap:.4rem 1.2rem}
.fuss a{color:var(--muted)!important;font-weight:600}

@media(prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}}
