* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background: #ffffff;
    color: #111111;

    line-height: 1.5;

    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: sticky;

    top: 0;

    z-index: 1000;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 20px 7%;

    background:
            rgba(255, 255, 255, 0.93);

    backdrop-filter: blur(16px);

    border-bottom:
            1px solid rgba(0, 0, 0, 0.06);

    transition:
            padding 0.3s ease,
            box-shadow 0.3s ease;
}

header.scrolled {
    padding-top: 13px;
    padding-bottom: 13px;

    box-shadow:
            0 10px 35px
            rgba(0, 0, 0, 0.08);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #111111;

    text-decoration: none;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: -0.8px;

    transition:
            transform 0.3s ease,
            opacity 0.3s ease;
}

.logo-kj {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 14px;

    color: #111111;

    background: #ffd200;

    font-weight: 900;

    transition:
            transform 0.4s ease,
            border-radius 0.4s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo:hover .logo-kj {
    transform:
            rotate(-5deg)
            scale(1.06);

    border-radius: 50%;
}


/* =========================================================
   NAVIGATION
========================================================= */

nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

nav a {
    position: relative;

    padding: 6px 0;

    color: #111111;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #111111;

    transition:
            width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


/* =========================================================
   ALLGEMEIN
========================================================= */

section {
    padding: 105px 7%;
}

.section-heading {
    max-width: 850px;

    margin-bottom: 50px;
}

.section-heading > span,
.owner-label,
.booking-header > span,
.brand-text > span {
    display: block;

    margin-bottom: 14px;

    color: #777777;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-size:
            clamp(
                    40px,
                    5vw,
                    60px
            );

    line-height: 1.03;

    letter-spacing: -3px;
}

.section-heading p {
    margin-top: 18px;

    color: #666666;

    font-size: 18px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 88vh;

    display: flex;

    align-items: center;

    padding-top: 65px;
}

.hero-content {
    width: 100%;

    display: grid;

    grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1.1fr);

    align-items: center;

    gap: 60px;
}

.hero-text {
    animation:
            heroText
            0.9s ease-out;
}

.hero-label {
    display: inline-block;

    margin-bottom: 23px;

    padding: 8px 14px;

    border-radius: 999px;

    background: #f1f1f1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.hero-text h1 {
    margin-bottom: 28px;

    font-size:
            clamp(
                    52px,
                    6.5vw,
                    90px
            );

    line-height: 0.95;

    letter-spacing: -5px;
}

.hero-text p {
    max-width: 530px;

    margin-bottom: 32px;

    color: #555555;

    font-size: 20px;

    line-height: 1.65;
}

.hero-buttons {
    display: flex;

    gap: 12px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 17px 27px;

    border-radius: 16px;

    color: #ffffff;

    background: #111111;

    text-decoration: none;

    font-weight: 700;

    transition:
            transform 0.3s ease,
            background 0.3s ease,
            box-shadow 0.3s ease;
}

.button:hover {
    transform:
            translateY(-4px);

    background: #292929;

    box-shadow:
            0 15px 35px
            rgba(0, 0, 0, 0.16);
}

.button span {
    transition:
            transform 0.3s ease;
}

.button:hover span {
    transform:
            translateX(5px);
}

.button-light {
    color: #111111;

    background: #eeeeee;
}

.button-light:hover {
    background: #dddddd;
}

.hero-info {
    display: flex;

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 50px;
}

.hero-info div {
    display: flex;

    flex-direction: column;
}

.hero-info strong {
    font-size: 16px;
}

.hero-info span {
    color: #777777;

    font-size: 13px;
}

.hero-image {
    position: relative;

    height: 590px;

    border-radius: 42px;

    overflow: hidden;

    box-shadow:
            0 20px 60px
            rgba(0, 0, 0, 0.12);

    animation:
            heroImage
            1s ease-out;

    transition:
            transform 0.5s ease,
            box-shadow 0.5s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
            transform 0.7s ease;
}

.hero-image:hover {
    transform:
            translateY(-8px);

    box-shadow:
            0 35px 80px
            rgba(0, 0, 0, 0.19);
}

.hero-image:hover img {
    transform:
            scale(1.035);
}

.hero-status {
    position: absolute;

    left: 24px;
    bottom: 24px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 17px;

    border-radius: 15px;

    background:
            rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(10px);

    font-size: 14px;
    font-weight: 700;
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #27a844;

    animation:
            statusPulse
            2s infinite;
}

@keyframes heroText {

    from {
        opacity: 0;

        transform:
                translateX(-40px);
    }

    to {
        opacity: 1;

        transform:
                translateX(0);
    }

}

@keyframes heroImage {

    from {
        opacity: 0;

        transform:
                translateX(40px);
    }

    to {
        opacity: 1;

        transform:
                translateX(0);
    }

}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow:
                0 0 0 4px
                rgba(39, 168, 68, 0.15);
    }

    50% {
        box-shadow:
                0 0 0 10px
                rgba(39, 168, 68, 0);
    }

}


/* =========================================================
   SERVICES
========================================================= */

.services {
    margin: 0 3%;

    padding-left: 4%;
    padding-right: 4%;

    border-radius: 45px;

    background: #f6f6f6;
}

.cards {
    display: grid;

    grid-template-columns:
            repeat(3, 1fr);

    gap: 20px;
}

.card {
    min-height: 255px;

    padding: 34px;

    border-radius: 28px;

    background: #ffffff;

    transition:
            transform 0.35s ease,
            box-shadow 0.35s ease;
}

.card:hover {
    transform:
            translateY(-10px)
            scale(1.012);

    box-shadow:
            0 25px 55px
            rgba(0, 0, 0, 0.10);
}

.card-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 18px;

    color: #ffffff;

    background: #111111;

    font-size: 27px;

    transition:
            transform 0.4s ease,
            border-radius 0.4s ease;
}

.card:hover .card-icon {
    transform:
            rotate(-5deg)
            scale(1.1);

    border-radius: 50%;
}

.card h3 {
    margin-bottom: 12px;

    font-size: 22px;
}

.card p {
    color: #666666;

    line-height: 1.7;
}


/* =========================================================
   GALERIE
========================================================= */

.gallery {
    display: grid;

    grid-template-columns:
            repeat(2, 1fr);

    gap: 18px;
}

.gallery-item {
    position: relative;

    height: 380px;

    overflow: hidden;

    border-radius: 30px;

    cursor: pointer;

    background: #eeeeee;

    transition:
            transform 0.4s ease,
            box-shadow 0.4s ease;
}

.gallery-large {
    grid-row:
            1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
            transform 0.7s ease,
            filter 0.5s ease;
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
            linear-gradient(
                    transparent 45%,
                    rgba(0, 0, 0, 0.55)
            );

    opacity: 0.7;

    transition:
            opacity 0.4s ease;
}

.gallery-item:hover {
    transform:
            translateY(-6px);

    box-shadow:
            0 25px 60px
            rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform:
            scale(1.06);
}

.gallery-overlay {
    position: absolute;

    left: 25px;
    bottom: 23px;

    z-index: 2;

    display: flex;

    flex-direction: column;

    color: #ffffff;

    transition:
            transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform:
            translateY(-5px);
}

.gallery-overlay span {
    font-size: 12px;

    opacity: 0.8;
}

.gallery-overlay strong {
    font-size: 23px;
}


/* =========================================================
   OWNER
========================================================= */

.owner {
    display: grid;

    grid-template-columns:
            0.85fr 1.15fr;

    align-items: stretch;

    gap: 45px;
}

.owner-photo {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    border-radius: 40px;

    background: #eeeeee;

    transition:
            transform 0.4s ease,
            box-shadow 0.4s ease;
}

.owner-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
            transform 0.7s ease;
}

.owner-photo:hover {
    transform:
            translateY(-7px);

    box-shadow:
            0 25px 60px
            rgba(0, 0, 0, 0.13);
}

.owner-photo:hover img {
    transform:
            scale(1.04);
}

.owner-photo-label {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 22px;

    display: flex;

    flex-direction: column;

    padding: 15px 18px;

    border-radius: 16px;

    background:
            rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(10px);

    font-size: 13px;
}

.owner-photo-label strong {
    font-size: 18px;
}

.owner-box {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px;

    border-radius: 40px;

    color: #ffffff;

    background: #111111;

    transition:
            transform 0.4s ease,
            box-shadow 0.4s ease;
}

.owner-box:hover {
    transform:
            translateY(-7px);

    box-shadow:
            0 28px 65px
            rgba(0, 0, 0, 0.18);
}

.owner-label {
    color: #888888;
}

.owner-box h2 {
    margin-bottom: 8px;

    font-size:
            clamp(
                    42px,
                    5vw,
                    60px
            );

    line-height: 1;

    letter-spacing: -3px;
}

.owner-box h3 {
    margin-bottom: 30px;

    color: #aaaaaa;

    font-size: 17px;
    font-weight: 500;
}

.owner-box p {
    margin-bottom: 21px;

    color: #cccccc;

    font-size: 18px;

    line-height: 1.75;
}

.owner-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 15px;
}

.owner-link {
    color: #ffffff;

    text-decoration: none;

    font-weight: bold;

    transition:
            transform 0.3s ease,
            opacity 0.3s ease;
}

.owner-link:hover {
    transform:
            translateX(5px);

    opacity: 0.65;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand-section {
    display: grid;

    grid-template-columns:
            1fr 420px;

    align-items: center;

    gap: 80px;

    margin: 0 7%;

    padding-left: 0;
    padding-right: 0;
}

.brand-text h2 {
    margin-bottom: 20px;

    font-size:
            clamp(
                    40px,
                    5vw,
                    60px
            );

    line-height: 1.05;

    letter-spacing: -3px;
}

.brand-text p {
    color: #666666;

    font-size: 18px;
}

.brand-logo {
    padding: 20px;

    border-radius: 35px;

    background: #f7f7f7;

    overflow: hidden;

    transition:
            transform 0.4s ease,
            box-shadow 0.4s ease;
}

.brand-logo:hover {
    transform:
            rotate(1deg)
            translateY(-5px);

    box-shadow:
            0 25px 55px
            rgba(0, 0, 0, 0.10);
}

.brand-logo img {
    width: 100%;

    display: block;

    border-radius: 25px;
}


/* =========================================================
   BOOKING
========================================================= */

.booking {
    margin: 0 3%;

    padding-left: 5%;
    padding-right: 5%;

    border-radius: 45px;

    color: #ffffff;

    background: #111111;
}

.booking-header {
    margin-bottom: 45px;
}

.booking-header > span {
    color: #888888;
}

.booking-header h2 {
    margin-bottom: 14px;

    font-size:
            clamp(
                    44px,
                    5vw,
                    64px
            );

    line-height: 1;

    letter-spacing: -3px;
}

.booking-header p {
    color: #aaaaaa;

    font-size: 18px;
}

.booking-form {
    max-width: 980px;

    display: grid;

    grid-template-columns:
            1fr 1fr;

    gap: 18px;
}

.input-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.input-group label {
    color: #aaaaaa;

    font-size: 13px;
}

.booking-form input {
    width: 100%;

    padding: 18px 19px;

    border:
            1px solid #303030;

    outline: none;

    border-radius: 15px;

    color: #ffffff;

    background: #222222;

    font-size: 16px;

    transition:
            transform 0.25s ease,
            background 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease;
}

.booking-form input::placeholder {
    color: #777777;
}

.booking-form input:hover {
    background: #292929;

    border-color: #444444;
}

.booking-form input:focus {
    transform:
            translateY(-2px);

    border-color: #777777;

    box-shadow:
            0 10px 28px
            rgba(0, 0, 0, 0.3);
}

.booking-form button {
    grid-column:
            1 / -1;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 10px;

    padding: 20px 22px;

    border: 0;

    border-radius: 16px;

    color: #111111;

    background: #ffffff;

    font-size: 17px;
    font-weight: 800;

    cursor: pointer;

    transition:
            transform 0.3s ease,
            background 0.3s ease,
            box-shadow 0.3s ease;
}

.booking-form button span {
    font-size: 24px;

    transition:
            transform 0.3s ease;
}

.booking-form button:hover {
    transform:
            translateY(-4px);

    background: #eeeeee;

    box-shadow:
            0 16px 40px
            rgba(255, 255, 255, 0.1);
}

.booking-form button:hover span {
    transform:
            translateX(6px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
            repeat(4, 1fr);

    gap: 18px;
}

.contact-card {
    min-height: 205px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 29px;

    border-radius: 28px;

    color: #111111;

    background: #f6f6f6;

    text-decoration: none;

    overflow-wrap: anywhere;

    transition:
            transform 0.35s ease,
            background 0.35s ease,
            box-shadow 0.35s ease;
}

.contact-card:hover {
    transform:
            translateY(-8px);

    background: #eeeeee;

    box-shadow:
            0 22px 50px
            rgba(0, 0, 0, 0.09);
}

.contact-icon {
    margin-bottom: auto;

    font-size: 28px;

    transition:
            transform 0.35s ease;
}

.contact-card:hover .contact-icon {
    transform:
            scale(1.15)
            rotate(-4deg);
}

.contact-card small {
    margin-bottom: 6px;

    color: #777777;
}

.contact-card strong {
    font-size: 17px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    margin-top: 75px;

    padding:
            52px 7%
            25px;

    color: #aaaaaa;

    background: #111111;
}

.footer-content {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding-bottom: 35px;
}

.footer-brand {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.footer-brand strong {
    color: #ffffff;

    font-size: 21px;
}

.footer-brand span {
    font-size: 13px;
}

.footer-links {
    display: flex;

    gap: 27px;
}

.footer-links a {
    color: #aaaaaa;

    text-decoration: none;

    font-size: 14px;

    transition:
            color 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 22px;

    border-top:
            1px solid #292929;

    color: #666666;

    font-size: 12px;
}


/* =========================================================
   MODAL - IMPRESSUM / DATENSCHUTZ
========================================================= */

.modal {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    visibility: hidden;

    opacity: 0;

    transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
}

.modal.modal-open {
    visibility: visible;

    opacity: 1;
}

.modal-background {
    position: absolute;

    inset: 0;

    background:
            rgba(0, 0, 0, 0.60);

    backdrop-filter: blur(7px);
}

.modal-content {
    position: relative;

    z-index: 1;

    width: min(
            680px,
            100%
    );

    max-height: 85vh;

    overflow-y: auto;

    padding: 48px;

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
            0 30px 100px
            rgba(0, 0, 0, 0.30);

    transform:
            translateY(25px)
            scale(0.97);

    transition:
            transform 0.35s ease;
}

.modal-open .modal-content {
    transform:
            translateY(0)
            scale(1);
}

.modal-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: #eeeeee;

    color: #111111;

    font-size: 26px;

    cursor: pointer;

    transition:
            transform 0.25s ease,
            background 0.25s ease;
}

.modal-close:hover {
    transform:
            rotate(90deg);

    background: #dddddd;
}

.modal-label {
    display: block;

    margin-bottom: 12px;

    color: #888888;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.modal-content h2 {
    margin-bottom: 30px;

    font-size: 42px;

    letter-spacing: -2px;
}

.modal-content h3 {
    margin-top: 27px;
    margin-bottom: 8px;
}

.modal-content p {
    margin-bottom: 17px;

    color: #555555;

    line-height: 1.75;
}

.modal-content a {
    color: #111111;

    font-weight: bold;
}

.legal-warning {
    margin-top: 30px;

    padding: 17px;

    border-radius: 15px;

    background: #fff3cd;

    color: #664d03;

    font-size: 13px;
}


/* =========================================================
   IMAGE LIGHTBOX
========================================================= */

.image-lightbox {
    position: fixed;

    inset: 0;

    z-index: 3500;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;

    background:
            rgba(0, 0, 0, 0.88);

    visibility: hidden;

    opacity: 0;

    transition:
            opacity 0.3s ease;
}

.image-lightbox.lightbox-open {
    visibility: visible;

    opacity: 1;
}

.image-lightbox img {
    max-width: 90vw;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 22px;

    transform:
            scale(0.95);

    transition:
            transform 0.35s ease;
}

.lightbox-open img {
    transform:
            scale(1);
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    border: 0;

    color: #ffffff;

    background: transparent;

    font-size: 45px;

    cursor: pointer;

    transition:
            transform 0.25s ease;
}

.lightbox-close:hover {
    transform:
            rotate(90deg);
}


/* =========================================================
   FLOATING CALL
========================================================= */

.floating-call {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #111111;

    background: #ffd200;

    text-decoration: none;

    font-size: 24px;

    box-shadow:
            0 12px 35px
            rgba(0, 0, 0, 0.25);

    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}

.floating-call:hover {
    transform:
            translateY(-6px)
            scale(1.08);

    box-shadow:
            0 20px 50px
            rgba(0, 0, 0, 0.30);
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform:
            translateY(45px);

    transition:
            opacity 0.8s ease,
            transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
            translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    nav {
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 500px;
    }

    /* Logo im Hero vollständig anzeigen */

    .hero-logo {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 20px;

        background: #ffffff;

        border-radius: 42px;

        box-shadow:
                0 20px 60px
                rgba(0, 0, 0, 0.10);

        transition:
                transform 0.4s ease,
                box-shadow 0.4s ease;
    }

    .hero-logo img {
        display: block;

        width: 100%;
        height: auto;

        max-width: 650px;

        object-fit: contain;

        border-radius: 25px;

        transition:
                transform 0.5s ease;
    }

    .hero-logo:hover {
        transform: translateY(-7px);

        box-shadow:
                0 30px 70px
                rgba(0, 0, 0, 0.16);
    }

    .hero-logo:hover img {
        transform: scale(1.02);
    }

    .cards {
        grid-template-columns:
                1fr 1fr;
    }

    .owner {
        grid-template-columns: 1fr;
    }

    .brand-section {
        grid-template-columns: 1fr;

        margin-left: 7%;
        margin-right: 7%;
    }

    .brand-logo {
        max-width: 480px;
    }

    .contact-grid {
        grid-template-columns:
                1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 750px) {

    header {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    section {
        padding:
                75px 5%;
    }

    .logo {
        font-size: 17px;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-text h1 {
        font-size: 53px;

        letter-spacing: -3px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-info {
        gap: 18px;
    }

    .hero-image {
        height: 380px;

        border-radius: 28px;
    }

    .services,
    .booking {
        margin-left: 2%;
        margin-right: 2%;

        border-radius: 30px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .gallery {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: none;
    }

    .gallery-item,
    .gallery-large {
        grid-row: auto;

        height: 300px;
    }

    .owner-photo {
        min-height: 400px;

        border-radius: 30px;
    }

    .owner-box {
        padding: 38px 27px;

        border-radius: 30px;
    }

    .brand-section {
        margin-left: 5%;
        margin-right: 5%;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .modal-content {
        padding:
                45px 25px
                30px;

        border-radius: 24px;
    }

    .modal-content h2 {
        font-size: 34px;
    }

}


/* =========================================================
   REDUZIERTE ANIMATIONEN
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
                0.01ms !important;

        animation-iteration-count:
                1 !important;

        transition-duration:
                0.01ms !important;
    }

}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border: none;
    border-radius: 14px;

    background: #f1f1f1;

    cursor: pointer;

    transition:
            transform 0.3s ease,
            background 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);

    background: #e5e5e5;
}

.menu-toggle span {
    width: 22px;
    height: 2px;

    border-radius: 10px;

    background: #111111;

    transition:
            transform 0.3s ease,
            opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform:
            translateY(7px)
            rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
            translateY(-7px)
            rotate(-45deg);
}


@media (max-width: 750px) {

    .menu-toggle {
        display: flex;
    }

    header {
        position: sticky;
    }

    nav {
        position: absolute;

        top: calc(100% + 10px);
        left: 5%;
        right: 5%;

        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 8px;

        padding: 14px;

        border-radius: 22px;

        background: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(18px);

        box-shadow:
                0 20px 50px
                rgba(0, 0, 0, 0.14);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-12px);

        pointer-events: none;

        transition:
                opacity 0.3s ease,
                transform 0.3s ease,
                visibility 0.3s ease;
    }

    nav.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

    nav a {
        width: 100%;

        padding: 14px 16px;

        border-radius: 14px;

        font-size: 16px;
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        background: #f1f1f1;
    }

}