* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}

body,
html {
    overflow-x: hidden;
    max-width: 1440px;
    margin: 0 auto;
    background: --main-white;
    background: #c5c5c5;
    background: #ffffff;

}

/* --- ROOT --- */

:root {
    --main-blu: #0d1633;
    --main-white: #ffffff;
    color: var(--main-color, red);
}

@font-face {
    font-family: "Rep-bold";
    src: url("../font/ReplayPro-Bold.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Rep-medium";
    src: url("../font/ReplayPro-Medium.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Rep-regular";
    src: url("../font/ReplayPro-Regular.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Libre-bold";
    src: url("../font/LibreFranklin-Bold.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Libre-medium";
    src: url("../font/LibreFranklin-Medium.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Libre-light";
    src: url("../font/LibreFranklin-Light.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Libre-thin";
    src: url("../font/LibreFranklin-Thin.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "M-light";
    src: url("../font/Metric-Light.woff2") format("woff2");
    font-display: swap;
}


.span-a {
    font-family: "Libre-bold";
}

/* --- NAV --- */

.nav-top {
    transition: transform 0.3s ease;
}

.nav-top.nav-hidden {
    transform: translateY(-100%);
}

.nav-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(13, 22, 51, 0.1);

    .nav-wrap {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        position: relative;
        z-index: 1003;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        z-index: 1004;

        img {
            display: block;
            width: 100px;
            height: auto;
        }
    }

    .menu-toggle {
        display: none;
        width: 48px;
        height: 48px;
        border: none;
        background: transparent;
        padding: 0;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 1004;
        appearance: none;
        -webkit-appearance: none;
        outline: none;

        img {
            width: 28px;
            height: 28px;
            display: block;
            object-fit: contain;
        }
    }

    .nav-links {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 24px;

        a {
            text-decoration: none;
            color: var(--main-blu);
            font-family: "Libre-medium";
            font-size: 18px;
            line-height: 1;
            letter-spacing: -0.05em;
        }
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        background: #ffffff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.28s ease,
            visibility 0.28s ease;
        z-index: 2000;

        .mobile-menu-inner {
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 22px 20px 22px 20px;
        }

        .mobile-menu-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 0px 20px 20px;
            border-bottom: 1px solid rgba(13, 22, 51, 0.1);
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;

            img {
                display: block;
                width: 100px;
                height: auto;
            }
        }

        .mobile-menu-close {
            width: 48px;
            height: 48px;
            border: none;
            background: transparent;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            outline: none;

            img {
                width: 28px;
                height: 28px;
                display: block;
                object-fit: contain;
            }
        }

        .mobile-menu-nav-wrap {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 42px;
        }

        .mobile-menu-label {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            opacity: 0.75;
            padding-bottom: 14px;
        }

        .mobile-menu-main {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;

            a {
                text-decoration: none;
                color: var(--main-blu);
                font-family: "Rep-regular";
                font-size: clamp(2.5rem, 1.9rem + 3vw, 4.2rem);
                line-height: 0.95;
                letter-spacing: -0.08em;
            }
        }

        .mobile-menu-footer {
            padding-top: 18px;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .mobile-menu-footer-top {
            .brand-small {
                font-family: "Libre-medium";
                color: var(--main-blu);
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 0.18em;
                opacity: 0.8;
                padding-bottom: 6px;
            }

            h2 {
                font-family: "Rep-bold";
                color: var(--main-blu);
                font-size: clamp(2rem, 1.7rem + 1vw, 2.6rem);
                line-height: 0.95;
                letter-spacing: -0.08em;
                padding-bottom: 4px;
            }

            .advisor-title {
                font-family: "Libre-light";
                color: var(--main-blu);
                font-size: 16px;
                letter-spacing: -0.04em;
                line-height: 1.2;
            }
        }

        .mobile-menu-socials {
            display: flex;
            align-items: center;
            gap: 18px;
            padding-top: 14px;

            a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;

                img {
                    width: 18px;
                    height: 18px;
                    display: block;
                }
            }
        }

        .mobile-menu-contact {
            display: flex;
            flex-direction: column;
            gap: 1px;

            .contact-label {
                font-family: "Libre-medium";
                color: var(--main-blu);
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 0.16em;
                opacity: 0.75;
                padding-bottom: 4px;
            }

            a {
                text-decoration: none;
                color: var(--main-blu);
                font-family: "Libre-light";
                font-size: 16px;
                line-height: 1.35;
                letter-spacing: -0.03em;
                word-break: break-word;
            }
        }

        .mobile-menu-realty-logo {
            img {
                display: block;
                width: 180px;
                height: auto;
            }
        }

        &.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
    }

    @media (max-width: 768px) {
        padding: 16px 18px;

        .nav-wrap {
            padding: 0px 20px;
        }

        .nav-logo {
            img {
                width: 100px;
                height: auto;
                width: 80px;
                height: auto;
            }
        }

        .menu-toggle {
            display: flex;
            width: 48px;
            height: 48px;

            img {
                width: 28px;
                height: 28px;
            }
        }

        .nav-links {
            display: none;
        }

        .mobile-menu {
            .mobile-menu-inner {
                padding: 16px 18px 22px 18px;
            }

            .mobile-menu-head {
                align-items: center;
            }

            .mobile-menu-logo {
                img {
                    width: 80px;
                    height: auto;
                }
            }

            .mobile-menu-close {
                width: 48px;
                height: 48px;

                img {
                    width: 28px;
                    height: 28px;
                }
            }

            .mobile-menu-nav-wrap {
                padding-top: 20px;
            }

            .mobile-menu-label {
                font-size: 14px;
                padding-bottom: 14px;
            }

            .mobile-menu-main {
                gap: 6px;

                a {
                    font-size: 30px;
                }
            }

            .mobile-menu-footer {
                gap: 18px;
                padding-top: 18px;
                padding-bottom: 18px;
            }

            .mobile-menu-footer-top {
                .brand-small {
                    font-size: 12px;
                }

                h2 {
                    font-size: clamp(2rem, 1.7rem + 1vw, 2.6rem);
                }

                .advisor-title {
                    font-size: 16px;
                }
            }

            .mobile-menu-socials {
                gap: 18px;

                a {
                    img {
                        width: 18px;
                        height: 18px;
                    }
                }
            }

            .mobile-menu-contact {
                a {
                    font-size: 16px;
                }
            }

            .mobile-menu-realty-logo {
                img {
                    width: 180px;
                }
            }
        }
    }
}

/* --- HERO --- */

.hero {
    position: relative;
    background-image: url("../img/back-t5.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 1440 / 1201;
    margin-top: 90px;
    padding-top: 50px;

    @media (max-width: 768px) {
        background-image: url("../img/back-mobile-d.webp");
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        aspect-ratio: 1080 / 1420;
        width: 100%;
        margin-top: 110px;
    }

    .top-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: var(--main-blu);

        .top-panel-a {
            font-size: 80px;
            letter-spacing: -0.05em;
            line-height: 0.9;
            font-family: "Rep-medium";
            padding-top: 50px;
            text-align: center;

            font-size: 30px;
            padding-top: 1px;
            margin-top: -30px;

            font-size: clamp(1.875rem, 0.8333rem + 4.6296vw, 5rem);
            padding-top: clamp(0.0625rem, -0.9583rem + 4.537vw, 3.125rem);
            margin-top: clamp(-1.25rem, -1.9149rem + 2.1277vw, 0rem);
        }

        .top-panel-b {
            font-size: 50px;
            letter-spacing: -0.05em;
            font-family: "Rep-regular";
            text-align: center;
            padding-top: 40px;
            padding-bottom: 35px;

            font-size: 20px;
            padding-top: 10px;
            padding-bottom: 50px;

            font-size: clamp(1.25rem, 0.5851rem + 2.1277vw, 2.5rem);
            padding-top: clamp(0.625rem, -0.3723rem + 3.1915vw, 2.5rem);
            padding-bottom: clamp(3.125rem, 3.7899rem + -2.1277vw, 1.875rem);
        }

        .top-panel-c {
            font-size: 30px;
            font-family: "Libre-medium";
            text-align: center;

            .top-panel-c-a {
                letter-spacing: -1.5px;
            }

            .top-panel-c-b {
                letter-spacing: -1.25px;
            }

            .top-panel-c-c {
                letter-spacing: -1.15px;
            }

            @media (max-width: 768px) {
                position: relative;
                width: min(88%, 420px);
                height: 72px;
                margin: 0 auto;
                overflow: hidden;

                p {
                    position: absolute;
                    inset: 0;
                    margin: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    font-family: "Libre-medium";
                    font-size: 25px;
                    line-height: 1.15;
                    letter-spacing: -0.03em;
                    opacity: 0;
                    transform: translateY(16px);
                    animation: mobile-hero-phrases 9s infinite;
                    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.35);
                }

                .top-panel-c-a {
                    animation-delay: 0s;
                }

                .top-panel-c-b {
                    animation-delay: 3s;
                }

                .top-panel-c-c {
                    animation-delay: 6s;
                }
            }
        }
    }

    .hero-bottom {
        position: absolute;
        bottom: 100px;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
        color: var(--main-white);
        z-index: 2;

        img {
            width: 250px;
            height: auto;
            display: block;
        }

        p {
            font-family: "Rep-regular";
            font-size: 30px;
            letter-spacing: -0.04em;
            line-height: 1;
            color: var(--main-white);
        }

        @media (max-width: 768px) {
            bottom: 30px;

            img {
                width: 150px;
            }

            p {
                font-size: 16px;
            }
        }
    }
}

@keyframes mobile-hero-phrases {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    24% {
        opacity: 1;
        transform: translateY(-4px);
    }

    33% {
        opacity: 0;
        transform: translateY(-14px);
    }

    100% {
        opacity: 0;
        transform: translateY(-14px);
    }
}

/* --- WHY WORK WITH ME PART A --- */

.why-work {
    background: #ffffff;
    padding-top: 50px;

    .why-work-title {
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 0 0 10px;

        .why-work-heading {
            display: inline-flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.2em;
            margin: 0;
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: clamp(2rem, 1.2rem + 2vw, 2.5rem);
            letter-spacing: -0.08em;
            line-height: 1;
            padding-bottom: 20px;

            .title-text {
                display: inline-block;
            }

            .title-line {
                display: inline-block;
                width: 1.3em;
                height: 2px;
                background: var(--main-blu);
                transform: scaleX(0);
                transform-origin: left center;
                transition: transform 0.8s ease;
                flex-shrink: 0;
                position: relative;
                top: -0.08em;
            }

            &.line-visible {
                .title-line {
                    transform: scaleX(1);
                }
            }
        }
    }

    p {
        font-family: "Libre-thin";
        color: var(--main-blu);
        font-size: 25px;
        text-align: center;
        letter-spacing: -0.05em;
        width: 70%;
        margin: 0 auto;
        padding: 10px 0;
        line-height: 1.2;
    }

    @media (max-width: 768px) {

        .why-work-title {
            .why-work-heading {
                flex-wrap: wrap;
                row-gap: 0.1em;
            }
        }

        p {
            width: 79%;
            font-size: 19px;
        }
    }
}

/* --- WHY WORK WITH ME PART B --- */

.why-work-down {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 40px 0 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    article {
        background: #f8f8f8;
        border: 1px solid rgba(13, 22, 51, 0.08);
        box-shadow: 0 16px 40px rgba(13, 22, 51, 0.04);
        padding: 28px 24px;
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease;

        &:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(13, 22, 51, 0.08);
            border-color: rgba(13, 22, 51, 0.16);
        }

        h3 {
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: clamp(1.25rem, 1rem + 0.8vw, 1.7rem);
            font-size: 26px;
            line-height: 1;
            letter-spacing: -0.06em;
            margin: 0;
            padding-bottom: 18px;
            position: relative;

            &::after {
                content: "";
                display: block;
                width: 56px;
                height: 3px;
                background: var(--main-blu);
                margin-top: 18px;
            }
        }

        p {
            font-family: "Libre-thin";
            color: var(--main-blu);
            font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
            line-height: 1.5;
            letter-spacing: -0.03em;
            margin: 0;
            width: 100%;
            text-align: left;
        }
    }

    @media (max-width: 900px) {
        grid-template-columns: 1fr;
        gap: 18px;

        article {
            padding: 24px 20px;
        }
    }
}

/* --- MEET THE AGENT --- */

.agent-intro {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 10px 0px;
    display: grid;
    grid-template-columns: minmax(320px, 460px) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
    background: #ffffff;

    .agent-intro-photo {
        width: 100%;
        max-width: 460px;

        img {
            display: block;
            width: 100%;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            object-position: center;
            box-shadow: 0 24px 60px rgba(13, 22, 51, 0.3);
        }
    }

    .agent-intro-photo-mobile {
        display: none;
    }

    .agent-intro-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-label {
        font-family: "Libre-medium";
        color: var(--main-blu);
        font-size: 16px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.7;
        padding-bottom: 18px;
        width: 100%;
        text-align: left;
    }

    h2 {
        font-family: "Rep-bold";
        color: var(--main-blu);
        font-size: clamp(2.5rem, 1.7rem + 2.6vw, 4.8rem);
        letter-spacing: -0.08em;
        line-height: 0.95;
        padding-bottom: 16px;
        width: 100%;
        text-align: left;
    }

    h3 {
        font-family: "Rep-regular";
        color: var(--main-blu);
        font-size: clamp(1.25rem, 1rem + 0.9vw, 2rem);
        letter-spacing: -0.05em;
        line-height: 1.05;
        padding-bottom: 28px;
        width: 100%;
        text-align: left;
    }

    p {
        font-family: "Libre-thin";
        color: var(--main-blu);
        font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
        line-height: 1.65;
        letter-spacing: -0.03em;
        width: 100%;
        max-width: 640px;
        text-align: left;
        padding: 0 0 18px 0;
        margin: 0;
    }

    .agent-languages {
        font-family: "Libre-medium";
        font-size: 18px;
        letter-spacing: -0.03em;
        padding-top: 10px;
        padding-bottom: 28px;
        position: relative;
        text-align: left;

        &::before {
            content: "";
            display: block;
            width: 68px;
            height: 3px;
            background: var(--main-blu);
            margin: 0 0 18px 0;
        }
    }

    .agent-socials {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        padding-top: 4px;
        width: 100%;

        a {
            width: 46px;
            height: 46px;
            border: 1px solid rgba(13, 22, 51, 0.12);
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f8f8f8;
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease,
                background 0.25s ease;

            &:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 28px rgba(13, 22, 51, 0.08);
                border-color: rgba(13, 22, 51, 0.2);
                background: #ffffff;
            }

            img {
                width: 18px;
                height: 18px;
                display: block;
            }
        }
    }

    @media (max-width: 980px) {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 90px 0 100px;

        .agent-intro-photo-desktop {
            max-width: 520px;
            margin: 0 auto;
        }

        .agent-intro-content {
            align-items: center;
            text-align: center;
        }

        .section-label,
        h2,
        h3,
        p,
        .agent-languages {
            text-align: center;
        }

        .agent-languages {
            &::before {
                margin: 0 auto 18px;
            }
        }

        p {
            max-width: 760px;
        }

        .agent-socials {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        width: min(100%, calc(100% - 28px));
        padding: 0px 0 0px;
        gap: 28px;

        .agent-intro-photo {
            img {
                box-shadow: 0 24px 60px rgba(13, 22, 51, 0);
            }
        }

        .agent-intro-photo-desktop {
            display: none;
        }

        .agent-intro-photo-mobile {
            display: block;
            max-width: 100%;
            margin: 6px auto 26px;
        }

        .agent-intro-content {
            align-items: center;
            text-align: center;
        }

        .section-label {
            font-size: 14px;
            letter-spacing: 0.16em;
            padding-bottom: 14px;
            text-align: center;
        }

        h2 {
            padding-bottom: 12px;
            text-align: center;
        }

        h3 {
            padding-bottom: 22px;
            text-align: center;
        }

        p {
            font-size: 18px;
            line-height: 1.55;
            padding-bottom: 16px;
            text-align: center;
        }

        .agent-languages {
            font-size: 17px;
            padding-top: 6px;
            padding-bottom: 22px;
            text-align: center;

            &::before {
                width: 56px;
                margin: 0 auto 16px;
            }
        }

        .agent-socials {
            justify-content: center;
            gap: 14px;

            a {
                width: 42px;
                height: 42px;

                img {
                    width: 17px;
                    height: 17px;
                }
            }
        }
    }
}

/* --- AREAS I SERVE PART A --- */

.areas {
    background: #ffffff;
    padding-top: 100px;
    padding-top: 50px;

    .areas-intro {
        width: min(980px, calc(100% - 40px));
        margin: 0 auto;
        text-align: center;

        .section-label {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 16px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.7;
            padding-bottom: 18px;
        }

        h2 {
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: clamp(2.2rem, 1.3rem + 2.8vw, 4.5rem);
            letter-spacing: -0.08em;
            line-height: 1;
            padding-bottom: 24px;
        }

        p {
            font-family: "Libre-thin";
            color: var(--main-blu);
            font-size: clamp(1.1rem, 1rem + 0.35vw, 1.25rem);
            line-height: 1.6;
            letter-spacing: -0.03em;
            width: min(760px, 100%);
            margin: 0 auto;
            padding-bottom: 30px;
        }
    }
}

/* --- AREAS I SERVE PART B --- */

.areas-showcase {
    position: relative;
    width: 1440px;
    width: 1200px;
    height: 645px;
    height: 797px;
    height: 720px;
    margin: 0 auto;
    background: #ffffff;

    .areas-showcase-card {
        position: absolute;
        top: 200px;
        right: 48px;
        width: 525px;
        height: 400px;
        background: rgba(255, 255, 255, 0.96);
        background: #f8f8f8;
        box-shadow: 0 18px 38px rgba(13, 22, 51, 0.14);
        border: 1px solid rgba(13, 22, 51, 0.08);
        box-shadow: 0 16px 40px rgba(13, 22, 51, 0.04);
        padding: 48px 28px 30px 28px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .areas-showcase-card h3 {
        font-family: "Rep-bold";
        color: var(--main-blu);
        font-size: 42.096px;
        line-height: 0.94;
        letter-spacing: -0.08em;
        padding: 0 0 22px 0;
        width: 484px;
        position: relative;

        &::after {
            content: "";
            display: block;
            width: 64px;
            height: 4px;
            background: var(--main-blu);
            margin-top: 22px;
            border-radius: 999px;
        }
    }

    .areas-showcase-card p {
        font-family: "Libre-thin";
        color: var(--main-blu);
        font-size: 16px;
        line-height: 1.62;
        letter-spacing: -0.03em;
        text-align: left;
        width: 484px;
        margin: 0;
        padding: 0 0 18px 0;
    }

    .areas-showcase-card p:last-child {
        padding-bottom: 0;
    }

    @media (max-width: 1240px) {
        width: min(100%, calc(100% - 40px));
        height: auto;
        display: flex;
        flex-direction: column;

        .areas-showcase-media {
            position: relative;
            width: 100%;
            height: auto;
            aspect-ratio: 1200 / 645;

            img {
                width: 100%;
                height: 100%;
            }
        }

        .areas-showcase-card {
            position: relative;
            top: auto;
            right: auto;
            width: min(525px, calc(100% - 40px));
            height: auto;
            margin: -70px 40px 0 auto;
        }

        .areas-showcase-card h3,
        .areas-showcase-card p {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        width: min(100%, calc(100% - 28px));

        .areas-showcase-card {
            width: calc(100% - 24px);
            margin: -40px auto 0;
            padding: 28px 22px 24px 22px;
        }

        .areas-showcase-card h3 {
            font-size: clamp(2rem, 1.4rem + 2vw, 2.6rem);
            padding-bottom: 18px;

            &::after {
                width: 56px;
                margin-top: 16px;
            }
        }

        .areas-showcase-card p {
            font-size: 18px;
            line-height: 1.55;
            padding-bottom: 16px;
        }
    }
}

/* --- CTA --- */

.cta-section {
    background: #ffffff;
    padding: 70px 0 50px;

    .cta-content {
        width: min(1200px, calc(100% - 40px));
        margin: 0 auto;
        padding: 56px 40px;
        background: #f8f8f8;
        border: 1px solid rgba(13, 22, 51, 0.08);
        box-shadow: 0 16px 40px rgba(13, 22, 51, 0.04);
        text-align: center;

        .section-label {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 16px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.7;
            padding-bottom: 18px;
        }

        h2 {
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: clamp(2.2rem, 1.3rem + 2.8vw, 4.5rem);
            letter-spacing: -0.08em;
            line-height: 1.1;
            padding-bottom: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        p {
            font-family: "Libre-thin";
            color: var(--main-blu);
            font-size: clamp(1.1rem, 1rem + 0.35vw, 1.2rem);
            line-height: 1.6;
            letter-spacing: -0.03em;
            width: min(720px, 100%);
            margin: 0 auto;
            padding-bottom: 30px;
        }

        a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 220px;
            min-height: 54px;
            padding: 14px 28px;
            background: var(--main-blu);
            color: #ffffff;
            text-decoration: none;
            font-family: "Libre-medium";
            font-size: 14px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            transition:
                background 0.25s ease,
                transform 0.25s ease;

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

    @media (max-width: 768px) {
        padding: 30px 0 30px;

        .cta-content {
            width: min(100%, calc(100% - 28px));
            padding: 34px 20px;

            .section-label {
                font-size: 14px;
                letter-spacing: 0.16em;
                padding-bottom: 14px;
            }

            h2 {
                padding-bottom: 18px;
                line-height: 1.1;
            }

            p {
                width: 80%;
                font-size: 18px;
                line-height: 1.55;
                padding-bottom: 24px;
            }

            a {
                width: 100%;
                min-width: 0;
            }
        }
    }
}

/* --- HOW I HELP --- */

.how-help {
    position: relative;
    background: url("../img/how-help-bg.webp") center / cover no-repeat;
    padding: 110px 0 30px;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.5);
        z-index: 1;
    }

    .how-help-intro,
    .how-help-grid {
        position: relative;
        z-index: 2;
    }

    .how-help-intro {
        width: min(980px, calc(100% - 40px));
        margin: 0 auto;
        text-align: center;
        padding-bottom: 42px;

        .section-label {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 16px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.7;
            padding-bottom: 18px;
        }

        h2 {
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: clamp(2.2rem, 1.3rem + 2.8vw, 4.5rem);
            letter-spacing: -0.08em;
            line-height: 0.95;
            padding-bottom: 24px;
        }

        p {
            font-family: "Libre-thin";
            color: var(--main-blu);
            font-size: clamp(1.1rem, 1rem + 0.35vw, 1.25rem);
            line-height: 1.6;
            letter-spacing: -0.03em;
            width: min(760px, 100%);
            margin: 0 auto;
        }
    }

    .how-help-grid {
        width: min(1200px, calc(100% - 40px));
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;

        article {
            background: rgba(248, 248, 248, 0.9);
            border: 1px solid rgba(13, 22, 51, 0.08);
            box-shadow: 0 16px 40px rgba(13, 22, 51, 0.04);
            padding: 28px 24px;
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;

            &:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 40px rgba(13, 22, 51, 0.08);
                border-color: rgba(13, 22, 51, 0.16);
            }

            h3 {
                font-family: "Rep-bold";
                color: var(--main-blu);
                font-size: 26px;
                line-height: 1;
                letter-spacing: -0.06em;
                padding-bottom: 18px;

                &::after {
                    content: "";
                    display: block;
                    width: 56px;
                    height: 3px;
                    background: var(--main-blu);
                    margin-top: 18px;
                }
            }

            p {
                font-family: "Libre-thin";
                color: var(--main-blu);
                font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
                line-height: 1.5;
                letter-spacing: -0.03em;
                text-align: left;
            }
        }
    }

    @media (max-width: 900px) {
        .how-help-grid {
            grid-template-columns: 1fr;
            gap: 18px;

            article {
                padding: 24px 20px;
            }
        }
    }

    @media (max-width: 768px) {
        padding: 0px 0 20px;

        &::before {
            background: url("../img/how-help-bg.webp") center / cover no-repeat;
        }

        .how-help-intro {
            width: min(100%, calc(100% - 28px));
            padding-bottom: 32px;

            .section-label {
                font-size: 14px;
                letter-spacing: 0.16em;
                padding-bottom: 14px;
            }

            h2 {
                padding-bottom: 18px;
            }

            p {
                width: 85%;
                font-size: 18px;
                line-height: 1.55;
            }
        }

        .how-help-grid {
            width: min(100%, calc(100% - 28px));
        }
    }
}

/* --- FEATURED COMMUNITIES --- */

.featured-communities {
    background: #ffffff;
    padding: 100px 0 30px;

    .featured-communities-intro {
        width: min(980px, calc(100% - 40px));
        margin: 0 auto;
        text-align: center;
        padding-bottom: 42px;

        .section-label {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 16px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.7;
            padding-bottom: 18px;
        }

        h2 {
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: clamp(2.2rem, 1.3rem + 2.8vw, 4.5rem);
            letter-spacing: -0.08em;
            line-height: 0.95;
            padding-bottom: 24px;
        }

        p {
            font-family: "Libre-thin";
            color: var(--main-blu);
            font-size: clamp(1.1rem, 1rem + 0.35vw, 1.25rem);
            line-height: 1.6;
            letter-spacing: -0.03em;
            width: min(760px, 100%);
            margin: 0 auto;
        }
    }

    .featured-communities-grid {
        width: min(1200px, calc(100% - 40px));
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;

        article {
            background: #f8f8f8;
            border: 1px solid rgba(13, 22, 51, 0.08);
            box-shadow: 0 16px 40px rgba(13, 22, 51, 0.04);
            overflow: hidden;
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;

            &:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 40px rgba(13, 22, 51, 0.08);
                border-color: rgba(13, 22, 51, 0.16);
            }

            img {
                display: block;
                width: 100%;
                aspect-ratio: 4 / 3;
                object-fit: cover;
                object-position: center;
            }

            h3 {
                font-family: "Rep-bold";
                color: var(--main-blu);
                font-size: 26px;
                line-height: 1;
                letter-spacing: -0.06em;
                padding: 24px 24px 16px;

                &::after {
                    content: "";
                    display: block;
                    width: 56px;
                    height: 3px;
                    background: var(--main-blu);
                    margin-top: 18px;
                }
            }

            p {
                font-family: "Libre-thin";
                color: var(--main-blu);
                font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
                line-height: 1.5;
                letter-spacing: -0.03em;
                padding: 0 24px 24px;
            }
        }
    }

    @media (max-width: 980px) {
        .featured-communities-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        padding: 80px 0 20px;

        .featured-communities-intro {
            width: min(100%, calc(100% - 28px));
            padding-bottom: 32px;

            .section-label {
                font-size: 14px;
                letter-spacing: 0.16em;
                padding-bottom: 14px;
            }

            h2 {
                padding-bottom: 18px;
            }

            p {
                font-size: 18px;
                line-height: 1.55;
            }
        }

        .featured-communities-grid {
            width: min(100%, calc(100% - 28px));
            gap: 18px;

            article {
                h3 {
                    font-size: 24px;
                    padding: 20px 20px 14px;
                }

                p {
                    padding: 0 20px 20px;
                    font-size: 17px;
                }
            }
        }
    }
}

/* --- WHAT YOU CAN EXPECT --- */

.what-expect {
    background: #ffffff;
    padding: 50px 0 30px;

    .what-expect-intro {
        width: min(980px, calc(100% - 40px));
        margin: 0 auto;
        text-align: center;
        padding-bottom: 42px;

        .section-label {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 16px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.7;
            padding-bottom: 18px;
        }

        h2 {
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: clamp(2.2rem, 1.3rem + 2.8vw, 4.5rem);
            letter-spacing: -0.08em;
            line-height: 1;
            padding-bottom: 24px;
        }

        p {
            font-family: "Libre-thin";
            color: var(--main-blu);
            font-size: clamp(1.1rem, 1rem + 0.35vw, 1.25rem);
            line-height: 1.6;
            letter-spacing: -0.03em;
            width: min(760px, 100%);
            margin: 0 auto;
        }
    }

    .what-expect-grid {
        width: min(1200px, calc(100% - 40px));
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;

        article {
            background: #f8f8f8;
            border: 1px solid rgba(13, 22, 51, 0.08);
            box-shadow: 0 16px 40px rgba(13, 22, 51, 0.04);
            padding: 28px 24px;
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;

            &:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 40px rgba(13, 22, 51, 0.08);
                border-color: rgba(13, 22, 51, 0.16);
            }

            h3 {
                font-family: "Rep-bold";
                color: var(--main-blu);
                font-size: 26px;
                line-height: 1;
                letter-spacing: -0.06em;
                padding-bottom: 18px;

                &::after {
                    content: "";
                    display: block;
                    width: 56px;
                    height: 3px;
                    background: var(--main-blu);
                    margin-top: 18px;
                }
            }

            p {
                font-family: "Libre-thin";
                color: var(--main-blu);
                font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
                line-height: 1.5;
                letter-spacing: -0.03em;
                text-align: left;
            }
        }
    }

    @media (max-width: 900px) {
        .what-expect-grid {
            grid-template-columns: 1fr;
            gap: 18px;

            article {
                padding: 24px 20px;
            }
        }
    }

    @media (max-width: 768px) {
        padding: 10px 0 20px;

        .what-expect-intro {
            width: min(100%, calc(100% - 28px));
            padding-bottom: 32px;

            .section-label {
                font-size: 14px;
                letter-spacing: 0.16em;
                padding-bottom: 14px;
            }

            h2 {
                padding-bottom: 18px;
            }

            p {
                width: 90%;
                font-size: 18px;
                line-height: 1.55;
            }
        }

        .what-expect-grid {
            width: min(100%, calc(100% - 28px));
        }
    }
}

/* --- CONTACT FORM --- */

.contact-form-section {
    background: #ffffff;
    padding: 100px 0 110px;

    .contact-form-wrap {
        width: min(1200px, calc(100% - 40px));
        margin: 0 auto;
        padding: 56px 40px;
        background: #f8f8f8;
        border: 1px solid rgba(13, 22, 51, 0.08);
        box-shadow: 0 16px 40px rgba(13, 22, 51, 0.04);
    }

    .contact-form-intro {
        text-align: center;
        max-width: 860px;
        margin: 0 auto;
        padding-bottom: 34px;

        .section-label {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 16px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.7;
            padding-bottom: 18px;
        }

        h2 {
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: clamp(2.2rem, 1.3rem + 2.8vw, 4.5rem);
            letter-spacing: -0.08em;
            line-height: 0.95;
            padding-bottom: 20px;
        }

        p {
            font-family: "Libre-thin";
            color: var(--main-blu);
            font-size: clamp(1.1rem, 1rem + 0.35vw, 1.2rem);
            line-height: 1.6;
            letter-spacing: -0.03em;
            width: min(720px, 100%);
            margin: 0 auto;
        }
    }

    .contact-form {
        width: min(820px, 100%);
        margin: 0 auto;
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 18px;

        input,
        textarea {
            width: 100%;
            border: 1px solid rgba(13, 22, 51, 0.14);
            background: #ffffff;
            padding: 18px 20px;
            font-family: "Libre-light";
            color: var(--main-blu);
            font-size: 17px;
            line-height: 1.4;
            letter-spacing: -0.02em;
            outline: none;
            appearance: none;
        }

        input::placeholder,
        textarea::placeholder {
            color: rgba(13, 22, 51, 0.55);
        }

        input:focus,
        textarea:focus {
            border-color: var(--main-blu);
        }

        textarea {
            resize: vertical;
            min-height: 160px;
        }
    }

    button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 240px;
        min-height: 56px;
        padding: 14px 28px;
        border: none;
        background: var(--main-blu);
        color: #ffffff;
        font-family: "Libre-medium";
        font-size: 14px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        cursor: pointer;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;

        &:hover {
            transform: translateY(-2px);
            opacity: 0.95;
        }
    }

    @media (max-width: 768px) {
        padding: 10px 0 10px;

        .contact-form-wrap {
            width: min(100%, calc(100% - 28px));
            padding: 34px 20px;
        }

        .contact-form-intro {
            padding-bottom: 26px;

            .section-label {
                font-size: 14px;
                letter-spacing: 0.16em;
                padding-bottom: 14px;
            }

            h2 {
                padding-bottom: 16px;
            }

            p {
                font-size: 18px;
                line-height: 1.55;
            }
        }

        .form-row {
            flex-direction: column;
            gap: 14px;
            margin-bottom: 14px;

            input,
            textarea {
                padding: 16px 18px;
                font-size: 16px;
            }

            textarea {
                min-height: 140px;
            }
        }

        button {
            width: 100%;
            min-width: 0;
        }
    }
}

/* --- FOOTER --- */

.site-footer {
    background: #ffffff;
    padding: 0px 0 40px;

    .footer-top,
    .footer-nav-row,
    .footer-legal-row,
    .footer-bottom {
        width: min(1320px, calc(100% - 40px));
        margin: 0 auto;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr 0.9fr;
        align-items: start;
        gap: 40px;
        padding-bottom: 42px;
    }

    .footer-agent {
        .footer-label {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            opacity: 0.75;
            padding-bottom: 5px;
        }

        h2 {
            font-family: "Rep-bold";
            color: var(--main-blu);
            font-size: 35px;
            line-height: 0.95;
            letter-spacing: -0.07em;
            padding-bottom: 5px;
        }

        .footer-role {
            font-family: "Libre-light";
            color: var(--main-blu);
            font-size: 20px;
            letter-spacing: -0.04em;
            line-height: 1.1;
        }

        .footer-role-number {
            font-family: "Libre-light";
            color: var(--main-blu);
            font-size: 16px;
            padding-top: 20px;
            padding-bottom: 10px;
            letter-spacing: -0.02em;
            opacity: 0.82;
        }
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding-top: 6px;

        a,
        p {
            font-family: "Libre-light";
            color: var(--main-blu);
            font-size: 18px;
            line-height: 1.35;
            letter-spacing: -0.02em;
            text-decoration: none;
            opacity: 0.8;
        }

        a:hover {
            text-decoration: underline;
            text-underline-offset: 0.15em;
        }
    }

    .footer-nav-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding: 0 0 42px 0;
    }

    .footer-nav {
        display: flex;
        align-items: start;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        flex: 1;

        a {
            font-family: "Libre-medium";
            color: var(--main-blu);
            font-size: 13px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            text-decoration: none;
        }

        a:hover {
            opacity: 0.65;
        }
    }

    .footer-socials {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 26px;
        flex-shrink: 0;

        a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        img {
            width: 18px;
            height: 18px;
            display: block;
        }
    }

    .footer-legal-row {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 34px;
        align-items: start;
        padding-bottom: 38px;
    }

    .footer-legal-brand {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 4px;

        .footer-logo-sothebys {
            display: block;
            width: auto;
            height: 55px;
        }
    }

    .footer-legal-text {
        p {
            font-family: "Libre-light";
            color: var(--main-blu);
            font-size: 14px;
            line-height: 1.55;
            letter-spacing: 0.01em;
            opacity: 0.92;
            text-align: left;
        }
    }

    .footer-legal-icons {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        padding-top: 18px;

        img {
            display: block;
            width: auto;
            height: auto;
        }

        .footer-logo-realtor {
            height: 38px;
        }

        .footer-logo-fair {
            height: 38px;
        }
    }

    .footer-bottom {
        border-top: 1px solid rgba(13, 22, 51, 0.18);
        padding-top: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding-bottom: 70px;
    }

    .footer-credit {
        display: flex;
        align-items: center;
        gap: 16px;

        img {
            width: 80px;
            height: auto;
            display: block;
        }

        p {
            font-family: "M-light";
            color: var(--main-blu);
            font-size: 18px;
            letter-spacing: -0.03em;
        }

        a {
            color: var(--main-blu);
            text-decoration: underline;
            text-underline-offset: 0.14em;
            font-family: "M-light";
        }
    }

    .footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 16px;

        p,
        a {
            font-family: "M-light";
            color: var(--main-blu);
            font-size: 18px;
            letter-spacing: -0.03em;
            text-decoration: none;
        }

        a {
            text-decoration: underline;
            text-underline-offset: 0.14em;
        }
    }

    @media (max-width: 980px) {
        .footer-top {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .footer-socials {
            justify-content: flex-start;
        }

        .footer-legal-row {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .footer-bottom {
            flex-direction: column-reverse;
            align-items: center;
            text-align: center;
        }

        .footer-credit {
            flex-direction: row;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 10px;
        }

        .footer-bottom-links {
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-wrap: wrap;
        }
    }

    @media (max-width: 768px) {
        padding: 56px 0 20px;

        .footer-top,
        .footer-nav-row,
        .footer-legal-row,
        .footer-bottom {
            width: min(100%, calc(100% - 28px));
        }

        .footer-credit {
            flex-direction: row;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 10px;
        }

        .footer-bottom-links {
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .footer-nav-row {
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            .footer-nav {
                gap: 8px;
            }

            a {
                font-size: 11px;
            }
        }
    }
}

/* --- privacy-policy --- */

.privacy-policy-page {
    padding: 180px 20px 120px 20px;
    background: #ffffff;

    .privacy-policy-wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .privacy-policy-kicker {
        font-family: "M-light";
        font-size: 14px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--main-blu);
        margin-bottom: 16px;
    }

    h1 {
        font-family: "M-light";
        font-size: clamp(2.5rem, 2rem + 2vw, 4.5rem);
        letter-spacing: -0.05em;
        color: var(--main-blu);
        margin-bottom: 24px;
    }

    h2 {
        font-family: "M-light";
        font-size: 28px;
        letter-spacing: -0.04em;
        color: var(--main-blu);
        margin-top: 48px;
        margin-bottom: 14px;
    }

    p {
        font-family: "Libre-m";
        font-size: 18px;
        line-height: 1.7;
        color: var(--main-blu);
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 140px 20px 90px 20px;

        h2 {
            font-size: 24px;
        }

        p {
            font-size: 16px;
        }
    }
}

/* --- ARROW --- */

.back-to-top-mobile {
    display: none;
}

@media (max-width: 768px) {
    .back-to-top-mobile {
        position: fixed;
        right: 25px;
        bottom: 20px;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(13, 22, 51, 0.9);
        background: #0d1633;
        text-decoration: none;
        box-shadow: 0 10px 24px rgba(13, 22, 51, 0.18);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1600;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease,
            background 0.25s ease;

        img {
            width: 60%;
            height: 60%;
            display: block;
        }

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

        &:hover,
        &:active {
            background: rgba(13, 22, 51, 1);
        }
    }
}

/* --- THANK YOU --- */

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 20px 120px;
    background: #ffffff;

    .thank-you-wrap {
        width: min(760px, 100%);
        text-align: center;
        border: 1px solid rgba(13, 22, 51, 0.08);
        box-shadow: 0 16px 40px rgba(13, 22, 51, 0.04);
        padding: 60px 30px;
        background: #f8f8f8;
    }

    .thank-you-label {
        font-family: "Libre-medium";
        color: var(--main-blu);
        font-size: 14px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.75;
        padding-bottom: 16px;
    }

    h1 {
        font-family: "Rep-bold";
        color: var(--main-blu);
        font-size: clamp(2.5rem, 1.8rem + 2vw, 4.5rem);
        line-height: 0.95;
        letter-spacing: -0.08em;
        padding-bottom: 18px;
    }

    .thank-you-text {
        font-family: "Libre-thin";
        color: var(--main-blu);
        font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
        line-height: 1.6;
        letter-spacing: -0.03em;
        max-width: 560px;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .thank-you-actions {
        padding-top: 24px;
    }

    .thank-you-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 220px;
        padding: 16px 24px;
        text-decoration: none;
        background: var(--main-blu);
        color: var(--main-white);
        font-family: "Libre-medium";
        font-size: 16px;
        letter-spacing: -0.03em;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    .thank-you-btn:hover {
        transform: translateY(-2px);
        opacity: 0.92;
    }

    @media (max-width: 768px) {
        padding: 140px 20px 90px;

        .thank-you-wrap {
            padding: 42px 22px;
        }

        .thank-you-btn {
            width: 100%;
            min-width: auto;
        }
    }
}