/* =========================================================
   Markgräfler Räumungen — Website
   Entrümpelung · Haushaltsauflösung · Räumung
   Weil am Rhein · Markgräflerland · Hochrhein
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --forest:        #14532D;
  --forest-dark:   #0F3D22;
  --forest-soft:   #1B6B3E;
  --forest-tint:   #E8F0EB;
  --ink:           #0A0A0A;
  --ink-2:         #1F2937;
  --muted:         #5A6472;
  --muted-2:       #8A93A0;
  --border:        #E5E5E5;
  --border-2:      #D4D4D4;
  --surface:       #F8F8F8;
  --surface-2:     #F1F2F0;
  --snow:          #FFFFFF;

  --ff: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;

  --max:    1240px;
  --narrow: 880px;
  --gutter: 20px;
  --nav-h:  68px;

  --radius:    12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow:    0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.14);

  --t-fast: 160ms;
  --t-mid:  260ms;
  --ease:   cubic-bezier(.2,.8,.2,1);

  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
}

@media (min-width: 720px)  { :root { --gutter: 32px; --nav-h: 76px; } }
@media (min-width: 1080px) { :root { --gutter: 48px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  hyphenate-limit-chars: 7 3 3;
}
h1, h2, h3 { text-wrap: balance; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; }

::selection { background: var(--forest); color: var(--snow); }
:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--forest);
  color: var(--snow);
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus-visible { left: 8px; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Container ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: max(var(--gutter), var(--safe-l)) max(var(--gutter), var(--safe-r));
}
.wrap--narrow { max-width: var(--narrow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.005em;
  line-height: 1.2;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn__arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--forest);
  color: var(--snow);
}
.btn--primary:hover { background: var(--forest-dark); }
.btn--primary:focus-visible { outline-color: var(--forest); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-2);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); }

.btn--lg {
  padding: 15px 26px;
  font-size: 16px;
}

.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--snow);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-fast) var(--ease);
  padding-top: var(--safe-t);
}
.nav.is-scrolled { box-shadow: 0 4px 16px rgba(15,23,42,.06); }

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  flex-shrink: 0;
  min-height: 44px;
}
.brand__logo {
  width: auto;
  height: 32px;
  display: block;
}
.brand__mark { width: auto; height: 28px; }
@media (min-width: 480px) {
  .brand__logo { height: 36px; }
  .brand__mark { height: 32px; }
  .brand { gap: 10px; }
}
@media (min-width: 720px) {
  .brand__logo { height: 44px; }
  .brand__mark { height: 38px; }
  .brand { gap: 14px; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 14px 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--t-fast) var(--ease);
}
.nav__links a:hover { color: var(--forest); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--forest);
  transition: right var(--t-fast) var(--ease);
}
.nav__links a:hover::after { right: 0; }

@media (min-width: 1080px) { .nav__links { display: inline-flex; } }

.nav__right {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 720px) { .nav__right { display: inline-flex; } }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  min-height: 44px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.nav__phone:hover { color: var(--forest); }
.nav__phone svg { color: var(--forest); }
.nav__phone-num { letter-spacing: .01em; }

@media (max-width: 1079px) {
  .nav__cta { display: none; }
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center;
  background: var(--snow);
}
.nav__toggle:active { background: var(--surface); }
.nav__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 1080px) { .nav__toggle { display: none; } }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background: var(--snow);
  border-top: 1px solid var(--border);
  padding: 8px var(--gutter) calc(32px + var(--safe-b));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none; transform: none; }
}

/* Während Menü offen: Body locked → sticky-Nav verliert Halt,
   deshalb auf fixed schalten, damit sie oben bleibt. */
body.menu-open .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-menu nav a:last-of-type { border-bottom: 0; }
.mobile-menu nav a:active { background: var(--surface); }
.mobile-menu__foot {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu__foot .nav__phone {
  font-size: 18px;
  padding: 14px 0;
  min-height: 48px;
}
.mobile-menu__foot .btn { padding: 16px 20px; font-size: 16px; min-height: 52px; }
@media (min-width: 1080px) { .mobile-menu { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 100px);
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--forest-tint), transparent 60%),
    var(--snow);
}

.hero__grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 18px;
}
.hero__kicker::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--forest);
  display: inline-block;
}

.hero__title {
  font-size: clamp(26px, 7.2vw, 54px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: anywhere;
}
@media (min-width: 720px) {
  .hero__title { line-height: 1.06; letter-spacing: -.025em; }
}
.hero__title-accent {
  display: block;
  color: var(--forest);
  font-weight: 700;
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__points {
  display: grid;
  gap: 12px 24px;
  font-size: 15px;
  color: var(--ink-2);
}
@media (min-width: 540px) {
  .hero__points { grid-template-columns: 1fr 1fr; }
}
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hero__points li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--forest-tint);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}
@media (min-width: 720px) {
  .hero__visual { min-height: 220px; }
}
.hero__visual-stage {
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 36px);
}
@media (min-width: 720px) {
  .hero__visual-stage { max-width: 520px; aspect-ratio: 3 / 2; }
}
.hero__visual-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(20,83,45,.10), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.hero__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 480px;
  filter: drop-shadow(0 18px 40px rgba(15,23,42,.12));
}

/* ---------- Quick-Anfrage (Hero) ---------- */
.quick {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2vw, 22px);
  margin: 4px 0 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.quick__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
}
.quick__row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .quick__row { grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: stretch; }
}
.quick__field {
  display: flex;
  flex-direction: column;
}
.quick__field input {
  width: 100%;
  background: var(--snow);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 14px 14px;
  min-height: 48px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.quick__field input:hover { border-color: var(--ink-2); }
.quick__field input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(20,83,45,.15);
}
.quick__submit {
  padding: 14px 20px;
  min-height: 48px;
  white-space: nowrap;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
}
@media (min-width: 540px) {
  .quick__submit { width: auto; }
}
.quick__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
  min-height: 44px;
  padding: 6px 0;
}
.quick__consent input {
  width: 20px; height: 20px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--forest);
}
.quick__consent a {
  display: inline-block;
  padding: 4px 0;
}
.quick__consent a {
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}
.quick__hint {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.quick__hint a {
  color: var(--forest);
  font-weight: 700;
  border-bottom: 1px solid var(--forest);
}
.quick__submit[disabled],
.quick__submit.is-loading {
  opacity: .7;
  cursor: wait;
}
.quick__submit.is-loading .quick__submit-label::after {
  content: " …";
}
.quick.is-error {
  outline: 2px solid #C0392B;
  outline-offset: 4px;
}

/* ---------- Trust band ---------- */
.trust {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(40px, 7vw, 56px) 0;
}
.trust__grid {
  display: grid;
  gap: 18px 14px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px)  { .trust__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
@media (min-width: 960px)  { .trust__grid { gap: 32px; } }

.trust__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--forest-tint);
  color: var(--forest);
  margin-bottom: 4px;
}
.trust__item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.trust__item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(56px, 8vw, 110px) 0;
}
.section--surface { background: var(--surface); }
.section--ink {
  background: var(--ink);
  color: var(--snow);
}

.section__head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}
.section__kicker::before {
  content: "";
  width: 20px; height: 2px;
  background: currentColor;
}
.section__kicker--inv { color: rgba(255,255,255,.7); }

.section__title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}
.section__title--inv { color: var(--snow); }

.section__lead {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--muted);
  max-width: 60ch;
}
.section__lead--inv { color: rgba(255,255,255,.78); }

/* ---------- Services ---------- */
.services {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 540px)  { .services { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 960px)  { .services { grid-template-columns: repeat(3, 1fr); } }

.service {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-mid) var(--ease);
}
@media (min-width: 540px) { .service { padding: 24px; } }
.service:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.service h3::before {
  content: "";
  display: block;
  width: 28px; height: 3px;
  background: var(--forest);
  border-radius: 2px;
  margin-bottom: 14px;
}
.service p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 10px 0;
  min-height: 44px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease), gap var(--t-fast) var(--ease);
}
.service__more:hover {
  border-bottom-color: var(--forest);
  gap: 10px;
}

/* ---------- Kostenrechner ---------- */
.calc {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) { .calc { grid-template-columns: 1.25fr 1fr; } }

.calc__form {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc__field { border: 0; padding: 0; margin: 0; }
.calc__field legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  padding: 0;
}
.calc__legend-out {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.calc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.chip input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  pointer-events: none;
}
.chip span {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: var(--snow);
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  user-select: none;
}
.chip:hover span { border-color: var(--ink-2); }
.chip input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--snow);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

.calc__range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 6px 0 4px;
}
.calc__range::-webkit-slider-runnable-track {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  background: var(--forest);
  border: 3px solid var(--snow);
  border-radius: 999px;
  margin-top: -11px;
  box-shadow: 0 2px 8px rgba(20,83,45,.35);
  cursor: pointer;
}
.calc__range::-moz-range-track {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
}
.calc__range::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--forest);
  border: 3px solid var(--snow);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(20,83,45,.35);
  cursor: pointer;
}
.calc__range:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
}
.calc__range-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

.calc__row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 540px) { .calc__row { grid-template-columns: 1fr auto; } }

.calc__select {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.calc__select select {
  width: 100%;
  padding: 14px 36px 14px 13px;
  min-height: 48px;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  background: var(--snow);
  font-size: 16px;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.calc__select select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(20,83,45,.15);
}

.calc__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 500;
  padding: 12px 0;
  min-height: 44px;
}
.calc__check + .calc__check { padding-top: 6px; }
.calc__check input {
  width: 22px; height: 22px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--forest);
  cursor: pointer;
}

.calc__result {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  background: var(--ink);
  color: var(--snow);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 959px) { .calc__result { position: static; } }

.calc__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.calc__kicker::before {
  content: "";
  width: 18px; height: 2px;
  background: currentColor;
}

.calc__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.calc__price strong {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--snow);
}
.calc__price-sep {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.calc__price-foot {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: -6px;
}

.calc__hints {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
  margin-top: 4px;
}
.calc__hints li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
}
.calc__hints li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: var(--snow);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.calc__note {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
  margin-top: 4px;
}

/* ---------- Vorher / Nachher ---------- */
.ba {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;
}
@media (min-width: 1080px) { .ba { grid-template-columns: 1fr 1fr; } }

.ba__case { display: flex; flex-direction: column; gap: 14px; }

.ba__pair {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .ba__pair { grid-template-columns: 1fr 1fr; }
}

.ba__shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--snow);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
}
.ba__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba__label {
  position: absolute;
  top: 10px; left: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: rgba(10,10,10,.92);
  color: var(--snow);
}
.ba__label--nachher { background: var(--forest); }

.ba__cap {
  font-size: 14.5px;
  color: var(--muted);
  padding: 0 4px;
}

/* ---------- Steps / Ablauf ---------- */
.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 640px)  { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(5, 1fr); } }

.step {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  transition: border-color var(--t-fast) var(--ease);
}
.step:hover { border-color: var(--forest); }

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--snow);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Why ---------- */
.why {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .why { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .why { grid-template-columns: repeat(3, 1fr); } }

.why__item {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.why__item:hover { border-color: var(--forest); transform: translateY(-2px); }
.why__item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.why__item h3::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--forest);
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: middle;
}
.why__item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 8px; }

.faq__item {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.faq__item[open] {
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -.005em;
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__chev {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px; height: 12px;
  transform: translateY(-50%);
}
.faq__chev::before,
.faq__chev::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--t-fast) var(--ease);
}
.faq__chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chev::after { transform: translate(-50%, -50%) rotate(0); }

.faq__a {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq__a a { color: var(--forest); font-weight: 600; }
.faq__a a:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .contact { grid-template-columns: 1fr 1.05fr; } }

.contact__copy { color: rgba(255,255,255,.92); }
.contact__copy .section__title { margin-bottom: 18px; }

.contact__direct {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin: 28px 0 24px;
  font-size: 15px;
}
@media (min-width: 540px) {
  .contact__direct { grid-template-columns: 1fr 1fr; gap: 18px 32px; }
}
.contact__direct dt {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.contact__direct dd {
  color: var(--snow);
  line-height: 1.5;
}
.contact__direct a {
  display: inline-block;
  color: var(--snow);
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding: 8px 0;
  min-height: 44px;
  line-height: 1.6;
  transition: border-color var(--t-fast) var(--ease);
}
.contact__direct a:hover { border-color: var(--snow); }
.contact__direct dt { color: rgba(255,255,255,.75); }

.contact__region {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
}
.contact__region strong { color: var(--snow); font-weight: 700; }

/* ---------- Form ---------- */
.form {
  background: var(--snow);
  color: var(--ink-2);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-lg);
}

.form__row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: block; margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--snow);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 13px 14px;
  min-height: 48px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--ink-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(20,83,45,.15);
}

.field--hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: none;
}

.field--consent { margin-top: 4px; margin-bottom: 22px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 400;
  cursor: pointer;
  min-height: 44px;
  padding: 6px 0;
}
.consent input {
  width: 22px; height: 22px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--forest);
}
.consent a {
  display: inline-block;
  padding: 4px 0;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}

.form__note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: clamp(48px, 6vw, 80px) 0 24px;
}

.footer__top {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 720px)  { .footer__top { grid-template-columns: 1fr 2fr; } }

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--snow);
}
.footer__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer__logo {
  width: auto;
  height: 56px;
  display: block;
  filter: brightness(0) invert(1);
}
.footer__mark { width: auto; height: 44px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  max-width: 32ch;
  line-height: 1.55;
}

.footer__cols {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--snow);
  margin-bottom: 14px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__col li,
.footer__col a {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  transition: color var(--t-fast) var(--ease);
}
.footer__col a {
  display: inline-block;
  padding: 8px 0;
  min-height: 44px;
  line-height: 1.6;
}
.footer__col a:hover,
.footer__col a:focus-visible { color: var(--snow); }

.footer__bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
}
.footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer__bottom a {
  display: inline-block;
  padding: 8px 0;
  min-height: 44px;
  line-height: 1.6;
}
.footer__bottom a:hover { color: var(--snow); }

/* ---------- Legal pages ---------- */
.legal-page { padding: clamp(40px, 5vw, 80px) 0; }
.legal-page__inner { max-width: 760px; }
.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 24px;
}
.legal-page__back:hover { text-decoration: underline; }
.legal-page h1 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-page h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 18px 0 6px;
}
.legal-page p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal-page a {
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}
.legal-page a:hover { color: var(--forest-dark); }

/* ---------- Subpage / SEO-Pages ---------- */
.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  padding: 18px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumbs li + li::before {
  content: "›";
  color: var(--muted-2);
  margin-right: 2px;
}
.breadcrumbs a {
  color: var(--forest);
  border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover { border-bottom-color: var(--forest); }
.breadcrumbs [aria-current] { color: var(--ink-2); }

.subhero {
  background:
    radial-gradient(1100px 480px at 88% -10%, var(--forest-tint), transparent 65%),
    var(--snow);
  padding: clamp(28px, 4vw, 56px) 0 clamp(40px, 6vw, 72px);
}
.subhero__grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) { .subhero__grid { grid-template-columns: 1.25fr 1fr; } }

.subhero__copy .hero__kicker { margin-bottom: 14px; }
.subhero__title {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -.024em;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
}
.subhero__title-accent { color: var(--forest); }
.subhero__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 22px;
}
.subhero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.subhero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.subhero__meta strong { color: var(--ink); font-weight: 700; }

.subhero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subhero__visual-stage {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.subhero__visual-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(20,83,45,.08), transparent 65%);
  border-radius: 50%;
}
.subhero__logo {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 420px;
  filter: drop-shadow(0 14px 32px rgba(15,23,42,.12));
}

/* Article body — long-form content for SEO pages */
.article {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
  padding: clamp(28px, 4vw, 56px) 0 clamp(48px, 6vw, 80px);
}
@media (min-width: 1080px) {
  .article { grid-template-columns: 220px 1fr; gap: 56px; }
}

.article__toc {
  position: relative;
  font-size: 14px;
  color: var(--ink-2);
}
@media (min-width: 1080px) {
  .article__toc {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
    align-self: start;
    max-height: calc(100vh - var(--nav-h) - 48px);
    overflow-y: auto;
  }
}
.article__toc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.article__toc ol { display: flex; flex-direction: column; gap: 4px; counter-reset: toc; }
.article__toc li {
  counter-increment: toc;
  border-left: 2px solid var(--border);
  padding-left: 14px;
  transition: border-color var(--t-fast) var(--ease);
}
.article__toc li:hover { border-color: var(--forest); }
.article__toc a {
  display: block;
  padding: 6px 0;
  color: var(--ink-2);
  font-weight: 500;
  transition: color var(--t-fast) var(--ease);
}
.article__toc a:hover { color: var(--forest); }

.article__body {
  max-width: 760px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.article__body > * + * { margin-top: 1em; }
.article__body h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -.018em;
  font-weight: 800;
  color: var(--ink);
  margin: clamp(36px, 5vw, 56px) 0 14px;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.article__body h2::before {
  content: "";
  display: block;
  width: 32px; height: 3px;
  background: var(--forest);
  border-radius: 2px;
  margin-bottom: 14px;
}
.article__body h3 {
  font-size: 18.5px;
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 700;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 8px;
}
.article__body p { color: var(--ink-2); }
.article__body strong { color: var(--ink); font-weight: 700; }
.article__body a:not(.btn) {
  color: var(--forest);
  border-bottom: 1px solid rgba(20,83,45,.3);
  transition: border-color var(--t-fast) var(--ease);
}
.article__body a:not(.btn):hover { border-bottom-color: var(--forest); }
.article__body .btn { border-bottom: 0; }
.article__body .btn--primary { color: var(--snow); }
.article__body .btn--ghost { color: var(--ink); }
.article__body .cta-block .btn--ghost { color: var(--snow); }
.article__body ul, .article__body ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article__body ul { list-style: disc; }
.article__body ul ::marker { color: var(--forest); }
.article__body ol { list-style: decimal; }
.article__body li { color: var(--ink-2); }
.article__body li::marker { color: var(--forest); font-weight: 700; }

.article__body blockquote {
  border-left: 3px solid var(--forest);
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 4px;
  font-size: 16px;
  color: var(--ink-2);
  font-style: normal;
  margin: 24px 0;
}
.article__body blockquote strong { color: var(--ink); }

.article__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 16px 0;
}
.article__body th, .article__body td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article__body th {
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}

.fact-box {
  background: var(--forest-tint);
  border: 1px solid rgba(20,83,45,.12);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 24px 0;
}
.fact-box__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}
.fact-box p { color: var(--ink-2); margin: 0; }

.checklist {
  list-style: none !important;
  padding-left: 0 !important;
}
.checklist li {
  position: relative;
  padding-left: 28px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  background: var(--forest);
  border-radius: 999px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--snow) 50%),
    linear-gradient(-45deg, var(--snow) 50%, transparent 50%);
  background-position: 5px 5px, 10px 5px;
  background-size: 5px 9px, 5px 9px;
  background-repeat: no-repeat;
}
.checklist li::marker { content: ""; }

.local-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
  padding: 0 !important;
  list-style: none !important;
}
.local-areas li {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink-2);
  background: var(--snow);
}

.cta-block {
  background: var(--ink);
  color: var(--snow);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  margin: 40px 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) { .cta-block { grid-template-columns: 1fr auto; gap: 24px; } }
.cta-block h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  color: var(--snow);
  letter-spacing: -.01em;
  margin: 0 !important;
}
.cta-block h3::before { display: none !important; }
.cta-block p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin: 6px 0 0;
}
.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-block__actions .btn--ghost {
  border-color: rgba(255,255,255,.3);
  color: var(--snow);
}
.cta-block__actions .btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--snow);
}

.related-pages {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 36px;
}
@media (min-width: 720px) { .related-pages { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .related-pages { grid-template-columns: repeat(3, 1fr); } }
.related-pages a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--snow);
  color: var(--ink-2) !important;
  border-bottom: 1px solid var(--border) !important;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.related-pages a:hover {
  border-color: var(--forest) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.related-pages strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.related-pages span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Sticky Mobile Action Bar ---------- */
.action-bar {
  position: fixed;
  left: max(8px, var(--safe-l));
  right: max(8px, var(--safe-r));
  bottom: calc(8px + var(--safe-b));
  z-index: 40;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(10,10,10,.96);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  transform: translateY(140%);
  transition: transform var(--t-mid) var(--ease);
}
.action-bar.is-visible { transform: translateY(0); }
body.menu-open .action-bar { transform: translateY(140%); }
.action-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  min-height: 50px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.action-bar__btn:active { transform: scale(.97); }
.action-bar__btn--call {
  background: var(--snow);
  color: var(--ink);
}
.action-bar__btn--call:hover { background: #F0F0F0; }
.action-bar__btn--cta {
  background: var(--forest);
  color: var(--snow);
}
.action-bar__btn--cta:hover { background: var(--forest-soft); }

@media (min-width: 720px) { .action-bar { display: none; } }

/* Padding bottom for body content not to be hidden by action bar */
@media (max-width: 719px) {
  body.has-action-bar { padding-bottom: calc(76px + var(--safe-b)); }
}

/* ---------- Back to Top ---------- */
.back-top {
  position: fixed;
  right: calc(16px + var(--safe-b));
  bottom: 16px;
  z-index: 30;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--snow);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease), background var(--t-fast) var(--ease);
}
.back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover { background: var(--forest); }
.back-top:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

@media (max-width: 719px) {
  body.has-action-bar .back-top {
    bottom: calc(76px + 12px + var(--safe-b));
  }
}

/* ============================================================
   ANIMATION SYSTEM
   ============================================================ */
@keyframes mg-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mg-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes mg-scale-in {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes mg-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes mg-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(20,83,45,.35); }
  70%  { box-shadow: 0 0 0 14px rgba(20,83,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(20,83,45,0); }
}
@keyframes mg-pulse-dot {
  0%, 100% { transform: scale(1); opacity: .85; }
  50%      { transform: scale(1.2); opacity: 1; }
}
@keyframes mg-shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms cubic-bezier(.2,.8,.2,1), transform 600ms cubic-bezier(.2,.8,.2,1);
  }
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  /* Stagger: Cards in einer Reihe nacheinander */
  .js .services > .reveal:nth-child(1).is-visible,
  .js .why > .reveal:nth-child(1).is-visible,
  .js .steps > .reveal:nth-child(1).is-visible { transition-delay: 0ms; }
  .js .services > .reveal:nth-child(2).is-visible,
  .js .why > .reveal:nth-child(2).is-visible,
  .js .steps > .reveal:nth-child(2).is-visible { transition-delay: 60ms; }
  .js .services > .reveal:nth-child(3).is-visible,
  .js .why > .reveal:nth-child(3).is-visible,
  .js .steps > .reveal:nth-child(3).is-visible { transition-delay: 120ms; }
  .js .services > .reveal:nth-child(4).is-visible,
  .js .why > .reveal:nth-child(4).is-visible,
  .js .steps > .reveal:nth-child(4).is-visible { transition-delay: 180ms; }
  .js .services > .reveal:nth-child(5).is-visible,
  .js .why > .reveal:nth-child(5).is-visible,
  .js .steps > .reveal:nth-child(5).is-visible { transition-delay: 240ms; }
  .js .services > .reveal:nth-child(6).is-visible { transition-delay: 300ms; }
  .js .services > .reveal:nth-child(7).is-visible { transition-delay: 360ms; }
  .js .services > .reveal:nth-child(8).is-visible { transition-delay: 420ms; }
}

/* ---------- Page-Load Choreography (Hero) — opacity only, kein LCP-Delay ---------- */
@media (prefers-reduced-motion: no-preference) and (min-width: 720px) {
  .hero__copy > * {
    opacity: 0;
    animation: mg-fade-in 500ms cubic-bezier(.2,.8,.2,1) forwards;
  }
  .hero__copy .hero__kicker  { animation-delay:  40ms; }
  .hero__copy .hero__title   { animation-delay:  80ms; }
  .hero__copy .hero__sub     { animation-delay: 140ms; }
  .hero__copy .quick         { animation-delay: 200ms; }
  .hero__copy .hero__points  { animation-delay: 260ms; }

  .hero__visual {
    opacity: 0;
    animation: mg-fade-in 600ms cubic-bezier(.2,.8,.2,1) 120ms forwards;
  }
}

/* ---------- Logo Hover (subtle) ---------- */
.brand__logo {
  transition: transform var(--t-mid) var(--ease);
}
.brand:hover .brand__logo {
  transform: translateX(-1px) rotate(-2deg);
}

/* ---------- Phone-Pulse: subtle attention, läuft nur ~3 Zyklen, dann ruhig ---------- */
@media (prefers-reduced-motion: no-preference) {
  .nav__phone svg,
  .hero__cta a[href^="tel:"] svg {
    animation: mg-pulse-dot 2.4s ease-in-out 3;
    transform-origin: center;
  }
}

/* ---------- Service-Cards: Icons + Lift ---------- */
.service {
  position: relative;
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--forest-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.service:hover::after { transform: scaleX(1); }
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--forest-tint);
  color: var(--forest);
  margin-bottom: 14px;
  transition: transform var(--t-mid) var(--ease), background var(--t-fast) var(--ease);
}
.service:hover .service__icon {
  transform: rotate(-6deg) scale(1.06);
}
.service h3 {
  margin-bottom: 8px;
}
.service h3::before { display: none; }

/* ---------- Steps: connecting process line ---------- */
.steps {
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 32px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest) 50%, transparent 100%);
  opacity: .15;
  pointer-events: none;
}
@media (min-width: 640px) and (max-width: 1079px) { .steps::before { display: none; } }
@media (min-width: 1080px) {
  .steps::before {
    left: 22px;
    top: 30px;
    bottom: auto;
    width: calc(100% - 44px);
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--forest) 5%, var(--forest) 95%, transparent 100%);
    opacity: .15;
  }
}
.step::before {
  content: none;
}
.step {
  position: relative;
}
.step__num {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .step.is-visible .step__num {
    animation: mg-scale-in 500ms cubic-bezier(.34,1.56,.64,1) forwards;
  }
}

/* ---------- Trust-Items: subtle reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .trust__item {
    opacity: 0;
    transform: translateY(10px);
    animation: mg-fade-up 600ms cubic-bezier(.2,.8,.2,1) forwards;
  }
  .trust__item:nth-child(1) { animation-delay: 100ms; }
  .trust__item:nth-child(2) { animation-delay: 180ms; }
  .trust__item:nth-child(3) { animation-delay: 260ms; }
  .trust__item:nth-child(4) { animation-delay: 340ms; }
  .trust__icon {
    transition: transform var(--t-mid) var(--ease), background var(--t-fast) var(--ease);
  }
  .trust__item:hover .trust__icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--forest);
    color: var(--snow);
  }
}

/* ---------- Vorher-Nachher: subtle hover-zoom ---------- */
.ba__shot {
  cursor: zoom-in;
}
.ba__shot img {
  transition: transform 600ms cubic-bezier(.2,.8,.2,1), filter 400ms;
  will-change: transform;
}
.ba__shot:hover img {
  transform: scale(1.04);
}
.ba__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,.18) 100%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  pointer-events: none;
}
.ba__shot:hover::after { opacity: 1; }

/* ---------- Why-Items: lift + dot pulse ---------- */
.why__item {
  position: relative;
  overflow: hidden;
}
.why__item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--forest);
  transform: translateX(-100%);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.why__item:hover::before { transform: translateX(0); }
.why__item h3::before {
  transition: transform var(--t-mid) var(--ease);
}
.why__item:hover h3::before {
  transform: scale(1.6);
}

/* ---------- Buttons: Subtle press scale + arrow drift ---------- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.18);
  opacity: 0;
  transform: translateY(120%);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), opacity 200ms;
  z-index: -1;
}
.btn--primary:hover::before {
  opacity: 1;
  transform: translateY(0);
}
.btn:active { transform: translateY(1px) scale(.98); }

/* ---------- FAQ: smoother accordion (animated content) ---------- */
.faq__item .faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms cubic-bezier(.2,.8,.2,1);
}
.faq__item[open] .faq__a {
  grid-template-rows: 1fr;
}
.faq__item .faq__a > * {
  overflow: hidden;
  min-height: 0;
}
@supports not (grid-template-rows: 0fr) {
  /* Fallback */
  .faq__item .faq__a { display: block; }
}
.faq__item summary {
  transition: background var(--t-fast) var(--ease);
}
.faq__item:hover summary { background: var(--surface); }

/* ---------- Calc result: number-flash on update ---------- */
@keyframes mg-num-flash {
  0%   { color: var(--snow); }
  35%  { color: var(--forest-soft); transform: translateY(-2px); }
  100% { color: var(--snow); transform: translateY(0); }
}
.calc__price strong.is-changed {
  display: inline-block;
  animation: mg-num-flash 500ms cubic-bezier(.2,.8,.2,1);
}

/* ---------- Card-Tilt (3D, subtle, JS-controlled) ---------- */
.tilt-target {
  transform-style: preserve-3d;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1);
}

/* ---------- Section dividers: subtle fade ---------- */
.section + .section--surface,
.section + .section--ink {
  position: relative;
}

/* ---------- Hero-Visual: subtle background pattern ---------- */
.hero__visual-stage::after {
  content: "";
  position: absolute;
  inset: -20px;
  background-image:
    radial-gradient(circle, rgba(20,83,45,.06) 1px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: 0;
  opacity: .8;
  mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  pointer-events: none;
}

/* ---------- Mobile Action-Bar: subtle entry pulse ---------- */
@media (prefers-reduced-motion: no-preference) {
  .action-bar.is-visible {
    animation: mg-fade-up 400ms cubic-bezier(.2,.8,.2,1);
  }
}

/* ---------- Reduced motion: respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
