/* /Components/Layout/Footer.razor.rz.scp.css */
.site-footer[b-jm4tfb8voq] {
    flex: none;
    background-color: var(--dark);
    color: #c5cdd4;
    margin-top: auto;
}

.site-footer__grid[b-jm4tfb8voq] {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.5rem;
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__name[b-jm4tfb8voq] {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .6rem;
}

.site-footer__brand p[b-jm4tfb8voq] {
    margin: 0 0 .4rem;
    max-width: 32ch;
}

.site-footer__appointment[b-jm4tfb8voq] {
    color: var(--brand-light);
    font-weight: 600;
}

.site-footer__head[b-jm4tfb8voq] {
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.site-footer__address[b-jm4tfb8voq] {
    font-style: normal;
    line-height: 1.9;
}

.site-footer a[b-jm4tfb8voq] {
    color: #c5cdd4;
}

.site-footer a:hover[b-jm4tfb8voq] {
    color: #fff;
    text-decoration: underline;
}

.site-footer__nav[b-jm4tfb8voq] {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 2;
}

.site-footer__bottom[b-jm4tfb8voq] {
    border-top: 1px solid rgba(255, 255, 255, .1);
    background-color: var(--dark-2);
}

.site-footer__bottom-inner[b-jm4tfb8voq] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem 1.5rem;
    padding-block: 1.1rem;
    font-size: .9rem;
}

.site-footer__bottom-inner p[b-jm4tfb8voq] {
    margin: 0;
}

@media (max-width: 720px) {
    .site-footer__grid[b-jm4tfb8voq] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Das Layout selbst ist schlank: Header + Main + Footer stapeln sich vertikal.
   Sticky-Footer-Verhalten wird global in app.css über body/main gelöst. */

main[b-mue3hddxix] {
    display: block;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.site-header[b-olf58zz6uh] {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner[b-olf58zz6uh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
}

.site-header__brand[b-olf58zz6uh] {
    display: inline-flex;
    align-items: center;
    flex: none;
}

.site-header__brand img[b-olf58zz6uh] {
    height: clamp(1.6rem, 4.5vw, 2.05rem);
    width: auto;
}

/* Versteckte Checkbox steuert das Mobil-Menü (kein JS nötig). */
.nav-toggle[b-olf58zz6uh] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.nav-burger[b-olf58zz6uh] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: .65rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex: none;
}

.nav-burger span[b-olf58zz6uh] {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.site-nav[b-olf58zz6uh] {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.site-nav__link[b-olf58zz6uh] {
    padding: .55rem .85rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
}

.site-nav__link:hover[b-olf58zz6uh] {
    color: var(--brand-dark);
    background-color: var(--brand-soft);
}

.site-nav__cta[b-olf58zz6uh] {
    margin-left: .5rem;
}

/* ---- Mobil ---- */
@media (max-width: 860px) {
    .nav-burger[b-olf58zz6uh] {
        display: flex;
    }

    .site-nav[b-olf58zz6uh] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
        padding: .75rem 1.25rem 1.25rem;
        background-color: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
    }

    .site-nav__link[b-olf58zz6uh] {
        padding: .85rem 1rem;
        font-size: 1.05rem;
    }

    .site-nav__cta[b-olf58zz6uh] {
        margin-left: 0;
        margin-top: .5rem;
    }

    .nav-toggle:checked ~ .site-nav[b-olf58zz6uh] {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Burger -> X */
    .nav-toggle:checked ~ .nav-burger span:nth-child(1)[b-olf58zz6uh] {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked ~ .nav-burger span:nth-child(2)[b-olf58zz6uh] {
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-burger span:nth-child(3)[b-olf58zz6uh] {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-toggle:focus-visible ~ .nav-burger[b-olf58zz6uh] {
        outline: 3px solid var(--brand);
        outline-offset: 2px;
    }
}
/* /Components/Sections/Home/ContactSection.razor.rz.scp.css */
.contact__grid[b-hfill0imsw] {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.contact__name[b-hfill0imsw] {
    margin-bottom: .25rem;
}

.contact__appointment[b-hfill0imsw] {
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact__list[b-hfill0imsw] {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 1.1rem;
}

.contact__list li[b-hfill0imsw] {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
}

.contact__icon[b-hfill0imsw] {
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: .15rem;
    fill: var(--brand);
}

.contact__actions[b-hfill0imsw] {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* Formular */
.contact__form-wrap[b-hfill0imsw] {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-form[b-hfill0imsw] {
    display: grid;
    gap: 1.1rem;
}

.form-field[b-hfill0imsw] {
    display: grid;
    gap: .4rem;
}

.form-field label[b-hfill0imsw] {
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink-soft);
}

.form-field input[b-hfill0imsw],
.form-field textarea[b-hfill0imsw] {
    width: 100%;
    padding: .8rem 1rem;
    font: inherit;
    color: var(--ink);
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.form-field input:focus[b-hfill0imsw],
.form-field textarea:focus[b-hfill0imsw] {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(71, 138, 201, .18);
}

.form-field textarea[b-hfill0imsw] {
    resize: vertical;
    min-height: 7rem;
}

.contact-form__submit[b-hfill0imsw] {
    justify-self: start;
    margin-top: .25rem;
}

.contact-form__hint[b-hfill0imsw] {
    margin: 0;
    font-size: .85rem;
    color: var(--muted);
}

@media (max-width: 820px) {
    .contact__grid[b-hfill0imsw] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/Home/HeroSection.razor.rz.scp.css */
.hero[b-ek4840zcog] {
    background: linear-gradient(180deg, var(--brand-soft) 0%, #fff 100%);
    overflow: hidden;
}

.hero__inner[b-ek4840zcog] {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding-block: clamp(2.75rem, 6vw, 5rem);
}

.hero__eyebrow[b-ek4840zcog] {
    display: inline-block;
    padding: .35rem .8rem;
    border-radius: 999px;
    background-color: #fff;
    border: 1px solid var(--brand-light);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    margin-bottom: 1.1rem;
}

.hero__title[b-ek4840zcog] {
    margin-bottom: .8rem;
}

.hero__lead[b-ek4840zcog] {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: var(--ink-soft);
    max-width: 34ch;
}

.hero__actions[b-ek4840zcog] {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin: 1.6rem 0 1.4rem;
}

.hero__usps[b-ek4840zcog] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .55rem;
}

.hero__usps li[b-ek4840zcog] {
    position: relative;
    padding-left: 1.9rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.hero__usps li[b-ek4840zcog]::before {
    content: "";
    position: absolute;
    left: 0;
    top: .15rem;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background-color: var(--brand);
    /* Häkchen */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: .85rem;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__media[b-ek4840zcog] {
    position: relative;
}

.hero__media img[b-ek4840zcog] {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.hero__badge[b-ek4840zcog] {
    position: absolute;
    left: -.5rem;
    bottom: 1.25rem;
    background-color: #fff;
    color: var(--ink);
    padding: .85rem 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--brand);
}

.hero__badge strong[b-ek4840zcog] {
    font-size: 1rem;
}

@media (max-width: 860px) {
    .hero__inner[b-ek4840zcog] {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero__media[b-ek4840zcog] {
        order: -1;
    }

    .hero__lead[b-ek4840zcog] {
        max-width: none;
    }
}
/* /Components/Sections/Home/MapSection.razor.rz.scp.css */
.map[b-40dwndcfey] {
    display: block;
}

.map__frame[b-40dwndcfey] {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 7;
    min-height: 320px;
    background-color: var(--bg-alt);
}

.map__frame iframe[b-40dwndcfey] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 760px) {
    .map__frame[b-40dwndcfey] {
        aspect-ratio: 4 / 3;
    }
}
/* /Components/Sections/Home/ServicesDetailSection.razor.rz.scp.css */
.details__inner[b-4zr7vi2x7y] {
    max-width: 60rem;
}

.acc[b-4zr7vi2x7y] {
    display: grid;
    gap: 1rem;
}

.acc__item[b-4zr7vi2x7y] {
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.acc__summary[b-4zr7vi2x7y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.4rem;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    list-style: none;
    transition: background-color .15s ease;
}

.acc__summary[b-4zr7vi2x7y]::-webkit-details-marker {
    display: none;
}

.acc__summary:hover[b-4zr7vi2x7y] {
    background-color: var(--brand-soft);
}

.acc__icon[b-4zr7vi2x7y] {
    position: relative;
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
}

.acc__icon[b-4zr7vi2x7y]::before,
.acc__icon[b-4zr7vi2x7y]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: .95rem;
    height: 2px;
    background-color: var(--brand);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
}

.acc__icon[b-4zr7vi2x7y]::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.acc__item[open] .acc__icon[b-4zr7vi2x7y]::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0);
}

.acc__panel[b-4zr7vi2x7y] {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.75rem;
    padding: 0 1.4rem 1.5rem;
    animation: acc-fade-b-4zr7vi2x7y .25s ease;
}

@keyframes acc-fade-b-4zr7vi2x7y {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.acc__text > :last-child[b-4zr7vi2x7y] {
    margin-bottom: 0;
}

.acc__text--full[b-4zr7vi2x7y] {
    grid-column: 1 / -1;
}

.acc__steps-head[b-4zr7vi2x7y] {
    font-weight: 700;
    margin-bottom: .4rem;
}

.acc__steps[b-4zr7vi2x7y] {
    margin: 0;
    padding-left: 1.2rem;
}

.acc__steps li[b-4zr7vi2x7y] {
    margin-bottom: .35rem;
}

.acc__media[b-4zr7vi2x7y] {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.acc__media figure[b-4zr7vi2x7y] {
    margin: 0;
}

.acc__media img[b-4zr7vi2x7y] {
    width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.acc__media figcaption[b-4zr7vi2x7y] {
    margin-top: .35rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 760px) {
    .acc__panel[b-4zr7vi2x7y] {
        grid-template-columns: 1fr;
    }

    .acc__media[b-4zr7vi2x7y] {
        grid-template-columns: 1fr 1fr;
    }
}
/* /Components/Sections/Home/ServicesOverviewSection.razor.rz.scp.css */
.overview__grid[b-g9ofmlvu2p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 1.75rem;
}

.service-card[b-g9ofmlvu2p] {
    display: flex;
    flex-direction: column;
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover[b-g9ofmlvu2p] {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card__media[b-g9ofmlvu2p] {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.service-card__media img[b-g9ofmlvu2p] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.service-card:hover .service-card__media img[b-g9ofmlvu2p] {
    transform: scale(1.05);
}

.service-card__body[b-g9ofmlvu2p] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.4rem 1.4rem 1.5rem;
}

.service-card__body h3[b-g9ofmlvu2p] {
    margin-bottom: .5rem;
}

.service-card__body p[b-g9ofmlvu2p] {
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.service-card__link[b-g9ofmlvu2p] {
    margin-top: auto;
    align-self: flex-start;
    font-weight: 700;
    color: var(--brand-dark);
}

.service-card__link[b-g9ofmlvu2p]::after {
    content: " →";
    transition: margin-left .15s ease;
}

.service-card__link:hover[b-g9ofmlvu2p]::after {
    margin-left: .25rem;
}
/* /Components/Sections/Impressum/ImpressumSection.razor.rz.scp.css */
.legal__header[b-0d901xvk9o] {
    max-width: 60rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.legal__header p[b-0d901xvk9o] {
    color: var(--muted);
    margin: 0;
}

.legal__grid[b-0d901xvk9o] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
}

.legal__col h2[b-0d901xvk9o] {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: .5rem;
}

.legal__col h2:first-child[b-0d901xvk9o] {
    margin-top: 0;
}

.legal__col p[b-0d901xvk9o] {
    color: var(--ink-soft);
}

.legal__block[b-0d901xvk9o] {
    padding: .9rem 1.1rem;
    background-color: var(--bg-alt);
    border-left: 4px solid var(--brand-light);
    border-radius: var(--radius-sm);
}

@media (max-width: 760px) {
    .legal__grid[b-0d901xvk9o] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/BeforeAfterGallery.razor.rz.scp.css */
.gallery__grid[b-wmftoii423] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 24rem), 1fr));
    gap: 1.5rem;
}

.gallery__grid--single[b-wmftoii423] {
    grid-template-columns: min(100%, 36rem);
    justify-content: center;
}

.ba-card[b-wmftoii423] {
    margin: 0;
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ba-card:hover[b-wmftoii423] {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.ba-card__media[b-wmftoii423] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background-color: var(--line);
}

.ba-card__shot[b-wmftoii423] {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.ba-card__shot img[b-wmftoii423] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.ba-card__shot:hover img[b-wmftoii423] {
    transform: scale(1.06);
}

.ba-card__badge[b-wmftoii423] {
    position: absolute;
    top: .6rem;
    left: .6rem;
    z-index: 1;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(2px);
}

.ba-card__badge--before[b-wmftoii423] { background-color: rgba(31, 41, 51, .82); }
.ba-card__badge--after[b-wmftoii423] { background-color: var(--brand); }

.ba-card__caption[b-wmftoii423] {
    padding: .85rem 1.1rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-align: center;
}
