:root {
    /* Brand colors */
    --c-highlight: #EFCEA3;
    --c-highlight-soft: #FBEAD5;
    --c-highlight-tone-1: #A28567;
    --c-highlight-tone-2: #6A4D34;
    --c-dark-brown: #462F1D;
    --c-dark-brown-tone-1: #4D3422;
    --c-dark-brown-tone-2: #5F442D;
    --c-card-bright: #F9E7D0;
    --c-card-soft: #EEDEC8;
    --c-card-soft-2: #F0DABD;
    --c-background-light: #FFFAF3;
    --c-background-mid: #F5ECE0;
    --c-background-dark: #462F1D;
    --c-text-contrast-soft: #F8EAD8;

    /* Neutral colors */
    --c-white: #ffffff;
    --c-black: #000000;

    /* Typography */
    --ff-neulis: "Inter", Arial, sans-serif;
    --ff-neulis-hairline: "Inter", Arial, sans-serif;
    --c-text-dark: #563C28;
    --c-text-light: #82634A;
    --c-text-light-2: #F2EADF;

    /* Layout spacing */
    --size-container-max: 1400px;
    --space-container-inline: 20px;
    --space-section-desktop: 120px;
    --space-section-tablet: 88px;
    --space-section-mobile: 72px;
}

.map-consent-wrapper {
    position: relative;
    width: 100%;
    max-width: 660px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--c-background-mid);
}

.map-consent-wrapper .google-maps {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.map-consent-wrapper.is-accepted .google-maps {
    opacity: 1;
    pointer-events: auto;
}

#cc-main .cm__btn,
#cc-main .pm__btn {
    border-radius: 999px;
}

#cc-main {
    --cc-font-family: var(--ff-neulis);
    --cc-bg: var(--c-background-light);
    --cc-primary-color: var(--c-text-dark);
    --cc-secondary-color: var(--c-text-light);
    --cc-btn-primary-bg: var(--c-text-dark);
    --cc-btn-primary-border-color: var(--c-text-dark);
    --cc-btn-primary-color: var(--c-highlight);
    --cc-btn-primary-hover-bg: var(--c-text-light);
    --cc-btn-primary-hover-border-color: var(--c-text-light);
    --cc-btn-primary-hover-color: var(--c-highlight);
    --cc-btn-secondary-bg: var(--c-card-bright);
    --cc-btn-secondary-border-color: var(--c-card-bright);
    --cc-btn-secondary-color: var(--c-text-dark);
    --cc-btn-secondary-hover-bg: var(--c-card-soft);
    --cc-btn-secondary-hover-border-color: var(--c-card-soft);
    --cc-btn-secondary-hover-color: var(--c-text-dark);
    --cc-toggle-on-bg: var(--c-text-dark);
    --cc-toggle-off-bg: var(--c-card-soft);
    --cc-cookie-category-block-bg: var(--c-background-mid);
    --cc-cookie-category-block-border: var(--c-card-soft);
    --cc-cookie-category-block-hover-bg: var(--c-card-bright);
    --cc-cookie-category-block-hover-border: var(--c-card-bright);
}

.section-legal-hero {
    height: 54svh;
    min-height: 420px;
    background: var(--c-background-mid);
}

.section-legal-hero .container {
    padding: 120px var(--space-container-inline) 72px;
}

.section-legal-hero .text-container {
    max-width: 920px;
}

.section-legal-content {
    padding: var(--space-section-desktop) 0;
    background: var(--c-background-light);
}

.legal-content-wrapper {
    display: grid;
    gap: 48px;
    max-width: 920px;
}

.legal-content-block {
    display: grid;
    gap: 14px;
}

.legal-content-block h2 {
    font-size: 1.75rem;
}

.legal-content-block p,
.legal-content-block a {
    color: var(--c-text-light);
    font-size: 1.125rem;
}

.legal-content-block a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

@keyframes focus-marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--marquee-distance, 50%)));
    }
}

section.section-reveal,
body:not(#page-home) main.section-reveal {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(0.985);
    filter: blur(7px);
    will-change: opacity, transform, filter;
    transition:
        opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

section.section-reveal.is-visible,
body:not(#page-home) main.section-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

body {
    font-family: var(--ff-neulis);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--c-background-light);
    padding-top: 0;
    overflow-x: hidden;
}

main {
    height: 100svh;

    .hero-img-2 {
        max-width: 700px;
        width: 100%;
    }
}

body:not(#page-home) main .container {
    width: 100%;
}

body:not(#page-home) main .text-container,
body:not(#page-home) main .hero-img-wrapper {
    flex: 1 1 0;
    width: 50%;
    max-width: 50%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
strong,
input,
textarea,
button {
    font-family: var(--ff-neulis);
    color: inherit;
}

p,
a,
li,
span,
label,
input,
textarea,
button {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.875rem;
    color: var(--c-text-dark);
    font-weight: normal;
}

h2 {
    font-size: 3rem;
    color: var(--c-text-dark);
    font-weight: normal;
}

h3 {
    font-size: 1.4375rem;
    font-weight: 500;
    color: var(--c-text-dark);
}

h4 {
    font-size: 1.728rem;
}

h5 {
    font-size: 1.44rem;
}

h6 {
    font-size: 1.2rem;
}

.text-1 {
    font-size: 1.375rem;
    color: var(--c-text-light);
    line-height: 1.4;
}

.sub-titel-1 {
    font-size: 1rem;
    color: var(--c-text-light);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.15rem;
}

.card-p-1 {
    font-size: 1rem;
    color: var(--c-text-dark);
    line-height: 1.5;
}

/* buttons */
.btn-nav-kontakt {
    background-color: var(--c-highlight);
    color: var(--c-text-dark);
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;

    &:hover {
        background-color: var(--c-card-bright);
    }
}

@media (max-width: 1240px) {
    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2.625rem;
    }

    .text-1 {
        font-size: 1.25rem;
    }

    #page-home .section-about-me .container,
    #page-home .section-treatment .container,
    #page-home .section-contact .container {
        gap: 48px;
    }

    #page-home .section-about-me .container {
        align-items: center;
    }

    #page-home .section-osteopathie .card-wrapper-1 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    #page-home .section-osteopathie .card-wrapper-1 .card:last-child {
        grid-column: 1 / -1;
    }

    #page-home .section-treatment .container,
    #page-home .section-contact .container {
        flex-direction: column;
        align-items: stretch;
    }

    #page-home .section-treatment .text-wrapper,
    #page-home .section-contact .text-wrapper {
        max-width: none;
        width: 100%;
    }

    #page-home .section-contact .container {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #page-home .section-contact .text-wrapper {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    #page-home .section-contact .kontakt-img {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    #page-home .section-treatment .text-wrapper {
        align-items: center;
        text-align: center;
    }

    #page-home .section-treatment .btn-secondary {
        align-self: center;
    }

    #page-home .section-treatment .card-wrapper-2,
    #page-home .section-preis .card-wrapper-3 {
        width: 100%;
    }

    #page-home .section-treatment .card-wrapper-2 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        grid-auto-rows: auto;
        grid-column-gap: 0;
        grid-row-gap: 24px;
    }

    #page-home footer .legal-container,
    #page-home footer .link-wrapper {
        gap: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {

    section.section-reveal,
    body:not(#page-home) main.section-reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

@media (max-width: 820px) {
    h1 {
        font-size: 2.75rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 2.125rem;
        line-height: 1.15;
    }

    h3 {
        font-size: 1.25rem;
    }

    .text-1 {
        font-size: 1.125rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-width: 0;
    }

    #page-home .section-brown-info {
        padding: var(--space-section-tablet) 0 32px;
    }

    #page-home .section-brown-info h2 {
        max-width: 100%;
        padding: 0 16px;
        font-size: 1.5rem;
    }

    #page-home .section-brown-info .focus-container {
        gap: 14px;
    }

    #page-home .section-brown-info .focus-wrapper,
    #page-home .section-brown-info .focus-set,
    #page-home .section-brown-info .focus-wrapper span {
        font-size: 1rem;
    }

    #page-home .section-about-me,
    #page-home .section-osteopathie,
    #page-home .section-treatment,
    #page-home .section-preis,
    #page-home .section-testimonials,
    #page-home .section-faq,
    #page-home .section-contact {
        padding: var(--space-section-tablet) 0;
    }

    #page-home .section-about-me .container,
    #page-home .section-contact .container {
        flex-direction: column;
        gap: 40px;
    }

    #page-home .section-about-me .text-wrapper,
    #page-home .section-treatment .text-wrapper {
        align-items: center;
        text-align: center;
    }

    #page-home .section-about-me .btn-subtle-arrow,
    #page-home .section-treatment .btn-secondary {
        align-self: center;
    }

    #page-home .section-about-me .img-wrapper img,
    #page-home .section-contact .kontakt-img {
        max-width: 100%;
    }

    #page-home .section-osteopathie .container,
    #page-home .section-preis .container,
    #page-home .section-testimonials .container {
        gap: 32px;
    }

    #page-home .section-osteopathie .card-wrapper-1,
    #page-home .section-treatment .card-wrapper-2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #page-home .section-osteopathie .card-wrapper-1 .card:last-child {
        grid-column: auto;
    }

    #page-home .section-treatment .container {
        gap: 40px;
    }

    #page-home .section-treatment .card-wrapper-2 {
        grid-template-rows: none;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }

    #page-home .section-preis .text-1,
    #page-home .section-contact .text-1,
    #page-home .section-testimonials .testimonial-p {
        max-width: 100%;
    }

    #page-home .section-preis .container,
    #page-home .section-contact .container {
        text-align: center;
    }

    #page-home .section-preis .btn-wrapper,
    #page-home .section-contact .btn-wrapper {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    #page-home .section-preis .btn-wrapper .btn-primary,
    #page-home .section-preis .btn-wrapper .btn-secondary,
    #page-home .section-contact .btn-wrapper .btn-primary,
    #page-home .section-contact .btn-wrapper .btn-secondary {
        max-width: 320px;
    }

    #page-home .section-preis .card-wrapper-3 .card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    #page-home .section-preis .card-wrapper-3 .icon-wrapper {
        width: fit-content;
    }

    #page-home .section-preis .card-wrapper-3 .card>div:last-child {
        text-align: left;
        align-items: flex-start;
    }

    #page-home .section-testimonials .testimonial-p {
        font-size: 1.5rem;
    }

    #page-home .section-testimonials .testimonials-slider {
        padding: 0;
    }

    #page-home .section-testimonials .testimonials-viewport {
        min-height: 340px;
    }

    #page-home .section-testimonials .testimonial-bottom-row {
        flex-direction: column;
        max-width: 100%;
    }

    #page-home .section-testimonials .testimonial-progress {
        width: 100%;
    }

    #page-home .section-faq .faq-item {
        padding: 0 22px;
        border-radius: 22px;
    }

    #page-home .section-faq .faq-item summary {
        padding: 22px 0;
        gap: 18px;
    }

    #page-home .section-faq .faq-item p {
        padding: 0 0 22px;
    }

    #page-home .section-contact .container {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #page-home .section-contact .text-wrapper {
        align-items: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    #page-home .section-contact .kontakt-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    #page-home footer {
        padding: 24px 16px;
    }

    #page-home footer .img-wrapper {
        padding: 28px;
        margin-bottom: 24px;
    }

    #page-home footer .legal-container,
    #page-home footer .link-wrapper,
    #page-home footer .legal-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #page-home footer .legal-container>p {
        order: 3;
    }

    #page-home footer .link-wrapper {
        order: 1;
    }

    #page-home footer .legal-wrapper {
        order: 2;
    }

    #page-home footer .social-wrapper {
        order: 1;
        justify-content: center;
    }

    #page-home footer .legal-link {
        padding: 0;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    .sub-titel-1 {
        letter-spacing: 0.12rem;
    }

    #page-home .section-brown-info {
        padding-top: var(--space-section-mobile);
    }

    #page-home .section-brown-info h2 {
        font-size: 1.25rem;
        padding: 0 12px;
    }

    #page-home .section-brown-info .focus-wrapper,
    #page-home .section-brown-info .focus-set,
    #page-home .section-brown-info .focus-wrapper span {
        font-size: 0.9375rem;
    }

    #page-home .section-about-me,
    #page-home .section-osteopathie,
    #page-home .section-treatment,
    #page-home .section-preis,
    #page-home .section-testimonials,
    #page-home .section-faq,
    #page-home .section-contact {
        padding: var(--space-section-mobile) 0;
    }

    #page-home .section-osteopathie .card-wrapper-1 .card,
    #page-home .section-treatment .card-wrapper-2 .card {
        border-radius: 28px;
        padding: 24px;
    }

    #page-home .section-contact .btn-wrapper,
    #page-home .section-preis .btn-wrapper {
        gap: 16px;
    }

    #page-home .section-testimonials .testimonial-p {
        font-size: 1.25rem;
    }

    #page-home .section-testimonials .testimonials-slider {
        gap: 24px;
        padding: 0;
    }

    #page-home .section-testimonials .testimonials-viewport {
        min-height: 360px;
    }

    #page-home .section-testimonials .controls-wrapper {
        gap: 14px;
    }

    #page-home .section-faq .faq-item {
        padding: 0 18px;
        border-radius: 18px;
    }

    #page-home .section-faq .faq-item summary {
        padding: 18px 0;
        font-size: 0.95rem;
    }

    #page-home .section-faq .faq-item p {
        font-size: 0.95rem;
        padding-bottom: 18px;
    }

    #page-home footer .link-wrapper,
    #page-home footer .social-wrapper {
        width: 100%;
    }

    #page-home footer .social-wrapper {
        justify-content: center;
    }
}

.btn-subtle-arrow {
    font-size: 1.25rem;
    color: var(--c-text-dark);
    line-height: 1;
    padding: 10px 0;
    margin-top: -10px;
    cursor: pointer;
    width: fit-content;

    .btn-arrow-link {
        width: 18px;
        height: auto;
    }

    &:hover {
        border-bottom: 1px solid var(--c-text-dark);
    }
}

.btn-primary {
    background-color: var(--c-text-dark);
    color: var(--c-highlight);
    font-size: 1.125rem;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.1s ease;
    display: block;
    width: fit-content;
    cursor: pointer;
    min-width: 200px;
    text-align: center;

    &:hover {
        background-color: var(--c-text-light);
        color: var(--c-highlight);
    }
}

.btn-secondary {
    color: var(--c-text-dark);
    font-size: 1.125rem;
    border: 1px solid var(--c-highlight);
    background-color: rgba(239, 206, 163, 0.2);
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.1s ease;
    display: block;
    width: fit-content;
    cursor: pointer;
    min-width: 200px;
    text-align: center;

    &:hover {
        background-color: var(--c-text-dark);
        color: var(--c-highlight);
        border-color: var(--c-text-dark);
    }
}

/* navigation */
nav {
    background-color: rgba(229, 214, 205, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    position: fixed;
    top: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: var(--size-container-max);
    padding: 20px 28px;
    transition: transform 0.35s ease, opacity 0.35s ease, border-radius 0.25s ease;

    &.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, calc(-100% - 24px));
    }

    &.is-menu-open {
        border-radius: 32px;
    }

    .nav-toggle {
        display: none;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        cursor: pointer;
        background-color: var(--c-card-bright);
        gap: 5px;
        flex-shrink: 0;
        transition: background-color 0.2s ease;

        &:hover,
        &:focus-visible {
            background-color: var(--c-highlight);
        }

        .nav-toggle-line {
            display: block;
            width: 20px;
            height: 2px;
            border-radius: 999px;
            background-color: var(--c-text-dark);
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        &.is-active {
            .nav-toggle-line:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .nav-toggle-line:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle-line:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
        }
    }

    .nav-item-wrapper {
        margin-left: auto;
    }

    .nav-item-link {
        color: var(--c-text-dark);
        cursor: pointer;
        transition: color 0.2s ease;

        &:hover,
        &:focus-visible {
            color: var(--c-highlight-tone-1);
        }
    }

    .btn-nav-logo,
    .btn-nav-kontakt {
        cursor: pointer;
    }

    .btn-nav-logo {
        transition: opacity 0.2s ease;

        &:hover,
        &:focus-visible {
            opacity: 0.75;
        }
    }

    .nav-img-wrapper {
        a {
            img {
                height: 38px;
            }
        }
    }
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 1100px) {
    nav {
        padding: 18px 22px;

        .nav-item-wrapper {
            gap: 24px;
        }

        .nav-item-list {
            gap: 24px;
        }
    }
}

@media (max-width: 1030px) {
    nav {
        top: 20px;
        right: 20px;
        left: 20px;
        bottom: auto;
        width: calc(100% - 40px);
        min-width: 0;
        max-width: none;
        padding: 0;
        background-color: transparent;
        backdrop-filter: none;
        border-radius: 0;
        transform: none;
        gap: 12px;
        justify-content: space-between;

        &.is-hidden {
            transform: translateY(calc(-100% - 24px));
        }

        &.is-menu-open {
            border-radius: 0;
        }

        .nav-img-wrapper {
            position: relative;
            z-index: 1002;
            display: flex;
            align-items: center;
            flex: 1 1 auto;
            height: 60px;
            min-width: 0;
            overflow: hidden;
            border-radius: 50px;
            background-color: var(--c-card-bright);
            box-shadow: 0 20px 40px rgba(69, 45, 30, 0.16);

            a {
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 0 22px;

                img {
                    max-width: 100%;
                    height: 36px;
                }
            }
        }

        .nav-toggle {
            display: inline-flex;
            position: relative;
            z-index: 1002;
            width: 60px;
            height: 60px;
            box-shadow: 0 20px 40px rgba(69, 45, 30, 0.16);
        }

        .nav-item-wrapper {
            position: fixed;
            inset: 0;
            left: 0;
            right: 0;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            padding: var(--space-section-desktop) 28px 40px;
            margin-left: 0;
            background-color: rgba(255, 248, 243, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1001;

            &.is-open {
                display: flex;
            }
        }

        .nav-item-list {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .nav-item-link {
            display: block;
            width: 100%;
            font-size: 2rem;
            line-height: 1.2;
            padding: 10px 0;
            text-align: center;
        }

        .btn-nav-kontakt {
            width: 100%;
            max-width: 320px;
            text-align: center;
            font-size: 1.25rem;
            padding: 16px 28px;
        }
    }
}

/*home*/
#page-home {
    main {
        background-image: url("/assets/media/img/hero.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: calc(100svh + 100px);
        overflow: visible;
        position: relative;
        z-index: 2;

        .icon-batch {
            position: absolute;
            bottom: -38px;
            right: calc(50% - 38px);
            background-color: var(--c-dark-brown-tone-2);
            width: 76px;
            height: 76px;
            border-radius: 50%;
            z-index: 3;
        }
    }

    .section-about-me {
        background-color: var(--c-background-mid);
        padding: 100px 0;

        .img-wrapper img {
            max-width: 570px;
            width: 100%;
            height: auto;
        }

        .text-wrapper {
            max-width: 650px;
        }
    }

    .section-osteopathie {
        padding: var(--space-section-desktop) 0;

        .card-wrapper-1 {
            .card {
                background-color: var(--c-card-bright);
                border-radius: 40px;

                .icon {
                    width: 34px;
                    height: auto;
                }
            }
        }
    }

    .section-treatment {
        padding: var(--space-section-desktop) 0;
        background-color: var(--c-background-mid);

        .card-wrapper-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            grid-column-gap: 40px;
            grid-row-gap: 40px;

            .card {
                background-color: var(--c-background-light);
                border-radius: 40px;

                .icon-nr {
                    background-color: var(--c-highlight);
                    width: 48px;
                    height: 48px;
                    font-size: 1rem;
                    color: var(--c-text-dark);
                    border-radius: 50px;
                    font-weight: 500;
                }

                .card-p-1 {
                    color: var(--c-text-light);
                }
            }
        }
    }

    .section-preis {
        padding: var(--space-section-desktop) 0;

        >.container>.text-1 {
            text-align: center;
        }

        .card-wrapper-3 {
            .card {
                flex: 1;
                background-color: var(--c-card-bright);
                border-radius: 40px;

                .icon-wrapper {
                    background-color: var(--c-highlight);
                    width: auto;
                    padding: 15px;
                    border-radius: 20px;
                    align-self: stretch;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    img {
                        width: 34px;
                        height: auto;
                    }
                }

                h3 {
                    font-size: 1.5rem;
                    font-weight: 400;
                }

                .card-p-1 {
                    color: var(--c-text-light);
                }

                p {
                    font-size: 1rem;
                    color: var(--c-text-light);
                }
            }
        }
    }

    .section-testimonials {
        background-color: var(--c-background-dark);
        background-image: url("/assets/media/img/background-circles-dark-big.png");
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: var(--space-section-desktop) 0;
        color: var(--c-text-contrast-soft);

        .container {
            position: relative;
        }

        .testimonial-quote-icon {
            opacity: 0.95;
        }

        .testimonials-slider {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
            padding: 0;
        }

        .testimonials-viewport {
            display: grid;
            min-height: 300px;
            width: 100%;
        }

        .testimonial-slide {
            grid-area: 1 / 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(18px);
            pointer-events: none;
            transition: opacity 0.45s ease, transform 0.45s ease;
        }

        .testimonial-slide.is-active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .testimonial-p {
            font-size: 1.875rem;
            line-height: 1.4;
            font-style: italic;
            max-width: 940px;
            margin: 0 auto;
            text-wrap: balance;
        }

        .person-wrapper {
            gap: 6px;
        }

        .person-wrapper .name {
            font-size: 1.125rem;
            color: var(--c-highlight);
            letter-spacing: 0.03em;
        }

        .person-wrapper .title {
            font-size: 0.875rem;
            color: var(--c-highlight-tone-1);
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .testimonial-bottom-row {
            gap: 24px;
            flex-direction: column;
            width: 100%;
            max-width: 940px;
            align-items: center;
            margin: 0 auto;
        }

        .testimonial-progress {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            width: 100%;
        }

        .testimonial-progress-item {
            width: 100%;
            height: 4px;
            border-radius: 999px;
            background-color: rgba(243, 213, 174, 0.18);
            overflow: hidden;
        }

        .testimonial-progress-item::after {
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--c-highlight) 0%, #fff0dd 100%);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.35s ease;
        }

        .testimonial-progress-item.is-active::after {
            transform: scaleX(1);
        }

        .controls-wrapper .btn-previous,
        .controls-wrapper .btn-next {
            background-color: var(--c-highlight);
            border-radius: 50px;
            width: 47px;
            height: 47px;
            transition: all 0.1s ease;
            cursor: pointer;

            &:hover {
                background-color: var(--c-card-bright);
            }
        }
    }
}

.section-contact {
    padding: var(--space-section-desktop) 0 240px;

    .text-wrapper {
        max-width: 600px;
    }

    .kontakt-img {
        max-width: 500px;
        width: 100%;
        height: auto;
    }

    .logo-vod {
        max-width: 170px;
        width: 100%;
        height: auto;
    }
}

footer {
    background-color: var(--c-background-dark);
    padding: 40px;
    color: var(--c-highlight-tone-1);

    .img-wrapper {
        width: 100%;
        height: auto;
        background: url("/assets/media/img/footer.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;

        .logo-circle {
            max-width: 174px;
            width: 100%;
            height: auto;
        }

    }

    .legal-link:hover {
        color: var(--c-highlight);
    }

    .social-wrapper .social-icon {
        background-color: var(--c-highlight-tone-2);
        width: 40px;
        height: 40px;
        border-radius: 100px;
        transition: all 0.1s ease;

        &:hover {
            background-color: var(--c-highlight-tone-1);
        }
    }
}

@media (max-width: 980px) {
    #page-home .section-about-me .container {
        flex-direction: column;
        gap: 40px;
    }

    #page-home .section-about-me .text-wrapper {
        align-items: center;
        text-align: center;
    }

    #page-home .section-about-me .btn-subtle-arrow {
        align-self: center;
    }

    #page-home .section-preis .card-wrapper-3 {
        flex-direction: column;
    }

    #page-home .section-treatment .card-wrapper-2 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 40px;
    }
}

.section-brown-info {
    position: relative;
    z-index: 1;
    background-color: var(--c-dark-brown);
    background-image: url("/assets/media/img/background-circles-dark.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0 40px 0;

    >.container {
        width: 100%;
        max-width: none;
    }

    h2 {
        color: var(--c-text-light-2);
        font-size: 1.75rem;
        font-weight: 300;
        line-height: 1.4;
        max-width: 750px;
    }

    .focus-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
        overflow: hidden;
    }

    .focus-wrapper,
    .focus-set,
    .focus-wrapper span {
        color: var(--c-highlight);
        font-size: 1.125rem;
        font-weight: lighter;
    }

    .focus-wrapper {
        display: flex;
        width: max-content;
        min-width: 100%;
        align-items: center;
        flex-wrap: nowrap;
        white-space: nowrap;
        will-change: transform;
        --marquee-distance: 50%;
        --marquee-duration: 42s;
    }

    .focus-set {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        white-space: nowrap;
        padding-right: 20px;
    }

    .focus-separator {
        opacity: 0.7;
    }

    .focus-wrapper-1 {
        animation: focus-marquee-left var(--marquee-duration) linear infinite;
    }

}

/*page-osteopathie*/

#page-osteopathie {
    .section-text-blog {
        max-width: 750px;

        h2 {
            font-size: 2.25rem;
        }

        p {
            font-size: 1.375rem;
            color: var(--c-text-light);
        }
    }
}

/*page-about*/

#page-about {
    .section-begeisterung {
        padding: var(--space-section-desktop) 0;

        .container {
            .text-container {
                max-width: 650px;
            }

            .img-wrapper img {
                max-width: 550px;
            }
        }
    }

    .section-light-block-text {
        background: url(/assets/media/img/background-circles-light.png);
        background-color: var(--c-background-mid);
        padding: 60px 0;

        .container {
            p {
                font-size: 1.375rem;
                line-height: 1.6;
                color: var(--c-text-light);
            }
        }
    }

    .section-timeline {
        padding: var(--space-section-desktop) 0;

        .container {
            .card {
                max-width: 500px;

                img {
                    background-color: var(--c-background-mid);
                    border-radius: 10px;
                    width: 60px;
                    height: 60px;
                }

            }

            p {
                font-size: 1.375rem;
                color: var(--c-text-light);
                line-height: 1.6;
            }

            .timeline-card {
                max-width: 550px;
            }

            .vertical-line {
                width: 2px;
                height: 70px;
                background-color: var(--c-highlight-tone-1);
            }
        }
    }
}


/*page-ablauf*/

#page-ablauf {
    .section-ablauf {
        padding: var(--space-section-desktop) 0;

        .container {
            .card {
                .number-container {
                    width: 170px;
                    height: 170px;
                    border-radius: 500px;
                    color: var(--c-text-dark);
                    font-size: 4.5rem;
                    font-weight: 400;
                }

                .odd {
                    background-color: var(--c-background-mid);
                }

                .even {
                    background-color: var(--c-card-bright);
                }

                .text-container {
                    max-width: 750px;
                }
            }
        }

    }

    .section-light-bullets {
        background-color: var(--c-background-mid);
        padding: var(--space-section-desktop) 0;

        h2 {
            max-width: 750px;
        }

        .bullet-wrapper {
            max-width: 370px;

            .bullet-icon {
                background-color: var(--c-highlight);
                border-radius: 10px;
                width: 60px;
                height: 60px;
            }
        }
    }
}

.section-faq {
    padding: var(--space-section-desktop) 0;
    background-color: var(--c-background-light);

    .text-wrapper {
        max-width: 640px;
    }

    .faq-list {
        width: 100%;
        max-width: 1000px;
    }

    .faq-item {
        width: 100%;
        background-color: var(--c-background-mid);
        border-radius: 28px;
        color: var(--c-text-dark);
        font-size: 1rem;
        padding: 0 28px;
    }

    .faq-item summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 26px 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--c-text-dark);
    }

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

    .faq-item summary::after {
        content: "+";
        flex-shrink: 0;
        font-size: 1.5rem;
        line-height: 1;
        color: var(--c-highlight-tone-2);
        transition: transform 0.2s ease;
    }

    .faq-item[open] summary::after {
        transform: rotate(45deg);
    }

    .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
    }

    .faq-answer>* {
        overflow: hidden;
    }

    .faq-item[open] .faq-answer {
        grid-template-rows: 1fr;
    }

    .faq-item p {
        font-size: 1rem;
        color: var(--c-text-dark);
        line-height: 1.6;
        padding: 0 42px 26px 0;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .faq-item[open] p {
        opacity: 1;
        transform: translateY(0);
    }
}

/*page-price*/

#page-price {
    .section-card {
        padding: var(--space-section-desktop) 0;

        .container {
            .card {
                background-color: var(--c-background-mid);
                padding: 30px;
                border-radius: 40px;

                .card-icon {
                    background-color: var(--c-card-soft);
                    border-radius: 10px;
                    padding: 10px;
                    width: 60px;
                    height: 60px;
                }

                p {
                    font-size: 1.125rem;
                    line-height: 1.6;
                }

                .text-bold {
                    font-weight: 500;
                }
            }
        }
    }
}

/*page-kontakt*/

#page-contact {
    .section-standort {
        padding: var(--space-section-desktop) 0;

        .container {
            .standort-1-wrapper {
                h4 {
                    font-size: 1.5rem;
                    color: var(--c-text-dark);
                    font-weight: 400;
                }

                p, li, a {
                    font-size: 1.375rem;
                    color: var(--c-text-light);
                }

                .location-icon {
                    background-color: var(--c-card-bright);
                    border-radius: 20px;
                    width: 60px;
                    height: 60px;
                }
            }

            .google-maps {
                width: 100%;
                max-width: 660px;
                height: 400px;
                border-radius: 20px;
            }
        }
    }

}

/* subpages responsive */
@media (min-width: 993px) and (max-width: 1240px) {

    body:not(#page-home) main .container,
    #page-about .section-begeisterung .container,
    #page-price .section-card .card-wrapper,
    #page-contact .section-standort .container {
        gap: 48px;
    }
}

@media (max-width: 992px) {
    body:not(#page-home) main {
        height: auto;
        min-height: 0;
        padding-bottom: 40px;
    }

    body:not(#page-home) main .container {
        gap: 40px;
    }

    #page-about .section-begeisterung,
    #page-about .section-timeline,
    #page-ablauf .section-ablauf,
    #page-ablauf .section-light-bullets,
    #page-price .section-card,
    #page-contact .section-standort,
    body:not(#page-home) .section-contact,
    body:not(#page-home) .section-faq {
        padding: var(--space-section-tablet) 0;
    }

    body:not(#page-home) .section-contact {
        padding-bottom: 120px;
    }

    #page-about .section-begeisterung .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    #page-about .section-begeisterung .text-container {
        align-items: center;
        text-align: center;
    }

    #page-about .section-begeisterung .img-wrapper {
        width: 100%;
        max-width: 560px;
    }

    #page-about .section-light-block-text .text-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    #page-about .section-light-block-text p {
        text-align: left;
    }

    #page-about .section-timeline .row-1 {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-bottom: 72px;
    }

    #page-about .section-timeline .row-1 .card,
    #page-about .section-timeline .timeline-card {
        width: 100%;
        max-width: 640px;
    }

    #page-osteopathie .section-text-blog .text-wrapper {
        margin-bottom: 40px;
    }

    #page-osteopathie .section-text-blog h2 {
        font-size: 2rem;
    }

    #page-osteopathie .section-text-blog p {
        font-size: 1.1875rem;
    }

    #page-ablauf .section-ablauf .card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    #page-ablauf .section-ablauf .number-container {
        width: 140px;
        height: 140px;
        font-size: 3.5rem;
    }

    #page-ablauf .section-light-bullets .bullet-container {
        flex-direction: column;
        align-items: center;
        margin-top: 32px;
    }

    #page-ablauf .section-light-bullets .bullet-wrapper {
        width: 100%;
        max-width: 500px;
    }

    #page-price .section-card .card-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    #page-contact .section-standort .container {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    #page-contact .section-standort.is-reverse .container {
        flex-direction: column-reverse;
    }

    #page-contact .section-standort .container .google-maps {
        max-width: 100%;
        height: 340px;
    }

    #page-contact .section-standort .container .map-consent-wrapper {
        max-width: 100%;
        height: 340px;
    }

    body:not(#page-home) .section-contact .container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    body:not(#page-home) .section-contact .text-wrapper {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 620px;
    }

    body:not(#page-home) .section-contact .btn-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    body:not(#page-home) .section-contact .btn-wrapper .btn-primary,
    body:not(#page-home) .section-contact .btn-wrapper .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    body:not(#page-home) .section-contact .kontakt-img {
        max-width: 500px;
    }
}

@media (max-width: 850px) {
    #page-ablauf .section-ablauf .card {
        align-items: center;
        text-align: center;
    }

    #page-ablauf .section-ablauf .number-container {
        align-self: center;
    }

    #page-ablauf .section-ablauf .text-container {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 820px) {
    body:not(#page-home) main .container {
        flex-direction: column-reverse;
        gap: 32px;
        padding: 24px var(--space-container-inline) 40px;
    }

    body:not(#page-home) main .text-container,
    body:not(#page-home) main .hero-img-wrapper {
        width: 100%;
        max-width: 100%;
    }

    body:not(#page-home) main .text-container {
        align-items: center;
        text-align: center;
    }

    body:not(#page-home) main .hero-img-wrapper {
        display: flex;
        justify-content: center;
    }

    #page-about .section-light-block-text {
        padding: 48px 0;
    }

    #page-about .section-timeline .row-1 {
        margin-bottom: 56px;
    }

    body:not(#page-home) footer {
        padding: 24px var(--space-container-inline);
    }

    body:not(#page-home) footer .img-wrapper {
        padding: 28px;
        margin-bottom: 24px;
    }

    body:not(#page-home) footer .legal-container,
    body:not(#page-home) footer .link-wrapper,
    body:not(#page-home) footer .legal-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    body:not(#page-home) footer .legal-container {
        gap: 16px;
    }

    body:not(#page-home) footer .link-wrapper {
        gap: 16px;
    }

    body:not(#page-home) footer .social-wrapper {
        justify-content: center;
    }

    body:not(#page-home) footer .legal-link {
        padding: 0;
    }
}

@media (max-width: 560px) {
    body:not(#page-home) main {
        padding-bottom: 32px;
    }

    body:not(#page-home) main .container {
        gap: 24px;
        padding: 16px var(--space-container-inline) 32px;
    }

    #page-about .section-begeisterung,
    #page-about .section-timeline,
    #page-ablauf .section-ablauf,
    #page-ablauf .section-light-bullets,
    #page-price .section-card,
    #page-contact .section-standort,
    body:not(#page-home) .section-faq,
    body:not(#page-home) .section-contact {
        padding: var(--space-section-mobile) 0;
    }

    body:not(#page-home) .section-contact {
        padding-bottom: 96px;
    }

    #page-osteopathie .section-text-blog h2 {
        font-size: 1.75rem;
    }

    #page-osteopathie .section-text-blog p {
        font-size: 1rem;
        text-align: left;
    }

    #page-ablauf .section-ablauf .number-container {
        width: 120px;
        height: 120px;
        font-size: 2.75rem;
    }

    #page-ablauf .section-ablauf .sub-titel-1 {
        max-width: 100%;
        line-height: 1.35;
        letter-spacing: 0.08rem;
        overflow-wrap: break-word;
    }

    #page-about .section-timeline .vertical-line {
        height: 48px;
    }

    #page-contact .section-standort .container .google-maps {
        height: 280px;
    }

    #page-contact .section-standort .container .map-consent-wrapper {
        height: 280px;
    }

    body:not(#page-home) .section-faq .faq-item {
        padding: 0 18px;
        border-radius: 18px;
    }

    body:not(#page-home) .section-faq .faq-item summary {
        padding: 18px 0;
        font-size: 0.95rem;
    }

    body:not(#page-home) .section-faq .faq-item p {
        font-size: 0.95rem;
        padding: 0 0 18px;
    }
}

@media (max-width: 1030px) {
    #page-home main {
        height: auto;
        min-height: 0;
    }

    #page-home main .container {
        min-height: 520px;
        align-items: flex-end;
        padding: 120px var(--space-container-inline) 56px;
    }

    #page-home main h1 {
        margin-bottom: 0;
    }
}

@media (max-width: 560px) {
    #page-home main .container {
        min-height: 440px;
        padding: 96px var(--space-container-inline) 40px;
    }
}
