/* Praxis Care — praxiscare.proarchcon.com
   Keine Drittanbieter, keine Cookies, keine externen Schriften. */

:root {
  --gruen:      #00652E;
  --gruen-hell: #4E8F6C;
  --anthrazit:  #393536;
  --text:       #2E2B2C;
  --muted:      #6E7370;
  --linie:      #DCDEDC;
  --flaeche:    #F4F5F4;
  --papier:     #FFFFFF;

  --mass: 34rem;   /* Lesebreite, ca. 65 Zeichen */
  --bahn: 62rem;   /* Satzbreite der Seite */
  --rand: clamp(1.5rem, 5vw, 4.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--papier);
  color: var(--text);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--bahn);
  margin-inline: auto;
  padding-inline: var(--rand);
}

/* Fliesstext bleibt auf Lesebreite, linksbuendig in der Bahn */
.wrap > p,
.wrap > h2,
.wrap > h3,
.wrap > ul,
.wrap > div.rechnung { max-width: var(--mass); }

/* ---------- Kopf ---------- */

.kopf { padding: 2.5rem 0 0; }
.logo { width: 170px; height: auto; display: block; }

/* ---------- Held ---------- */

.held {
  position: relative;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}

.held-wrap { position: relative; }

.zitat {
  font-size: clamp(1.85rem, 1.1rem + 3.2vw, 3.4rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--anthrazit);
  margin: 0;
  max-width: 18ch;
}

.trenner {
  border: 0;
  border-top: 1px solid var(--linie);
  margin: 2.5rem 0;
  max-width: 26rem;
}

.status {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.9;
  color: var(--anthrazit);
}
.status .letzte { color: var(--gruen); }

.baum {
  position: absolute;
  right: -15rem;
  bottom: -8rem;
  width: min(60vw, 32rem);
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 52rem) {
  .baum {
    right: -28vw;
    bottom: -5rem;
    width: 78vw;
    opacity: 0.22;
  }
}

/* ---------- Abschnitte ---------- */

section { padding: 4.5rem 0; }
section.getoent { background: var(--flaeche); }

h2 {
  font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--anthrazit);
  margin: 0 0 1.1rem;
  max-width: 24ch;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gruen);
  margin: 2rem 0 0.35rem;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.fuehrung {
  font-size: 1.08em;
  color: var(--anthrazit);
}

.klein { font-size: 0.9rem; color: var(--muted); }

strong { font-weight: 700; color: var(--anthrazit); }

/* ---------- Die vier Leistungen ---------- */

.leistungen {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: var(--mass);
}
.leistungen > li {
  border-top: 1px solid var(--linie);
  padding: 1.4rem 0;
}
.leistungen > li:last-child { border-bottom: 1px solid var(--linie); }
.leistungen b {
  display: block;
  color: var(--gruen);
  margin-bottom: 0.25rem;
}

/* ---------- Rechnung ---------- */

.rechnung {
  border-left: 3px solid var(--gruen);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
}
.rechnung .zahl {
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem);
  font-weight: 700;
  color: var(--anthrazit);
  line-height: 1.2;
  display: block;
}

/* ---------- Kontakt ---------- */

.kontakt { background: var(--anthrazit); color: #E9EAE9; }
.kontakt h2 { color: #FFF; }
.kontakt a { color: #FFF; }
.kontakt .klein { color: #A9ADAA; }
.adresse { margin-top: 1.75rem; }

.wege {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  max-width: var(--mass);
}
.wege li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 0;
}
.wege li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.wege span {
  display: block;
  font-size: 0.85rem;
  color: #A9ADAA;
  margin-bottom: 0.15rem;
}
.wege a {
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}
.wege a:hover, .wege a:focus-visible { text-decoration: underline; }

/* ---------- Fuss ---------- */

footer {
  padding: 2.5rem 0 3.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}
footer a { color: var(--muted); }
footer nav { margin-bottom: 0.75rem; }
footer nav a { margin-right: 1.25rem; }

a { color: var(--gruen); }

:focus-visible {
  outline: 2px solid var(--gruen);
  outline-offset: 3px;
}

/* ---------- Rechtstexte ---------- */

.recht { padding: 2.5rem 0 1rem; }
.recht h1 {
  max-width: var(--mass);
  font-size: 1.6rem;
  color: var(--anthrazit);
  margin: 0 0 1.5rem;
}
.recht h2 { font-size: 1.1rem; margin-top: 2rem; }
.recht p, .recht li { font-size: 0.95rem; max-width: var(--mass); }
.recht ul { padding-left: 1.2rem; }

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