:root {
    --ink: #16262F;
    --ink-2: #1E3644;
    --ink-3: #2C4B5C;
    --accent: #C8934B;
    --accent-dark: #A87532;
    --accent-soft: #F6EBDA;
    --paper: #FFFFFF;
    --paper-2: #F4F6F7;
    --paper-3: #EAEEF0;
    --line: #DCE2E5;
    --muted: #5E7078;

    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --gutter: clamp(1.1rem, 4vw, 2.6rem);
    --shell: 1180px;
    --radius: 3px;
    --shadow-sm: 0 1px 2px rgba(22, 38, 47, .06), 0 8px 24px -18px rgba(22, 38, 47, .35);
    --shadow-md: 0 2px 4px rgba(22, 38, 47, .05), 0 26px 50px -32px rgba(22, 38, 47, .45);
    --shadow-lg: 0 30px 70px -40px rgba(22, 38, 47, .6);
    --section-y: clamp(2.6rem, 4.6vw, 4.4rem);
}

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

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

body {
    margin: 0;
    font-family: var(--font);
    font-size: clamp(.925rem, .9rem + .12vw, 1rem);
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin: 0 0 .6em;
    font-weight: 700;
}

p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; }

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

.shell {
    width: min(100% - 2 * var(--gutter), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--ink);
    color: #fff;
    padding: .8rem 1.2rem;
    text-decoration: none;
}
.skip-link:focus { left: .5rem; top: .5rem; }

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: 0 1px 20px -10px rgba(22, 38, 47, .5); }

.site-header__inner {
    display: flex;
    align-items: center;
    gap: clamp(.75rem, 2vw, 1.7rem);
    min-height: 3.9rem;
    padding-block: .45rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    margin-right: auto;
}
.brand__mark { width: clamp(1.9rem, 4vw, 2.3rem); height: auto; }
.brand__type { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
    font-weight: 700;
    font-size: clamp(1.02rem, 2.1vw, 1.2rem);
    letter-spacing: .16em;
    color: var(--ink);
}
.brand__claim {
    font-size: .57rem;
    letter-spacing: .21em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .18rem;
}

.nav__panel { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.6rem); }

.nav__link {
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink-3);
    padding: .45rem .1rem;
    position: relative;
    white-space: nowrap;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: .15rem;
    height: 2px;
    background: var(--accent);
    transition: right .25s ease;
}
.nav__link:hover::after, .nav__link:focus-visible::after, .nav__link[aria-current]::after { right: 0; }

.header-phone {
    display: none;
    align-items: center;
    gap: .45rem;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    color: var(--ink);
}

.burger {
    display: none;
    width: 2.9rem; height: 2.9rem;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: var(--radius);
    padding: 0;
    cursor: pointer;
    position: relative;
}
.burger__bar {
    position: absolute;
    left: 50%; width: 1.15rem; height: 2px;
    background: var(--ink);
    transform: translateX(-50%);
    transition: transform .25s ease, opacity .2s ease;
}
.burger__bar:nth-child(1) { top: .95rem; }
.burger__bar:nth-child(2) { top: 1.38rem; }
.burger__bar:nth-child(3) { top: 1.81rem; }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateX(-50%) translateY(.43rem) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateX(-50%) translateY(-.43rem) rotate(-45deg); }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font: inherit;
    font-weight: 700;
    letter-spacing: .01em;
    text-decoration: none;
    padding: .6rem 1.15rem;
    font-size: .92rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }

.btn--accent { background: var(--accent); color: #1B1206; border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

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

.btn--lg { padding: .78rem 1.45rem; font-size: .96rem; }
.btn--block { width: 100%; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 2px solid var(--accent);
    padding-bottom: .15rem;
    margin-top: .4rem;
}
.link-arrow svg { transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Typo-Bausteine ---------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin: 0 0 .7rem;
}
.eyebrow__tick { width: 1.4rem; height: 3px; background: var(--accent); display: inline-block; flex: none; }
.eyebrow--light { color: var(--accent); }

.section__title { font-size: clamp(1.45rem, 1.1rem + 1.5vw, 2.2rem); }
.section__title--light { color: #fff; }

.section__lead {
    font-size: clamp(.95rem, .92rem + .2vw, 1.06rem);
    color: var(--muted);
    max-width: 62ch;
}

.section { padding-block: var(--section-y); position: relative; }

.section__head { max-width: 66ch; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.section__head--split {
    display: grid;
    gap: clamp(1rem, 3vw, 2.5rem);
    max-width: none;
    align-items: end;
}
@media (min-width: 900px) {
    .section__head--split { grid-template-columns: 1.15fr .85fr; }
    .section__head--split .section__lead { padding-bottom: .5rem; }
}

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

.hero {
    position: relative;
    padding-top: clamp(1.5rem, 3vw, 2.6rem);
    background: var(--paper);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 54%;
    background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: clamp(60px, 7vw, 110px) 100%;
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 44%;
    background: var(--paper-2);
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.6rem, 3vw, 2.6rem);
    align-items: center;
}
@media (min-width: 900px) {
    .hero__grid { grid-template-columns: 1fr 1.06fr; gap: clamp(1.8rem, 3.4vw, 3.2rem); }
}

.hero__text { position: relative; z-index: 2; }

.hero__title {
    font-size: clamp(1.85rem, 1.15rem + 2.8vw, 3.1rem);
    letter-spacing: -0.025em;
    margin-bottom: .85rem;
}
.hero__title .accent-line { color: var(--ink-3); }

.hero__lead {
    font-size: clamp(.98rem, .94rem + .28vw, 1.1rem);
    color: var(--muted);
    max-width: 52ch;
    margin-bottom: 1.3rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.4rem; }

.hero__points { display: grid; gap: .4rem; }
.hero__points li {
    position: relative;
    padding-left: 1.5rem;
    font-size: .92rem;
    color: var(--ink-3);
}
.hero__points li::before {
    content: "";
    position: absolute;
    left: 0; top: .58em;
    width: .62rem; height: .62rem;
    background: var(--accent);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.hero__media { position: relative; }
.hero__frame {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    clip-path: polygon(0 3.5%, 100% 0, 100% 96.5%, 0 100%);
}
.hero__frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 900px) {
    .hero__frame img { aspect-ratio: 3 / 2.35; }
}

.hero__badge {
    position: absolute;
    left: clamp(-.5rem, -1vw, 0rem);
    bottom: clamp(-1.4rem, -2vw, -1rem);
    background: var(--ink);
    color: #fff;
    padding: .95rem 1.3rem;
    display: grid;
    gap: .1rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent);
}
.hero__badge-num { font-size: clamp(1.1rem, 1.7vw, 1.4rem); font-weight: 700; letter-spacing: .01em; }
.hero__badge-label { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: #A9BDC6; }

.hero__factbar { position: relative; z-index: 5; }

.factbar {
    position: relative;
    z-index: 5;
    margin-top: clamp(1.8rem, 3.4vw, 2.8rem);
    margin-bottom: calc(-1 * clamp(1.2rem, 2.4vw, 2rem));
    background: var(--ink);
    color: #fff;
    display: grid;
    box-shadow: var(--shadow-lg);
}
@media (min-width: 780px) { .factbar { grid-template-columns: repeat(3, 1fr); } }

.factbar__item {
    padding: clamp(.9rem, 1.7vw, 1.25rem) clamp(1rem, 2vw, 1.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.factbar__item:last-child { border-bottom: 0; }
@media (min-width: 780px) {
    .factbar__item { border-bottom: 0; border-right: 1px solid rgba(255, 255, 255, .12); }
    .factbar__item:last-child { border-right: 0; }
}
.factbar__key {
    display: block;
    font-size: .66rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .3rem;
    font-weight: 700;
}
.factbar__val { display: block; font-size: .87rem; color: #C7D5DC; line-height: 1.5; }

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

.section--services { background: var(--paper-2); padding-top: calc(var(--section-y) + 1.6rem); }

.services {
    display: grid;
    gap: clamp(.7rem, 1.2vw, 1rem);
    grid-template-columns: 1fr;
}
@media (min-width: 620px) {
    .services { grid-template-columns: repeat(2, 1fr); }
    .service--accent { grid-column: span 2; }
}
@media (min-width: 1040px) {
    .services { grid-template-columns: repeat(6, 1fr); }
    .service { grid-column: span 2; }
    .service--feature { grid-column: span 2; grid-row: span 2; }
    .service--flat { grid-column: span 4; }
    .service--accent { grid-column: span 6; }
}

.service {
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 3px solid var(--ink);
    padding: clamp(1rem, 1.7vw, 1.35rem);
    display: flex;
    flex-direction: column;
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.service:hover {
    border-top-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.service__icon { color: var(--accent-dark); width: 1.85rem; margin-bottom: .7rem; }
.service__icon svg { width: 100%; height: auto; }
.service__title { font-size: clamp(1.02rem, .98rem + .25vw, 1.18rem); margin-bottom: .4rem; }
.service__text { color: var(--muted); font-size: .89rem; line-height: 1.55; margin-bottom: .7rem; }
.service__list { margin-top: auto; display: grid; gap: .28rem; border-top: 1px solid var(--line); padding-top: .7rem; }
.service__list li { position: relative; padding-left: 1rem; font-size: .84rem; color: var(--ink-3); }
.service__list li::before {
    content: "";
    position: absolute;
    left: 0; top: .62em;
    width: .42rem; height: .42rem;
    background: var(--accent);
}
@media (min-width: 1040px) {
    .service--feature {
        padding: clamp(1.2rem, 2vw, 1.7rem);
        border-top-color: var(--accent);
        box-shadow: var(--shadow-sm);
    }
    .service--feature .service__icon { width: 2.3rem; margin-bottom: 1rem; }
    .service--feature .service__title { font-size: 1.32rem; margin-bottom: .55rem; }
    .service--feature .service__text { font-size: .95rem; }
    .service--feature .service__list li { font-size: .88rem; }

    .service--flat {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: clamp(1rem, 2vw, 1.6rem);
    }
    .service--flat .service__icon { margin: 0; grid-row: 1 / span 2; }
    .service--flat .service__title { grid-column: 2; margin-bottom: .25rem; }
    .service--flat .service__text { grid-column: 2; grid-row: 2; margin: 0; max-width: 62ch; }
}

.service--accent {
    background: var(--ink);
    border-color: var(--ink);
    border-top-color: var(--accent);
    color: #fff;
}
.service--accent .service__icon { color: var(--accent); }
.service--accent .service__text { color: #BCCDD5; max-width: 78ch; }
.service--accent .link-arrow { color: #fff; }

@media (min-width: 780px) {
    .service--accent {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: clamp(1rem, 2vw, 1.8rem);
        padding-block: clamp(1rem, 1.8vw, 1.4rem);
    }
    .service--accent .service__icon { margin: 0; }
    .service--accent .service__title { grid-column: 2; margin-bottom: .25rem; }
    .service--accent .service__text { grid-column: 2; grid-row: 2; margin: 0; }
    .service--accent .service__icon { grid-row: 1 / span 2; }
    .service--accent .link-arrow { grid-column: 3; grid-row: 1 / span 2; margin: 0; white-space: nowrap; }
}

/* ---------- Parallax-Fenster ---------- */

.reveal {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;
    min-height: clamp(26rem, 68vh, 38rem);
    padding-block: clamp(3.2rem, 7vw, 6rem);
    color: #fff;
    overflow: hidden;
}

.reveal__window {
    position: absolute;
    inset: 0;
    z-index: -1;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
}

.reveal__image {
    position: fixed;
    inset: 0;
    background-image: url("/img/parallax-mobile.webp");
    background-size: cover;
    background-position: center;
}
@media (min-width: 760px) {
    .reveal__image { background-image: url("/img/parallax-1600.webp"); }
}
@media (min-width: 1700px) {
    .reveal__image { background-image: url("/img/parallax-2800.webp"); }
}

.reveal__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(15, 27, 34, .93) 0%, rgba(15, 27, 34, .82) 42%, rgba(15, 27, 34, .38) 78%, rgba(15, 27, 34, .28) 100%);
}
@media (max-width: 760px) {
    .reveal__scrim { background: linear-gradient(180deg, rgba(15, 27, 34, .88) 0%, rgba(15, 27, 34, .8) 100%); }
}

.reveal__content { position: relative; z-index: 1; max-width: 100%; }
.reveal__eyebrow {
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.1rem;
}
.reveal__slogan {
    font-size: clamp(1.8rem, 1.1rem + 3vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.028em;
    margin: 0 0 1rem;
    max-width: 20ch;
}
.reveal__text {
    max-width: 48ch;
    color: #D3DFE5;
    font-size: clamp(.95rem, .92rem + .25vw, 1.08rem);
    margin-bottom: 1.8rem;
}
.reveal__stats {
    display: grid;
    gap: clamp(1rem, 2.5vw, 2.5rem);
    grid-template-columns: repeat(auto-fit, minmax(8rem, max-content));
    border-top: 1px solid rgba(255, 255, 255, .22);
    padding-top: 1.2rem;
    max-width: 44rem;
}
.reveal__stats div { display: grid; gap: .15rem; }
.reveal__stats strong { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.6rem); letter-spacing: .01em; }
.reveal__stats span { font-size: .74rem; letter-spacing: .06em; color: #A9BDC6; }

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

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

.steps {
    display: grid;
    gap: clamp(.7rem, 1.2vw, 1rem);
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
    position: relative;
    padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1rem, 1.6vw, 1.3rem);
    background: var(--paper-2);
    border-left: 3px solid var(--accent);
}
@media (min-width: 1040px) {
    .step:nth-child(even) { transform: translateY(clamp(.7rem, 1.4vw, 1.3rem)); }
}
.step__num {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: .22em;
    line-height: 1;
    margin-bottom: .6rem;
}
.step__title { font-size: 1.02rem; margin-bottom: .35rem; }
.step__text { color: var(--muted); font-size: .88rem; line-height: 1.55; margin: 0; }

/* ---------- Über uns ---------- */

.section--about { background: var(--paper); overflow: hidden; }

.about {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}
@media (min-width: 900px) { .about { grid-template-columns: .8fr 1.2fr; } }

.about__media { position: relative; }
.about__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    box-shadow: var(--shadow-md);
}
.about__media::before {
    content: "";
    position: absolute;
    inset: clamp(.9rem, 2vw, 1.6rem) calc(-1 * clamp(.9rem, 2vw, 1.6rem)) calc(-1 * clamp(.9rem, 2vw, 1.6rem)) clamp(.9rem, 2vw, 1.6rem);
    border: 2px solid var(--accent);
}

.about__stamp {
    position: absolute;
    z-index: 2;
    right: clamp(-1rem, -2vw, -.5rem);
    bottom: clamp(1.2rem, 3vw, 2.4rem);
    background: var(--ink);
    color: #fff;
    padding: .85rem 1.1rem;
    display: grid;
    line-height: 1.3;
    box-shadow: var(--shadow-lg);
    max-width: 14rem;
}
.about__stamp span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.about__stamp strong { font-size: 1rem; }

.about__values {
    display: grid;
    gap: .8rem;
    margin-top: 1.3rem;
}
@media (min-width: 640px) { .about__values { grid-template-columns: repeat(2, 1fr); gap: .9rem 1.5rem; } }
.about__values li { border-top: 2px solid var(--ink); padding-top: .55rem; display: grid; gap: .15rem; }
.about__values strong { font-size: .94rem; }
.about__values span { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* ---------- Galerie ---------- */

.section--gallery { background: var(--paper-2); }

.gallery {
    display: grid;
    gap: clamp(.7rem, 1.4vw, 1.1rem);
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
    .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(7rem, 10.5vw, 10.5rem); }
    .gallery__item--tall { grid-column: span 2; grid-row: span 2; }
}

.gallery__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--ink);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .5s ease, opacity .3s ease;
}
@media (min-width: 1000px) { .gallery__item img { aspect-ratio: auto; } }
.gallery__item:hover img { transform: scale(1.04); opacity: .82; }

.gallery__item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2rem .8rem .7rem;
    font-size: .78rem;
    line-height: 1.35;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 27, 34, 0) 0%, rgba(15, 27, 34, .88) 65%);
}

.gallery__note {
    margin-top: 1rem;
    font-size: .83rem;
    color: var(--muted);
    border-left: 3px solid var(--accent);
    padding-left: .9rem;
}

/* ---------- Einsatzgebiet ---------- */

.area { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .area { grid-template-columns: 1fr .9fr; } }

.area__text p { color: var(--muted); max-width: 56ch; font-size: .95rem; }
.area__cities {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin: 1.1rem 0;
}
.area__cities li {
    border: 1px solid var(--line);
    background: var(--paper-2);
    padding: .25rem .6rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink-3);
}
.area__hint { font-size: .87rem; }

.area__map { min-width: 0; }

/* ---------- Kartenfreigabe (Two-Click) ---------- */

.mapconsent {
    --map-h: clamp(17rem, 40vw, 23rem);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    background: var(--paper-2);
    box-shadow: var(--shadow-sm);
}

.mapconsent__panel {
    position: relative;
    display: grid;
    justify-items: start;
    align-content: center;
    gap: .55rem;
    min-height: var(--map-h);
    padding: clamp(1.2rem, 2.4vw, 1.9rem);
    background-image:
        linear-gradient(90deg, var(--line) 1px, transparent 1px),
        linear-gradient(180deg, var(--line) 1px, transparent 1px);
    background-size: 46px 46px, 46px 46px;
}
.mapconsent__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(244, 246, 247, .55) 0%, rgba(244, 246, 247, .9) 100%);
}
.mapconsent__panel > * { position: relative; z-index: 1; }

.mapconsent__icon { color: var(--accent-dark); width: 1.9rem; }
.mapconsent__icon svg { width: 100%; height: auto; }
.mapconsent__title { font-size: 1.05rem; margin: 0; }
.mapconsent__text { font-size: .84rem; color: var(--muted); margin: 0; max-width: 44ch; line-height: 1.55; }
.mapconsent__text a { color: var(--ink); text-underline-offset: 3px; }

.mapconsent__remember {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .76rem;
    color: var(--ink-3);
    cursor: pointer;
}
.mapconsent__remember input { width: .95rem; height: .95rem; accent-color: var(--accent-dark); }

.mapconsent__btn { margin-top: .3rem; white-space: nowrap; }

.mapconsent__frame { position: relative; }
.mapconsent__frame iframe {
    display: block;
    width: 100%;
    height: var(--map-h);
    border: 0;
}
.mapconsent__bar {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem .9rem;
    justify-content: space-between;
    align-items: center;
    padding: .45rem .75rem;
    font-size: .73rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
}
.mapconsent__revoke {
    font: inherit;
    background: none;
    border: 0;
    padding: 0;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid var(--accent);
}

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

.section--faq { background: var(--paper-2); }
.faq__list { display: grid; gap: .45rem; max-width: 62rem; }

.faq__item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 3px solid var(--line);
    transition: border-left-color .2s ease;
}
.faq__item[open] { border-left-color: var(--accent); }
.faq__item summary {
    cursor: pointer;
    list-style: none;
    padding: .8rem 2.4rem .8rem 1rem;
    font-weight: 700;
    position: relative;
    font-size: .96rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "";
    position: absolute;
    right: 1rem; top: 1.1rem;
    width: .55rem; height: .55rem;
    border-right: 2px solid var(--accent-dark);
    border-bottom: 2px solid var(--accent-dark);
    transform: rotate(45deg);
    transition: transform .22s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item p { margin: 0; padding: 0 1rem .9rem; color: var(--muted); font-size: .89rem; line-height: 1.55; }

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

.section--contact {
    background: var(--ink);
    color: #fff;
    position: relative;
}
.section--contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: clamp(60px, 7vw, 110px) 100%;
    pointer-events: none;
}

.contact {
    position: relative;
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}
@media (min-width: 960px) { .contact { grid-template-columns: .9fr 1.1fr; } }

.contact__lead { color: #BDCED6; max-width: 46ch; font-size: .98rem; }

.contact__facts { display: grid; gap: .65rem; margin-top: 1.4rem; }
.contact__facts li {
    display: grid;
    gap: .1rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: .5rem;
}
.contact__fact-label {
    font-size: .64rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}
.contact__fact-value { font-size: .95rem; font-weight: 600; }
.contact__fact-value.is-placeholder {
    color: #92A8B2;
    font-weight: 500;
    border: 1px dashed rgba(255, 255, 255, .3);
    padding: .05rem .45rem;
    justify-self: start;
    font-size: .87rem;
}

.contact__card {
    background: var(--paper);
    color: var(--ink);
    padding: clamp(1.1rem, 2vw, 1.6rem);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent);
}

.form { display: grid; gap: .7rem; }
.form__row { display: grid; gap: .7rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: repeat(2, 1fr); } }

.field { display: grid; gap: .22rem; }
.field label { font-size: .74rem; font-weight: 700; letter-spacing: .04em; }
.field label span { color: var(--accent-dark); }
.field input, .field select, .field textarea {
    font: inherit;
    font-size: .9rem;
    color: var(--ink);
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .5rem .65rem;
    width: 100%;
    transition: border-color .18s ease, background-color .18s ease;
}
.field textarea { resize: vertical; min-height: 5.2rem; }
.field input:focus, .field select:focus, .field textarea:focus {
    background: var(--paper);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 147, 75, .2);
}
.field input::placeholder, .field textarea::placeholder { color: #8B9AA2; }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: #B3402F; background: #FDF4F2; }

.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .55rem;
    align-items: start;
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.45;
}
.check input { width: 1.05rem; height: 1.05rem; margin-top: .1rem; accent-color: var(--accent-dark); }
.check a { color: var(--ink); text-underline-offset: 3px; }
.check.is-invalid { color: #B3402F; }

.form__turnstile:not(:empty) { margin-top: .2rem; min-height: 65px; }

.form__status { margin: 0; font-size: .88rem; font-weight: 600; }
.form__status:empty { display: none; }
.form__status.is-error { color: #B3402F; }
.form__status.is-success { color: #1D6B4B; }

.form__hint { margin: 0; font-size: .74rem; color: var(--muted); }

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

.site-footer { background: #101E26; color: #B9C9D1; padding-top: clamp(2rem, 3.6vw, 3rem); }

.site-footer__grid {
    display: grid;
    gap: clamp(1.3rem, 2.4vw, 2rem);
    padding-bottom: clamp(1.6rem, 3vw, 2.2rem);
}
@media (min-width: 620px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-mark {
    display: inline-grid;
    place-items: center;
    width: 2.9rem; height: 2.9rem;
    background: #fff;
    margin-bottom: .7rem;
}
.footer-mark img { width: 2.1rem; height: auto; }
.footer-name { font-size: 1.1rem; font-weight: 700; letter-spacing: .18em; color: #fff; margin: 0 0 .25rem; }
.footer-claim { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 0 0 .5rem; }
.footer-note { font-size: .84rem; margin: 0; }

.footer-head {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 .7rem;
}
.footer-list { display: grid; gap: .38rem; }
.footer-list a { text-decoration: none; font-size: .86rem; }
.footer-list a:hover { color: var(--accent); }

.site-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-block: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.5rem;
    justify-content: space-between;
    font-size: .84rem;
}
.site-footer__bar p { margin: 0; }
.site-footer__bar a { color: #fff; text-decoration: none; border-bottom: 1px solid var(--accent); }
.site-footer__bar a:hover { color: var(--accent); }

/* ---------- Rechtsseiten & 404 ---------- */

.legal { padding-block: clamp(2.6rem, 5vw, 4.5rem); }
.legal__inner { max-width: 74ch; }
.legal h1 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.9rem); margin-bottom: 1.2rem; }
.legal h2 {
    font-size: 1.15rem;
    margin-top: 2.2rem;
    padding-top: 1.1rem;
    border-top: 2px solid var(--ink);
}
.legal p { color: var(--ink-3); }
.legal a { color: var(--ink); text-underline-offset: 3px; }
.legal .placeholder {
    display: inline-block;
    border: 1px dashed var(--accent-dark);
    background: var(--accent-soft);
    padding: .05rem .45rem;
    color: var(--accent-dark);
    font-weight: 600;
}
.legal__note {
    background: var(--paper-2);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.1rem;
    font-size: .93rem;
    color: var(--muted);
}
.legal__hint {
    font-size: .84rem;
    color: var(--muted);
    border-left: 2px solid var(--line);
    padding-left: .8rem;
}

.error-page {
    display: grid;
    place-items: center;
    text-align: center;
    padding-block: clamp(4rem, 12vw, 8rem);
    background: var(--paper-2);
}
.error-page__code {
    font-size: clamp(4rem, 3rem + 9vw, 10rem);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin: 0 0 .6rem;
}
.error-page__code span { color: var(--accent); }
.error-page h1 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); }
.error-page p { color: var(--muted); max-width: 46ch; margin-inline: auto; }
.error-page .btn { margin-top: 1rem; }

/* ---------- Mobile Navigation ---------- */

@media (max-width: 1099px) {
    .burger { display: block; }
    .header-phone { display: inline-flex; }

    .nav {
        position: fixed;
        inset: 4rem 0 0 0;
        background: var(--paper);
        transform: translateY(-101%);
        transition: transform .3s cubic-bezier(.4, 0, .2, 1);
        visibility: hidden;
        overflow-y: auto;
        border-top: 1px solid var(--line);
    }
    .nav.is-open { transform: translateY(0); visibility: visible; }

    .nav__panel {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--gutter);
        width: min(100%, 34rem);
        margin-inline: auto;
    }
    .nav__link {
        font-size: 1.15rem;
        padding: 1rem .2rem;
        border-bottom: 1px solid var(--line);
    }
    .nav__link::after { display: none; }
    .nav__cta { margin-top: 1.4rem; }

    body.nav-open { overflow: hidden; }
}

@media (max-width: 520px) {
    .brand__claim { display: none; }
    .header-phone span { display: none; }
    .hero__badge { position: static; margin-top: 1rem; justify-self: start; }
    .about__stamp { right: auto; left: 0; bottom: -1rem; }
}

/* ---------- Große Bildschirme ---------- */

@media (min-width: 1600px) { :root { --shell: 1300px; } }
@media (min-width: 1900px) {
    html { font-size: 16.5px; }
    :root { --shell: 1420px; }
}
@media (min-width: 2400px) {
    html { font-size: 18.5px; }
    :root { --shell: 1620px; }
}
@media (min-width: 3200px) {
    html { font-size: 21px; }
    :root { --shell: 1880px; }
}

@media print {
    .site-header, .site-footer, .reveal, .section--contact { display: none; }
}
