:root {
    --gruen-900: #23453f;
    --gruen-800: #2c5a52;
    --gruen-700: #35726a;
    --gruen-600: #3f857b;
    --gruen-300: #9cc0b8;
    --gruen-100: #dceae5;
    --gruen-50: #eff6f3;

    --red-800: #8f0303;
    --red-700: #b00404;
    --red-600: #d50505;
    --red-100: #f6ddd6;
    --red-50: #fdf2ee;

    --sand-200: #ecdfca;
    --sand-100: #f3ebdd;

    --ink: #2b2721;
    --ink-soft: #514840;
    --muted: #6f6558;
    --line: #e7ddcf;
    --canvas: #f8f2e8;
    --surface: #ffffff;

    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, "Iowan Old Style", "Times New Roman", serif;

    --wrap: 74rem;
    --wrap-wide: 87rem;
    --gutter: clamp(1.15rem, 4vw, 2.5rem);
    --radius: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 1px 2px rgba(58, 48, 36, .06), 0 2px 8px rgba(58, 48, 36, .05);
    --shadow-md: 0 4px 14px rgba(58, 48, 36, .09), 0 12px 30px rgba(58, 48, 36, .07);
    --shadow-lg: 0 10px 26px rgba(58, 48, 36, .12), 0 26px 60px rgba(58, 48, 36, .12);
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
    margin: 0 0 .6em;
    line-height: 1.18;
    letter-spacing: -.018em;
    font-weight: 700;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.7rem);
}

h2 {
    font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.7rem);
}

h3 {
    font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem);
}

p {
    margin: 0 0 1.1rem;
    text-wrap: pretty;
}

a {
    color: var(--gruen-700);
    text-underline-offset: .18em;
    text-decoration-thickness: .08em;
}

a:hover {
    color: var(--red-700);
}

ul {
    margin: 0 0 1.1rem;
    padding-left: 1.15rem;
}

li {
    margin-bottom: .35rem;
}

strong {
    font-weight: 700;
}

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

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--red-600);
    color: #fff;
    padding: .85rem 1.4rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius) 0;
}

.skip:focus {
    left: 0;
    color: #fff;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.wrap--wide {
    max-width: var(--wrap-wide);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gruen-700);
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: "";
    width: 1.9rem;
    height: 3px;
    border-radius: 2px;
    background: var(--red-600);
}

.eyebrow--light {
    color: var(--gruen-100);
}

.lead {
    font-size: clamp(1.15rem, 1.05rem + .35vw, 1.35rem);
    color: var(--ink-soft);
}

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

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 3.4rem;
    padding: .75rem 1.6rem;
    border: 2px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn svg {
    flex: none;
}

.btn--primary {
    background: var(--red-600);
    border-color: var(--red-600);
    color: #fff;
    box-shadow: 0 6px 18px rgba(213, 5, 5, .26);
}

.btn--primary:hover {
    background: var(--red-700);
    border-color: var(--red-700);
    color: #fff;
    box-shadow: 0 10px 24px rgba(213, 5, 5, .32);
}

.btn--ghost {
    background: transparent;
    border-color: var(--gruen-300);
    color: var(--gruen-800);
}

.btn--ghost:hover {
    background: var(--gruen-50);
    border-color: var(--gruen-600);
    color: var(--gruen-800);
}

.btn--onwhite {
    background: var(--surface);
    border-color: var(--surface);
    color: var(--gruen-800);
    box-shadow: var(--shadow-sm);
}

.btn--onwhite:hover {
    background: var(--gruen-50);
    border-color: var(--gruen-50);
    color: var(--gruen-800);
}

.btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    color: #fff;
}

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

/* ---------- Topbar ---------- */

.topbar {
    background: var(--gruen-900);
    color: var(--gruen-100);
    font-size: .93rem;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2.7rem;
    padding-block: .35rem;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--gruen-100);
    text-decoration: none;
}

.topbar__item:hover {
    color: #fff;
}

.topbar__item svg {
    color: var(--gruen-300);
    flex: none;
}

.topbar__group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar__pulse {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: #6dd39b;
    box-shadow: 0 0 0 0 rgba(109, 211, 155, .7);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 .55rem rgba(109, 211, 155, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(109, 211, 155, 0);
    }
}

/* ---------- Header ---------- */

.header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
}

.header--scrolled {
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 4.9rem;
}

.header__logo {
    display: flex;
    align-items: center;
    flex: none;
    margin-right: auto;
}

.header__logo img {
    height: 3.05rem;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.nav__link {
    display: inline-block;
    padding: .55rem .8rem;
    border-radius: 8px;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 1.02rem;
    text-decoration: none;
    white-space: nowrap;
}

.nav__link:hover {
    background: var(--gruen-50);
    color: var(--gruen-800);
}

.nav__link[aria-current="page"] {
    color: var(--gruen-800);
    box-shadow: inset 0 -3px 0 var(--red-600);
}

.header__cta {
    flex: none;
    min-height: 3rem;
    padding: .6rem 1.35rem;
    white-space: nowrap;
}

.nav__cta {
    display: none;
}

.burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    padding: 0;
    background: var(--gruen-50);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--gruen-800);
    cursor: pointer;
}

.burger span {
    position: relative;
    display: block;
    width: 1.35rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .2s ease;
}

.burger span::before {
    top: -.42rem;
}

.burger span::after {
    top: .42rem;
}

.burger[aria-expanded="true"] span {
    background: transparent;
}

.burger[aria-expanded="true"] span::before {
    transform: translateY(.42rem) rotate(45deg);
}

.burger[aria-expanded="true"] span::after {
    transform: translateY(-.42rem) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    background:
        radial-gradient(58rem 34rem at 88% -14%, var(--gruen-50) 0%, rgba(239, 246, 243, 0) 62%),
        linear-gradient(180deg, #fff 0%, var(--canvas) 100%);
    padding-top: clamp(2.5rem, 1.2rem + 4vw, 4.5rem);
    padding-bottom: clamp(7rem, 4rem + 9vw, 11rem);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -12% -55% 52%;
    height: 90%;
    background: var(--gruen-100);
    opacity: .5;
    transform: rotate(-7deg);
    border-radius: 46% 54% 40% 60%;
    pointer-events: none;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    align-items: center;
    gap: clamp(2rem, 1rem + 4vw, 4.5rem);
}

.hero__title span {
    color: var(--gruen-700);
}

.hero__title em {
    position: relative;
    font-style: normal;
    white-space: nowrap;
}

.hero__title em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .06em;
    height: .16em;
    background: var(--red-600);
    opacity: .22;
    border-radius: 4px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin: 1.9rem 0 1.6rem;
}

.hero__phone {
    font-size: 1.16rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .98rem;
    color: var(--ink-soft);
}

.hero__trust li {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin: 0;
}

.hero__trust svg {
    color: var(--gruen-600);
    flex: none;
}

.hero__media {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 30rem;
}

.hero__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3 / 4;
}

.hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
}

.hero__media::before {
    content: "";
    position: absolute;
    inset: 1.6rem -1.6rem -1.6rem 1.6rem;
    border: 3px solid var(--gruen-600);
    border-radius: var(--radius-lg);
    opacity: .35;
    z-index: -1;
}

.hero__badge {
    position: absolute;
    left: -1.75rem;
    bottom: 2.4rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .95rem 1.35rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--red-600);
}

.hero__badge svg {
    color: var(--red-600);
    flex: none;
}

.hero__badge b {
    display: block;
    font-size: 1.02rem;
    line-height: 1.3;
}

.hero__badge span {
    font-size: .88rem;
    color: var(--muted);
}

/* ---------- Quickfacts (verzahnt) ---------- */

.quickfacts {
    position: relative;
    z-index: 5;
    margin-top: clamp(-5.5rem, -4rem - 3vw, -3.5rem);
}

.quickfacts__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.quickfact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.9rem 1.75rem;
    border-right: 1px solid var(--line);
}

.quickfact:last-child {
    border-right: 0;
}

.quickfact__icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: var(--gruen-50);
    color: var(--gruen-700);
}

.quickfact h3 {
    margin: 0 0 .2rem;
    font-size: 1.08rem;
}

.quickfact p {
    margin: 0;
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.55;
}

.quickfact a {
    font-weight: 700;
    color: var(--red-700);
    text-decoration: none;
    font-size: 1.15rem;
    white-space: nowrap;
}

.quickfact a:hover {
    text-decoration: underline;
}

/* ---------- Sektionen ---------- */

.section {
    padding-block: clamp(3.5rem, 2.2rem + 4.2vw, 6rem);
}

.section--tight {
    padding-block: clamp(2.8rem, 2rem + 3vw, 4.5rem);
}

.section--canvas {
    background: var(--canvas);
}

.section__head {
    max-width: 46rem;
    margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.2rem);
}

.section__head--center {
    margin-inline: auto;
    text-align: center;
}

.section__head--center .eyebrow {
    justify-content: center;
}

.section__head p {
    margin-bottom: 0;
}

/* ---------- Werte ---------- */

.werte {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, .6rem + 1.8vw, 2rem);
    padding-top: 3rem;
}

.wert {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 0 1.5rem 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
}

.wert:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.wert:nth-child(2) {
    margin-top: 1.9rem;
}

.wert:nth-child(3) {
    margin-top: .95rem;
}

.wert__media {
    position: relative;
    margin: -2.6rem 0 1.15rem;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-md);
}

.wert__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wert__num {
    position: absolute;
    right: .8rem;
    bottom: .8rem;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--surface);
    color: var(--red-600);
    font-weight: 800;
    font-size: .95rem;
    box-shadow: var(--shadow-sm);
}

.wert h3 {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .45rem;
    color: var(--gruen-800);
}

.wert h3::before {
    content: "";
    width: .45rem;
    height: 1.35rem;
    border-radius: 3px;
    background: var(--red-600);
    flex: none;
}

.wert p {
    color: var(--ink-soft);
    font-size: .99rem;
    line-height: 1.58;
    margin-bottom: .9rem;
}

.wert__list {
    margin: auto 0 0;
    padding: .9rem 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
    font-size: .94rem;
}

.wert__list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .4rem;
    line-height: 1.45;
    color: var(--ink-soft);
}

.wert__list li::before {
    content: "";
    flex: none;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .28rem;
    border-radius: 50%;
    background: var(--gruen-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335726a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / .72rem no-repeat;
}

/* ---------- Parallax-Band ---------- */

.band {
    position: relative;
    isolation: isolate;
    padding-block: clamp(4rem, 2.5rem + 6vw, 7.5rem);
    color: #fff;
    overflow: hidden;
}

.band__bg {
    position: absolute;
    inset: -18% 0;
    z-index: -2;
    background-image: url("/images/haende-1100.jpg");
    background-image: -webkit-image-set(url("/images/haende-1100.webp") type("image/webp"), url("/images/haende-1100.jpg") type("image/jpeg"));
    background-image: image-set(url("/images/haende-1100.webp") type("image/webp"), url("/images/haende-1100.jpg") type("image/jpeg"));
    background-size: cover;
    background-position: center 50%;
    will-change: transform;
}

@media (min-width: 1100px) {
    .band__bg {
        background-image: url("/images/haende-1800.jpg");
        background-image: -webkit-image-set(url("/images/haende-1800.webp") type("image/webp"), url("/images/haende-1800.jpg") type("image/jpeg"));
        background-image: image-set(url("/images/haende-1800.webp") type("image/webp"), url("/images/haende-1800.jpg") type("image/jpeg"));
    }
}

.band::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, rgba(35, 69, 63, .93) 0%, rgba(35, 69, 63, .82) 46%, rgba(53, 114, 106, .66) 100%);
}

.band__inner {
    max-width: 48rem;
}

.band blockquote {
    margin: 0 0 1.5rem;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 1.1rem + 1.9vw, 2.4rem);
    line-height: 1.32;
    font-weight: 400;
}

.band blockquote::before {
    content: "„";
}

.band blockquote::after {
    content: "“";
}

.band p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.06rem;
}

.band p:last-of-type {
    margin-bottom: 0;
}

.band__actions {
    margin-bottom: 0;
}

.band__meta {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-top: 1.9rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: .96rem;
    color: rgba(255, 255, 255, .8);
}

.band__meta b {
    color: #fff;
}

/* ---------- Leistungen ---------- */

.leistungsliste {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.leistung {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gruen-600);
    border-radius: var(--radius);
    transition: border-left-color .2s ease, box-shadow .2s ease;
}

.leistung:hover,
.leistung[open] {
    border-left-color: var(--red-600);
    box-shadow: var(--shadow-md);
}

.leistung summary {
    display: grid;
    grid-template-columns: 3.2rem minmax(11rem, 17rem) 1fr 2.4rem;
    align-items: center;
    gap: 0 1.2rem;
    padding: 1.15rem 1.3rem;
    cursor: pointer;
    list-style: none;
}

.leistung summary::-webkit-details-marker {
    display: none;
}

.leistung__icon {
    display: grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 12px;
    background: var(--gruen-50);
    color: var(--gruen-700);
    transition: background-color .2s ease, color .2s ease;
}

.leistung[open] .leistung__icon {
    background: var(--red-50);
    color: var(--red-700);
}

.leistung__titel b {
    display: block;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.015em;
    color: var(--gruen-800);
}

.leistung__law {
    display: block;
    margin-top: .1rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--red-700);
}

.leistung__intro {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.55;
}

.leistung summary::after {
    content: "";
    justify-self: end;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--gruen-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335726a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / 1.05rem no-repeat;
    transition: transform .22s ease;
}

.leistung[open] summary::after {
    transform: rotate(180deg);
}

.leistung summary:hover .leistung__titel b {
    color: var(--red-700);
}

.leistung__body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    align-items: start;
    gap: 1.5rem 2rem;
    margin: 0 1.3rem;
    padding: 1.25rem 0 1.6rem;
    border-top: 1px solid var(--line);
}

.leistung__gruppe h3 {
    margin: 0 0 .6rem;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
}

.leistung__gruppe ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .97rem;
}

.leistung__gruppe:only-child ul {
    columns: 15rem;
    column-gap: 2rem;
}

.leistung__gruppe li {
    break-inside: avoid;
    padding-left: 1rem;
    margin-bottom: .32rem;
    color: var(--ink-soft);
    position: relative;
    line-height: 1.5;
}

.leistung__gruppe li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: .34rem;
    height: .34rem;
    border-radius: 50%;
    background: var(--gruen-300);
}

.hinweis {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.6rem;
    padding: 1.35rem 1.6rem;
    background: var(--gruen-50);
    border: 1px solid var(--gruen-100);
    border-radius: var(--radius);
}

.hinweis svg {
    flex: none;
    margin-top: .18rem;
    color: var(--gruen-700);
}

.hinweis p {
    margin: 0;
    font-size: 1rem;
    color: var(--ink-soft);
}

/* ---------- Ablauf ---------- */

.ablauf {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: schritt;
}

.schritt {
    position: relative;
    padding-top: 4.4rem;
}

.schritt::before {
    content: "";
    position: absolute;
    left: calc(50% + 2.1rem);
    right: calc(-50% - 2.1rem);
    top: 1.475rem;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gruen-300) 0 7px, transparent 7px 14px);
}

.schritt:last-child::before {
    display: none;
}

.schritt__num {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 2.95rem;
    height: 2.95rem;
    border-radius: 50%;
    background: var(--red-600);
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 6px 16px rgba(213, 5, 5, .25);
}

.schritt h3 {
    margin-bottom: .45rem;
    font-size: 1.15rem;
    color: var(--gruen-800);
    text-align: center;
}

.schritt p {
    text-align: center;
}

.schritt p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
}

/* ---------- Leitbild ---------- */

.leitbild {
    position: relative;
    background: linear-gradient(140deg, var(--gruen-900) 0%, var(--gruen-800) 62%, var(--gruen-700) 100%);
    color: #fff;
    padding-block: clamp(4rem, 2.6rem + 5vw, 6.5rem);
    clip-path: polygon(0 0, 100% 3.2vw, 100% 100%, 0 calc(100% - 3.2vw));
    margin-block: -1px;
}

.leitbild__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(2rem, 1rem + 4vw, 4.5rem);
    align-items: center;
}

.leitbild h2 {
    color: #fff;
}

.leitbild p {
    color: rgba(255, 255, 255, .87);
}

.leitbild p:last-of-type {
    margin-bottom: 0;
}

.zahlen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zahl {
    margin: 0;
    padding: 1.5rem 1.35rem;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
}

.zahl b {
    display: block;
    font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
}

.zahl span {
    display: block;
    margin-top: .3rem;
    font-size: .95rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.45;
}

.bpa {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.6rem;
    padding: 1rem 1.3rem;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    font-size: .96rem;
    color: rgba(255, 255, 255, .85);
}

.bpa svg {
    flex: none;
    color: var(--gruen-300);
}

/* ---------- FAQ ---------- */

.faq {
    max-width: 52rem;
    margin-inline: auto;
}

.faq details {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.35rem 0;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--gruen-800);
    cursor: pointer;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary:hover {
    color: var(--red-700);
}

.faq summary::after {
    content: "";
    flex: none;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: var(--gruen-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335726a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / 1rem no-repeat;
    transition: transform .22s ease;
}

.faq details[open] summary::after {
    transform: rotate(135deg);
}

.faq__answer {
    padding-bottom: 1.4rem;
    max-width: 46rem;
    color: var(--ink-soft);
}

.faq__answer p {
    margin: 0;
}

/* ---------- Kontakt ---------- */

.kontakt {
    background: var(--canvas);
    padding-top: clamp(3.5rem, 2.2rem + 4.2vw, 6rem);
    padding-bottom: clamp(6rem, 3.5rem + 8vw, 9.5rem);
}

.kontakt__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: clamp(1.6rem, 1rem + 3vw, 3rem);
    align-items: start;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.4rem);
    box-shadow: var(--shadow-sm);
}

.card h3 {
    color: var(--gruen-800);
}

/* ---------- Formular ---------- */

.form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.field {
    margin-bottom: 1.05rem;
}

.field label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
}

.field .opt {
    font-weight: 400;
    color: var(--muted);
    font-size: .92rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 3.3rem;
    padding: .8rem 1rem;
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: 10px;
    font: inherit;
    font-size: 1.05rem;
    color: var(--ink);
    transition: border-color .16s ease, box-shadow .16s ease;
}

.field textarea {
    min-height: 8.5rem;
    resize: vertical;
    line-height: 1.6;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23514840' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.15rem;
    padding-right: 3rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gruen-600);
    box-shadow: 0 0 0 4px var(--gruen-100);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
    border-color: var(--red-600);
}

.field__error {
    display: none;
    margin-top: .35rem;
    font-size: .93rem;
    font-weight: 600;
    color: var(--red-700);
}

.field__error.is-visible {
    display: block;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.2rem;
    font-size: .98rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

.check input {
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
    margin: .15rem 0 0;
    accent-color: var(--red-600);
}

.hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form__note {
    margin: 1rem 0 0;
    font-size: .92rem;
    color: var(--muted);
}

#turnstile-slot {
    margin-bottom: 1.1rem;
    min-height: 0;
}

#turnstile-slot:not(:empty) {
    min-height: 4.4rem;
}

.form__status {
    display: none;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: 1.2rem;
    padding: 1.1rem 1.3rem;
    border-radius: var(--radius);
    font-size: 1rem;
    line-height: 1.55;
}

.form__status.is-visible {
    display: flex;
}

.form__status--ok {
    background: #e8f2ea;
    border: 1px solid #b3d4bd;
    color: #2c5a3c;
}

.form__status--error {
    background: var(--red-50);
    border: 1px solid var(--red-100);
    color: var(--red-800);
}

.form__status svg {
    flex: none;
    margin-top: .15rem;
}

.btn[data-loading="true"] {
    pointer-events: none;
    opacity: .75;
}

/* ---------- Kontaktdaten ---------- */

.kontaktdaten {
    background: linear-gradient(150deg, var(--gruen-800) 0%, var(--gruen-900) 100%);
    color: #fff;
    border: 0;
}

.kontaktdaten h3 {
    color: #fff;
}

.kontaktdaten > p {
    color: rgba(255, 255, 255, .84);
    font-size: 1.01rem;
}

.kontaktliste {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.kontaktliste li {
    display: flex;
    align-items: flex-start;
    gap: .95rem;
    padding: .95rem 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    margin: 0;
}

.kontaktliste svg {
    flex: none;
    margin-top: .3rem;
    color: var(--gruen-300);
}

.kontaktliste b {
    display: block;
    font-size: .84rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gruen-300);
    font-weight: 700;
}

.kontaktliste a,
.kontaktliste span {
    color: #fff;
    font-size: 1.08rem;
    text-decoration: none;
    line-height: 1.45;
    display: inline-block;
}

.kontaktliste a:hover {
    color: #fff;
    text-decoration: underline;
}

.kontaktliste .gross {
    font-size: 1.3rem;
    font-weight: 700;
}

.kontaktdaten .btn {
    margin-top: 1.5rem;
}

/* ---------- Footer ---------- */

.footer {
    background: var(--gruen-900);
    color: rgba(255, 255, 255, .74);
    font-size: 1rem;
    padding-top: clamp(2.8rem, 2rem + 3vw, 4.2rem);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: clamp(1.8rem, 1rem + 3vw, 3.5rem);
    padding-bottom: 2.6rem;
}

.footer__logo {
    display: inline-block;
    padding: .7rem .9rem;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.footer__logo img {
    height: 2.6rem;
    width: auto;
}

.footer p {
    color: rgba(255, 255, 255, .74);
    font-size: .99rem;
}

.footer h4 {
    margin-bottom: .9rem;
    font-size: .88rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #fff;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer li {
    margin-bottom: .55rem;
}

.footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__claim {
    color: #fff;
    font-weight: 700;
}

.footer li.spaced {
    margin-top: .9rem;
}

.field__error--check {
    margin-top: -.8rem;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .8rem 1.5rem;
    padding-block: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .93rem;
}

.footer__bottom p {
    margin: 0;
    font-size: .93rem;
}

/* ---------- Mobile Call-Bar ---------- */

.callbar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    gap: .6rem;
    padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(58, 48, 36, .12);
}

.callbar .btn {
    flex: 1;
    min-height: 3.2rem;
    padding-inline: .8rem;
    font-size: 1rem;
}

/* ---------- Rechtstexte / 404 ---------- */

.legal {
    padding-block: clamp(2.8rem, 2rem + 3vw, 4.5rem);
}

.legal__inner {
    max-width: 48rem;
}

.legal h2 {
    margin-top: 2.4rem;
    font-size: clamp(1.3rem, 1.1rem + .8vw, 1.6rem);
    color: var(--gruen-800);
}

.legal h2:first-of-type {
    margin-top: 1.6rem;
}

.legal p,
.legal li {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.legal .platzhalter {
    display: inline-block;
    padding: .1rem .5rem;
    background: #fff6d6;
    border: 1px dashed #d8a800;
    border-radius: 5px;
    font-size: .95rem;
    font-weight: 700;
    color: #6b4e00;
}

.fehler {
    display: grid;
    place-items: center;
    text-align: center;
    padding-block: clamp(4rem, 3rem + 6vw, 8rem);
    background: linear-gradient(180deg, #fff 0%, var(--canvas) 100%);
}

.fehler__code {
    font-size: clamp(4.5rem, 3rem + 9vw, 8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    color: var(--gruen-100);
}

.fehler h1 {
    margin-top: -.35em;
}

.fehler .btn {
    margin: .4rem .3rem 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
    .header__inner {
        gap: .8rem;
    }

    .burger {
        display: inline-flex;
    }

    .nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 100;
        width: min(21rem, 86vw);
        flex-direction: column;
        align-items: stretch;
        gap: .2rem;
        padding: 5.5rem 1.3rem 2rem;
        background: var(--surface);
        box-shadow: -12px 0 40px rgba(58, 48, 36, .2);
        transform: translateX(100%);
        transition: transform .26s ease;
        overflow-y: auto;
    }

    .nav.is-open {
        transform: translateX(0);
    }

    .nav__link {
        padding: .95rem .9rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .nav__cta {
        display: inline-flex;
        margin-top: 1.2rem;
    }

    /* Muss unter dem Stapelkontext des Headers bleiben, sonst liegt der
       Backdrop ueber der Navigation und schluckt jeden Klick. */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 80;
        background: rgba(24, 28, 26, .55);
        opacity: 0;
        visibility: hidden;
        transition: opacity .26s ease, visibility .26s ease;
    }

    .nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .callbar {
        display: none;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 5.5rem;
    }

    /* Die feste Anrufleiste am unteren Rand uebernimmt hier den Anruf-CTA. */
    .header__cta {
        display: none;
    }

    .topbar__group .topbar__item:last-child {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero::before {
        display: none;
    }

    .hero__media {
        justify-self: center;
        max-width: 26rem;
    }

    .hero__media::before {
        inset: 1.1rem -1.1rem -1.1rem 1.1rem;
    }

    .hero__badge {
        left: -.8rem;
        bottom: 1.4rem;
        padding: .8rem 1.1rem;
    }

    .quickfacts__inner {
        grid-template-columns: 1fr;
    }

    .quickfact {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 1.4rem 1.4rem;
    }

    .quickfact:last-child {
        border-bottom: 0;
    }

    .werte {
        grid-template-columns: 1fr;
        gap: 3.8rem;
        padding-top: 3.2rem;
    }

    .wert:nth-child(2),
    .wert:nth-child(3) {
        margin-top: 0;
    }

    .leitbild__grid {
        grid-template-columns: 1fr;
    }

    .ablauf {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .schritt {
        padding: 0 0 2.2rem 4.4rem;
    }

    .schritt__num {
        left: 0;
        transform: none;
    }

    .schritt::before {
        left: 1.475rem;
        right: auto;
        top: 3.35rem;
        bottom: -.4rem;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(180deg, var(--gruen-300) 0 7px, transparent 7px 14px);
    }

    .schritt h3,
    .schritt p {
        text-align: left;
    }

    .schritt h3 {
        padding-top: .3rem;
    }

    .leistung summary {
        grid-template-columns: 3.2rem 1fr 2.4rem;
        gap: .3rem 1rem;
        padding: 1rem 1.1rem;
    }

    .leistung__intro {
        grid-column: 2 / -1;
        font-size: .96rem;
    }

    .leistung__body {
        margin-inline: 1.1rem;
    }

    .kontakt__grid {
        grid-template-columns: 1fr;
    }

    .callbar {
        display: flex;
    }

    body {
        padding-bottom: 4.6rem;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 1.075rem;
    }

    .topbar {
        font-size: .88rem;
    }

    .topbar__inner {
        justify-content: center;
    }

    .topbar__inner > .topbar__item {
        display: none;
    }

    .header__logo img {
        height: 2.6rem;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .leistung__gruppe:only-child ul {
        columns: auto;
    }

    .zahlen {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .quickfacts {
        margin-top: -3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .band__bg {
        transform: none !important;
    }

    .btn:hover,
    .wert:hover,
    .leistung:hover {
        transform: none;
    }
}

@media print {
    .topbar,
    .header,
    .callbar,
    .band__bg,
    .hero__media,
    form {
        display: none !important;
    }

    body {
        font-size: 11pt;
        padding-bottom: 0;
    }

    .leistung__body {
        display: grid;
    }
}
