/* =======================================================
   Heilpraktiker Praxis Heime, Hamburg Altona
   Stylesheet der Live-Website
   Uebernommen aus Entwurf 1 (Variante "Sanft und Modern")
   ======================================================= */

/* Montserrat, lokal gehostet. Keine Anfrage an Google, DSGVO-konform. */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/Montserrat-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/Montserrat-Bold.woff2') format('woff2');
}
:root {
  --bg:        #f9f6ef;
  --bg-soft:   #f3efe4;
  --bg-card:   #ffffff;
  --ink:       #000000;
  --ink-soft:  #000000;
  --muted:     #555555;
  --line:      rgba(26,29,23,0.09);
  --line-soft: rgba(26,29,23,0.05);
  --green:     #13612e;
  --green-dk:  #0a3f1c;
  --green-lt:  #e6efe8;
  --shadow-sm: 0 1px 2px rgba(26,29,23,0.04);
  --shadow-md: 0 8px 28px -14px rgba(26,29,23,0.18);
  --shadow-lg: 0 20px 50px -20px rgba(26,29,23,0.28);
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font:      'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  --container: 1240px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; margin: 0; }

::selection { background: var(--green); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 0.75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* --- Eyebrow / utility --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  background: var(--green-lt);
  color: var(--green-dk);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 9999px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* --- Buttons (rund, weich) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 20px -8px rgba(19,97,46,0.45);
}
.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(19,97,46,0.55);
}
.btn-ghost {
  background: var(--bg-card);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn .arrow { display: inline-block; transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249,246,239,0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.brand img {
  height: 88px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

/* Mobile Panel */
.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 60;
  padding: 6rem 2rem 2rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-panel.open { display: flex; }
.mobile-panel a {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
}
/* Der Button im Menue ist ein Link und wurde deshalb von der Regel darueber
   erfasst: schwarze Schrift, Menue-Schriftgroesse, Trennlinie darunter. Auf
   Gruen war das schlecht lesbar. Hier bekommt er wieder sein normales
   Aussehen, weisse Schrift auf Gruen wie ueberall sonst. */
.mobile-panel .btn {
  align-self: flex-start;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  padding: 1rem 1.75rem;
  border-bottom: 0;
}
.mobile-panel .btn-primary { color: #fff; }
.mobile-panel .btn-primary:hover,
.mobile-panel .btn-primary:focus-visible { color: #fff; }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-close::before,
.mobile-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
}
.mobile-close::before { transform: rotate(45deg); }
.mobile-close::after  { transform: rotate(-45deg); }

/* --- HERO --- */
.hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 7rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 9999px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.hero-tag strong { color: var(--ink); font-weight: 700; }
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
/* Hinweis unter dem Vorspann, z.B. Samstagstermine */
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: -0.5rem 0 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dk);
}
.hero-note .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 5.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
.hero h1 .accent { color: var(--green); }
.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  max-width: 560px;
}
.hero-trust div {
  min-width: 0;
}
.hero-trust .num {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-trust .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero-visual {
  margin: 0;
}
.hero-visual img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-visual figcaption {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* --- Section base --- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-soft { background: var(--bg-soft); }
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 auto;
}

/* --- 3-step Process --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-lt);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Services --- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.service {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.service h3 {
  font-size: 1.65rem;
  line-height: 1.15;
}
.service p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.service-tags span {
  font-size: 0.72rem;
  padding: 0.35rem 0.8rem;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border-radius: 9999px;
  font-weight: 400;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  padding-top: 0.2rem;
}
.service-link .arrow { transition: transform 0.25s; }
.service:hover .service-link .arrow { transform: translateX(4px); }

/* --- Welcome (kompakt, ohne Card-Optik) --- */
.welcome {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.welcome-card {
  max-width: 720px;
  margin: 0 auto;
}
.welcome-greeting {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}
.welcome-greeting::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
  margin: 1.25rem auto 0;
}
.welcome-card p {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.welcome-signoff {
  color: var(--ink) !important;
  font-weight: 700;
  margin-top: 1.5rem !important;
}

/* --- About: Liste --- */
.about-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  position: relative;
  padding: 0.2rem 0 0.2rem 1.4rem;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.about-list li a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(19,97,46,0.25);
}
.about-list li a:hover { color: var(--green-dk); }
.about-list-tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--green-lt);
  color: var(--green-dk);
  border-radius: 9999px;
  vertical-align: middle;
}

/* --- Services note (kleine Hinweis-Zeile) --- */
.services-note {
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 60ch;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* --- Preise --- */
.prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 920px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.price-card h3 {
  font-size: 1.4rem;
  line-height: 1.15;
}
.price-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.price-amount {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- About (zwei kompakte Foto-Text-Bloecke) --- */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--green-lt);
  position: relative;
}
.about-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about-block:last-child { margin-bottom: 0; }
.about-block--reverse .about-portrait { order: 2; }
.about-block--reverse .about-text     { order: 1; }

.about-portrait {
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.about-portrait--detail { aspect-ratio: 4/5; }

/* Portraet im Originalformat des Fotos (Hochformat 2:3), bewusst kleiner
   als die uebrigen Bilder. Kein Beschnitt, damit der Kopf vollstaendig
   im Bild bleibt. */
.about-block--portraet { grid-template-columns: 0.5fr 1.5fr; }
.about-portrait--hoch {
  aspect-ratio: 2/3;
  max-width: 320px;
  border-radius: var(--radius-lg);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.025em;
}
.about-subhead-h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.18;
  margin: 1rem 0 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.about-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-text p:last-of-type { margin-bottom: 0; }

/* --- Quote --- */
.quote-wrap {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}
.quote {
  max-width: 30ch;
  margin: 0 auto;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.quote::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
  margin: 0 auto 1.75rem;
}
.quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

/* --- FAQ (Foto + Akkordeon) --- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.faq-visual {
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.faq-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* FAQ ohne Bild: eine Spalte, linksbuendig. Der Platz bleibt frei fuer
   Bilder, die noch nachgeliefert werden. */
.faq-grid--ohne-bild { grid-template-columns: 1fr; }
.faq-grid--ohne-bild .faq-col { max-width: 820px; margin-right: auto; }

.faq-col .eyebrow { margin-bottom: 1rem; }
.faq-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
}
.faq {
  margin: 0;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-lt);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--green);
  color: #fff;
}
.faq-item .answer {
  padding: 0 1.6rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --- CTA --- */
.cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--green-lt);
}
.cta-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: start;
}
.cta-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  margin: 0.85rem 0 0.85rem;
  letter-spacing: -0.025em;
}
.cta-card h2 .accent { color: var(--green); }
.cta-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 1.25rem;
}
.cta-info {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.cta-info dt {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-top: 0.95rem;
}
.cta-info dt:first-child { margin-top: 0; }
.cta-info dd {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}
.cta-info dd a { border-bottom: 1px solid var(--line); }

/* --- Anfrage-Tool (Multi-Step, integriert) --- */
.anfrage {
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.anfrage-progress {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.anfrage-dot {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(26,29,23,0.08);
  transition: background 0.25s ease;
}
.anfrage-dot.is-active { background: var(--green); }
.anfrage-dot.is-done   { background: var(--green); opacity: 0.4; }

.anfrage-step { display: none; }
.anfrage-step.is-active { display: block; animation: anfrageFade 0.3s ease-out; }
@keyframes anfrageFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anfrage-question {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.85rem;
}

.anfrage-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
.anfrage-options--small {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .anfrage-options--small { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 520px) {
  .anfrage-options { grid-template-columns: 1fr; }
}
.anfrage-option {
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: inherit;
  color: var(--ink);
}
.anfrage-option:hover,
.anfrage-option:focus-visible {
  background: var(--green-lt);
  border-color: var(--green);
  transform: translateY(-1px);
  outline: none;
}
.anfrage-option-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.anfrage-option-desc {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.45;
  font-weight: 400;
}

.anfrage-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.anfrage-back:hover { color: var(--green); }

.anfrage-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.85rem;
}
.anfrage-field { display: flex; flex-direction: column; }
.anfrage-field--full { grid-column: 1 / -1; }
.anfrage-field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.anfrage-field label span { color: var(--green); margin-left: 2px; }
.anfrage-field input,
.anfrage-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.anfrage-field input:focus,
.anfrage-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(19,97,46,0.12);
}
.anfrage-field textarea { resize: vertical; min-height: 70px; }
@media (max-width: 520px) {
  .anfrage-fields { grid-template-columns: 1fr; }
}

.anfrage-summary {
  margin-top: 0.85rem;
  padding: 0.55rem 0.85rem;
  background: var(--green-lt);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--green-dk);
}
.anfrage-summary strong { color: var(--green-dk); font-weight: 700; }

.anfrage-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}
.anfrage-actions .btn { padding: 0.8rem 1.4rem; font-size: 0.88rem; }

.anfrage-hint {
  margin-top: 0.7rem;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}

.anfrage-done {
  text-align: center;
  padding: 1rem 0.5rem;
}
.anfrage-done-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.anfrage-done h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.anfrage-done p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 40ch;
  margin: 0 auto 1.25rem;
}

/* --- Legal Pages (Impressum, Datenschutz) --- */
.legal-page {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  min-height: 50vh;
}
.legal-page .eyebrow { margin-bottom: 1.25rem; }
.legal-page h1 {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 1.75rem;
  max-width: 740px;
}
.legal-page .legal-note {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 740px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.legal-content {
  max-width: 740px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
}
.legal-content h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 2.25rem 0 0.85rem;
  color: var(--ink);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin-bottom: 1rem;
  color: var(--ink);
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.3;
  margin: 1.75rem 0 0.6rem;
  color: var(--ink);
}
.legal-content h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 1.25rem 0 0.4rem;
  color: var(--ink);
}
/* Im Textbereich sind Aufzaehlungen echte Listen, mit sichtbaren Punkten.
   Die globale Regel weiter oben nimmt allen Listen die Punkte, weil sie im
   Menue und in den Karten stoeren. Im Fliesstext ist das falsch: dort ist
   die Aufzaehlung die Aussage. */
.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
  list-style: disc;
}
.legal-content ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
  list-style: decimal;
}
.legal-content li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
  color: var(--ink);
}
.legal-content li::marker { color: var(--green); }
.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.legal-content a:hover { color: var(--green-dk); }
/* Eckdaten-Tabelle auf der Faktenseite. display:block laesst schmale
   Bildschirme die Tabelle seitlich scrollen, statt die ganze Seite zu
   verbreitern. */
.legal-content table {
  display: block;
  overflow-x: auto;
  width: 100%;
  margin: 0 0 1.25rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.legal-content th,
.legal-content td {
  padding: 0.6rem 0.9rem 0.6rem 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.legal-content th {
  font-weight: 600;
  white-space: nowrap;
  padding-right: 1.75rem;
}

/* --- Footer --- */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer-grid h4 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-grid li { margin-bottom: 0.5rem; font-size: 0.88rem; font-weight: 400; }
.footer-grid a { color: var(--ink-soft); }
.footer-grid a:hover { color: var(--green); }
.footer-brand img { height: 88px; margin-bottom: 1.25rem; }
.footer-address {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* Erst der Text, dann das Foto. Wer die Seite auf dem Handy oeffnet,
     soll zuerst lesen, worum es geht. */
  .hero-visual { max-width: 540px; margin: 0 auto; order: 0; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .about-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-block--reverse .about-portrait { order: 0; }
  .about-block--reverse .about-text     { order: 0; }
  .about-portrait { max-width: 440px; margin: 0 auto; }
  .about-block--portraet { grid-template-columns: 1fr; }
  .about-portrait--hoch { max-width: 260px; margin: 0; }
}
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .steps { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .prices { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-trust { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 520px) {
  .service { padding: 1.75rem 1.5rem; }
  .cta-card { padding: 2rem 1.5rem; }
  .brand img { height: 60px; }
  .footer-brand img { height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =======================================================
   Ergaenzungen fuer die Live-Website
   Das Anfrage-Formular verschickt jetzt echt ueber den Server,
   dafuer braucht es Datenschutz-Haekchen, Fehlermeldung und
   ein unsichtbares Feld gegen Spam-Roboter.
   ======================================================= */

/* Honigtopf: Feld fuer Spam-Roboter, fuer Menschen unsichtbar.
   Nicht display:none, sonst fuellen manche Roboter es nicht aus. */
.anfrage-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.anfrage-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}
.anfrage-consent input {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--green);
  flex: 0 0 auto;
}
.anfrage-consent a { color: var(--green-dk); }

.form-hinweis {
  margin: 0 0 1.2rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: #fdeceb;
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Danke-Seite und Rechtstexte teilen sich das schmale Textlayout */
.page-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
