/* =========================================================
   Neustartmakler Consulting UG – Stylesheet
   Design: warm & nahbar (Creme / Terrakotta / Kakao)
   Keine externen Ressourcen (DSGVO-freundlich)
   ========================================================= */

:root {
  /* Warme Grundflächen */
  --bg: #fffaf5;
  --surface: #ffffff;
  --bg-soft: #fdf4ec;
  --bg-tint: #f9ebe0;

  /* Schrift */
  --ink: #33291f;
  --ink-soft: #6d5c4c;
  --ink-mute: #7d6a57;   /* dunkel genug für WCAG AA bei kleiner Schrift */
  --line: #eeddcd;
  --line-soft: #f4e7db;

  /* Terrakotta – Leitfarbe */
  --accent-700: #8f4526;
  --accent-600: #a9542d;
  --accent-500: #c2683c;
  --accent-400: #d98555;
  --accent-300: #e8a87c;
  --accent-100: #f7e3d5;
  --accent-50:  #fdf1e8;

  /* Dunkle Flächen: Kakao statt Marineblau */
  --cocoa-900: #33241b;
  --cocoa-800: #3e2d22;
  --cocoa-700: #4d382a;
  --on-dark: #f7ece2;
  --on-dark-soft: #d3bfae;
  --on-dark-mute: #ab9583;

  /* Sekundärfarben */
  --sage-500: #6f8a63;
  --danger: #b4442f;

  /* Runde Formen, weiche Schatten */
  --radius-lg: 32px;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 10px;

  --shadow-sm: 0 2px 6px rgba(90, 55, 30, .05), 0 6px 16px rgba(90, 55, 30, .04);
  --shadow-md: 0 6px 16px rgba(90, 55, 30, .07), 0 16px 40px rgba(90, 55, 30, .07);
  --shadow-lg: 0 10px 28px rgba(90, 55, 30, .09), 0 30px 70px rgba(90, 55, 30, .11);

  --wrap: 1180px;
  --nav-h: 78px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
          "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--accent-600); text-decoration: none; }
a:hover { color: var(--accent-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 .6em;
  font-weight: 600;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.45rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

:focus-visible {
  outline: 3px solid var(--accent-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--cocoa-900); color: var(--on-dark-soft); }
.section--dark h2, .section--dark h3 { color: var(--on-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--cocoa-900); color: var(--on-dark); padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--on-dark); }

/* ---------- Eyebrow / Section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px;
  background: var(--accent-500); border-radius: 3px;
}
.section--dark .eyebrow { color: var(--accent-300); }
.section--dark .eyebrow::before { background: var(--accent-300); }

.section-head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 0; }
.section--dark .section-head p { color: var(--on-dark-soft); }

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: .97rem; font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease,
              color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent-500); color: #fff;
  box-shadow: 0 4px 14px rgba(194, 104, 60, .28);
}
.btn--primary:hover {
  background: var(--accent-600); color: #fff;
  box-shadow: 0 8px 22px rgba(194, 104, 60, .34);
}

.btn--dark { background: var(--cocoa-800); color: var(--on-dark); }
.btn--dark:hover { background: var(--cocoa-700); color: var(--on-dark); }

/* Für dunkle Flächen */
.btn--ghost { border-color: rgba(247, 236, 226, .32); color: var(--on-dark); }
.btn--ghost:hover {
  background: rgba(247, 236, 226, .1); color: #fff;
  border-color: rgba(247, 236, 226, .6);
}

/* Für helle Flächen */
.btn--outline { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn--outline:hover { border-color: var(--accent-500); color: var(--accent-700); }

.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 250, 245, .82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 2px 24px rgba(90, 55, 30, .06);
  background: rgba(255, 250, 245, .95);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: .75rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px; flex: none;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--accent-400), var(--accent-600));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 3px 10px rgba(194, 104, 60, .3);
}
.brand__mark svg { width: 21px; height: 21px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.14rem; font-weight: 600; letter-spacing: -.01em;
}
.brand__sub {
  font-size: .64rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mute);
}

.nav__links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
/* :not(.btn) – sonst überschreiben diese Regeln Radius und Farbe der CTA im Menü */
.nav__links a:not(.btn) {
  display: block; padding: .6rem .95rem; border-radius: 999px;
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  transition: color .18s ease, background .18s ease;
}
.nav__links a:not(.btn):hover { color: var(--accent-700); background: var(--accent-50); }
.nav__links a:not(.btn).is-active { color: var(--ink); font-weight: 600; background: var(--bg-tint); }
/* CTA im Menü nur mobil – auf Desktop steht sie in .nav__actions */
.nav__links .btn { display: none; }

.nav__actions { display: flex; align-items: center; gap: .8rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .93rem; font-weight: 600; color: var(--ink);
}
.nav__phone:hover { color: var(--accent-600); }
.nav__phone svg { width: 16px; height: 16px; flex: none; color: var(--accent-500); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 2px solid var(--line); border-radius: 14px;
  background: var(--surface); cursor: pointer;
  padding: 0; place-items: center;
}
.nav__toggle span {
  display: block; width: 19px; height: 2px; border-radius: 2px;
  background: var(--ink); position: relative;
  transition: background .2s ease;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 19px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .25s ease, top .2s ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero (hell und warm) ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(1100px 520px at 88% -12%, var(--accent-100), transparent 62%),
    radial-gradient(760px 460px at -8% 108%, #f4ead9, transparent 66%),
    var(--bg-soft);
  color: var(--ink-soft);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; z-index: 0;
  width: 460px; height: 460px; right: -140px; top: 12%;
  background: radial-gradient(circle, rgba(216, 133, 85, .18), transparent 64%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { color: var(--ink); margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--accent-600); }
.hero__lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 52ch; margin-bottom: 2rem; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .4rem 1.1rem .4rem .45rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .8);
  border-radius: 999px;
  font-size: .85rem; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hero__badge b {
  background: var(--accent-500); color: #fff;
  padding: .18rem .65rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  list-style: none; padding-left: 0;
}
.hero__trust li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .92rem; color: var(--ink-soft); margin: 0;
}
.hero__trust svg { width: 18px; height: 18px; color: var(--accent-500); flex: none; }

/* Hero-Karte */
.hero__card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.hero__card h3 { margin-bottom: .35em; font-size: 1.3rem; }
.hero__card > p { color: var(--ink-soft); font-size: .95rem; }
.hero__card .btn { margin-top: .4rem; }
.hero__card .form-note { margin-top: 1rem; margin-bottom: 0; }

/* ---------- Kennzahlen ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  background: var(--surface); padding: 2rem 1.5rem; text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 600;
  color: var(--accent-600); line-height: 1; margin-bottom: .45rem;
}
.stat__label { font-size: .89rem; color: var(--ink-mute); }

/* ---------- Karten / Raster ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-100);
}
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--ink-soft); font-size: .96rem; }

.card__icon {
  width: 54px; height: 54px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: var(--accent-50);
  border: 1px solid var(--accent-100);
  color: var(--accent-600);
}
.card__icon svg { width: 25px; height: 25px; }
.card:hover .card__icon { background: var(--accent-100); }

.card__list { list-style: none; padding: 0; margin: 1.3rem 0 0; }
.card__list li {
  position: relative; padding-left: 1.6rem;
  font-size: .93rem; color: var(--ink-soft); margin-bottom: .45em;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-400);
}

/* Verlinkte Karte */
a.card { color: inherit; display: block; }
a.card:hover { color: inherit; }
.card__more {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1.3rem; font-size: .92rem; font-weight: 600; color: var(--accent-600);
}
.card__more svg { width: 15px; height: 15px; transition: transform .2s ease; }
a.card:hover .card__more svg { transform: translateX(5px); }

/* ---------- Ablauf-Schritte ---------- */
.process { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); }
.process__item { position: relative; padding-top: 4rem; }
.process__item::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--accent-600);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-50);
  border: 2px solid var(--accent-100);
  display: grid; place-items: center;
}
.process__item::after {
  content: ""; position: absolute; top: 26px; left: 64px; right: -1.5rem;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-100), transparent);
}
.process__item:last-child::after { display: none; }
.process__item h3 { font-size: 1.12rem; margin-bottom: .4em; }
.process__item p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

.section--dark .process__item p { color: var(--on-dark-soft); }
.section--dark .process__item::before {
  background: rgba(247, 236, 226, .07);
  border-color: rgba(232, 168, 124, .35);
  color: var(--accent-300);
}
.section--dark .process__item::after {
  background: linear-gradient(90deg, rgba(232, 168, 124, .35), transparent);
}

/* ---------- Split (Text + Panel) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.split--wide-left { grid-template-columns: 1.15fr .85fr; }

.panel {
  border-radius: var(--radius-lg); padding: 2.4rem;
  background: linear-gradient(155deg, var(--cocoa-700), var(--cocoa-900));
  color: var(--on-dark-soft); box-shadow: var(--shadow-lg);
}
.panel h3 { color: var(--on-dark); }
.panel__list { list-style: none; padding: 0; margin: 0; }
.panel__list li {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid rgba(247, 236, 226, .12);
  font-size: .96rem;
}
.panel__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.panel__list svg { width: 19px; height: 19px; color: var(--accent-300); flex: none; margin-top: .22em; }
.panel__list b { color: var(--on-dark); display: block; font-weight: 600; margin-bottom: .1em; }
/* Buttons ausnehmen – sie bringen ihre eigene Textfarbe mit */
.panel a:not(.btn) { color: var(--accent-300); }
.panel a:not(.btn):hover { color: var(--accent-100); }

/* Checkliste (hell) */
.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.checklist li {
  display: flex; gap: .85rem; align-items: flex-start;
  margin-bottom: .95em; font-size: .99rem; color: var(--ink-soft);
}
.checklist svg { width: 21px; height: 21px; color: var(--sage-500); flex: none; margin-top: .2em; }
.checklist b { color: var(--ink); }

/* ---------- Zitate ---------- */
.quote {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote::before {
  content: "„";
  position: absolute; top: .3rem; right: 1.4rem;
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1;
  color: var(--accent-100);
}
/* Rechter Freiraum, damit der Text nicht unter das Anführungszeichen läuft */
.quote p { font-size: 1.02rem; color: var(--ink); position: relative; padding-right: 1.6rem; }
.quote footer { display: flex; align-items: center; gap: .9rem; margin-top: 1.3rem; }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--accent-100);
  color: var(--accent-700); display: grid; place-items: center;
  font-weight: 700; font-size: .92rem; font-family: var(--font);
}
.quote__who { font-size: .9rem; line-height: 1.4; }
.quote__who b { display: block; color: var(--ink); font-family: var(--font); }
.quote__who span { color: var(--ink-mute); }

/* ---------- Akkordeon (FAQ) ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; text-align: left;
  padding: 1.45rem 0; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--ink); line-height: 1.4;
}
.accordion__btn:hover { color: var(--accent-600); }
.accordion__icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-50);
  border: 1px solid var(--accent-100); position: relative;
  transition: background .2s ease, border-color .2s ease, transform .3s ease;
}
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--accent-600); border-radius: 2px;
}
.accordion__icon::before { width: 13px; height: 2px; }
.accordion__icon::after { width: 2px; height: 13px; transition: transform .3s ease; }
.accordion__btn[aria-expanded="true"] .accordion__icon {
  background: var(--accent-500); border-color: var(--accent-500); transform: rotate(180deg);
}
.accordion__btn[aria-expanded="true"] .accordion__icon::before,
.accordion__btn[aria-expanded="true"] .accordion__icon::after { background: #fff; }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); }
.accordion__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.accordion__panel.is-open { grid-template-rows: 1fr; }
.accordion__inner { overflow: hidden; }
.accordion__inner > div { padding-bottom: 1.5rem; color: var(--ink-soft); font-size: .99rem; max-width: 72ch; }
.accordion__inner p:last-child { margin-bottom: 0; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--cocoa-700), var(--cocoa-900) 62%, var(--cocoa-800));
  border-radius: var(--radius-lg); padding: clamp(2.5rem, 5vw, 3.9rem);
  color: var(--on-dark-soft); text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; width: 480px; height: 480px;
  right: -150px; top: -230px;
  background: radial-gradient(circle, rgba(216, 133, 85, .3), transparent 66%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--on-dark); }
.cta-band p { max-width: 56ch; margin-inline: auto; color: var(--on-dark-soft); }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- Formulare ---------- */
.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .87rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1.1rem;
  font-family: inherit; font-size: .97rem; color: var(--ink);
  background: var(--bg-soft);
  border: 2px solid transparent; border-radius: var(--radius-sm);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:hover, .field select:hover, .field textarea:hover { background: var(--bg-tint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--surface);
  border-color: var(--accent-500);
  box-shadow: 0 0 0 4px rgba(194, 104, 60, .13);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--danger); background: #fdf1ef;
  box-shadow: 0 0 0 4px rgba(180, 68, 47, .1);
}
.field__error { font-size: .82rem; color: var(--danger); min-height: 0; }

.field--check { display: flex; flex-wrap: wrap; gap: .75rem; align-items: flex-start; }
.field--check input { width: 19px; height: 19px; margin-top: .2em; flex: none; accent-color: var(--accent-500); }
.field--check label { font-size: .87rem; font-weight: 400; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.field--check .field__error { flex-basis: 100%; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-note { font-size: .82rem; color: var(--ink-mute); line-height: 1.65; }
.form-status {
  padding: .95rem 1.2rem; border-radius: var(--radius-sm);
  font-size: .92rem; display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #eef4ea; color: #3d5733; border: 1px solid #cfe0c5; }
.form-status--err { background: #fcece8; color: #8c3626; border: 1px solid #f2cabf; }

/* ---------- Kontaktangaben ---------- */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.3rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; margin: 0; }
.info-list__icon {
  width: 48px; height: 48px; border-radius: 16px; flex: none;
  background: var(--accent-50); border: 1px solid var(--accent-100);
  color: var(--accent-600);
  display: grid; place-items: center;
}
.info-list__icon svg { width: 20px; height: 20px; }
.info-list b { display: block; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--ink-mute); margin-bottom: .25rem; font-weight: 700; }
.info-list span, .info-list a { font-size: 1rem; color: var(--ink); }
.info-list a:hover { color: var(--accent-600); }

/* ---------- Unterseiten-Kopf ---------- */
.page-head {
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  background:
    radial-gradient(900px 420px at 82% -18%, var(--accent-100), transparent 62%),
    var(--bg-soft);
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.page-head h1 { color: var(--ink); margin-bottom: .3em; }
.page-head p { max-width: 60ch; margin: 0; color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- Rechtstexte ---------- */
.prose { font-size: 1rem; }
.prose h2 { font-size: 1.5rem; margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin-top: 1.9rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.prose address { font-style: normal; color: var(--ink-soft); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.6rem 0; }
.prose code {
  background: var(--bg-tint); padding: .12em .45em;
  border-radius: 6px; font-size: .9em;
}
.prose .note {
  background: var(--accent-50); border: 1px solid var(--accent-100);
  border-left: 4px solid var(--accent-500);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  font-size: .93rem;
}
.prose .note p:last-child { margin-bottom: 0; }

.toc { list-style: none; padding: 0; margin: 0 0 2.6rem; display: grid; gap: .45rem; }
.toc a { font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cocoa-900); color: var(--on-dark-mute); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 236, 226, .12);
}
.footer__grid p { font-size: .93rem; color: var(--on-dark-mute); }
.site-footer .brand { color: var(--on-dark); margin-bottom: 1.1rem; }
.site-footer .brand:hover { color: var(--on-dark); }
.site-footer .brand__mark {
  background: rgba(247, 236, 226, .1);
  border: 1px solid rgba(247, 236, 226, .18);
  color: var(--accent-300); box-shadow: none;
}
.site-footer .brand__sub { color: var(--on-dark-mute); }
.footer__col h4 {
  color: var(--on-dark); font-family: var(--font); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.15rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: .6em; }
.footer__col a { font-size: .94rem; color: var(--on-dark-mute); }
.footer__col a:hover { color: var(--accent-300); }
.footer__col address { font-style: normal; font-size: .94rem; line-height: 1.8; color: var(--on-dark-mute); }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.85rem; font-size: .87rem; color: var(--on-dark-mute);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__bottom a { color: var(--on-dark-mute); }
.footer__bottom a:hover { color: var(--accent-300); }

.footer__disclaimer {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 236, 226, .09);
  font-size: .8rem; line-height: 1.75; color: var(--on-dark-mute); max-width: 90ch;
}
.footer__disclaimer strong { color: var(--on-dark-soft); }

/* ---------- Einblend-Animation ----------
   Nur aktiv, wenn JavaScript läuft: ohne JS bleibt der Inhalt sichtbar,
   statt dauerhaft ausgeblendet zu sein. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .process__item:nth-child(2n)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .nav__phone { display: none; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }

  .nav__toggle { display: grid; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .75rem 1.25rem 1.75rem;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__links a:not(.btn) {
    padding: .9rem .5rem; font-size: 1.02rem;
    border-bottom: 1px solid var(--line-soft); border-radius: 0;
  }
  .nav__links a:not(.btn).is-active { background: none; color: var(--accent-600); }
  .nav__links li:last-child a:not(.btn) { border-bottom: 0; }
  .nav__links .btn { display: inline-flex; margin-top: 1.1rem; padding: 1rem 1.9rem; }
  .nav__actions .btn { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap, .wrap--narrow { width: min(100% - 2rem, var(--wrap)); }
  .grid--2, .grid--3, .grid--4, .process { grid-template-columns: 1fr; }
  .process__item::after { display: none; }
  .stats { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .card, .quote, .panel, .hero__card { padding: 1.6rem; }
  .card, .quote, .hero__card, .panel { border-radius: var(--radius); }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .nav__links .btn { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav__toggle { display: none !important; }
  body { color: #000; background: #fff; }
  section { padding: 1rem 0; }
}
