/* =========================================================================
   Freiraum Entrümpelung — app.css
   Editorial / minimal. Anthrazit + Olive + warmes Off-White.
   ========================================================================= */

/* --------------------------------------------------------------- Tokens */
:root {
  --ink: #282d31;
  --ink-2: #333a3f;

  /* Grün aus dem Logo */
  --olive: #6e8b3b;
  --olive-dk: #5b7430;
  --olive-lt: #8cac4b;
  --olive-pale: #e7ecdc;
  --olive-wash: rgba(110, 139, 59, 0.08);

  --paper: #f6f6f2;
  --paper-2: #f1f3ea;
  --white: #fff;
  --sand: #eeefe4;
  --sand-2: #e6e8da;
  --clay: #cfd6bb;

  --text: #282d31;
  --text-2: rgba(40, 45, 49, 0.68);
  --text-3: rgba(40, 45, 49, 0.5);
  --line: rgba(40, 45, 49, 0.1);
  --line-2: rgba(40, 45, 49, 0.16);
  --line-3: rgba(40, 45, 49, 0.24);
  --line-olive: rgba(110, 139, 59, 0.28);

  --sh-1: 0 1px 2px rgba(40, 45, 49, 0.04);
  --sh-2: 0 1px 2px rgba(40, 45, 49, 0.04), 0 14px 30px -18px rgba(40, 45, 49, 0.22);
  --sh-3: 0 2px 4px rgba(40, 45, 49, 0.03), 0 30px 70px -32px rgba(40, 45, 49, 0.32);

  --r: 22px;
  --r-lg: 26px;
  --r-sm: 14px;
  --r-xs: 10px;
  --pill: 999px;

  --wrap: 1240px;
  --gut: clamp(20px, 4.4vw, 56px);
  --sec: clamp(72px, 10vw, 148px);
  --hdr: 82px;

  --e: cubic-bezier(0.22, 0.61, 0.36, 1);
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica,
    "Inter", "Roboto", Arial, sans-serif;

  --mobilebar: 0px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.68;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--mobilebar);
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

/* Muss nach allen display-Regeln greifen (Buttons setzen inline-flex). */
[hidden] { display: none !important; }

h1, h2, h3, h4, p, figure, dl, dd, ol, ul { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}
button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(110, 139, 59, 0.22); }

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

.skip {
  position: fixed;
  top: 10px; left: 50%;
  z-index: 200;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translate(-50%, -160%);
  transition: transform 0.25s var(--e-out);
}
.skip:focus { transform: translate(-50%, 0); }

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ----------------------------------------------------------- Typografie */
.h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.036em;
  font-weight: 620;
  overflow-wrap: break-word;
}
.h1 > span { display: block; }
.h1__soft { color: var(--text-3); }
.h1--sub {
  font-size: clamp(2.05rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.034em;
  text-wrap: balance;
}

.h2 {
  font-size: clamp(1.9rem, 3.7vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -0.032em;
  font-weight: 600;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.24;
  letter-spacing: -0.022em;
  font-weight: 600;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex: none;
}

.lede {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.62;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------- Layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--sec); }
.section--tight { padding-block: clamp(52px, 6vw, 92px); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 4.4vw, 68px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head .lede { margin-top: 20px; }

.section__foot { margin-top: clamp(34px, 4vw, 56px); }
.section__foot--alone { padding-bottom: clamp(20px, 4vw, 40px); }
.section__note {
  margin-top: 28px;
  font-size: 0.86rem;
  color: var(--text-3);
  max-width: 620px;
}

/* -------------------------------------------------------------- Buttons */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  --bd: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  min-height: 52px;
  border-radius: var(--pill);
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  font-size: 0.975rem;
  font-weight: 570;
  letter-spacing: -0.012em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.32s var(--e), color 0.32s var(--e), border-color 0.32s var(--e),
    transform 0.32s var(--e), box-shadow 0.32s var(--e);
  will-change: transform;
}
.btn__icon { transition: transform 0.4s var(--e-out); }
.btn__icon--lead { margin-right: -2px; }

.btn--primary { --bg: var(--ink); --fg: var(--paper); box-shadow: var(--sh-2); }
.btn--primary:hover { --bg: var(--olive); --fg: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(110, 139, 59, 0.75); }
.btn--primary:hover .btn__icon { transform: translateX(4px); }
.btn--primary:active { transform: translateY(0); }

.btn--line { --bg: transparent; --fg: var(--ink); --bd: var(--line-3); }
.btn--line:hover { --bd: var(--olive); --fg: var(--olive-dk); --bg: var(--olive-wash); transform: translateY(-2px); }

.btn--ghost { --bg: transparent; --fg: var(--text-2); --bd: transparent; padding-inline: 14px; }
.btn--ghost:hover { --fg: var(--ink); --bg: rgba(40, 45, 49, 0.05); }

.btn--olive { --bg: var(--olive); --fg: #fff; }
.btn--olive:hover { --bg: var(--olive-dk); transform: translateY(-2px); }

.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }
.btn.is-busy { pointer-events: none; opacity: 0.72; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3.2vw, 40px);
}

.linkish {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-3);
  padding: 0;
}
.linkish:hover { text-decoration-color: currentColor; }

/* --------------------------------------------------------------- Header */
.hdr {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.5) blur(16px);
  -webkit-backdrop-filter: saturate(1.5) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--e), background 0.35s var(--e);
}
.hdr__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--hdr);
  transition: height 0.35s var(--e);
}
.hdr.is-scrolled { border-bottom-color: var(--line); }
.hdr.is-scrolled .hdr__inner { height: 64px; }
.hdr.is-scrolled .logo__mark { transform: scale(0.88); }

.logo { display: flex; align-items: center; gap: 13px; flex: none; }
.logo__mark {
  width: auto;
  height: 40px;
  flex: none;
  transition: transform 0.4s var(--e-out);
  transform-origin: left center;
}
.logo:hover .logo__mark { transform: scale(1.05) rotate(-1deg); }
.hdr.is-scrolled .logo__mark { height: 33px; }

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.logo__text strong {
  font-size: 1.02rem;
  font-weight: 620;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--ink);
}
.logo__frei { color: var(--olive); }
.logo__sub {
  font-size: 0.545rem;
  letter-spacing: 0.235em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}
.logo--ftr .logo__mark { height: 52px; }
.logo--ftr .logo__text strong { font-size: 1.16rem; }
.logo--ftr .logo__sub { font-size: 0.6rem; }

.hdr__nav { margin-inline: auto; }
.hdr__nav ul { display: flex; gap: 4px; }
.hdr__nav a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--pill);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s var(--e), background 0.25s var(--e);
}
.hdr__nav a:hover { color: var(--ink); background: rgba(40, 45, 49, 0.055); }

.hdr__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.hdr__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 520;
  color: var(--text-2);
  transition: color 0.25s var(--e), background 0.25s var(--e);
}
.hdr__tel:hover { color: var(--olive); background: var(--olive-wash); }
.hdr__actions .btn { min-height: 46px; padding: 12px 22px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
}
.burger span {
  position: absolute;
  left: 50%;
  width: 17px; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.35s var(--e-out), opacity 0.2s;
}
.burger span:nth-child(1) { top: 19px; }
.burger span:nth-child(2) { top: 25px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateX(-50%) translateY(-3px) rotate(-45deg); }

/* ----------------------------------------------------------- Mobile-Menü */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--paper);
  padding-top: var(--hdr);
  display: flex;
  opacity: 0;
  transition: opacity 0.3s var(--e);
}
.mnav[hidden] { display: none; }
.mnav.is-open { opacity: 1; }
.mnav__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 12px var(--gut) 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mnav__list { flex: 1; padding-top: 8px; }
.mnav__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
}
.mnav.is-open .mnav__list li {
  animation: mnavIn 0.5s var(--e-out) forwards;
  animation-delay: calc(60ms + var(--i) * 45ms);
}
@keyframes mnavIn { to { opacity: 1; transform: none; } }
.mnav__list a {
  flex: 1;
  padding: 20px 0;
  font-size: 1.55rem;
  font-weight: 570;
  letter-spacing: -0.03em;
}
.mnav__list .icon { color: var(--text-3); }
.mnav__foot { padding-top: 30px; display: grid; gap: 14px; }
.mnav__foot .btn { width: 100%; justify-content: center; }
.mnav__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--pill);
  font-weight: 550;
}
.mnav__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-3);
}

/* ----------------------------------------------------------- Breadcrumbs */
.crumbs { padding-top: 26px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.82rem; color: var(--text-3); }
.crumbs li { display: flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "/"; color: var(--line-3); }
.crumbs a { color: var(--text-2); transition: color 0.2s; }
.crumbs a:hover { color: var(--olive); }
.crumbs [aria-current] { color: var(--text); }

/* ------------------------------------------------------------------ Hero */
.hero { padding-top: clamp(44px, 5.5vw, 84px); padding-bottom: clamp(60px, 7vw, 108px); }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__text { max-width: 620px; }

.hero__claim {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  margin-top: 26px;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.16;
}
.hero__claim span:first-child { color: var(--olive); }
.hero__claim span:last-child { color: var(--text-3); }

.hero__lede {
  margin-top: 22px;
  max-width: 540px;
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  color: var(--text-2);
  line-height: 1.66;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: clamp(30px, 3.4vw, 44px);
  padding-top: clamp(24px, 2.6vw, 32px);
  border-top: 1px solid var(--line);
}
.trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--text-2);
}
.trust__icon {
  color: #fff;
  width: 1.35em; height: 1.35em;
  padding: 0.2em;
  background: var(--olive);
  border-radius: 50%;
  stroke-width: 2.4;
}

.hero__media { position: relative; }
.hero__main {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
}
.hero__main img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; }
.hero__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.hero__thumb {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--sh-1);
}
.hero__thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.hero__badge {
  position: absolute;
  left: -14px;
  bottom: 26%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px 13px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  box-shadow: var(--sh-2);
  font-size: 0.82rem;
  line-height: 1.25;
}
.hero__badge .icon { color: var(--olive); width: 1.1rem; height: 1.1rem; }
.hero__badge span { display: flex; flex-direction: column; color: var(--text-3); }
.hero__badge strong { color: var(--ink); font-weight: 600; }

/* -------------------------------------------------------- Leistungskarten */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}
.cards--wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards > .card:nth-child(1),
.cards > .card:nth-child(2) { grid-column: span 2; }
.cards > .card:nth-child(1) .card__media,
.cards > .card:nth-child(2) .card__media { aspect-ratio: 16 / 9; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform 0.45s var(--e-out), box-shadow 0.45s var(--e-out), border-color 0.45s var(--e);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--line-olive); }
.card__media { overflow: hidden; background: var(--sand); aspect-ratio: 4 / 3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--e-out); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 24px 24px 60px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__kicker {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--olive);
}
.card__title {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.2;
}
.card__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.55; }
.card__cta {
  position: absolute;
  left: 24px;
  bottom: 22px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--text-2);
  transition: background 0.35s var(--e), color 0.35s var(--e), border-color 0.35s var(--e), transform 0.35s var(--e);
}
.card:hover .card__cta {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
  transform: translateX(3px);
}

/* --------------------------------------------------------------- Relief */
.section--relief { background: var(--white); border-block: 1px solid var(--line); }
.section--cities { background: var(--paper-2); border-block: 1px solid var(--line-olive); }
.section--steps { background: var(--white); border-block: 1px solid var(--line); }
.section--values { background: var(--paper-2); border-block: 1px solid var(--line-olive); }
.section--areas { background: var(--paper-2); border-block: 1px solid var(--line-olive); }
.relief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
}
.relief__head { position: sticky; top: calc(var(--hdr) + 32px); }
.relief__body { display: grid; gap: 20px; max-width: 560px; }
.relief__body p { color: var(--text-2); }
.relief__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 8px;
}
.relief__list li span {
  display: block;
  padding: 9px 17px;
  border: 1px solid var(--line-2);
  border-radius: var(--pill);
  font-size: 0.85rem;
  font-weight: 520;
  color: var(--text-2);
  background: var(--paper);
  transition: border-color 0.3s var(--e), color 0.3s var(--e), transform 0.3s var(--e);
}
.relief__list li:hover span { border-color: var(--olive); color: var(--olive); transform: translateY(-2px); }
.relief__closing {
  margin-top: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  font-weight: 570;
  letter-spacing: -0.026em;
  line-height: 1.3;
  color: var(--ink);
}

/* --------------------------------------------------------------- Ablauf */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-olive) 12%, var(--line-olive) 88%, transparent);
}
.step { position: relative; padding-top: 58px; }
.step__num {
  position: absolute;
  top: 0; left: 0;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-2);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: background 0.4s var(--e), color 0.4s var(--e), border-color 0.4s var(--e);
}
.step.is-in .step__num { background: var(--olive); border-color: var(--olive); color: #fff; }
.step:hover .step__num { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: scale(1.06); }
.step__title { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.step__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.58; }

/* ------------------------------------------------------- Vorher/Nachher */
.balist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); }
.balist--single { grid-template-columns: minmax(0, 820px); }

.ba { margin: 0; }
.ba__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--sh-2);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto !important; }
.ba__clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
  will-change: clip-path;
}
.ba__tag {
  position: absolute;
  top: 14px;
  padding: 6px 13px;
  border-radius: var(--pill);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  transition: opacity 0.3s var(--e);
}
.ba__tag--l { left: 14px; background: rgba(40, 45, 49, 0.78); color: var(--paper); }
.ba__tag--r { right: 14px; background: rgba(255, 255, 255, 0.86); color: var(--ink); }

.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(40, 45, 49, 0.14);
  cursor: ew-resize;
  touch-action: none;
}
.ba__grip {
  position: absolute;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(40, 45, 49, 0.2);
  transition: transform 0.35s var(--e-out), background 0.3s var(--e), color 0.3s var(--e);
}
.ba__media:hover .ba__grip { transform: translate(-50%, -50%) scale(1.07); }
.ba__handle:focus-visible { outline: none; }
.ba__handle:focus-visible .ba__grip {
  background: var(--olive);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 4px rgba(110, 139, 59, 0.32);
}
.ba__media.is-dragging { cursor: grabbing; }
.ba__media.is-dragging .ba__grip { transform: translate(-50%, -50%) scale(0.94); }
.ba__media.is-dragging .ba__tag { opacity: 0.4; }

.ba__cap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 16px;
  padding: 16px 4px 0;
}
.ba__title { font-weight: 600; letter-spacing: -0.02em; font-size: 1.02rem; }
.ba__place {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-3);
}
.ba__place .icon { width: 0.95em; height: 0.95em; }

/* ---------------------------------------------------------- Einsatzgebiet */
.citygrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 1.4vw, 18px); }
.city {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.42s var(--e-out), box-shadow 0.42s var(--e-out), border-color 0.4s var(--e);
}
.city::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--e-out);
}
.city:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-olive); background: linear-gradient(180deg, #fff 62%, var(--olive-wash)); }
.city:hover::after { transform: scaleX(1); }
.city__kicker {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.city__name {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.1;
  margin-top: 6px;
}
.city__text { font-size: 0.875rem; color: var(--text-2); margin-top: 6px; max-width: 24ch; }
.city__go {
  position: absolute;
  top: 26px; right: 24px;
  color: var(--text-3);
  transition: transform 0.4s var(--e-out), color 0.3s var(--e);
}
.city:hover .city__go { color: var(--olive); transform: translate(3px, -3px); }

/* -------------------------------------------------------------- Über uns */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.about--page { align-items: start; }
.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.5vw, 20px); }
.about__photo { margin: 0; }
.about__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--sh-2);
}
.about__photo--offset { margin-top: clamp(24px, 4vw, 56px); }
.about__figure { margin: 0; }
.about__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--sh-2);
}
.about__figure figcaption,
.about__photo figcaption {
  margin-top: 12px;
  font-size: 0.79rem;
  color: var(--text-3);
  line-height: 1.45;
}
.about__text { display: grid; gap: 18px; max-width: 520px; }
.about__text p { color: var(--text-2); }
.about__text .h2 { color: var(--ink); }

/* --------------------------------------------------------------- Values */
.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.value {
  padding: 28px 26px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform 0.42s var(--e-out), box-shadow 0.42s var(--e-out);
}
.value:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.value__icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px -8px rgba(110, 139, 59, 0.9);
}
.value__title { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.value__text { font-size: 0.9rem; color: var(--text-2); line-height: 1.58; }

/* ------------------------------------------------------------ Split/Cases */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.split__text { display: grid; gap: 18px; max-width: 560px; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--sh-2);
}

.cases { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.case {
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  transition: transform 0.42s var(--e-out), box-shadow 0.42s var(--e-out);
}
.case:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.case:hover { border-color: var(--line-olive); }
.case__num {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--olive);
  margin-bottom: 14px;
}
.case__title { font-size: 1.02rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.case__text { font-size: 0.885rem; color: var(--text-2); line-height: 1.56; }

/* ---------------------------------------------------------------- Areas */
.areas { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 18px; }
.areas li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--text-2);
  transition: border-color 0.3s var(--e), transform 0.3s var(--e);
}
.areas li:hover { border-color: var(--line-2); transform: translateX(2px); }
.areas .icon { color: var(--olive); }
.areas__note {
  margin-top: 26px;
  max-width: 640px;
  color: var(--text-2);
  font-size: 0.94rem;
  padding-left: 18px;
  border-left: 2px solid var(--olive);
}

/* ------------------------------------------------------------- Linkgrid */
.linkgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.linkgrid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.linkcard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 52px 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  transition: border-color 0.35s var(--e), transform 0.35s var(--e-out), box-shadow 0.35s var(--e-out);
}
.linkcard:hover { border-color: var(--line-2); transform: translateY(-2px); box-shadow: var(--sh-2); }
.linkcard__label { font-weight: 570; letter-spacing: -0.018em; font-size: 0.98rem; }
.linkcard__text { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }
.linkcard__icon {
  position: absolute;
  right: 20px;
  top: 24px;
  color: var(--text-3);
  transition: transform 0.4s var(--e-out), color 0.3s var(--e);
}
.linkcard:hover .linkcard__icon { color: var(--olive); transform: translateX(4px); }

/* ------------------------------------------------------------------ FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.4;
  transition: color 0.25s var(--e);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--olive); }
.faq__sign {
  position: relative;
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  margin-top: -2px;
  transition: background 0.35s var(--e), border-color 0.35s var(--e), transform 0.4s var(--e-out);
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--e-out), opacity 0.3s var(--e);
}
.faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__sign { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: rotate(90deg); }
.faq__item[open] .faq__sign::after { opacity: 0; }
.faq__a {
  overflow: hidden;
  padding-bottom: 26px;
  padding-right: clamp(0px, 8vw, 96px);
}
.faq__a p { color: var(--text-2); }
.faq__item[open] .faq__a { animation: faqIn 0.42s var(--e-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* ------------------------------------------------------------------- CTA */
.section--cta { padding-bottom: clamp(72px, 9vw, 130px); }
.cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(38px, 5.2vw, 76px);
  border-radius: clamp(24px, 3vw, 34px);
  background: linear-gradient(148deg, #2f3a25 0%, var(--ink) 46%, #22262a 100%);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 63px, rgba(255, 255, 255, 0.035) 63px 64px);
  z-index: -1;
}
.cta::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -52%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(140, 172, 75, 0.55), rgba(110, 139, 59, 0.18) 62%, transparent 72%);
  z-index: -1;
}
.cta .eyebrow { color: var(--olive-lt); }
.cta__title { color: var(--paper); }
.cta .lede { color: rgba(246, 246, 242, 0.72); margin-top: 18px; max-width: 44ch; }
.cta .btn--primary { --bg: var(--paper); --fg: var(--ink); }
.cta .btn--primary:hover { --bg: var(--olive-lt); --fg: #fff; }
.cta .btn--line { --fg: var(--paper); --bd: rgba(246, 246, 242, 0.28); }
.cta .btn--line:hover { --bd: var(--paper); --bg: rgba(246, 246, 242, 0.08); }

.cta__meta {
  display: grid;
  gap: 20px;
  align-content: center;
  padding-left: clamp(0px, 3vw, 40px);
  border-left: 1px solid rgba(246, 246, 242, 0.14);
}
.cta__meta dt {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 246, 242, 0.44);
  margin-bottom: 4px;
}
.cta__meta dd { font-size: 0.95rem; line-height: 1.45; }
.cta__meta a { border-bottom: 1px solid rgba(246, 246, 242, 0.3); transition: border-color 0.25s, color 0.25s; }
.cta__meta a:hover { color: var(--olive-lt); border-color: var(--olive-lt); }

/* ---------------------------------------------------------------- Footer */
.ftr {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-top: clamp(52px, 6vw, 84px);
  padding-bottom: 32px;
}
.ftr__top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.logo--ftr { margin-bottom: 20px; }
.ftr__claim { font-size: 0.92rem; color: var(--text-2); line-height: 1.6; margin-bottom: 26px; }
.ftr__contact { display: grid; gap: 14px; }
.ftr__contact > div { display: flex; gap: 12px; align-items: flex-start; }
.ftr__contact dt { color: var(--olive); padding-top: 2px; }
.ftr__contact dd { font-size: 0.9rem; color: var(--text-2); line-height: 1.5; }
.ftr__contact a { transition: color 0.25s; }
.ftr__contact a:hover { color: var(--olive); }

.ftr__title {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.ftr__col ul { display: grid; gap: 10px; }
.ftr__col a {
  font-size: 0.885rem;
  color: var(--text-2);
  transition: color 0.25s var(--e);
  display: inline-block;
}
.ftr__col a:hover { color: var(--olive); transform: translateX(2px); }

.ftr__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-3);
}
.ftr__bottom ul { display: flex; flex-wrap: wrap; gap: 20px; }
.ftr__bottom a:hover, .ftr__bottom button:hover { color: var(--olive); }
.ftr__bottom .linkish { font-size: inherit; color: inherit; }

/* --------------------------------------------------------- Mobile-Leiste */
.mobilebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.4s var(--e-out);
}
.mobilebar.is-visible { transform: none; }
.mobilebar__btn {
  flex: 1;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--pill);
  font-size: 0.95rem;
  font-weight: 570;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--e), color 0.3s var(--e);
}
.mobilebar__btn--ghost { border: 1px solid var(--line-3); color: var(--ink); background: var(--white); }
.mobilebar__btn--solid { background: var(--ink); color: var(--paper); box-shadow: var(--sh-2); }
.mobilebar__btn--solid:active { background: var(--olive); }

/* ----------------------------------------------------------------- Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 27, 29, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.35s var(--e);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92dvh, 940px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 26px 26px 0 0;
  box-shadow: var(--sh-3);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.45s var(--e-out), opacity 0.35s var(--e);
}
.modal.is-open .modal__panel { transform: none; opacity: 1; }
.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 3vw, 34px) 18px;
  border-bottom: 1px solid var(--line);
}
.modal__head .eyebrow { margin-bottom: 10px; }
.modal__close {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--text-2);
  transition: background 0.28s var(--e), color 0.28s var(--e), transform 0.28s var(--e);
}
.modal__close:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: rotate(90deg); }
.modal__body {
  padding: clamp(22px, 3vw, 32px) clamp(20px, 3vw, 34px) clamp(26px, 3vw, 34px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* ---------------------------------------------------------------- Funnel */
.formcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 3.4vw, 44px);
  box-shadow: var(--sh-2);
}

.funnel__head { margin-bottom: 26px; }
.funnel__progress {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--olive);
  margin-bottom: 10px;
}
.funnel__bar { height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.funnel__bar > span {
  display: block;
  height: 100%;
  background: var(--olive);
  border-radius: 3px;
  transform-origin: left;
  transition: transform 0.55s var(--e-out);
}

.funnel__step { border: 0; padding: 0; margin: 0; min-width: 0; }
.funnel__step[hidden] { display: none; }
.funnel__step.is-active { animation: stepIn 0.45s var(--e-out); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } }

.funnel__legend {
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.026em;
  line-height: 1.22;
  padding: 0;
  margin-bottom: 6px;
}
.funnel__hint { font-size: 0.85rem; color: var(--text-3); margin-bottom: 20px; }

/* Objektauswahl */
.objgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.obj { display: block; cursor: pointer; }
.obj input { position: absolute; opacity: 0; width: 0; height: 0; }
.obj__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 106px;
  padding: 16px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--white);
  transition: border-color 0.3s var(--e), background 0.3s var(--e), transform 0.3s var(--e-out),
    box-shadow 0.3s var(--e);
}
.obj__icon { width: 22px; height: 22px; color: var(--text-3); transition: color 0.3s var(--e); }
.obj__label { font-size: 0.875rem; font-weight: 540; letter-spacing: -0.014em; line-height: 1.25; }
.obj:hover .obj__box { border-color: var(--line-3); transform: translateY(-2px); box-shadow: var(--sh-1); }
.obj input:checked + .obj__box {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--sh-2);
}
.obj input:checked + .obj__box .obj__icon { color: var(--olive-lt); }
.obj input:focus-visible + .obj__box { outline: 2px solid var(--olive); outline-offset: 3px; }

/* Felder */
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; margin: 0; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field--sm { grid-column: span 1; }
.field--lg { grid-column: span 1; }

.field label, .field__label, .field--radio legend {
  font-size: 0.8rem;
  font-weight: 570;
  letter-spacing: 0.005em;
  color: var(--text-2);
  padding: 0;
}
.req { color: var(--olive); }
.opt { color: var(--text-3); font-weight: 450; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 52px;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xs);
  font-size: 1rem;
  transition: border-color 0.25s var(--e), box-shadow 0.25s var(--e), background 0.25s var(--e);
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23282d31' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(110, 139, 59, 0.16);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(40, 45, 49, 0.34); }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #b4443a; box-shadow: 0 0 0 3px rgba(180, 68, 58, 0.1); }

.field__error, .funnel__error {
  font-size: 0.78rem;
  color: #a8382f;
  font-weight: 520;
}
.funnel__error { margin-top: 14px; }
.funnel__formerror {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--r-xs);
  background: rgba(180, 68, 58, 0.08);
  border: 1px solid rgba(180, 68, 58, 0.24);
  color: #8f2f27;
  font-size: 0.88rem;
}

/* Radio-Pills */
.field--radio { border: 0; padding: 0; margin: 0; min-width: 0; grid-column: span 1; }
.field--radio legend { margin-bottom: 7px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.pill span {
  display: block;
  padding: 12px 18px;
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--pill);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 520;
  transition: all 0.28s var(--e);
}
.pill:hover span { border-color: var(--line-3); }
.pill input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.pill input:focus-visible + span { outline: 2px solid var(--olive); outline-offset: 3px; }

/* Checkbox */
.field--check { margin-top: 4px; }
.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  flex: none;
  width: 24px; height: 24px;
  border: 1px solid var(--line-3);
  border-radius: 7px;
  background: var(--white);
  display: grid;
  place-items: center;
  color: transparent;
  transition: all 0.25s var(--e);
  margin-top: 1px;
}
.check__box .icon { width: 14px; height: 14px; stroke-width: 2.4; }
.check input:checked + .check__box { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.check input:focus-visible + .check__box { outline: 2px solid var(--olive); outline-offset: 3px; }
.check__text { font-size: 0.855rem; color: var(--text-2); line-height: 1.55; }
.check__text a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }

/* Upload */
.drop {
  position: relative;
  display: block;
  border: 1.5px dashed var(--line-3);
  border-radius: var(--r-sm);
  background: var(--white);
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.28s var(--e), background 0.28s var(--e);
}
.drop:hover, .drop.is-over { border-color: var(--olive); background: rgba(110, 139, 59, 0.05); }
.drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.drop__inner { display: grid; gap: 5px; pointer-events: none; }
.drop__inner strong { font-size: 0.94rem; font-weight: 570; }
.drop__inner span { font-size: 0.79rem; color: var(--text-3); }

.filelist { display: grid; gap: 7px; margin-top: 10px; }
.filelist:empty { display: none; }
.filelist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px 9px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.82rem;
}
.filelist span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filelist em { color: var(--text-3); font-style: normal; flex: none; }
.filelist button {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-3);
  transition: background 0.25s, color 0.25s;
}
.filelist button:hover { background: rgba(180, 68, 58, 0.1); color: #a8382f; }

/* Honeypot */
.hp {
  position: absolute !important;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

.funnel__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.funnel__nav [data-next], .funnel__nav [data-submit] { margin-left: auto; }
.funnel__legal { margin-top: 16px; font-size: 0.76rem; color: var(--text-3); line-height: 1.5; }

.funnel__success { text-align: center; padding: clamp(24px, 4vw, 48px) 0; animation: stepIn 0.5s var(--e-out); }
.funnel__successIcon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(110, 139, 59, 0.13);
  color: var(--olive);
}
.funnel__successIcon .icon { width: 28px; height: 28px; stroke-width: 2; }
.funnel__success p { color: var(--text-2); max-width: 44ch; margin: 14px auto 0; }
.funnel__successMeta { font-size: 0.9rem; }
.funnel__successMeta a { color: var(--olive); border-bottom: 1px solid currentColor; }

/* -------------------------------------------------------------- Kontakt */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.contact__aside { display: grid; gap: 16px; position: sticky; top: calc(var(--hdr) + 26px); }
.infocard {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.infocard--soft { background: var(--sand); border-color: transparent; }
.infocard .h3 { margin-bottom: 20px; }
.infolist { display: grid; gap: 18px; }
.infolist dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 5px;
}
.infolist dt .icon { color: var(--olive); }
.infolist dd { font-size: 0.95rem; color: var(--text-2); line-height: 1.5; }
.infolist a { color: var(--ink); font-weight: 550; border-bottom: 1px solid var(--line-3); }
.infolist a:hover { color: var(--olive); border-color: var(--olive); }
.infocard__owners {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-3);
}
.ticklist { display: grid; gap: 11px; }
.ticklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.885rem; color: var(--text-2); line-height: 1.5; }
.ticklist .icon { color: var(--olive); margin-top: 4px; }

/* --------------------------------------------------------- Seitenkopf sub */
.phero { padding-top: clamp(34px, 4.4vw, 62px); padding-bottom: clamp(30px, 4vw, 52px); }
.phero--tight { padding-bottom: clamp(20px, 2.5vw, 30px); }
.phero--center { text-align: center; padding-block: clamp(60px, 9vw, 120px); }
.phero--center .eyebrow { justify-content: center; }
.phero--center .btn-row { justify-content: center; }
.phero__text { max-width: 760px; }
.phero__lede {
  margin-top: 22px;
  max-width: 620px;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  color: var(--text-2);
  line-height: 1.62;
}
.phero--center .phero__lede { margin-inline: auto; }
.phero__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--text-3);
}
.phero__meta .icon { color: var(--olive); }

/* ---------------------------------------------------------------- Prose */
.prose { max-width: 74ch; }
.prose h2 {
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-top: 44px;
  margin-bottom: 12px;
}
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose ul { color: var(--text-2); margin-bottom: 16px; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 7px; }
.prose li { padding-left: 4px; }
.prose a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86em;
  background: var(--sand);
  padding: 2px 6px;
  border-radius: 5px;
}
.section--legal { padding-top: clamp(20px, 2.6vw, 36px); }

.prose--legal ol {
  list-style: decimal;
  padding-left: 24px;
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--text-2);
}
.prose--legal ol > li { padding-left: 4px; }
.prose--legal ol ul { margin: 10px 0 4px; gap: 5px; }
.prose--legal h2 { margin-top: 40px; }
.legal-sig {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal-sig p { color: var(--text-2); line-height: 1.7; }
.legal-sig__date { font-size: 0.85rem; color: var(--text-3); margin-top: 14px; }

.todo {
  padding: 18px 20px;
  border: 1px solid rgba(110, 139, 59, 0.35);
  background: rgba(110, 139, 59, 0.08);
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.6;
}
.note {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.note .h3 { margin-bottom: 12px; }
.note p { color: var(--text-2); font-size: 0.94rem; }
.note p + p { margin-top: 12px; }

/* -------------------------------------------------------- Cookie-Hinweis */
.cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 130;
  display: flex;
  justify-content: flex-start;
  padding: 16px clamp(12px, 2.4vw, 22px) calc(16px + env(safe-area-inset-bottom));
  pointer-events: none;
}
.cookie[hidden] { display: none; }
.cookie__panel {
  pointer-events: auto;
  width: min(440px, 100%);
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: var(--sh-3);
  padding: clamp(20px, 2.4vw, 26px);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.45s var(--e-out), opacity 0.35s var(--e);
}
.cookie.is-open .cookie__panel { transform: none; opacity: 1; }
.cookie__title { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.022em; margin-bottom: 10px; }
.cookie__text { font-size: 0.855rem; color: var(--text-2); line-height: 1.58; }
.cookie__text a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.cookie__choices { display: grid; gap: 7px; margin: 16px 0; }
.cookie__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  background: var(--paper);
  cursor: pointer;
}
.cookie__row > span { display: grid; gap: 2px; }
.cookie__row strong { font-size: 0.875rem; font-weight: 570; }
.cookie__row span span { font-size: 0.76rem; color: var(--text-3); }
.cookie__fixed { font-size: 0.72rem; color: var(--text-3); font-weight: 560; }

.switch {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 44px; height: 26px;
  border-radius: var(--pill);
  background: var(--line-3);
  position: relative;
  cursor: pointer;
  transition: background 0.3s var(--e);
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--sh-1);
  transition: transform 0.32s var(--e-out);
}
.switch:checked { background: var(--olive); }
.switch:checked::after { transform: translateX(18px); }

.cookie__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cookie__actions .btn { min-height: 46px; padding: 12px 16px; font-size: 0.88rem; justify-content: center; }
.cookie__actions .btn:first-child { grid-column: 1 / -1; }

/* -------------------------------------------------------------- Reveal */
@media (scripting: enabled) and (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s var(--e-out), transform 0.75s var(--e-out);
    transition-delay: calc(var(--i, 0) * 70ms);
  }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (max-width: 1180px) {
  .hdr__nav a { padding-inline: 11px; font-size: 0.895rem; }
  .hdr__tel span { display: none; }
  .hdr__tel { padding: 11px; }
}

@media (max-width: 1080px) {
  .cards, .cards--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards > .card:nth-child(1), .cards > .card:nth-child(2) { grid-column: span 1; }
  .cards > .card:nth-child(1) .card__media, .cards > .card:nth-child(2) .card__media { aspect-ratio: 4 / 3; }
  .cases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .citygrid, .values, .linkgrid, .linkgrid--3, .areas { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .balist { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ftr__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  :root { --hdr: 68px; --mobilebar: 78px; }

  .hdr__nav { display: none; }
  .hdr__actions .btn--primary { display: none; }
  .burger { display: block; }
  .hdr__tel { padding: 11px; }
  .hdr.is-scrolled .hdr__inner { height: 60px; }

  .mobilebar { display: flex; }

  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero__text { max-width: none; }
  .hero__badge { left: auto; right: 12px; bottom: auto; top: 12px; }

  .relief { grid-template-columns: minmax(0, 1fr); }
  .relief__head { position: static; }
  .relief__body { max-width: none; }

  .split, .about, .contact { grid-template-columns: minmax(0, 1fr); }
  .about__media { max-width: 520px; }
  .about--page .about__media { max-width: none; }
  .contact__aside { position: static; }

  .cta { grid-template-columns: minmax(0, 1fr); }
  .cta__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    padding-top: 30px;
    border-left: 0;
    border-top: 1px solid rgba(246, 246, 242, 0.14);
  }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 34px; }
  .steps::before { display: none; }

  .balist { grid-template-columns: minmax(0, 1fr); max-width: 640px; }
  .balist--single { grid-template-columns: minmax(0, 1fr); }

  .modal { align-items: flex-end; }
  .modal__panel { max-height: 94dvh; }

  /* Cookie-Hinweis über der Mobile-Leiste halten */
  .cookie {
    justify-content: center;
    padding-bottom: calc(var(--mobilebar) + 12px + env(safe-area-inset-bottom));
  }
  .cookie__panel { width: min(520px, 100%); }
}

@media (max-width: 720px) {
  .objgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fields { grid-template-columns: minmax(0, 1fr); }
  .field--sm, .field--lg, .field--radio { grid-column: 1 / -1; }
  .cases, .citygrid, .values, .linkgrid, .linkgrid--3, .areas { grid-template-columns: minmax(0, 1fr); }
  .ftr__top { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .ftr__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cta__meta { grid-template-columns: minmax(0, 1fr); }
  .card__body { padding: 22px 20px 58px; }
  .card__cta { left: 20px; }
  .faq__q { gap: 16px; font-size: 1rem; }
  .cookie__actions .btn { flex: 1 1 100%; }
}

@media (max-width: 560px) {
  .cards, .cards--wide { grid-template-columns: minmax(0, 1fr); }
  .hero__side { grid-template-columns: 1fr 1fr; gap: 10px; }
  .btn-row { gap: 10px; }
  .btn-row .btn { flex: 1 1 100%; justify-content: center; }
  .about__media { grid-template-columns: 1fr 1fr; gap: 10px; }
  .steps { grid-template-columns: minmax(0, 1fr); row-gap: 8px; }
  .step { padding-top: 0; padding-left: 60px; padding-bottom: 30px; }
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 46px;
    bottom: 6px;
    width: 1px;
    background: var(--line-2);
  }
  .ba__grip { width: 40px; height: 40px; }
  .modal__panel { border-radius: 20px 20px 0 0; }
  .funnel__nav { flex-direction: column-reverse; align-items: stretch; }
  .funnel__nav .btn { justify-content: center; width: 100%; margin-left: 0; }
}

@media (max-width: 380px) {
  :root { --gut: 18px; }
  .objgrid { gap: 8px; }
  .obj__box { min-height: 96px; padding: 14px 12px; }
  .mobilebar__btn { font-size: 0.9rem; }
}

/* ------------------------------------------------------------ Motion off */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------------------------------------------ Print */
@media print {
  .hdr, .mnav, .mobilebar, .modal, .cookie, .skip, .ba__handle { display: none !important; }
  body { background: #fff; padding: 0; }
  .section { padding-block: 24px; }
  a::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
}
