        @font-face {
            font-family: "NeueMontreal-Regular";
            src: url("./fonts/NeueMontreal-Regular.woff2") format("woff2");
            font-style: normal;
            font-weight: 400;
            font-display: swap;
        }

        @font-face {
            font-family: "NeueMontreal-Medium";
            src: url("./fonts/NeueMontreal-Regular.woff2") format("woff2");
            font-style: normal;
            font-weight: 500;
            font-display: swap;
        }

        @font-face {
            font-family: "RecklessNeue-Book";
            src: url("./fonts/RecklessNeue-Regular.woff2") format("woff2");
            font-style: normal;
            font-weight: 400;
            font-display: swap;
        }

        :root {
            --page-gutter: clamp(20px, 4vw, 70px);
            --content-gutter: clamp(24px, 3vw, 50px);
            --section-frame: 38px;
        }

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

            /* outline: 1px solid red; */
        }

        html {
            font-family: "NeueMontreal-Regular", sans-serif;
        }

        body {
            font-family: "NeueMontreal-Medium", sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Navbar */
        .sticky-navbar {
            height: 98px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 var(--page-gutter);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            background: transparent;
            /* Transparent at top */
            transition: all 0.3s ease;
            /* Smooth transition */
            box-shadow: none;
        }



        .sticky-navbar.scrolled {
            background: #fff;
            /* White when scrolled */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            /* optional shadow for separation */
            z-index: 999;
        }

        .sticky-navbar .logo {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sticky-navbar .logo img {
            width: 350px;
            height: auto;
        }

        .sticky-navbar.scrolled .logo {
            opacity: 1;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 90px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .mobile-menu-links {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .mobile-menu-brand,
        .mobile-menu-copy,
        .we-are-not-just-a-residence-we-are-an-urban-lifestyle-philosophy {
            display: none;
        }

        .mobile-only-link {
            display: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: #000;
            font-size: 17px;
            font-weight: 500;
            white-space: nowrap;
        }

        .join-btn {
            background: #000;
            color: #fff !important;
            padding: 8px 18px;
            height: 40px;

        }

        .partner-logo img {
            width: 230px;
        }

        @media screen and (min-width: 769px) {
            :root {
                --desktop-sticky-offset: 98px;
                --desktop-section-height: calc(100vh - var(--desktop-sticky-offset));
                --desktop-section-height: calc(100svh - var(--desktop-sticky-offset));
                --desktop-section-height: calc(100dvh - var(--desktop-sticky-offset));
                --desktop-panel-height: calc(var(--desktop-section-height) - 76px);
                --desktop-location-panel-height: calc(var(--desktop-section-height) - 75px);
            }

            .hero-section {
                min-height: auto;
                padding-top: 98px;
            }

            .brand-film-section {
                height: 1055px;
                min-height: 1055px;
                max-height: 1055px;
                padding: 0;
                justify-content: stretch;
                align-items: stretch;
            }

            .brand-film-background {
                display: block;
                width: 100%;
                height: 2108px;
                position: absolute;
                left: 0;
                top: -441px;
                object-fit: cover;
            }

            .brand-film-stage {
                width: 100%;
                height: 100%;
                position: relative;
                left: auto;
                top: auto;
                aspect-ratio: 16 / 9;
                background: transparent;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        .hero-content {
            height: calc(500px - 98px);
            display: flex;
            align-items: flex-end;
            width: 100%;
            padding-bottom: 2rem;
            padding-inline: var(--page-gutter);
            gap: 32px;
        }

        .hero-title {
            max-width: 500px;
            position: relative;
            left: 0;
            width: min(100%, 726px);
            display: block;
        }

        .hero-content p {
            font-size: 28px;
            line-height: 37px;
            font-weight: 500;
            margin-left: 0;
            max-width: 550px;
            padding-left: 50px;
        }

        .brand-film-section {
            position: relative;
            overflow: hidden;
            background: #e1e1e1;
            padding: 0;
            display: flex;
            justify-content: stretch;
            align-items: stretch;
        }

        .brand-film-background {
            display: none;
        }

        .brand-film-stage {
            width: 100%;
            aspect-ratio: 16 / 9;
            position: relative;
            overflow: hidden;
            background: #d8d8d8;
            z-index: 1;
        }

        .brand-film-poster,
        .brand-film-video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        .residence-intro {
            --intro-horizontal-padding: var(--page-gutter);
            --intro-vertical-padding: clamp(24px, 10vw, 164px);
            position: relative;
            background: #000;
            color: #fff;
            padding: var(--intro-vertical-padding) var(--intro-horizontal-padding);
            overflow: hidden;
        }

        .residence-intro__inner {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            gap: 32px;
        }

        .residence-intro__eyebrow {
            margin: 0;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 14px;
            line-height: 1.4;
            font-weight: 400;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            text-align: left;
        }

        .residence-intro__title {
            margin: 0;
            text-align: center;

            gap: 15px;
            word-spacing: 5px;
        }

        .residence-intro__title-main,
        .residence-intro__title-accent {
            display: block;
            text-align: left;
        }

        .residence-intro__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: clamp(43px, 11vw, 80px);
            line-height: 0.95;
            font-weight: 400;
            text-align: left;
        }

        .residence-intro__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: clamp(48px, 12vw, 85px);
            line-height: 0.95;
            font-weight: 400;
        }

        .residence-intro__lead {
            max-width: 34rem;
            margin: 0 auto;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 15px;
            line-height: 26px;
            font-weight: 400;
        }

        .residence-intro__stats {
            display: grid;
            gap: 20px;
        }

        .residence-intro__stat {
            display: grid;
            gap: 8px;
        }

        .residence-intro__stat-value {
            margin: 0;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 36px;
            line-height: 1;
            font-weight: 400;
        }

        .residence-intro__stat-label {
            margin: 0;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 11px;
            line-height: 22px;
            font-weight: 400;
            text-transform: uppercase;
        }

        .residence-intro__actions {
            display: flex;
            justify-content: flex-start;
        }

        .residence-intro__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 224px;
            min-height: 43px;
            padding: 10px 22px;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
        }

        .residence-intro__cta:hover {
            transform: translateY(-1px);
        }

        .residence-intro__corner {
            position: absolute;
            z-index: 1;
            width: 60px;
            height: auto;
            pointer-events: none;
        }

        .residence-intro__corner--bottom-right {
            right: var(--page-gutter);
            bottom: 90px;
        }

        @media screen and (max-width: 768px) {
            .brand-film-stage {
                aspect-ratio: 497 / 606;
            }

            .residence-intro__inner {
                gap: 24px;
            }

            .residence-intro__actions {
                justify-content: flex-start;
            }

            .residence-intro__corner {
                width: 30px;
            }

            .residence-intro__corner--bottom-right {
                right: var(--page-gutter);
                bottom: 32px;
            }
        }

        @media screen and (min-width: 769px) {
            .residence-intro {
                min-height: auto;
            }

            .residence-intro__inner {
                width: 100%;
                max-width: none;
                margin: 0;
                grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
                grid-template-areas:
                    "heading lead"
                    "heading stats"
                    "heading actions";
                column-gap: clamp(48px, 6vw, 90px);
                row-gap: 40px;
                align-items: start;
            }

            .residence-intro__header {
                grid-area: heading;
                align-self: start;
            }

            .residence-intro__eyebrow,
            .residence-intro__title {
                text-align: left;
            }

            .residence-intro__eyebrow {
                font-size: 27px;
                line-height: 1.1;
                margin-top: 18px;
            }

            .residence-intro__lead {
                grid-area: lead;
                width: 100%;
                max-width: none;
                margin: 0;
                font-size: 18px;
                line-height: 28px;
            }

            .residence-intro__stats {
                grid-area: stats;
                width: 100%;
                grid-template-columns: minmax(0, calc(50% - var(--page-gutter))) minmax(0, 50%);
                column-gap: 56px;
                row-gap: 42px;
                align-content: start;
            }

            .residence-intro__stat-value {
                font-size: 46px;
                line-height: 35px;
            }

            .residence-intro__stat-label {
                font-size: 20px;
                line-height: 35px;
            }

            .residence-intro__actions {
                grid-area: actions;
                width: 100%;
            }
        }

        .residence-gallery {
            position: relative;
            overflow: hidden;
            height: 640px;
            background: #111;
        }

        .residence-gallery__media {
            position: absolute;
            inset: 0;
        }

        .residence-gallery__image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        .residence-gallery__footer {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            min-height: 81px;
            padding: 20px 24px;
            background: rgba(0, 0, 0, 0.2);
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 16px;
        }

        .residence-gallery__caption {
            color: #fff;
            text-align: center;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 18px;
            line-height: 1.4;
            font-weight: 400;
            justify-self: center;
        }

        .residence-gallery__control {
            width: 34px;
            height: 34px;
            border: 0;
            padding: 0;
            background: transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .residence-gallery__control img {
            width: 34px;
            height: 34px;
            display: block;
        }

        .residence-gallery__control--prev img {
            transform: rotate(180deg);
        }

        .residence-gallery__control:hover {
            opacity: 0.8;
        }

        .residence-gallery__pagination {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            justify-self: center;
            width: min(100%, 222px);
            height: 6px;
        }

        .residence-gallery__pagination-track {
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.28);
            overflow: hidden;
        }

        .residence-gallery__pagination-progress {
            width: calc((var(--gallery-progress, 1) / var(--gallery-total, 4)) * 100%);
            height: 100%;
            border-radius: inherit;
            background: #fff;
            transition: width 0.25s ease;
        }

        .residence-gallery__pagination-buttons {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            width: 100%;
            height: 100%;
        }

        .residence-gallery__pagination-dot {
            width: 100%;
            height: 100%;
            border: 0;
            padding: 0;
            background: transparent;
            cursor: pointer;
        }

        @media screen and (max-width: 768px) {
            .residence-gallery {
                height: 520px;
            }

            .residence-gallery__footer {
                inset: 0;
                padding: 0 16px 18px;
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 12px;
                background: transparent;
                pointer-events: none;
            }

            .residence-gallery__footer::after {
                content: "";
                position: absolute;
                right: 0;
                bottom: 0;
                left: 0;
                height: 64px;
                background: rgba(0, 0, 0, 0.2);
                pointer-events: none;
            }

            .residence-gallery__caption {
                position: absolute;
                left: 50%;
                bottom: 18px;
                z-index: 1;
                width: min(calc(100% - 32px), 384px);
                transform: translateX(-50%);
                font-size: 15px;
                line-height: 1.35;
            }

            .residence-gallery__pagination {
                display: none;
            }

            .residence-gallery__control {
                position: absolute;
                top: 50%;
                z-index: 2;
                display: inline-flex;
                pointer-events: auto;
                transform: translateY(-50%);
            }

            .residence-gallery__control--prev {
                left: 18px;
            }

            .residence-gallery__control--next {
                right: 18px;
            }
        }

        @media screen and (min-width: 769px) {
            .residence-gallery {
                height: 100vh;
                min-height: 1088px;
            }

            .residence-gallery__footer {
                inset: 0;
                min-height: 0;
                padding: 0 var(--page-gutter);
                background: transparent;
                pointer-events: none;
            }

            .residence-gallery__footer::after {
                content: "";
                position: absolute;
                right: 0;
                bottom: 0;
                left: 0;
                height: 81px;
                background: rgba(0, 0, 0, 0.2);
                pointer-events: none;
            }

            .residence-gallery__caption {
                position: absolute;
                left: 50%;
                bottom: 22px;
                z-index: 1;
                width: min(100% - (var(--page-gutter) * 2), 520px);
                transform: translateX(-50%);
                font-size: 21px;
                line-height: 33px;
            }

            .residence-gallery__control {
                position: absolute;
                top: 50%;
                z-index: 2;
                pointer-events: auto;
                transform: translateY(-50%);
            }

            .residence-gallery__control--prev {
                left: var(--page-gutter);
            }

            .residence-gallery__control--next {
                right: var(--page-gutter);
            }

            .residence-gallery__pagination {
                display: none;
            }
        }

        .principles-section {
            position: relative;
            overflow: hidden;
            background: #000;
            color: #fff;
            height: 402px;
        }

        .principles-section__image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .principles-section__overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.46);
        }

        .principles-section__inner {
            position: relative;
            z-index: 1;
            height: 402px;
            min-height: 402px;
            max-height: 402px;
            padding: 12px 18px 34px;
            display: grid;
            align-content: start;
            justify-items: center;
        }

        .principles-section__index {
            margin: 0;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 21px;
            line-height: 33px;
            font-weight: 400;
        }

        .principles-section__index-total {
            color: #656565;
            font-size: 13px;
        }

        .principles-section__title {
            margin: 68px 0 0;
            text-align: center;
        }

        .principles-section__title-main,
        .principles-section__title-accent {
            display: block;
        }

        .principles-section__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 44px;
            line-height: 45px;
            font-weight: 400;
        }

        .principles-section__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: 49px;
            line-height: 45px;
            font-weight: 400;
        }

        .principles-section__copy {
            max-width: 249px;
            margin: 26px 0 0;
            text-align: center;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 15px;
            line-height: 20px;
            font-weight: 400;
            white-space: pre-line;
        }

        .principles-section__indicator {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 222px;
            height: 6px;
            margin-top: 21px;
        }

        .principles-section__indicator-track {
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.28);
            overflow: hidden;
        }

        .principles-section__indicator-progress {
            width: calc((var(--principles-progress, 1) / var(--principles-total, 6)) * 100%);
            height: 100%;
            border-radius: inherit;
            background: #fff;
            transition: width 0.25s ease;
        }

        .principles-section__indicator-buttons {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            width: 100%;
            height: 100%;
        }

        .principles-section__indicator-dot {
            width: 100%;
            height: 100%;
            border: 0;
            padding: 0;
            background: transparent;
            cursor: pointer;
        }

        @media screen and (max-width: 768px) {
            .principles-section {
                height: calc(100vh - 88px);
                min-height: calc(100svh - 88px);
                min-height: calc(100dvh - 88px);
            }

            .principles-section__inner {
                position: relative;
                height: 100%;
                min-height: 100%;
                max-height: none;
                padding: 24px 18px 40px;
                display: block;
            }

            .principles-section__content {
                position: relative;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .principles-section__index {
                position: absolute;
                top: 0;
                left: 50%;
                width: 100%;
                margin: 0;
                text-align: center;
                transform: translateX(-50%);
            }

            .principles-section__title {
                margin-top: 190px;
            }

            .principles-section__copy {
                margin-top: 32px;
            }

            .principles-section__indicator {
                position: absolute;
                left: 50%;
                bottom: 34px;
                top: auto;
                margin-top: 0;
                transform: translateX(-50%);
                z-index: 2;
            }
        }

        @media screen and (min-width: 769px) {
            .principles-section {
                --principles-left-gap: var(--page-gutter);
                --principles-right-gap: var(--page-gutter);
                --principles-top-gap: var(--page-gutter);
                --principles-section-height: 1180px;
                --principles-panel-height: calc(var(--principles-section-height) - (var(--principles-top-gap) * 2));
                --principles-image-width: calc((100% - var(--principles-left-gap) - var(--principles-right-gap)) / 2);
                height: var(--principles-section-height);
                min-height: var(--principles-section-height);
                max-height: var(--principles-section-height);
                width: 100%;
                background: #fff;
                color: #fff;
            }

            .principles-section__image {
                position: absolute;
                top: var(--principles-top-gap);
                left: var(--principles-left-gap);
                right: auto;
                width: var(--principles-image-width);
                height: var(--principles-panel-height);
                object-fit: cover;
                object-position: center center;
            }

            .principles-section__overlay {
                position: absolute;
                top: var(--principles-top-gap);
                right: var(--principles-right-gap);
                left: calc(var(--principles-left-gap) + var(--principles-image-width));
                width: auto;
                height: var(--principles-panel-height);
                background: #000;
            }

            .principles-section__inner {
                position: relative;
                height: var(--principles-section-height);
                min-height: var(--principles-section-height);
                max-height: var(--principles-section-height);
                width: 100%;
                margin: 0;
                padding: 0;
                display: block;
            }

            .principles-section__content {
                position: absolute;
                top: var(--principles-top-gap);
                right: var(--principles-right-gap);
                bottom: var(--principles-top-gap);
                left: calc(var(--principles-left-gap) + var(--principles-image-width));
                display: block;
                padding: 0;
            }

            .principles-section__index {
                position: absolute;
                top: 51px;
                left: 50%;
                width: min(384px, calc(100% - 80px));
                font-size: 29px;
                line-height: 33px;
                margin: 0;
                text-align: center;
                transform: translateX(-50%);
            }

            .principles-section__index-total {
                font-size: 21px;
            }

            .principles-section__title {
                position: absolute;
                top: 259px;
                left: 50%;
                width: min(842px, calc(100% - 20px));
                margin: 0;
                text-align: center;
                transform: translateX(-50%);
            }

            .principles-section__title-main {
                font-size: 80px;
                line-height: 79px;
            }

            .principles-section__title-accent {
                font-size: 85px;
                line-height: 79px;
            }

            .principles-section__copy {
                position: absolute;
                top: 700px;
                left: 50%;
                width: min(384px, calc(100% - 80px));
                font-size: 21px;
                line-height: 33px;
                max-width: none;
                margin: 0;
                text-align: center;
                transform: translateX(-50%);
            }

            .principles-section__indicator {
                display: none;
            }

            .principles-section__control {
                position: absolute;
                z-index: 2;
                width: 34px;
                height: 34px;
                border: 0;
                padding: 0;
                background: transparent;
                cursor: pointer;
                top: auto;
                transform: none;
            }

            .principles-section__control img {
                width: 34px;
                height: 34px;
                display: block;
            }

            .principles-section__control--prev {
                left: calc(var(--page-gutter) + 29px);
                top: 50%;
                transform: translateY(-50%) rotate(180deg);
            }

            .principles-section__control--next {
                right: calc(var(--page-gutter) + 29px);
                top: 50%;
                transform: translateY(-50%);
            }
        }

        /* Corner Images */
        .corner-img {
            position: absolute;
            z-index: 1;
            width: 60px;
            height: auto;
        }

        .top-left {
            top: 32px;
            left: var(--page-gutter);
        }

        .top-right {
            top: 32px;
            right: var(--page-gutter);
        }

        .bottom-right {
            bottom: 32px;
            right: var(--page-gutter);
        }

        /* Hide corner images on mobile */
        @media screen and (max-width: 768px) {

            .top-right {
                display: none;
            }

            .top-left {
                top: 32px;
                left: var(--page-gutter);
            }

            .sticky-navbar {
                height: 88px;
                padding: 0 var(--page-gutter);
                align-items: center;
            }

            .sticky-navbar .logo img {
                width: 250px;
                height: auto;
            }

            .nav-right {
                gap: 16px;
                position: relative;
            }

            /* Hamburger button styling */
            .hamburger {
                display: block;
                background: none;
                border: none;
                cursor: pointer;
                padding: 0;
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: fixed;
                top: 22px;
                right: 16px;
                z-index: 10001;
            }

            .hamburger img {
                width: 24px;
                height: 24px;
                object-fit: contain;
                display: block;
                margin-top: 0;
            }

            /* Hide nav menu initially */
            .nav-menu {
                display: none;
                flex-direction: column;
                position: fixed;
                inset: 0;
                background: #000;
                width: 100vw;
                min-height: 100vh;
                padding: 24px 39px 40px;
                box-shadow: none;
                justify-content: flex-start;
                align-items: stretch;
                gap: 0;
                z-index: 10000;
            }

            .nav-menu a {
                /* margin: 0; */
                display: block;
                color: #fff;
                font-size: 34px;
                line-height: 79px;
                text-align: left;
                width: 100%;
                padding: 0;
            }

            .partner-logo img {
                width: 88px;
            }

            .partner-logo {
                display: none;
            }

            /* Show menu when active */
            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-brand {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                margin-top: 0;
                min-height: 20px;
                margin-bottom: 44px;
            }

            .mobile-menu-brand img {
                width: 115px;
                height: auto;
                filter: brightness(0) invert(1);
            }

            .mobile-menu-links {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                width: 100%;
            }

            .mobile-only-link {
                display: block;
            }

            .mobile-menu-copy,
            .we-are-not-just-a-residence-we-are-an-urban-lifestyle-philosophy {
                margin-top: 62px;
                color: #fff;
                text-align: left;
                font-family: "NeueMontreal-Medium", sans-serif;
                font-size: 20px;
                line-height: 29px;
                max-width: 362px;
            }

            .join-btn {
                background: #fff;
                color: #000 !important;
                display: flex !important;
                align-items: center;
                justify-content: center;
                width: 155px !important;
                min-height: 53px;
                margin-top: 18px;
                padding: 0 13px;
                font-size: 27px !important;
                line-height: 1;
            }

            .sticky-navbar.menu-open {
                background: transparent;
                box-shadow: none;
                z-index: 10000;
            }

            .sticky-navbar.menu-open .logo,
            .sticky-navbar.menu-open .partner-logo {
                opacity: 0;
                pointer-events: none;
            }

            .sticky-navbar.menu-open .hamburger {
                top: 12px;
                right: 16px;
            }

            .sticky-navbar.menu-open .hamburger img {
                width: 22px;
                height: 22px;
            }

            /* Hero image responsive */
            .hero-title {
                max-width: min(60%, 378px);
            }

            .hero-content {
                height: auto;
                min-height: 250px;
                align-items: flex-end;
                padding: 0 var(--page-gutter) 24px;
            }

            /* Hide hero paragraph on mobile */
            .hero-content p {
                display: none;
            }

            .hero-section {
                min-height: 250px;
            }

            .bottom-right {
                bottom: 32px;
                right: var(--page-gutter);
            }

            .corner-img {
                width: 30px;
                height: auto;
            }

        }

        /* Optional: hamburger hidden on desktop */
        @media screen and (min-width: 769px) {
            .hamburger {
                display: none;
            }
        }

        @media screen and (min-width: 769px) and (max-width: 1439px) {
            .nav-menu {
                gap: 22px;
            }

            .nav-menu a {
                font-size: 15px;
            }

            .partner-logo img {
                width: 100px;
            }

            .hero-content p {
                font-size: 24px;
                line-height: 32px;
                max-width: 380px;
                margin-bottom: 88px;
            }

            .hero-title {
                max-width: 560px;
            }
        }

        @media screen and (min-width: 769px) and (max-width: 1100px) {
            .nav-right {
                gap: 18px;
            }

            .nav-menu {
                gap: 16px;
            }

            .nav-menu a {
                font-size: 14px;
            }

            .partner-logo img {
                width: 88px;
            }

            .hero-content p {
                font-size: 20px;
                line-height: 28px;
                max-width: 320px;
                margin-bottom: 96px;
            }
        }

        .location-desktop {
            display: none;
        }

        .location-mobile-carousel {
            --location-mobile-progress: 1;
            --location-mobile-total: 3;
            position: relative;
            overflow: hidden;
            background: #fff;
            display: block;
        }

        .location-mobile-carousel__track {
            display: flex;
            transition: transform 0.35s ease;
            width: 100%;
        }

        .location-mobile-carousel__slide {
            position: relative;
            width: 100%;
            flex: 0 0 100%;
            overflow: hidden;
        }

        .location-mobile-carousel__slide--intro {
            background: #fff;
            height: 541px;
            padding: 14px 24px 40px;
            display: grid;
            justify-items: center;
            align-content: start;
        }

        .location-mobile-carousel__slide--stats {
            background: #000;
            color: #fff;
            height: 541px;
            padding: 48px 16px 64px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-mobile-carousel__slide--map {
            background: #000;
            height: 541px;
        }

        .location-mobile-carousel__corners img {
            position: absolute;
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .location-mobile-carousel__corners img:nth-child(1) {
            top: 14px;
            left: 15px;
        }

        .location-mobile-carousel__corners img:nth-child(2) {
            top: 14px;
            right: 15px;
            transform: rotate(0deg);
        }

        .location-mobile-carousel__corners img:nth-child(3) {
            right: 15px;
            bottom: 15px;
            transform: rotate(0deg);
        }

        .location-mobile-carousel__corners img:nth-child(4) {
            bottom: 15px;
            left: 15px;
            transform: rotate(90deg);
        }

        .location-mobile-carousel__title {
            margin: 42px 0 0;
            text-align: center;
            color: #000;
        }

        .location-mobile-carousel__title-main,
        .location-mobile-carousel__title-accent {
            display: block;
        }

        .location-mobile-carousel__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 44px;
            line-height: 45px;
            font-weight: 400;
        }

        .location-mobile-carousel__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: 49px;
            line-height: 45px;
            font-weight: 400;
        }

        .location-mobile-carousel__copy {
            max-width: 335px;
            margin: 26px auto 0;
            color: #000;
            text-align: center;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 15px;
            line-height: 26px;
            font-weight: 400;
        }

        .location-mobile-carousel__cta {
            margin-top: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 224px;
            min-height: 43px;
            padding: 10px 22px;
            background: #000;
            color: #fff;
            text-decoration: none;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
        }

        .location-mobile-carousel__stats-list {
            display: grid;
            gap: 13px;
            justify-items: center;
            width: 100%;
        }

        .location-mobile-carousel__stats-item {
            text-align: center;
            width: 100%;
        }

        .location-mobile-carousel__stats-primary {
            display: block;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: clamp(22px, 6.2vw, 28px);
            line-height: 0.95;
            font-weight: 400;
            white-space: nowrap;
        }

        .location-mobile-carousel__stats-secondary {
            display: block;
            margin-top: 5px;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 10px;
            line-height: 1.1;
            font-weight: 400;
        }

        .location-mobile-carousel__stats-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: clamp(24px, 6.8vw, 32px);
            line-height: 0.95;
            font-weight: 400;
        }

        .location-mobile-carousel__map-image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        .location-mobile-carousel__map-logo {
            position: absolute;
            left: 50%;
            top: 285px;
            width: 59px;
            height: 39px;
            object-fit: contain;
            transform: translateX(-50%);
        }

        .location-mobile-carousel__pagination {
            position: absolute;
            right: 0;
            bottom: 20px;
            left: 0;
            display: flex;
            justify-content: center;
            pointer-events: none;
        }

        .location-mobile-carousel__pagination-inner {
            position: relative;
            width: 222px;
            height: 6px;
            pointer-events: auto;
        }

        .location-mobile-carousel__pagination-track {
            position: absolute;
            inset: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.3);
            overflow: hidden;
            filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
        }

        .location-mobile-carousel__pagination-progress {
            width: calc((var(--location-mobile-progress) / var(--location-mobile-total)) * 100%);
            height: 100%;
            border-radius: inherit;
            background: #fff;
            transition: width 0.25s ease;
        }

        .location-mobile-carousel__pagination-buttons {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            width: 100%;
            height: 100%;
        }

        .location-mobile-carousel__pagination-button {
            width: 100%;
            height: 100%;
            border: 0;
            padding: 0;
            background: transparent;
            cursor: pointer;
        }

        @media screen and (min-width: 769px) {
            .location-desktop {
                display: block;
            }

            .location-mobile-carousel {
                display: none;
            }

            .location-story {
                position: relative;
                overflow: hidden;
                background: #fff;
                height: calc(984px + (var(--page-gutter) * 2));
                min-height: calc(984px + (var(--page-gutter) * 2));
                max-height: calc(984px + (var(--page-gutter) * 2));
                padding: var(--page-gutter);
            }

            .location-story__inner {
                display: grid;
                grid-template-columns: minmax(0, calc(50% - var(--page-gutter))) minmax(0, calc(50% + var(--page-gutter)));
                column-gap: 0;
                align-items: start;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
            }

            .location-story__content {
                position: relative;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                padding: var(--page-gutter);
                display: grid;
                justify-items: center;
                align-content: start;
            }

            .location-story__corners img {
                position: absolute;
                width: 51px;
                height: 51px;
                object-fit: contain;
            }

            .location-story__corners img:nth-child(1) {
                top: 0;
                left: 0;
            }

            .location-story__corners img:nth-child(2) {
                top: 0;
                right: 0;
                transform: rotate(0deg);
            }

            .location-story__corners img:nth-child(3) {
                right: 0;
                bottom: 0;
                transform: rotate(0deg);
            }

            .location-story__corners img:nth-child(4) {
                bottom: 0;
                left: 0;
                transform: rotate(90deg);
            }

            .location-story__title {
                margin: 199px 0 0;
                text-align: center;
                color: #000;
            }

            .location-story__title-main,
            .location-story__title-accent {
                display: block;
            }

            .location-story__title-main {
                font-family: "NeueMontreal-Regular", sans-serif;
                font-size: 80px;
                line-height: 79px;
                font-weight: 400;
            }

            .location-story__title-accent {
                font-family: "RecklessNeue-Book", sans-serif;
                font-size: 85px;
                line-height: 79px;
                font-weight: 400;
            }

            .location-story__copy {
                max-width: 522px;
                margin: 72px 0 0;
                color: #000;
                text-align: center;
                font-family: "NeueMontreal-Regular", sans-serif;
                font-size: 18px;
                line-height: 27px;
                font-weight: 400;
            }

            .location-story__cta {
                margin-top: 80px;
                align-self: end;
                /* margin-bottom: 122px; */
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-width: 224px;
                min-height: 43px;
                padding: 10px 22px;
                background: #000;
                color: #fff;
                text-decoration: none;
                font-family: "NeueMontreal-Medium", sans-serif;
                font-size: 15px;
                line-height: 1;
                font-weight: 500;
            }

            .location-story__media-frame {
                position: relative;
                width: 100%;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                padding-left: var(--page-gutter);
                /* background: #000; */
                overflow: hidden;
            }

            .location-story__media-image {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: var(--page-gutter);
                width: calc(100% - var(--page-gutter));
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }

            .location-map {
                position: relative;
                overflow: hidden;
                background: #000;
                height: calc(984px + (var(--page-gutter) * 2));
                min-height: calc(984px + (var(--page-gutter) * 2));
                max-height: calc(984px + (var(--page-gutter) * 2));
                padding: var(--page-gutter);
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                column-gap: 0;
                align-items: start;
            }

            .location-map__stats {
                position: relative;
                grid-column: 2;
                grid-row: 1;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                display: grid;
                align-content: center;
                justify-items: center;
                gap: 22px;
            }

            /* .location-map__stats::before {
                content: "";
                position: absolute;
                inset: -88px auto auto -208px;
                width: 2050px;
                height: 1160px;
                background: #000;
                z-index: 0;
            } */

            .location-map__stats-item {
                position: relative;
                z-index: 1;
                text-align: center;
            }

            .location-map__stats-primary {
                display: block;
                font-family: "NeueMontreal-Regular", sans-serif;
                font-size: 51px;
                line-height: 31px;
                font-weight: 400;
                color: #fff;
            }

            .location-map__stats-secondary {
                display: block;
                margin-top: 8px;
                font-family: "NeueMontreal-Regular", sans-serif;
                font-size: 17px;
                line-height: 31px;
                font-weight: 400;
                color: #fff;
            }

            .location-map__stats-accent {
                font-family: "RecklessNeue-Book", sans-serif;
                font-size: 55px;
                line-height: 31px;
                font-weight: 400;
            }

            .location-map__visual {
                position: relative;
                grid-column: 1;
                grid-row: 1;
                width: 100%;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                overflow: hidden;
            }

            .location-map__image {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
                object-position: center center;
            }

            .location-map__logo {
                position: absolute;
                left: 50%;
                top: 50%;
                width: 122px;
                height: 80px;
                object-fit: contain;
                transform: translate(-50%, -50%);
            }
        }

        .apartment-types {
            background: #000;
            color: #fff;
            padding: 50px 24px 50px;
            overflow: hidden;
        }

        .apartment-types__media {
            display: none;
        }

        .apartment-types__content {
            max-width: 720px;
            margin: 0 auto;
        }

        .apartment-types__title {
            margin: 0;
            text-align: center;
        }

        .apartment-types__title-main,
        .apartment-types__title-accent {
            display: block;
        }

        .apartment-types__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 44px;
            line-height: 45px;
            font-weight: 400;
        }

        .apartment-types__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: 49px;
            line-height: 45px;
            font-weight: 400;
        }

        .apartment-types__grid {
            position: relative;
            width: min(100%, 650px);
            margin-top: 42px;
            margin-left: auto;
            margin-right: auto;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 18px;
            row-gap: 0;
        }

        .apartment-types__grid::before {
            content: none;
        }

        .apartment-types__item {
            padding: 12px 8px 14px;
            text-align: center;
            border-bottom: none;
        }

        .apartment-types__item:nth-child(-n + 6) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.28);
        }

        .apartment-types__item:last-child {
            grid-column: 1 / -1;
            justify-self: center;
            width: min(100%, 260px);
            margin-top: 12px;
            border-bottom: none;
        }

        .apartment-types__label {
            display: block;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-size: 12px;
            line-height: 1.2;
            font-weight: 500;
        }

        .apartment-types__value {
            display: block;
            margin-top: 8px;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 24px;
            line-height: 1.1;
            font-weight: 400;
            text-transform: uppercase;
        }

        .apartment-types__actions {
            margin-top: 62px;
            display: flex;
            justify-content: center;
        }

        .apartment-types__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 224px;
            min-height: 43px;
            padding: 10px 22px;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
        }

        @media screen and (min-width: 769px) {
            .apartment-types {
                --apartment-section-height: 1180px;
                --apartment-panel-height: calc(var(--apartment-section-height) - (var(--page-gutter) * 2));
                width: 100%;
                height: var(--apartment-section-height);
                min-height: var(--apartment-section-height);
                max-height: var(--apartment-section-height);
                padding: var(--page-gutter);
                background: #fff;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                align-items: start;
                gap: 0;
            }

            .apartment-types__media {
                display: block;
                width: 100%;
                height: var(--apartment-panel-height);
                overflow: hidden;
            }

            .apartment-types__image {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
                object-position: center center;
            }

            .apartment-types__content {
                max-width: none;
                margin: 0;
                height: var(--apartment-panel-height);
                min-height: var(--apartment-panel-height);
                background: #000;
                padding: 93px 78px 89px;
                display: grid;
                grid-template-rows: auto auto auto;
                align-content: center;
            }

            .apartment-types__title-main {
                font-size: 80px;
                line-height: 79px;
            }

            .apartment-types__title-accent {
                font-size: 83px;
                line-height: 79px;
            }

            .apartment-types__grid {
                width: min(100%, 650px);
                margin-top: 54px;
                column-gap: 0;
            }

            .apartment-types__item {
                padding: 0 18px 18px;
                min-height: 72px;
                display: grid;
                align-content: center;
            }

            .apartment-types__item:last-child {
                width: min(100%, 256px);
                margin-top: 18px;
            }

            .apartment-types__label {
                font-size: 15px;
                line-height: 36px;
            }

            .apartment-types__value {
                margin-top: -2px;
                font-size: 38px;
                line-height: 36px;
            }

            .apartment-types__actions {
                margin-top: 70px;
                justify-content: center;
            }
        }

        .story-space {
            background: #fff;
            color: #000;
        }

        .story-space__copy {
            position: relative;
            min-height: 442px;
            padding: 26px 24px 82px;
            overflow: hidden;
        }

        .story-space__corners img {
            position: absolute;
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .story-space__corners img:nth-child(1) {
            top: 14px;
            left: 15px;
        }

        .story-space__corners img:nth-child(2) {
            top: 14px;
            right: 15px;
            transform: rotate(0deg);
        }

        .story-space__corners img:nth-child(3) {
            right: 15px;
            bottom: 15px;
            transform: rotate(0deg);
        }

        .story-space__corners img:nth-child(4) {
            bottom: 15px;
            left: 15px;
            transform: rotate(90deg);
        }

        .story-space__title {
            margin: 42px 0 0;
            text-align: center;
        }

        .story-space__title-main,
        .story-space__title-accent {
            display: block;
        }

        .story-space__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 44px;
            line-height: 45px;
            font-weight: 400;
        }

        .story-space__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: 49px;
            line-height: 45px;
            font-weight: 400;
        }

        .story-space__lead {
            max-width: 335px;
            margin: 26px auto 0;
            text-align: center;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 15px;
            line-height: 26px;
            font-weight: 400;
        }

        .story-space__actions {
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }

        .story-space__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 224px;
            min-height: 43px;
            padding: 10px 22px;
            background: #000;
            color: #fff;
            text-decoration: none;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
        }

        .story-space__media {
            height: 403px;
            overflow: hidden;
        }

        .story-space__image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        @media screen and (min-width: 769px) {
            .story-space {
                width: 100%;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                display: grid;
                grid-template-columns: minmax(0, calc(50% - var(--page-gutter))) minmax(0, calc(50% + var(--page-gutter)));
                align-items: start;
                column-gap: 0;
                padding: 0 var(--page-gutter);
                overflow: hidden;
            }

            .story-space__copy {
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                padding: var(--page-gutter);
            }

            .story-space__corners img {
                width: 51px;
                height: 51px;
            }

            .story-space__corners img:nth-child(1) {
                top: 0;
                left: 0;
            }

            .story-space__corners img:nth-child(2) {
                top: 0;
                right: 0;
            }

            .story-space__corners img:nth-child(3) {
                right: 0;
                bottom: 0;
            }

            .story-space__corners img:nth-child(4) {
                bottom: 0;
                left: 0;
            }

            .story-space__title {
                margin-top: 145px;
            }

            .story-space__title-main {
                font-size: 80px;
                line-height: 79px;
            }

            .story-space__title-accent {
                font-size: 85px;
                line-height: 79px;
            }

            .story-space__lead {
                max-width: 423px;
                margin-top: 80px;
                font-size: 18px;
                line-height: 28px;
            }

            .story-space__actions {
                margin-top: 44px;
            }

            .story-space__media {
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                padding-left: var(--page-gutter);
            }

            .story-space__media .brand-film-video {
                width: 100%;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
            }
        }

        .space-pace {
            background: #fff;
            color: #000;
        }

        .space-pace__desktop {
            display: none;
        }

        .space-pace-mobile {
            display: block;
            background: #fff;
        }

        .space-pace-mobile__intro {
            position: relative;
            padding: 56px 24px 92px;
        }

        .space-pace-mobile__corners img {
            position: absolute;
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .space-pace-mobile__corners img:nth-child(1) {
            top: 14px;
            left: 15px;
        }

        .space-pace-mobile__corners img:nth-child(2) {
            top: 14px;
            right: 15px;
            transform: rotate(0deg);
        }

        .space-pace-mobile__corners img:nth-child(3) {
            right: 15px;
            bottom: 15px;
            transform: rotate(0deg);
        }

        .space-pace-mobile__corners img:nth-child(4) {
            bottom: 15px;
            left: 15px;
            transform: rotate(90deg);
        }

        .space-pace-mobile__title {
            margin: 0;
            text-align: center;
        }

        .space-pace-mobile__title-main,
        .space-pace-mobile__title-accent {
            display: block;
        }

        .space-pace-mobile__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 44px;
            line-height: 45px;
            font-weight: 400;
        }

        .space-pace-mobile__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: 49px;
            line-height: 45px;
            font-weight: 400;
        }

        .space-pace-mobile__copy {
            max-width: 335px;
            margin: 28px auto 0;
            text-align: center;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 15px;
            line-height: 26px;
            font-weight: 400;
        }

        .space-pace-mobile__actions {
            margin-top: 38px;
            display: flex;
            justify-content: center;
        }

        .space-pace-mobile__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 224px;
            min-height: 43px;
            padding: 10px 22px;
            background: #000;
            color: #fff;
            text-decoration: none;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
        }

        .space-pace-mobile__media {
            background: #000;
            height: 468px;
            overflow: hidden;
        }

        .space-pace-mobile__image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        @media screen and (min-width: 769px) {
            .space-pace-mobile {
                display: none;
            }

            .space-pace__desktop {
                width: 100%;
                height: calc(984px + (var(--page-gutter) * 2));
                min-height: calc(984px + (var(--page-gutter) * 2));
                max-height: calc(984px + (var(--page-gutter) * 2));
                display: grid;
                grid-template-columns: minmax(0, calc(50% - var(--page-gutter))) minmax(0, calc(50% + var(--page-gutter)));
                column-gap: 0;
                align-items: start;
                padding: var(--page-gutter);
                overflow: hidden;
            }

            .space-pace__copy {
                position: relative;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                padding: var(--page-gutter);
            }

            .space-pace__corners img {
                position: absolute;
                width: 51px;
                height: 51px;
                object-fit: contain;
            }

            .space-pace__corners img:nth-child(1) {
                top: 0;
                left: 0;
            }

            .space-pace__corners img:nth-child(2) {
                top: 0;
                right: 0;
                transform: rotate(0deg);
            }

            .space-pace__corners img:nth-child(3) {
                right: 0;
                bottom: 0;
                transform: rotate(0deg);
            }

            .space-pace__corners img:nth-child(4) {
                bottom: 0;
                left: 0;
                transform: rotate(90deg);
            }

            .space-pace__title {
                margin: 163px 0 0;
                text-align: center;
            }

            .space-pace__title-main,
            .space-pace__title-accent {
                display: block;
            }

            .space-pace__title-main {
                font-family: "NeueMontreal-Regular", sans-serif;
                font-size: 80px;
                line-height: 79px;
                font-weight: 400;
            }

            .space-pace__title-accent {
                font-family: "RecklessNeue-Book", sans-serif;
                font-size: 85px;
                line-height: 79px;
                font-weight: 400;
            }

            .space-pace__lead {
                max-width: 522px;
                margin: 80px auto 0;
                text-align: center;
                font-family: "NeueMontreal-Regular", sans-serif;
                font-size: 18px;
                line-height: 28px;
                font-weight: 400;
            }

            .space-pace__actions {
                margin-top: 70px;
                display: flex;
                justify-content: center;
            }

            .space-pace__cta {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-width: 224px;
                min-height: 43px;
                padding: 10px 22px;
                background: #000;
                color: #fff;
                text-decoration: none;
                font-family: "NeueMontreal-Medium", sans-serif;
                font-size: 15px;
                line-height: 1;
                font-weight: 500;
            }

            .space-pace__media {
                width: 100%;
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                padding-left: var(--page-gutter);
                overflow: hidden;
            }

            .space-pace__image {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
                object-position: center center;
            }
        }

        .amenity-manifesto {
            position: relative;
            overflow: hidden;
            background: #000;
            color: #fff;
            min-height: 760px;
            padding: 48px 20px 56px;
        }

        .amenity-manifesto__bg {
            position: absolute;
            inset: -40px -120px;
            background: #000;
        }

        .amenity-manifesto__inner {
            position: relative;
            z-index: 1;
            max-width: 1205px;
            margin: 0 auto;
            text-align: center;
        }

        .amenity-manifesto__title {
            margin: 0;
        }

        .amenity-manifesto__title--bottom {
            margin-top: 36px;
        }

        .amenity-manifesto__line {
            display: block;
            color: #3b3b3b;
            font-weight: 400;
            letter-spacing: -0.02em;
            cursor: pointer;
            transition: color 220ms ease;
            transform: translate3d(0, 0, 0);
            user-select: none;
            will-change: transform;
        }

        .amenity-manifesto__line:focus-visible {
            outline: 1px solid rgba(255, 255, 255, 0.65);
            outline-offset: 6px;
        }

        .amenity-manifesto__line--sans {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: clamp(42px, 10vw, 113px);
            line-height: 0.98;
        }

        .amenity-manifesto__line--serif {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: clamp(44px, 10.4vw, 117px);
            line-height: 0.98;
        }

        .amenity-manifesto__line--highlight,
        .amenity-manifesto__line.is-active {
            color: #fff;
        }

        .amenity-manifesto__line-text {
            display: inline;
        }

        .amenity-manifesto__copy-block {
            position: relative;
            z-index: 2;
            width: fit-content;
            max-width: min(100%, 538px);
            margin: 30px auto 0;
            padding: 0;
        }

        .amenity-manifesto__copy {
            max-width: 538px;
            margin: 0;
            text-align: center;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 17px;
            line-height: 1.7;
            font-weight: 400;
        }

        .amenity-manifesto__icon {
            width: 34px;
            height: 34px;
            display: block;
            margin: 24px auto 0;
            object-fit: contain;
        }

        @media screen and (min-width: 769px) {
            .amenity-manifesto {
                width: 100%;
                height: 1088px;
                padding: 0;
            }

            .amenity-manifesto__bg {
                width: 2050px;
                height: 1160px;
                inset: auto;
                left: -127px;
                top: -36px;
            }

            .amenity-manifesto__inner {
                padding-top: 0;
            }

            .amenity-manifesto__title {
                position: relative;
                top: -36px;
            }

            .amenity-manifesto__title--bottom {
                margin-top: 230px;
            }

            .amenity-manifesto__line--sans {
                font-size: 113px;
                line-height: 114px;
            }

            .amenity-manifesto__line--serif {
                font-size: 117px;
                line-height: 114px;
            }

            .amenity-manifesto__copy-block {
                position: absolute;
                top: 570px;
                left: 50%;
                width: 538px;
                margin: 0;
                transform: translateX(-50%);
            }

            .amenity-manifesto__copy {
                font-size: 21px;
                line-height: 33px;
            }

            .amenity-manifesto__icon {
                margin-top: 28px;
            }
        }

        .live-global-section {
            position: relative;
            height: 403px;
            background: #000;
            color: #fff;
            overflow: hidden;
        }

        .live-global-section__media {
            position: absolute;
            inset: 0;
            opacity: 0.73;
        }

        .live-global-section__image,
        .live-global-section__video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        .live-global-section__corners img {
            position: absolute;
            width: 24px;
            height: 24px;
            object-fit: contain;
            z-index: 1;
        }

        .live-global-section__corners img:nth-child(1) {
            top: 14px;
            left: 15px;
        }

        .live-global-section__corners img:nth-child(2) {
            top: 14px;
            right: 15px;
            transform: rotate(0deg);
        }

        .live-global-section__corners img:nth-child(3) {
            right: 15px;
            bottom: 15px;
            transform: rotate(0deg);
        }

        .live-global-section__corners img:nth-child(4) {
            bottom: 15px;
            left: 15px;
            transform: rotate(0deg);
        }

        .live-global-section__title {
            position: relative;
            z-index: 1;
            width: min(402px, calc(100% - 48px));
            margin: 0 auto;
            padding-top: 150px;
            text-align: center;
        }

        .live-global-section__title-main,
        .live-global-section__title-accent {
            display: block;
        }

        .live-global-section__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 44px;
            line-height: 45px;
            font-weight: 400;
        }

        .live-global-section__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: 49px;
            line-height: 45px;
            font-weight: 400;
        }

        @media screen and (min-width: 769px) {
            .live-global-section {
                height: 1088px;
            }

            .live-global-section__media {
                inset: 0;
            }

            .live-global-section__corners img {
                width: 51px;
                height: 51px;
            }

            .live-global-section__corners img:nth-child(1) {
                top: var(--page-gutter);
                left: var(--page-gutter);
            }

            .live-global-section__corners img:nth-child(2) {
                top: var(--page-gutter);
                right: var(--page-gutter);
            }

            .live-global-section__corners img:nth-child(3) {
                right: var(--page-gutter);
                bottom: var(--page-gutter);
            }

            .live-global-section__corners img:nth-child(4) {
                bottom: var(--page-gutter);
                left: var(--page-gutter);
            }

            .live-global-section__title {
                width: 842px;
                padding-top: 418px;
            }

            .live-global-section__title-main {
                font-size: 116px;
                line-height: 108px;
            }

            .live-global-section__title-accent {
                font-size: 121px;
                line-height: 108px;
            }
        }

        .global-presence {
            background: #fff;
            color: #000;
        }

        .global-presence__copy {
            position: relative;
            min-height: 442px;
            padding: 26px 24px 82px;
            overflow: hidden;
        }

        .global-presence__corners img {
            position: absolute;
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .global-presence__corners img:nth-child(1) {
            top: 14px;
            left: 15px;
        }

        .global-presence__corners img:nth-child(2) {
            top: 14px;
            right: 15px;
            transform: rotate(0deg);
        }

        .global-presence__corners img:nth-child(3) {
            right: 15px;
            bottom: 15px;
            transform: rotate(0deg);
        }

        .global-presence__corners img:nth-child(4) {
            bottom: 15px;
            left: 15px;
            transform: rotate(90deg);
        }

        .global-presence__title {
            margin: 42px 0 0;
            text-align: center;
        }

        .global-presence__title-main,
        .global-presence__title-accent {
            display: block;
        }

        .global-presence__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 44px;
            line-height: 45px;
            font-weight: 400;
        }

        .global-presence__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: 49px;
            line-height: 45px;
            font-weight: 400;
        }

        .global-presence__lead {
            max-width: 335px;
            margin: 26px auto 0;
            text-align: center;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 15px;
            line-height: 26px;
            font-weight: 400;
        }

        .global-presence__actions {
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }

        .global-presence__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 224px;
            min-height: 43px;
            padding: 10px 22px;
            background: #000;
            color: #fff;
            text-decoration: none;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
            margin-top: 46px;
        }

        .global-presence__media {
            height: 403px;
            overflow: hidden;
            /* background: #000; */
        }

        .global-presence__image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        @media screen and (min-width: 769px) {
            .global-presence {
                width: 100%;
                height: calc(984px + (var(--page-gutter) * 2));
                min-height: calc(984px + (var(--page-gutter) * 2));
                max-height: calc(984px + (var(--page-gutter) * 2));
                display: grid;
                grid-template-columns: minmax(0, calc(50% - var(--page-gutter))) minmax(0, calc(50% + var(--page-gutter)));
                column-gap: 0;
                align-items: start;
                padding: var(--page-gutter);
                overflow: hidden;
            }

            .global-presence__copy {
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                padding: var(--page-gutter);
            }

            .global-presence__corners img {
                width: 51px;
                height: 51px;
            }

            .global-presence__corners img:nth-child(1) {
                top: 0;
                left: 0;
            }

            .global-presence__corners img:nth-child(2) {
                top: 0;
                right: 0;
            }

            .global-presence__corners img:nth-child(3) {
                right: 0;
                bottom: 0;
            }

            .global-presence__corners img:nth-child(4) {
                bottom: 0;
                left: 0;
            }

            .global-presence__title {
                margin-top: 221px;
            }

            .global-presence__title-main {
                font-size: 80px;
                line-height: 79px;
            }

            .global-presence__title-accent {
                font-size: 85px;
                line-height: 79px;
            }

            .global-presence__lead {
                max-width: 522px;
                margin-top: 82px;
                font-size: 18px;
                line-height: 27px;
            }

            .global-presence__actions {
                margin-top: 34px;
            }

            .global-presence__media {
                height: 984px;
                min-height: 984px;
                max-height: 984px;
                padding-left: var(--page-gutter);
            }
        }

        .join-raw-section {
            background: #000;
            color: #fff;
            padding: 40px 24px 32px;
        }

        .join-raw-section__inner {
            max-width: 1728px;
            margin: 0 auto;
        }

        .join-raw-section__title {
            margin: 0;
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .join-raw-section__title-main,
        .join-raw-section__title-accent {
            display: block;
        }

        .join-raw-section__title-main {
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 44px;
            line-height: 55px;
            font-weight: 400;
        }

        .join-raw-section__title-accent {
            font-family: "RecklessNeue-Book", sans-serif;
            font-size: 49px;
            line-height: 55px;
            font-weight: 400;
        }

        .join-raw-section__layout {
            margin-top: 28px;
        }

        .join-raw-section__media {
            display: none;
        }

        .join-raw-section__form-shell {
            width: min(100%, 560px);
            margin: 0 auto;
        }

        .join-raw-section__form {
            display: flex;
            flex-direction: column;
        }

        .join-raw-section {
            --join-raw-border: rgba(255, 255, 255, 0.3);
            --join-raw-border-active: rgba(255, 255, 255, 0.95);
            --iti-border-color: rgba(255, 255, 255, 0.3);
            --iti-country-selector-bg: #000;
            --iti-icon-color: rgba(255, 255, 255, 0.72);
            --iti-hover-color: rgba(255, 255, 255, 0.08);
            --iti-path-flags-1x: url("https://cdn.jsdelivr.net/npm/intl-tel-input@29.0.5/dist/img/flags.webp");
            --iti-path-flags-2x: url("https://cdn.jsdelivr.net/npm/intl-tel-input@29.0.5/dist/img/flags@2x.webp");
        }

        .join-raw-section .field-wrap {
            position: relative;
            margin-bottom: 42px;
        }

        .join-raw-section .field-wrap input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 18px;
            line-height: 1.35;
            padding: 22px 0 12px;
            outline: none;
            transition: border-color 0.25s ease;
            appearance: none;
        }

        .join-raw-section .field-wrap input:focus {
            border-bottom-color: #fff;
        }

        .join-raw-section .field-wrap input.filled {
            border-bottom-color: rgba(255, 255, 255, 0.5);
        }

        .join-raw-section .field-wrap.invalid input {
            border-bottom-color: #ff4d4d;
        }

        .join-raw-section .field-wrap label {
            position: absolute;
            left: 0;
            top: 22px;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.35);
            pointer-events: none;
            transition: top 0.2s, font-size 0.2s, color 0.2s;
            letter-spacing: 0.06em;
        }

        .join-raw-section .field-wrap input:focus+label,
        .join-raw-section .field-wrap input.filled+label {
            top: 0;
            font-size: 12px;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.45);
        }

        .join-raw-section .err,
        .join-raw-section .phone-err {
            display: none;
            position: absolute;
            bottom: -18px;
            left: 0;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 12px;
            letter-spacing: 0.06em;
            color: #ff4d4d;
        }

        .join-raw-section .field-wrap.invalid .err,
        .join-raw-section .phone-field-wrap.invalid .phone-err {
            display: block;
        }

        .join-raw-section .textarea-wrap {
            position: relative;
            margin-bottom: 42px;
        }

        .join-raw-section .textarea-wrap textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 18px;
            padding: 22px 0 12px;
            outline: none;
            transition: border-color 0.25s ease;
            resize: none;
            min-height: 80px;
            line-height: 1.6;
        }

        .join-raw-section .textarea-wrap textarea:focus {
            border-bottom-color: #fff;
        }

        .join-raw-section .textarea-wrap textarea.filled {
            border-bottom-color: rgba(255, 255, 255, 0.5);
        }

        .join-raw-section .textarea-wrap label {
            position: absolute;
            left: 0;
            top: 22px;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.35);
            pointer-events: none;
            transition: top 0.2s, font-size 0.2s, color 0.2s;
            letter-spacing: 0.06em;
        }

        .join-raw-section .textarea-wrap textarea:focus+label,
        .join-raw-section .textarea-wrap textarea.filled+label {
            top: 0;
            font-size: 12px;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.45);
        }

        .join-raw-section .optional-badge {
            position: absolute;
            right: 0;
            top: 0;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 11px;
            letter-spacing: 0.14em;
            color: rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            pointer-events: none;
        }

        .join-raw-section .phone-field-wrap {
            position: relative;
            margin-bottom: 42px;
            padding-top: 22px;
            z-index: 100;
        }

        .join-raw-section .phone-field-wrap .phone-label {
            position: absolute;
            top: 0;
            left: 0;
            font-family: "NeueMontreal-Regular", sans-serif;
            font-size: 12px;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.45);
            pointer-events: none;
            z-index: 2;
            text-transform: uppercase;
        }

        .join-raw-section .phone-field-wrap.invalid .phone-label {
            color: #ff4d4d;
        }

        .join-raw-section .phone-field-wrap::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.25);
            transition: background 0.25s;
        }

        .join-raw-section .phone-field-wrap.focused::after {
            background: #fff;
        }

        .join-raw-section .phone-field-wrap.filled::after {
            background: rgba(255, 255, 255, 0.5);
        }

        .join-raw-section .phone-field-wrap.invalid::after {
            background: #ff4d4d;
        }

        .join-raw-section .iti {
            width: 100%;
            display: block;
        }

        .join-raw-section .iti input[type=tel] {
            width: 100% !important;
            background: transparent !important;
            border: none !important;
            color: #fff !important;
            font-family: "NeueMontreal-Regular", sans-serif !important;
            font-size: 18px !important;
            line-height: 1.35 !important;
            height: 48px !important;
            outline: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            padding-right: 0 !important;
        }

        .join-raw-section .iti__flag-container {
            cursor: pointer;
        }

        .join-raw-section .iti__selected-country {
            background: transparent !important;
            height: 48px !important;
            display: flex !important;
            align-items: center !important;
            padding: 0 8px 0 0 !important;
        }

        .join-raw-section .iti__selected-dial-code {
            font-family: "NeueMontreal-Regular", sans-serif !important;
            font-size: 16px !important;
            color: rgba(255, 255, 255, 0.55) !important;
            margin-left: 4px !important;
        }

        .join-raw-section .iti__country-list {
            background: #111 !important;
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            color: #fff !important;
            font-family: "NeueMontreal-Regular", sans-serif !important;
            font-size: 15px !important;
            border-radius: 0 !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
            max-height: 220px !important;
            overflow-y: auto !important;
            width: 100% !important;
            z-index: 9999 !important;
            list-style: none !important;
            padding-left: 0 !important;
            margin: 0 !important;
        }

        .join-raw-section .iti__country-list li,
        .join-raw-section .iti__country-list .iti__country,
        .join-raw-section .iti__country-list .iti__divider {
            list-style: none !important;
        }

        .join-raw-section .iti__country-list .iti__country {
            display: flex !important;
            align-items: center !important;
            padding: 9px 12px !important;
            gap: 8px !important;
        }

        .join-raw-section .iti__country-list .iti__country:hover {
            background: rgba(255, 255, 255, 0.06) !important;
        }

        .join-raw-section .iti__country-list .iti__country.iti__highlight {
            background: rgba(255, 255, 255, 0.1) !important;
        }

        .join-raw-section .iti__divider {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding: 0 !important;
            margin: 4px 0 !important;
        }

        .join-raw-section .iti__dial-code {
            color: rgba(255, 255, 255, 0.35) !important;
            font-size: 14px !important;
        }

        .join-raw-section .iti__country-name {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        .join-raw-section .iti__search-input {
            background: #0a0a0a !important;
            color: #fff !important;
            border: none !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
            font-family: "NeueMontreal-Regular", sans-serif !important;
            font-size: 15px !important;
            outline: none !important;
            padding: 10px 12px !important;
            border-radius: 0 !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        .join-raw-section .iti__search-input::placeholder {
            color: rgba(255, 255, 255, 0.22) !important;
        }

        .join-raw-section .submit-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            align-self: center;
            color: #000;
            background-color: #fff;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            min-width: 224px;
            min-height: 43px;
            padding: 10px 22px;
            border: 0;
            cursor: pointer;
            transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
        }

        .join-raw-section .submit-btn:hover:not(:disabled) {
            transform: translateY(-1px);
            background: #fff;
            color: #000;
        }

        .join-raw-section .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .join-raw-section .form-loader {
            display: none;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-top: 2px solid #fff;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            animation: spin 0.8s linear infinite;
            margin-left: 8px;
        }

        .join-raw-section .submit-btn.loading .form-loader {
            display: inline-block;
        }

        .join-raw-section .submit-btn.loading .btn-text {
            margin-right: 4px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .join-raw-section__footer {
            margin-top: 56px;
            display: grid;
            justify-items: center;
            gap: 20px;
            text-align: center;
        }

        .join-raw-section__brand-logo {
            width: min(132px, 34vw);
            height: auto;
            display: block;
            margin-bottom: 34px;
        }

        .join-raw-section__socials {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }

        .join-raw-section__social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .join-raw-section__social-link img {
            width: auto;
            height: 16px;
            display: block;
        }

        .join-raw-section__partner-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
        }

        .join-raw-section__partner-logos img {
            height: 20px;
            width: auto;
            display: block;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .join-raw-section__partner-logos img:last-child {
            filter: brightness(0) invert(1);
        }

        .join-raw-section__contact,
        .join-raw-section__copyright {
            max-width: 476px;
            margin: 0;
            font-family: "NeueMontreal-Medium", sans-serif;
            font-weight: 500;
            text-transform: uppercase;
        }

        .join-raw-section__contact {
            font-size: 14px;
            line-height: 1.5;
        }

        .join-raw-section__copyright {
            font-size: 8px;
            line-height: 1.5;
        }

        @media screen and (min-width: 769px) {
            .join-raw-section {
                min-height: 1531px;
                padding: 37px 35px 47px;
            }

            .join-raw-section__title {
                padding-top: 110px;
            }

            .join-raw-section__title-main {
                font-size: 80px;
                line-height: 79px;
            }

            .join-raw-section__title-accent {
                font-size: 85px;
                line-height: 79px;
            }

            .join-raw-section__layout {
                margin-top: 112px;
                display: flex;
                justify-content: center;
                align-items: start;
                gap: 36px;
            }

            .join-raw-section__form-shell {
                flex: 0 1 617px;
                width: min(100%, 617px);
                margin: 0;
            }

            .join-raw-section__form {
                display: flex;
            }

            .join-raw-section__media {
                display: block;
                flex: 0 1 829px;
                width: min(48vw, 829px);
                height: auto;
                aspect-ratio: 829 / 909;
                overflow: hidden;
                background: #000;
            }

            .join-raw-section__media img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
                object-position: center center;
            }

            .join-raw-section__footer {
                margin-top: 80px;
                gap: 24px;
            }

            .join-raw-section__brand-logo {
                width: 180px;
            }

            .join-raw-section__socials {
                gap: 25px;
                margin: 0;
            }

            .join-raw-section__social-link img {
                height: 20px;
            }

            .join-raw-section__partner-logos {
                gap: 24px;
            }

            .join-raw-section__partner-logos img {
                margin-top: 18px;
                height: 22px;
            }

            .join-raw-section__contact {
                max-width: 712px;
                font-size: 17px;
                line-height: 36px;
            }

            .join-raw-section__copyright {
                max-width: 712px;
                font-size: 10px;
                line-height: 36px;
            }
        }
