@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

:root {
  --ink: #382c24;
  --ink-2: #3d2f26;
  --ink-contrast: #faf7f2;

  --taupe: #8f7e71;
  --taupe-dark: #72655a;
  --taupe-light: #c1b5a8;

  --rost: #765b50;
  --rost-dark: #614b42;

  --paper: #faf7f2;
  --paper-2: #ffffff;
  --paper-warm: #f7f3ec;
  --paper-contrast: #e2d9cf;

  --line: #e4e0da;
  --control-border: #d4cec5;

  --text: #26211d;
  --slate: #5a5148;
  --slate-light: #8a8074;

  --success-tint: #e7ebe7;
  --danger: #a4402f;
  --danger-tint: #fbeceb;

  --sand-tint: #e9ded2;

  --accent: #599068;
  --accent-dark: #2b4232;
  --accent-tint: #e2ebe3;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1240px;
  --shadow-card: 0 1px 2px rgba(38, 33, 29, 0.04), 0 12px 32px -16px rgba(38, 33, 29, 0.18);
  --shadow-card-hover: 0 1px 2px rgba(38, 33, 29, 0.05), 0 24px 48px -20px rgba(38, 33, 29, 0.24);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: padding-bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

img { max-width: 100%; display: block; }

textarea { resize: vertical; }

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 40px 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--control-border);
  background-color: var(--paper-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%235a5148' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5,7.5 10,12.5 15,7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 13px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
}
select:focus {
  outline: none;
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(143, 126, 113, 0.2);
}
select::-ms-expand { display: none; }

.custom-select { position: relative; }
.custom-select__native { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--control-border);
  background: var(--paper-2);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.custom-select__trigger:disabled { cursor: not-allowed; opacity: 0.6; }
.custom-select.is-placeholder .custom-select__trigger { color: var(--slate-light); }
.custom-select__trigger::after {
  content: '';
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-right: 2px solid var(--slate);
  border-bottom: 2px solid var(--slate);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.15s ease;
}
.custom-select.is-open .custom-select__trigger::after { transform: rotate(-135deg); margin-top: 2px; }
.custom-select__trigger:focus-visible,
.custom-select.is-open .custom-select__trigger {
  outline: none;
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(143, 126, 113, 0.2);
}
.custom-select__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  max-height: 260px;
  overflow-y: auto;
  background: var(--paper-2);
  border: 1px solid var(--control-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card-hover);
  padding: 6px;
}
.custom-select__option {
  padding: 10px 12px;
  border-radius: calc(var(--radius-sm) - 4px);
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
}
.custom-select__option:hover,
.custom-select__option.is-active { background: var(--paper-warm); }
.custom-select__option.is-selected { background: var(--rost); color: var(--ink-contrast); font-weight: 600; }
.custom-select__option[aria-disabled="true"] { color: var(--slate-light); cursor: not-allowed; }

.custom-date { position: relative; }
.custom-date__native { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.custom-date__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--control-border);
  background: var(--paper-2);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.custom-date.is-placeholder .custom-date__trigger { color: var(--slate-light); }
.custom-date__trigger:disabled { cursor: not-allowed; opacity: 0.6; }
.custom-date__trigger:focus-visible,
.custom-date.is-open .custom-date__trigger {
  outline: none;
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(143, 126, 113, 0.2);
}
.custom-date__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; border: 2px solid var(--slate); border-radius: 3px; }
.custom-date__icon::before, .custom-date__icon::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 2px;
  height: 5px;
  background: var(--slate);
}
.custom-date__icon::before { left: 2px; }
.custom-date__icon::after { right: 2px; }

.custom-date__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 60;
  width: 280px;
  background: var(--paper-2);
  border: 1px solid var(--control-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  padding: 16px;
}
.custom-date__kopf { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-weight: 700; font-size: 0.9rem; }
.custom-date__nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--paper-warm);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.custom-date__nav:hover { background: var(--taupe-light); }
.custom-date__raster { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.custom-date__wochentag { text-align: center; font-size: 0.72rem; color: var(--slate-light); padding: 4px 0; }
.custom-date__tag {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
}
.custom-date__tag:hover { background: var(--paper-warm); }
.custom-date__tag.is-heute { font-weight: 700; color: var(--rost); }
.custom-date__tag.is-selected { background: var(--rost); color: var(--ink-contrast); }
.custom-date__tag--leer { cursor: default; pointer-events: none; }
.custom-date__leeren {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border: none;
  border-top: 1px solid var(--line);
  background: none;
  color: var(--slate);
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
}
.custom-date__leeren:hover { color: var(--danger); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }

@media (max-width: 640px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }
}
p { margin: 0 0 1em; }
address { font-style: normal; }
button { font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--ink-contrast);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn--accent {
  background: var(--rost);
  color: var(--ink-contrast);
}
.btn--accent:hover { background: var(--rost-dark); transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(97, 75, 66, 0.45); }
.btn--ink {
  background: var(--ink);
  color: var(--ink-contrast);
}
.btn--ink:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border-color: var(--control-border);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--taupe); background: var(--paper-warm); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
@media (max-width: 640px) {
  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .btn--lg { padding: 13px 22px; font-size: 0.94rem; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { border-radius: 8px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.brand__claim { font-size: 0.75rem; color: var(--slate-light); }

.nav-toggle-checkbox { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > ul { display: flex; align-items: center; gap: 22px; }
.main-nav > ul > li > a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a[aria-current="page"] { color: var(--ink); border-color: var(--accent); }

.has-sub details { position: relative; }
.has-sub summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate);
  padding: 8px 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.has-sub summary::-webkit-details-marker { display: none; }
.has-sub summary::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.6;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}
.has-sub details[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.has-sub.is-active-branch summary,
.has-sub summary:hover { color: var(--ink); }

@keyframes sub-nav-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.has-sub .sub-nav {
  display: flex;
  flex-direction: column;
  min-width: 290px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  padding: 10px;
  margin-top: 10px;
  transform-origin: top left;
}
.has-sub details[open] .sub-nav { animation: sub-nav-in 0.2s cubic-bezier(0.16, 1, 0.3, 1); }
.has-sub .sub-nav a {
  display: block;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--slate);
  border-bottom: 1px solid var(--line);
  transition: color 0.15s ease, transform 0.15s ease;
  transform-origin: left center;
}
.has-sub .sub-nav a:last-child { border-bottom: none; }
.has-sub .sub-nav a:hover { color: var(--ink); transform: scale(1.04); }

@media (min-width: 901px) {
  .has-sub .sub-nav { position: absolute; }
}

.nav-cta { white-space: nowrap; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h, 74px);
    left: 0;
    right: 0;

    height: calc(100vh - var(--header-h, 74px));
    background: var(--paper-2);
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    gap: 16px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav > ul > li > a { display: block; padding: 14px 4px; font-size: 1.02rem; }

  .has-sub .sub-nav {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    min-width: 0;
    padding: 0 0 4px 14px;
    margin-top: 2px;
  }
  .has-sub .sub-nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
  .has-sub .sub-nav a:last-child { border-bottom: none; }
  .nav-toggle-checkbox:checked ~ .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 20px 24px 28px;
  }
  body.nav-open { overflow: hidden; }
  .nav-toggle-checkbox:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle-checkbox:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-toggle-checkbox:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta { margin-top: 4px; }
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  max-width: var(--max-width);
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__photo { position: relative; min-height: 460px; }
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
}
@media (max-width: 860px) { .hero__photo { min-height: 420px; max-width: 420px; margin: 0 auto; } }
.hero__photo-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--ink-contrast);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.photo-frame { margin: 0; }
.photo-frame__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.photo-frame__img img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.photo-frame figcaption { margin-top: 10px; font-size: 0.78rem; color: var(--slate-light); }

.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; padding: 0; list-style: none; }

.testimonial-single {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 36px 40px;
  text-align: center;
}
.testimonial-single__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; }
.testimonial-single__stars svg { width: 19px; height: 19px; color: var(--rost); }
.testimonial-single__quote { font-style: italic; font-size: 1.1rem; line-height: 1.65; color: var(--slate); margin-bottom: 24px; }
.testimonial-single__meta { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-single__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(118, 91, 80, 0.14);
  color: var(--rost);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-single__avatar svg { width: 22px; height: 22px; }
.testimonial-single__meta > div { text-align: left; }
.testimonial-single__author { font-weight: 700; color: var(--ink); margin: 0; }
.testimonial-single__source { font-size: 0.82rem; color: var(--slate-light); margin: 0; }
.testimonial-single__link { display: inline-block; margin-top: 20px; font-size: 0.9rem; font-weight: 600; color: var(--rost); text-decoration: underline; }
@media (max-width: 640px) {
  .testimonial-single { padding: 26px 22px; }
  .testimonial-single__quote { font-size: 1rem; }
}

.provision-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.provision-split__seite {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.provision-split__seite:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

.provision-split__seite--gesamt { width: 172px; height: 172px; background: var(--accent-tint); border-color: var(--accent); }
.provision-split__wert { font-size: 1.7rem; font-weight: 800; color: var(--ink); }
.provision-split__wert--preis { font-size: 1.15rem; }
.provision-split__label { font-size: 0.82rem; color: var(--slate-light); }
.provision-split__sublabel { font-size: 0.68rem; color: var(--slate-light); }
.provision-split__op { font-size: 1.6rem; font-weight: 700; color: var(--slate-light); }
@media (max-width: 640px) {
  .provision-split { gap: 12px; }
  .provision-split__seite { width: 116px; height: 116px; }
  .provision-split__seite--gesamt { width: 136px; height: 136px; }
  .provision-split__wert { font-size: 1.3rem; }
  .provision-split__wert--preis { font-size: 0.95rem; }
}

.provision-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px auto 0;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--rost);
  color: var(--ink-contrast);
  font-weight: 700;
  font-size: 0.92rem;
  width: fit-content;
}
.provision-badge__puls {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-contrast);
  animation: provision-badge-puls 1.8s ease-in-out infinite;
}
@keyframes provision-badge-puls {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.einseitig-wrap { overflow: hidden; }
.einseitig-wrap__img { float: left; width: 380px; max-width: 45%; margin: 4px 32px 20px 0; }

.einseitig-wrap__img .photo-frame__img { height: 420px; }
.einseitig-wrap__img .photo-frame__img img { width: 100%; height: 100%; object-fit: cover; }

.einseitig-wrap .prose { max-width: none; }
@media (max-width: 860px) {
  .einseitig-wrap__img { float: none; width: 100%; max-width: none; margin: 0 0 20px; }

  .einseitig-wrap__img .photo-frame__img { height: auto; }
  .einseitig-wrap__img .photo-frame__img img { height: auto; object-fit: initial; }
}
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate); }
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%232b4232' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5,10.5 8.5,14 15,6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.check-list strong { color: var(--ink); }

.check-list--warn li::before {
  background: var(--danger-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23a4402f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 3l8.5 14.5H1.5z'/%3E%3Cline x1='10' y1='8' x2='10' y2='12'/%3E%3Ccircle cx='10' cy='14.7' r='0.9' fill='%23a4402f' stroke='none'/%3E%3C/svg%3E");
  background-size: 13px;
}

.text-accent { color: var(--accent); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  background: var(--accent-tint);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-tint) 0%, rgba(226, 235, 227, 0) 70%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; }
.hero__lead { font-size: 1.15rem; color: var(--slate); max-width: 46ch; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero__stat { padding-left: 20px; border-left: 2px solid var(--line); }
.hero__stat:first-child { padding-left: 0; border-left: none; }
.hero__stat strong { display: block; font-size: 1.9rem; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.hero__stat span { font-size: 0.85rem; color: var(--slate-light); }
.hero__stat-hinweis { display: block; margin-top: 2px; font-size: 0.72rem; color: var(--slate-light); opacity: 0.8; }

@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .hero__grid { gap: 36px; }
  .hero h1 { font-size: 1.85rem; }
  .hero__lead { font-size: 0.98rem; }
  .hero__cta-row .btn--lg { padding: 13px 20px; font-size: 0.92rem; }
  .hero__stats { flex-wrap: nowrap; gap: 10px; margin-top: 28px; }
  .hero__stat { flex: 1 1 0; min-width: 0; padding-left: 10px; border-left-width: 1px; }
  .hero__stat strong { font-size: 1.15rem; }
  .hero__stat span { font-size: 0.66rem; line-height: 1.3; display: block; }
  .hero__stat .commission-info-link { font-size: 0.66rem; }
  .hero__stat-hinweis { font-size: 0.6rem; }
}

.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
@media (max-width: 640px) {
  .section { padding: 40px 0; }
  .section--tight { padding: 28px 0; }
}
.section--warm { background: var(--paper-warm); }
.section--contrast { background: var(--paper-contrast); }
.section--ink { background: var(--ink); color: var(--ink-contrast); }

.area-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .area-split { grid-template-columns: 1fr; } }
.area-split .eyebrow { margin-bottom: 18px; }
.area-split p { color: var(--slate); }
.area-panel { background: var(--paper-2); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
.area-panel .tag-list { gap: 10px; }

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: radial-gradient(circle, var(--accent-tint) 0%, var(--paper-warm) 72%, var(--paper-warm) 100%);
  margin-bottom: 24px;
}
.map-embed__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.radar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.radar__rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: radar-pulse 3s ease-out infinite;
}
.radar__rings span:nth-child(2) { animation-delay: 1s; }
.radar__rings span:nth-child(3) { animation-delay: 2s; }
@keyframes radar-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(11); opacity: 0; }
}
.radar__pin { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.radar__pin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--paper-2); }
.radar__pin-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper-2);
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.plz-suche { margin-top: 28px; }
.plz-suche label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.plz-such-row { display: flex; gap: 10px; max-width: 520px; }
.plz-such-input {
  flex: 1 1 25rem;
  min-width: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--control-border);
  background: var(--paper-2);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.plz-such-input:focus {
  outline: none;
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(143, 126, 113, 0.2);
}
.plz-such-vorschlaege {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card-hover);
  padding: 6px;
  max-width: 360px;
}
.plz-such-vorschlag {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.plz-such-vorschlag:hover { background: var(--paper-warm); }
.section--ink .section__title, .section--ink h2, .section--ink h3 { color: var(--ink-contrast); }
.section--ink .section__lead { color: rgba(250, 247, 242, 0.75); }

.section__head { max-width: 860px; margin: 0 auto 48px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.015em; }
.section__head .section__lead { max-width: 640px; margin-left: auto; margin-right: auto; }
.section__head--left .section__lead { margin-left: 0; margin-right: 0; }
.section__lead { color: var(--slate); font-size: 1.05rem; }
@media (max-width: 640px) {
  .section__head { margin-bottom: 24px; }
  .section__title { font-size: 1.5rem; }
  .section__lead { font-size: 0.95rem; }
}

.team-duo {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr minmax(200px, 320px);
  gap: 40px;
  align-items: center;
}
.team-duo__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}
.team-duo__photo img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.team-duo__text { text-align: center; }
.team-duo__text .section__title { margin-top: 4px; }
.team-duo__text .prose { max-width: 640px; margin: 0 auto; }
.team-duo__text .btn { margin-top: 8px; }
@media (max-width: 860px) {
  .team-duo {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "photoL photoR" "text text";
    gap: 16px;
  }
  .team-duo__photo:first-child { grid-area: photoL; }
  .team-duo__photo:last-child { grid-area: photoR; }
  .team-duo__text { grid-area: text; margin-top: 8px; }
}

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.objekt-anfrage-card { padding: 36px; }
.card.objekt-anfrage-card .form-privacy-note { margin-bottom: 22px; }
.objekt-anfrage-card .btn--accent { width: 100%; padding: 17px 26px; font-size: 1.02rem; }
.card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 0; }
.card--link { display: block; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.card--link:hover { border-color: var(--accent-tint); }
.card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; color: var(--accent-dark); font-size: 0.9rem; transition: gap 0.15s ease; }
.card--link:hover .card__more { gap: 10px; }

.objekt-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.objekt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--accent-tint); }
.objekt-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.objekt-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.objekt-card:hover .objekt-card__media img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--ink-contrast);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
}
.objekt-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.objekt-card__preis { font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.objekt-card__ort { color: var(--slate-light); font-size: 0.88rem; }
.objekt-card__facts { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.85rem; color: var(--slate); margin-top: 6px; }
.objekt-card__provision {
  display: inline-flex;
  align-self: flex-start;
  margin: 4px 0 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--sand-tint);
  color: var(--taupe-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery a { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery a:hover img { transform: scale(1.06); }
.gallery--hero { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 1fr); }
.gallery--hero a:first-child { grid-row: span 2; }
.gallery--hero a:nth-child(n+6) { display: none; }
.gallery__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 33, 29, 0.55);
  color: var(--ink-contrast);
  font-weight: 700;
  font-size: 1.05rem;
}
@media (max-width: 720px) { .gallery, .gallery--hero { grid-template-columns: repeat(2, 1fr); } .gallery--hero a:first-child { grid-column: span 2; grid-row: auto; } }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 33, 29, 0.92);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.lightbox-overlay[hidden] { display: none; }
.lightbox-overlay.is-open { opacity: 1; }
body.is-lightbox-open { overflow: hidden; }
.lightbox-img {
  max-width: min(1400px, 90vw);
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  transform: scale(0.97);
  transition: transform 0.18s ease;
}
.lightbox-overlay.is-open .lightbox-img { transform: scale(1); }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.14);
  color: var(--ink-contrast);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(250, 247, 242, 0.24); }
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.3rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.5rem; line-height: 1; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250, 247, 242, 0.14);
  color: var(--ink-contrast);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-close { width: 36px; height: 36px; top: 12px; right: 12px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.layout-split { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.layout-split--even { grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 860px) { .layout-split, .layout-split--even { grid-template-columns: 1fr; } }

.fact { background: var(--paper-warm); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.fact strong { display: block; font-size: 1.2rem; }
.fact span { font-size: 0.78rem; color: var(--slate-light); }

.fact-row { display: flex; flex-wrap: wrap; gap: 10px 32px; margin: 24px 0 36px; }
.fact-row .fact-item { display: flex; align-items: baseline; gap: 7px; font-size: 1rem; }
.fact-row .fact-item strong { font-weight: 700; color: var(--ink); }
.fact-row .fact-item span { color: var(--slate-light); font-size: 0.85rem; }
@media (max-width: 480px) { .fact-row { gap: 8px 22px; } }

.info-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 32px; margin: 28px 0 36px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 4px; }

.kv-list { columns: 2; column-gap: 40px; margin-top: 10px; }
.kv-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 0.92rem; break-inside: avoid; }
.kv-row:first-child { border-top: none; padding-top: 0; }
.kv-row .k { color: var(--slate); }
.kv-row .v { font-weight: 600; text-align: right; }
@media (max-width: 560px) { .kv-list { columns: 1; } }

.detail-heading { margin-top: 44px; }

.disclaimer {
  background: var(--paper-warm);
  border-left: 4px solid var(--taupe);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--slate);
  margin: 24px 0;
}

.team-grid { display: flex; flex-direction: column; gap: 28px; }
.team-card {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.team-card--reverse { flex-direction: row-reverse; }
.team-card__photo { flex: 0 0 320px; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--taupe) 0%, var(--ink) 100%);
}
.team-card__photo--placeholder span { font-size: 3.4rem; font-weight: 800; color: var(--ink-contrast); letter-spacing: 0.02em; }
.team-card__body { flex: 1 1 auto; min-width: 0; }
.team-card h2 { font-size: 1.5rem; margin-bottom: 4px; }
.team-card__rolle { display: block; color: var(--slate-light); font-size: 0.92rem; margin-bottom: 16px; }
.team-card p { color: var(--slate); font-size: 1.02rem; line-height: 1.6; }
.team-card__phone { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; color: var(--accent-dark); font-size: 0.98rem; }
@media (max-width: 720px) {
  .team-card, .team-card--reverse { flex-direction: column; }
  .team-card__photo { flex: 0 0 auto; width: 100%; max-width: 320px; }
}

.timeline { position: relative; padding-left: 28px; border-left: 2px solid var(--line); display: flex; flex-direction: column; gap: 28px; }
.timeline__item { position: relative; }
.timeline__item::before { content: ''; position: absolute; left: -34px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.timeline__item strong { display: block; color: var(--slate-light); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 20px;
  margin-bottom: 12px;
  background: var(--paper-2);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--accent); transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 16px; color: var(--slate); }

.steps { counter-reset: step; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
@media (max-width: 680px) { .steps { grid-template-columns: 1fr; } }
.step {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.step__num {
  counter-increment: step;
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink-contrast);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.step__num::before { content: counter(step); }

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--ink);
  box-shadow: 0 -12px 32px -16px rgba(38, 33, 29, 0.35);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { color: rgba(250, 247, 242, 0.85); font-size: 0.88rem; flex: 1 1 320px; margin: 0; }
.cookie-banner__text a { color: var(--ink-contrast); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn--outline { border-color: rgba(250, 247, 242, 0.4); color: var(--ink-contrast); }
.cookie-banner .btn--outline:hover { border-color: var(--ink-contrast); }

.breadcrumbs { font-size: 0.85rem; color: var(--slate-light); padding: 18px 0; }
.breadcrumbs a { color: var(--slate); }
.breadcrumbs a:hover { color: var(--accent); }

.lead-form { max-width: 560px; }
.form-row { margin-bottom: 16px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row--split-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-row--split-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 560px) {
  .form-row--split,
  .form-row--split-3,
  .form-row--split-4 { grid-template-columns: 1fr; }
}
.lead-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }

.lead-form input:not([type="checkbox"]), .lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--control-border);
  background: var(--paper-2);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.lead-form select { font-size: 0.95rem; }
.lead-form input:not([type="checkbox"]):focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(143, 126, 113, 0.2);
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form .form-privacy-note { font-size: 0.78rem; color: var(--slate-light); margin: 14px 0 24px; }
.form-notice { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 0.92rem; }
.form-notice--success { background: var(--success-tint); color: var(--accent); }
.form-notice--error { background: var(--danger-tint); color: var(--danger); }
.form-notice--info { background: var(--paper-warm); color: var(--ink); }
.form-notice--info a { text-decoration: underline; font-weight: 600; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(56, 44, 36, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}
.modal-box {
  position: relative;
  background: var(--paper-2);
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.modal-box__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--slate-light);
  cursor: pointer;
}
.modal-box__close:hover { background: var(--paper-warm); color: var(--ink); }
.modal-box__icon { font-size: 2.4rem; margin-bottom: 12px; }
.modal-box h3 { margin: 0 0 10px; font-size: 1.25rem; color: var(--ink); }
.modal-box p { margin: 0 0 22px; color: var(--slate); font-size: 0.95rem; line-height: 1.5; }

.rechner { max-width: 820px; margin: 0 auto; }

#bewertung-anfragen .lead-form { max-width: 720px; margin: 0 auto; }

.wizard-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.wizard-tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--control-border);
  background: var(--paper-2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.wizard-tab.is-active { border-color: var(--taupe); color: var(--ink); background: var(--paper-warm); }
.wizard-tab.is-done { color: var(--accent); }
.wizard-progressbar { height: 4px; background: var(--line); border-radius: 999px; margin-bottom: 28px; overflow: hidden; }
.wizard-progressbar-fill { height: 100%; width: 0; background: var(--taupe); transition: width 0.2s ease; }

.wizard-step { display: block; margin-bottom: 24px; }
.wizard.js-enabled .wizard-step { display: none; margin-bottom: 0; }
.wizard.js-enabled .wizard-step.is-active { display: block; }
.wizard-step-heading { font-size: 1.15rem; margin-bottom: 4px; }
.wizard-step-desc { font-size: 0.85rem; color: var(--slate); margin-bottom: 20px; }

.wizard-nav { display: none; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.wizard.js-enabled .wizard-nav { display: flex; }
.wizard-nav-label { font-size: 0.85rem; color: var(--slate-light); }
@media (max-width: 640px) {
  .wizard-tabs { gap: 6px; margin-bottom: 14px; }
  .wizard-tab { padding: 6px 12px; font-size: 0.74rem; }
  .wizard-step-heading { font-size: 1.02rem; }
  .wizard-step-desc { font-size: 0.8rem; margin-bottom: 14px; }
  .wizard-nav { margin-top: 20px; padding-top: 14px; }
}

.option-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 12px; margin-bottom: 20px; }
.option-card {
  position: relative;
  display: block;
  min-width: 0;
  border: 2px solid var(--control-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  cursor: pointer;
  background: var(--paper-2);

  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card:has(input:checked) { border-color: var(--taupe); background: var(--paper-warm); }
.option-card__title { font-weight: 700; display: block; color: var(--ink); }
@media (max-width: 640px) {
  .option-cards { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; }
  .option-card { padding: 12px 10px; }
  .option-card__title { font-size: 0.85rem; }
}

.conditional-block { overflow: hidden; max-height: 800px; transition: max-height 0.25s ease, opacity 0.2s ease, margin 0.25s ease; }
.conditional-block.is-collapsed { max-height: 0; opacity: 0; margin: 0; pointer-events: none; }

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--rost);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check { display: flex; align-items: center; gap: 8px; }
.form-check label { margin: 0; }
.form-hint { font-size: 0.78rem; color: var(--slate-light); margin: 6px 0 0; }

.commission-info-link { font-size: 0.82em; font-weight: 600; color: var(--slate-light); text-decoration: underline; text-underline-offset: 2px; }
.commission-info-link:hover { color: var(--accent-dark); }
.hero__stat .commission-info-link { font-size: 0.85rem; }
.rechner__hinweis {
  font-size: 0.85rem;
  color: var(--slate);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 22px;
}
.rechner__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  background: var(--accent-tint);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 22px;
}
.rechner__result-label { font-size: 0.85rem; font-weight: 600; color: var(--accent-dark); }
.rechner__result-value { font-size: 1.8rem; font-weight: 800; color: var(--ink); }
.rechner__result-note { font-size: 0.78rem; color: var(--slate); }
.rechner__result-note--zzgl { font-size: 0.9rem; font-weight: 600; color: var(--ink); }

.site-footer { background: var(--ink); color: var(--ink-contrast); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 64px 24px 48px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { position: relative; }
.footer__logo { position: relative; z-index: 1; display: inline-block; margin-bottom: 14px; }
.footer__logo-circle {
  position: absolute;
  top: -12px;
  left: -14px;
  width: 90px;
  height: 90px;
  z-index: 0;
  pointer-events: none;
}
.footer__logo-circle circle { fill: var(--paper); }
.footer__claim { color: rgba(250, 247, 242, 0.7); font-size: 0.92rem; }
.footer__badge { font-size: 0.8rem; color: var(--taupe-light); font-weight: 600; }
.footer__nav h2, .footer__contact h2 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--taupe-light); margin-bottom: 16px; }
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: rgba(250, 247, 242, 0.8); font-size: 0.92rem; }
.footer__nav a:hover { color: var(--ink-contrast); }
.footer__contact address, .footer__contact p { color: rgba(250, 247, 242, 0.8); font-size: 0.92rem; margin-bottom: 10px; }
.footer__area { font-size: 0.82rem; color: rgba(250, 247, 242, 0.55); }
.footer__bottom { border-top: 1px solid rgba(250, 247, 242, 0.12); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.55);
}
.footer__bottom-inner a { color: rgba(250, 247, 242, 0.7); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: var(--paper-contrast);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  line-height: 1.4;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.tag:hover { background: var(--accent); color: var(--paper); }
.prose { max-width: 70ch; }
.prose p { color: var(--slate); }
.prose h2 { margin-top: 1.6em; }
.prose ul { color: var(--slate); margin: 0 0 1em; padding-left: 1.4em; }
.prose li { margin-bottom: 0.4em; }

.keyword-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.keyword-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.keyword-chip svg { width: 16px; height: 16px; color: var(--rost); flex-shrink: 0; }
