:root {
    --beige: #ddc599;
    --beige-deep: #b99860;
    --beige-soft: #eadfc9;

    --dark: #232226;
    --dark-soft: #2c2b2f;
    --dark-elevated: #343238;

    --white: #ffffff;
    --cream: #f7f3eb;

    --muted-dark: rgba(35, 34, 38, 0.66);
    --muted-light: rgba(255, 255, 255, 0.7);

    --border-dark: rgba(35, 34, 38, 0.16);
    --border-light: rgba(255, 255, 255, 0.18);

    --header-height: 90px;

    --font-sans: "Inter", Arial, sans-serif;
    --font-serif: "Playfair Display", Georgia, serif;

    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}


/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    color: var(--dark);
    background: var(--cream);

    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

.page-section {
    scroll-margin-top: var(--header-height);
}

.section-container {
    width: min(1420px, calc(100% - 96px));
    margin-right: auto;
    margin-left: auto;
}


/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 850ms var(--transition),
        transform 850ms var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* SHARED TYPOGRAPHY */

.section-eyebrow {
    margin: 0 0 23px;

    color: var(--beige-deep);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}

h2 {
    margin: 0;

    font-family: var(--font-serif);
    font-size: clamp(43px, 5.4vw, 82px);
    font-weight: 400;
    line-height: 1.03;

    letter-spacing: -0.045em;
}

h2 em {
    display: block;
    font-weight: 400;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    width: 100%;
    height: var(--header-height);

    color: var(--white);

    background:
        linear-gradient(
            180deg,
            rgba(20, 19, 22, 0.6) 0%,
            rgba(20, 19, 22, 0) 100%
        );

    border-bottom: 1px solid var(--border-light);

    transition:
        height 350ms ease,
        background 350ms ease,
        border-color 350ms ease;
}

.site-header.scrolled {
    height: 76px;

    background: rgba(35, 34, 38, 0.94);
    border-color: rgba(221, 197, 153, 0.2);

    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1500px, calc(100% - 70px));
    height: 100%;

    display: grid;
    grid-template-columns: 220px 1fr 55px;
    align-items: center;

    margin-right: auto;
    margin-left: auto;
}


/* BRAND */

.brand {
    width: max-content;

    display: flex;
    flex-direction: column;

    line-height: 0.86;
}

.brand-main {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.045em;
}

.brand-sub {
    margin-top: 10px;
    margin-left: 2px;

    color: var(--beige);

    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: 0.28em;
}


/* DESKTOP NAVIGATION */

.desktop-navigation {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: clamp(24px, 2.5vw, 46px);

    margin-right: 30px;
}

.desktop-navigation a {
    position: relative;

    padding: 12px 0;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    opacity: 0.7;

    transition: opacity 300ms ease;
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
    opacity: 1;
}

.desktop-navigation a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 4px;

    width: 0;
    height: 2px;

    background: var(--beige);

    transition: width 450ms var(--transition);
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after {
    width: 100%;
}


/* MENU BUTTON */

.menu-button {
    position: relative;
    z-index: 120;

    justify-self: end;

    width: 46px;
    height: 46px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;

    padding: 0 5px;

    color: var(--white);
    background: transparent;

    cursor: pointer;
}

.menu-button span {
    width: 100%;
    height: 1px;

    background: currentColor;

    transition:
        width 450ms var(--transition),
        transform 450ms var(--transition),
        opacity 250ms ease;
}

.menu-button span:nth-child(2) {
    width: 72%;
}

.menu-button span:nth-child(3) {
    width: 45%;
}

.menu-button:hover span {
    width: 100%;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    width: 100%;
    transform: translateY(-7px) rotate(-45deg);
}


/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;

    min-height: 100svh;

    display: flex;
    flex-direction: column;

    padding:
        calc(var(--header-height) + 70px)
        7vw
        40px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(221, 197, 153, 0.14),
            transparent 35%
        ),
        var(--dark);

    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);

    transition:
        visibility 850ms,
        opacity 650ms ease,
        transform 850ms var(--transition);
}

.mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
}

.mobile-navigation a {
    display: flex;
    align-items: center;
    gap: 30px;

    padding: 16px 0;

    border-bottom: 1px solid var(--border-light);

    font-family: var(--font-serif);
    font-size: clamp(34px, 6vw, 67px);
    font-weight: 400;

    letter-spacing: -0.045em;

    transition:
        padding-left 450ms var(--transition),
        color 300ms ease;
}

.mobile-navigation a:hover {
    padding-left: 17px;
    color: var(--beige);
}

.mobile-navigation small {
    width: 25px;

    color: var(--beige);

    font-family: var(--font-sans);
    font-size: 8px;

    letter-spacing: 0.18em;
}

.mobile-menu-footer {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    margin-top: auto;
    padding-top: 27px;

    color: var(--muted-light);

    border-top: 1px solid var(--border-light);

    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-menu-footer p:first-child {
    color: var(--beige);
}


/* HERO */

.hero {
    position: relative;
    isolation: isolate;

    width: 100%;
    height: 100svh;
    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);
    background: var(--dark);
}

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(1.06)
        contrast(1.04)
        brightness(0.9);

    animation: videoZoom 16s ease-out forwards;
}

@keyframes videoZoom {
    from {
        transform: scale(1.09);
    }

    to {
        transform: scale(1.02);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(19, 18, 21, 0.9) 0%,
            rgba(19, 18, 21, 0.62) 38%,
            rgba(19, 18, 21, 0.2) 72%,
            rgba(19, 18, 21, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(19, 18, 21, 0.58) 0%,
            rgba(19, 18, 21, 0.04) 43%,
            rgba(19, 18, 21, 0.72) 100%
        );
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at 27% 50%,
            rgba(221, 197, 153, 0.13),
            transparent 38%
        );

    pointer-events: none;
}

.hero-lines {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    opacity: 0.5;
    pointer-events: none;
}

.hero-lines span {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-lines span:last-child {
    border-right: 0;
}

.hero-content {
    position: relative;
    z-index: 5;

    width: min(1120px, calc(100% - 190px));

    margin-left: clamp(70px, 8vw, 145px);
    padding-top: 82px;
}

.hero-eyebrow {
    margin: 0 0 28px;

    color: var(--beige);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.34em;

    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);

    animation:
        heroReveal
        900ms
        150ms
        var(--transition)
        both;
}

.hero-title-wrap {
    width: fit-content;
}

.hero h1 {
    display: flex;
    align-items: flex-end;
    gap: clamp(12px, 1.5vw, 26px);

    margin: 0;

    font-family: var(--font-serif);
    font-size: clamp(92px, 13.5vw, 220px);
    font-weight: 400;
    line-height: 0.72;

    letter-spacing: -0.075em;

    text-shadow:
        0 5px 30px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.08);

    animation:
        heroReveal
        950ms
        300ms
        var(--transition)
        both;
}

.hero h1 span {
    color: var(--white);
}

.hero h1 strong {
    margin-bottom: -0.005em;

    color: var(--beige);

    font-family: var(--font-sans);
    font-size: 0.49em;
    font-weight: 300;
    line-height: 0.9;

    letter-spacing: -0.08em;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 5px;

    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.92);

    font-family: var(--font-serif);
    font-size: clamp(23px, 2.15vw, 34px);
    font-weight: 400;
    font-style: italic;

    letter-spacing: -0.02em;

    animation:
        heroReveal
        900ms
        430ms
        var(--transition)
        both;
}

.hero-subtitle::before {
    content: "";

    width: 60px;
    height: 1px;

    background: var(--beige);
}

.hero-description {
    max-width: 610px;

    margin: 27px 0 0;

    color: rgba(255, 255, 255, 0.77);

    font-size: clamp(9px, 1.2vw, 13px);
    font-weight: 300;
    line-height: 1.75;

    animation:
        heroReveal
        900ms
        560ms
        var(--transition)
        both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 35px;

    margin-top: 36px;

    animation:
        heroReveal
        900ms
        690ms
        var(--transition)
        both;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* BUTTONS */

.primary-button {
    min-height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 0 23px;

    color: var(--dark);
    background: var(--beige);

    border: 1px solid var(--beige);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    transition:
        color 350ms ease,
        background 350ms ease,
        border-color 350ms ease,
        transform 350ms var(--transition);
}

.primary-button:hover {
    color: var(--dark);
    background: var(--white);
    border-color: var(--white);

    transform: translateY(-3px);
}

.primary-button span {
    font-size: 21px;
}

.text-button {
    padding: 10px 0;

    color: var(--white);

    border-bottom: 1px solid rgba(255, 255, 255, 0.48);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        color 300ms ease,
        border-color 300ms ease;
}

.text-button:hover {
    color: var(--beige);
    border-color: var(--beige);
}

.dark-button {
    width: fit-content;

    margin-top: 43px;

    color: var(--beige);
    background: var(--dark);
    border-color: var(--dark);
}

.dark-button:hover {
    color: var(--dark);
    background: var(--white);
    border-color: var(--white);
}


/* HERO DETAILS */

.hero-location {
    position: absolute;
    right: 40px;
    bottom: 37px;
    z-index: 5;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 14px 16px;

    background: rgba(35, 34, 38, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.13);

    backdrop-filter: blur(10px);

    text-transform: uppercase;
}

.location-dot {
    width: 7px;
    height: 7px;

    margin-top: 3px;

    background: var(--beige);
    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(221, 197, 153, 0.18);
}

.hero-location strong {
    display: block;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.14em;
}

.hero-location small {
    display: block;

    margin-top: 6px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 7px;
    letter-spacing: 0.12em;
}

.scroll-indicator {
    position: absolute;
    left: 36px;
    bottom: 34px;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.scroll-indicator > span {
    writing-mode: vertical-rl;

    transform: rotate(180deg);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.18em;
}

.scroll-indicator > i {
    position: relative;

    width: 17px;
    height: 30px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
}

.scroll-indicator b {
    position: absolute;
    top: 6px;
    left: 50%;

    width: 2px;
    height: 6px;

    background: var(--white);
    border-radius: 10px;

    transform: translateX(-50%);

    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
}

.sound-button {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0;

    color: var(--white);
    background: transparent;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    cursor: pointer;
}

.sound-bars {
    height: 16px;

    display: flex;
    align-items: center;
    gap: 2px;
}

.sound-bars i {
    width: 1px;
    height: 5px;

    display: block;

    background: currentColor;
}

.sound-button.playing .sound-bars i {
    animation: soundBars 650ms infinite alternate;
}

.sound-button.playing .sound-bars i:nth-child(2) {
    animation-delay: 140ms;
}

.sound-button.playing .sound-bars i:nth-child(3) {
    animation-delay: 280ms;
}

.sound-button.playing .sound-bars i:nth-child(4) {
    animation-delay: 70ms;
}

@keyframes soundBars {
    from {
        height: 4px;
    }

    to {
        height: 16px;
    }
}


/* SECTION LINES */

.section-lines {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to right,
            transparent 24.95%,
            currentColor 25%,
            transparent 25.05%,
            transparent 49.95%,
            currentColor 50%,
            transparent 50.05%,
            transparent 74.95%,
            currentColor 75%,
            transparent 75.05%
        );

    opacity: 0.055;
}


/* ABOUT */

.about-section {
    position: relative;

    padding: 150px 0;

    color: var(--dark);

    background:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            var(--cream) 67%,
            var(--beige-soft) 67%,
            var(--beige-soft) 100%
        );

    overflow: hidden;
}

.about-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        120px
        minmax(0, 1.15fr)
        minmax(350px, 0.85fr);

    gap: clamp(45px, 6vw, 100px);
    align-items: center;
}

.section-index {
    align-self: start;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding-top: 8px;
}

.section-index span {
    color: var(--beige-deep);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
}

.section-index p {
    margin: 0;

    color: var(--muted-dark);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-content {
    position: relative;
}

.about-content::before {
    content: "";

    position: absolute;
    top: -42px;
    left: -48px;
    z-index: -1;

    width: 110px;
    height: 110px;

    border-top: 1px solid rgba(185, 152, 96, 0.52);
    border-left: 1px solid rgba(185, 152, 96, 0.52);
}

.about-content h2 em {
    color: var(--beige-deep);
}

.large-description {
    max-width: 750px;

    margin: 40px 0 0;

    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 300;
    line-height: 1.75;
}

.secondary-description {
    max-width: 700px;

    margin: 27px 0 0;

    color: var(--muted-dark);

    font-size: 14px;
    line-height: 1.85;
}

.about-information {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 55px;

    background: rgba(255, 255, 255, 0.58);

    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.about-information div {
    padding: 22px 20px;

    border-right: 1px solid var(--border-dark);
}

.about-information div:last-child {
    border-right: 0;
}

.about-information small {
    display: block;

    margin-bottom: 8px;

    color: var(--muted-dark);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-information strong {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 500;
}

.about-image {
    position: relative;
    height: 620px;
}

.about-image::before {
    content: "";

    position: absolute;
    inset: -16px 16px 16px -16px;
    z-index: -1;

    border: 1px solid rgba(35, 34, 38, 0.28);
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.image-label {
    position: absolute;
    right: 0;
    bottom: 0;

    min-width: 230px;

    padding: 20px;

    color: var(--white);
    background: var(--dark);

    border-top: 3px solid var(--beige);
}

.image-label span {
    color: var(--beige);

    font-family: var(--font-serif);
    font-size: 24px;
}

.image-label p {
    margin: 5px 0 0;

    font-size: 8px;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* UNITS */

.units-section {
    position: relative;

    padding: 145px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(221, 197, 153, 0.12),
            transparent 27%
        ),
        var(--dark);
}

.units-section::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--beige) 0 33%,
            var(--white) 33% 34%,
            transparent 34% 100%
        );
}

.section-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(300px, 0.5fr);

    gap: 70px;
    align-items: end;

    margin-bottom: 70px;
}

.section-heading h2 {
    color: var(--white);
}

.section-heading h2 em {
    color: var(--beige);
}

.section-heading > p {
    margin: 0;

    color: var(--muted-light);

    font-size: 14px;
    line-height: 1.8;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.unit-card {
    display: flex;
    flex-direction: column;

    color: var(--white);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.02)
        ),
        var(--dark-soft);

    border: 1px solid rgba(221, 197, 153, 0.22);

    overflow: hidden;

    transition:
        transform 500ms var(--transition),
        border-color 350ms ease,
        box-shadow 500ms ease;
}

.unit-card:hover {
    border-color: var(--beige);

    box-shadow:
        0 24px 70px
        rgba(0, 0, 0, 0.24);

    transform: translateY(-10px);
}

.unit-image {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;
}

.unit-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(35, 34, 38, 0.72) 100%
        );

    pointer-events: none;
}

.unit-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 800ms var(--transition);
}

.unit-card:hover .unit-image img {
    transform: scale(1.06);
}

.unit-number {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;

    min-width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: var(--dark);
    background: var(--beige);

    border: 1px solid rgba(255, 255, 255, 0.45);

    font-size: 9px;
    font-weight: 600;
}

.unit-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 30px;
}

.unit-category {
    margin: 0 0 13px;

    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.unit-content h3 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-serif);
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 400;

    letter-spacing: -0.045em;
}

.unit-description {
    margin: 20px 0 27px;

    color: var(--muted-light);

    font-size: 13px;
    line-height: 1.75;
}

.unit-details {
    margin: 0;
    padding: 0;

    list-style: none;

    border-top: 1px solid var(--border-light);
}

.unit-details li {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border-light);
}

.unit-details span {
    color: var(--muted-light);

    font-size: 9px;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.unit-details strong {
    font-size: 10px;
    font-weight: 500;
    text-align: right;
}

.unit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 25px;
}

.unit-features span {
    padding: 8px 10px;

    color: var(--beige);

    border: 1px solid rgba(221, 197, 153, 0.28);

    font-size: 8px;
    letter-spacing: 0.06em;
}

.interest-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
    padding: 17px 0;

    color: var(--beige);
    background: transparent;

    border-top: 1px solid var(--beige);
    border-bottom: 1px solid var(--beige);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        padding 400ms var(--transition),
        color 300ms ease;
}

.interest-button:hover {
    padding-right: 12px;
    padding-left: 12px;

    color: var(--white);
}

.interest-button span {
    font-size: 20px;
}

.specification-note {
    max-width: 730px;

    margin: 55px auto 0;

    color: var(--muted-light);

    font-size: 11px;
    line-height: 1.75;
    text-align: center;
}


/* LOCATION */

.location-section {
    padding: 145px 0;

    color: var(--dark);

    background:
        linear-gradient(
            180deg,
            var(--cream) 0%,
            #f1eadf 100%
        );
}

.location-layout {
    display: grid;
    grid-template-columns:
        minmax(350px, 0.82fr)
        minmax(0, 1.18fr);

    align-items: stretch;
}

.location-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(48px, 6vw, 88px);

    background: var(--beige);
    border: 1px solid rgba(35, 34, 38, 0.12);
}

.location-content .section-eyebrow {
    color: rgba(35, 34, 38, 0.66);
}

.location-content h2 em {
    color: rgba(35, 34, 38, 0.58);
}

.location-content > p:not(.section-eyebrow) {
    max-width: 620px;

    margin: 35px 0 0;

    color: var(--muted-dark);

    font-size: 15px;
    line-height: 1.85;
}

.location-details {
    display: flex;
    flex-direction: column;

    margin-top: 43px;

    border-top: 1px solid var(--border-dark);
}

.location-details div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border-dark);
}

.location-details small {
    color: var(--muted-dark);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.location-details strong {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 500;
}

.map-wrapper {
    min-height: 650px;

    box-shadow:
        0 25px 70px
        rgba(35, 34, 38, 0.12);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(0.72)
        sepia(0.1)
        contrast(0.93);
}


/* CONTACT */

.contact-section {
    position: relative;

    padding: 145px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(221, 197, 153, 0.12),
            transparent 28%
        ),
        var(--dark);

    overflow: hidden;
}

.contact-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(350px, 0.8fr)
        minmax(450px, 1.2fr);

    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}

.contact-introduction .section-eyebrow {
    color: var(--beige);
}

.contact-introduction h2 em {
    color: var(--beige);
}

.contact-introduction > p:not(.section-eyebrow) {
    max-width: 570px;

    margin: 35px 0 0;

    color: var(--muted-light);

    font-size: 14px;
    line-height: 1.85;
}

.contact-location {
    max-width: 520px;

    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px 20px;

    margin-top: 48px;
    padding-top: 28px;

    border-top: 1px solid var(--border-light);
}

.contact-location small {
    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-location strong {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 400;
}

.contact-form {
    padding: 43px;

    color: var(--dark);
    background: var(--cream);

    border: 1px solid rgba(221, 197, 153, 0.72);

    box-shadow:
        0 28px 80px
        rgba(0, 0, 0, 0.22);
}

.form-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 35px;
    padding-bottom: 20px;

    border-bottom: 1px solid rgba(35, 34, 38, 0.14);
}

.form-header span {
    color: var(--dark);

    font-family: var(--font-serif);
    font-size: 24px;
}

.form-header p {
    margin: 0;

    color: var(--muted-dark);

    font-size: 8px;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;

    margin-bottom: 9px;

    color: var(--beige-deep);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 15px 0;

    color: var(--dark);
    background: transparent;

    border: 0;
    border-bottom: 1px solid rgba(35, 34, 38, 0.24);

    border-radius: 0;
    outline: none;

    font-size: 13px;

    transition: border-color 300ms ease;
}

.form-field textarea {
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(35, 34, 38, 0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: var(--beige-deep);
}

.form-field select {
    appearance: none;
    cursor: pointer;
}

.form-field select option {
    color: var(--dark);
    background: var(--cream);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "⌄";

    position: absolute;
    right: 2px;
    bottom: 16px;

    color: var(--beige-deep);

    pointer-events: none;
}

.field-error,
.contact-method-error,
.consent-error {
    min-height: 15px;

    display: block;

    margin-top: 6px;

    color: #a04f42;

    font-size: 9px;
}

.form-field.invalid input,
.form-field.invalid select {
    border-bottom-color: #a04f42;
}

.consent-field {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: var(--muted-dark);

    font-size: 10px;
    line-height: 1.55;

    cursor: pointer;
}

.consent-field input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.custom-checkbox {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(35, 34, 38, 0.42);
}

.consent-field input:checked + .custom-checkbox {
    background: var(--beige);
    border-color: var(--beige-deep);
}

.consent-field input:checked + .custom-checkbox::after {
    content: "✓";

    color: var(--dark);

    font-size: 11px;
    font-weight: 600;
}

.submit-button {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 27px;
    padding: 0 20px;

    color: var(--white);
    background: var(--dark);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.17em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 300ms ease,
        background 300ms ease,
        transform 350ms var(--transition);
}

.submit-button:hover {
    color: var(--dark);
    background: var(--beige);

    transform: translateY(-3px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.submit-button span {
    font-size: 21px;
}

.form-success {
    display: none;

    margin-top: 25px;
    padding: 20px;

    color: var(--dark);
    background: var(--beige-soft);

    border-left: 4px solid var(--beige-deep);
}

.form-success.visible {
    display: block;
}

.form-success strong {
    font-family: var(--font-serif);
    font-size: 18px;
}

.form-success p {
    margin: 8px 0 0;

    font-size: 11px;
    line-height: 1.6;
}


/* FOOTER */

.site-footer {
    padding: 80px 0 30px;

    color: var(--white);
    background: #19181b;

    border-top: 1px solid rgba(221, 197, 153, 0.2);
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 60px;

    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 360px;

    margin: 27px 0 0;

    color: var(--muted-light);

    font-size: 12px;
    line-height: 1.8;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-navigation p,
.footer-project p {
    margin: 0 0 10px;

    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.footer-navigation a {
    width: fit-content;

    color: var(--muted-light);

    font-size: 11px;

    transition: color 250ms ease;
}

.footer-navigation a:hover {
    color: var(--beige);
}

.footer-project {
    display: flex;
    flex-direction: column;
}

.footer-project strong {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
}

.footer-project span {
    max-width: 350px;

    margin-top: 13px;

    color: var(--muted-light);

    font-size: 11px;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding-top: 25px;

    color: rgba(255, 255, 255, 0.45);

    border-top: 1px solid var(--border-light);

    font-size: 8px;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a:hover {
    color: var(--beige);
}


/* TABLET */

@media (max-width: 1100px) {
    .header-inner {
        width: calc(100% - 45px);
        grid-template-columns: 180px 1fr 50px;
    }

    .desktop-navigation {
        gap: 20px;
        margin-right: 15px;
    }

    .desktop-navigation a {
        font-size: 8px;
    }

    .hero h1 {
        font-size: clamp(90px, 14vw, 150px);
    }

    .about-section {
        background: var(--cream);
    }

    .about-layout {
        grid-template-columns: 90px 1fr;
    }

    .about-image {
        grid-column: 2;
        height: 520px;
    }

    .unit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .unit-card:last-child {
        grid-column: span 2;
    }

    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}


/* MOBILE */

@media (max-width: 850px) {
    :root {
        --header-height: 78px;
    }

    .section-container {
        width: calc(100% - 42px);
    }

    .header-inner {
        width: calc(100% - 38px);
        grid-template-columns: 1fr auto;
    }

    .desktop-navigation {
        display: none;
    }

    .brand-main {
        font-size: 30px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        width: calc(100% - 46px);

        margin-left: 23px;
        padding-top: 30px;
    }

    .hero h1 {
        gap: 10px;

        font-size: clamp(76px, 20vw, 130px);
        line-height: 0.78;
    }

    .hero-subtitle {
        margin-top: 22px;

        font-size: clamp(21px, 6vw, 30px);
    }

    .hero-subtitle::before {
        width: 38px;
    }

    .hero-description {
        max-width: 540px;
    }

    .hero-lines {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-lines span:nth-child(2),
    .hero-lines span:nth-child(3) {
        display: none;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .hero-location {
        right: 20px;
        bottom: 23px;
    }

    .scroll-indicator {
        left: 20px;
        bottom: 21px;
    }

    .sound-button {
        top: 99px;
        right: 20px;
    }

    .about-section,
    .units-section,
    .location-section,
    .contact-section {
        padding: 100px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-index {
        flex-direction: row;
        justify-content: space-between;

        padding-bottom: 15px;

        border-bottom: 1px solid var(--border-dark);
    }

    .about-image {
        grid-column: auto;
        height: 500px;
    }

    .about-information {
        grid-template-columns: 1fr;
    }

    .about-information div {
        padding: 19px 0;

        border-right: 0;
        border-bottom: 1px solid var(--border-dark);
    }

    .about-information div:last-child {
        border-bottom: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .unit-grid {
        grid-template-columns: 1fr;
    }

    .unit-card:last-child {
        grid-column: auto;
    }

    .location-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 50px 32px;
    }

    .map-wrapper {
        min-height: 470px;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-layout {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}


/* SMALL MOBILE */

@media (max-width: 560px) {
    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 9px;
    }

    .hero-eyebrow {
        max-width: 310px;

        font-size: 8px;
        line-height: 1.2;
    }

    .hero h1 {
        flex-wrap: nowrap;

        font-size: clamp(67px, 21vw, 102px);
    }

    .hero h1 strong {
        font-size: 0.5em;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        max-width: 95%;

        font-size: 13px;
    }

    .hero-actions {
        gap: 16px;
        margin-top: 30px;
    }

    .primary-button {
        width: min(100%, 280px);
    }

    .hero-location {
        display: none;
    }

    .sound-button #soundLabel {
        display: none;
    }

    .mobile-menu {
        padding-right: 23px;
        padding-left: 23px;
    }

    .mobile-navigation a {
        gap: 19px;

        font-size: clamp(31px, 11vw, 48px);
    }

    .mobile-menu-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    h2 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .about-content::before {
        display: none;
    }

    .about-image {
        height: 420px;
    }

    .unit-content {
        padding: 24px;
    }

    .location-content {
        padding: 42px 24px;
    }

    .location-details div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form {
        padding: 23px;
    }

    .contact-location {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .contact-location strong {
        margin-bottom: 13px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Remove all previous section-linking effects */

.about-section::after,
.units-section::after,
.location-section::after,
.contact-section::after {
    display: none !important;
}


/* Smooth fade-in animation */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(3px);

    transition:
        opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 850ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 850ms cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: var(--reveal-delay, 0ms);

    will-change:
        opacity,
        transform,
        filter;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.menu-button {
    display: none;
}

.header-inner {
    grid-template-columns: 220px 1fr;
}


/* Keep the movement lighter on mobile */

@media (max-width: 850px) {
    .reveal {
        transform: translateY(22px);

        transition-duration: 750ms;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .menu-button {
        display: flex;
    }
}


/* =========================================
   PREMIUM VERTICAL UNIT CARDS
========================================= */

.unit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}


/* Entire card */

.unit-card {
    position: relative;
    isolation: isolate;

    aspect-ratio: 4 / 5;
    min-height: 560px;

    display: block;

    color: var(--white);
    background: var(--dark);

    border: 1px solid rgba(221, 197, 153, 0.25);
    border-radius: 14px;

    overflow: hidden;
    cursor: pointer;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.16);

    transition:
        transform 500ms var(--transition),
        border-color 350ms ease,
        box-shadow 500ms ease;
}

.unit-card:hover {
    border-color: rgba(221, 197, 153, 0.75);

    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.35);

    transform: translateY(-9px);
}


/* Image fills the card */

.unit-image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    aspect-ratio: auto;

    overflow: hidden;
}

.unit-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 900ms var(--transition),
        filter 500ms ease;
}

.unit-card:hover .unit-image img {
    transform: scale(1.055);

    filter:
        brightness(1.04)
        saturate(1.05);
}


/* Remove old image overlay */

.unit-image::after,
.unit-image::before {
    display: none !important;
}


/* Dark shadow beneath image for text */

.unit-card::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(35, 34, 38, 0.02) 0%,
            rgba(35, 34, 38, 0.04) 35%,
            rgba(35, 34, 38, 0.25) 53%,
            rgba(35, 34, 38, 0.82) 72%,
            rgba(35, 34, 38, 0.98) 100%
        );

    pointer-events: none;
}


/* Number */

.unit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: var(--dark);
    background: rgba(221, 197, 153, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 7px;

    font-size: 9px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}


/* Text area */

.unit-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;

    min-height: 39%;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 34px 30px 31px;

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(35, 34, 38, 0.16) 25%,
            rgba(35, 34, 38, 0.82) 100%
        );
}

.unit-category {
    margin: 0 0 13px;

    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.unit-content h3 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-serif);
    font-size: clamp(38px, 3vw, 51px);
    font-weight: 400;
    line-height: 1;

    letter-spacing: -0.045em;
}

.unit-description {
    max-width: 360px;

    margin: 17px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    line-height: 1.7;
}


/* Hide visible button-style CTA.
   The complete card remains clickable. */

.unit-card-link,
.interest-button,
.unit-details,
.unit-features {
    display: none !important;
}


/* Small decorative line */

.unit-content::after {
    content: "";

    width: 42px;
    height: 1px;

    margin-top: 22px;

    background: var(--beige);

    transition:
        width 450ms var(--transition);
}

.unit-card:hover .unit-content::after {
    width: 82px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .unit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .unit-card:last-child {
        grid-column: 1 / -1;

        width: calc((100% - 26px) / 2);

        justify-self: center;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {
    .unit-grid {
        grid-template-columns: 1fr;
    }

    .unit-card,
    .unit-card:last-child {
        width: min(100%, 520px);
        min-height: 540px;

        grid-column: auto;
        justify-self: center;

        aspect-ratio: 3 / 4;
    }

    .unit-content {
        padding: 30px 25px 26px;
    }
}


@media (max-width: 560px) {
    .unit-card,
    .unit-card:last-child {
        min-height: 500px;

        border-radius: 11px;
    }

    .unit-number {
        top: 15px;
        right: 15px;

        width: 36px;
        height: 36px;
    }

    .unit-content h3 {
        font-size: 38px;
    }

    .unit-description {
        font-size: 11px;
    }
}


/* =========================================
   SIMPLIFIED LOCATION SECTION
========================================= */

.location-section {
    padding: 120px 0;

    color: var(--dark);
    background: var(--cream);
}

.location-layout {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.58fr)
        minmax(0, 1.42fr);

    gap: 24px;
    align-items: stretch;
}


/* Left information panel */

.location-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(42px, 5vw, 72px);

    background: var(--white);

    border: 1px solid rgba(35, 34, 38, 0.12);
    border-radius: 12px;

    box-shadow:
        0 18px 55px
        rgba(35, 34, 38, 0.07);

    overflow: hidden;
}


/* Small brand detail */

.location-content::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 88px;
    height: 4px;

    background: var(--beige);
}

.location-content .section-eyebrow {
    margin-bottom: 18px;

    color: var(--beige-deep);
}

.location-content h2 {
    max-width: 480px;

    font-size: clamp(40px, 4.5vw, 66px);
    line-height: 1.02;
}

.location-content h2 em {
    color: var(--beige-deep);
}

.location-description {
    max-width: 520px;

    margin: 28px 0 0;

    color: var(--muted-dark);

    font-size: 13px;
    line-height: 1.8;
}


/* Compact location information */

.simple-location-info {
    margin-top: 34px;

    border-top: 1px solid var(--border-dark);
}

.simple-location-info div {
    display: flex;
    flex-direction: column;
    gap: 7px;

    padding: 17px 0;

    border-bottom: 1px solid var(--border-dark);
}

.simple-location-info small {
    color: var(--muted-dark);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.simple-location-info strong {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 500;
}


/* Map button */

.location-button {
    width: fit-content;
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;

    margin-top: 30px;
    padding: 0 20px;

    color: var(--white);
    background: var(--dark);

    border: 1px solid var(--dark);
    border-radius: 6px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        color 300ms ease,
        background 300ms ease,
        transform 350ms var(--transition);
}

.location-button:hover {
    color: var(--dark);
    background: var(--beige);

    transform: translateY(-3px);
}

.location-button span {
    font-size: 18px;
}


/* Map */

.map-wrapper {
    min-height: 590px;

    border: 1px solid rgba(35, 34, 38, 0.12);
    border-radius: 12px;

    box-shadow:
        0 18px 55px
        rgba(35, 34, 38, 0.08);

    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(0.25)
        contrast(0.96)
        saturate(0.88);
}


/* Tablet and mobile */

@media (max-width: 850px) {
    .location-section {
        padding: 90px 0;
    }

    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 46px 30px;
    }

    .map-wrapper {
        min-height: 470px;
    }
}


@media (max-width: 560px) {
    .location-content {
        padding: 40px 24px;

        border-radius: 10px;
    }

    .location-content h2 {
        font-size: clamp(38px, 12vw, 50px);
    }

    .map-wrapper {
        min-height: 400px;

        border-radius: 10px;
    }
}


/* =========================================
   SIMPLE CONTACT SECTION
========================================= */

.contact-section {
    position: relative;

    padding: 120px 0;

    color: var(--white);
    background: var(--dark);

    overflow: hidden;
}


/* Main layout */

.contact-layout {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.72fr)
        minmax(520px, 1.28fr);

    gap: clamp(70px, 8vw, 130px);
    align-items: center;
}


/* Left content */

.contact-introduction {
    max-width: 540px;
}

.contact-introduction .section-eyebrow {
    margin-bottom: 22px;

    color: var(--beige);

    font-size: 10px;
}

.contact-introduction h2 {
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.02;
}

.contact-introduction h2 em {
    color: var(--beige);
}

.contact-introduction > p:not(.section-eyebrow) {
    max-width: 480px;

    margin: 31px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.8;
}


/* Simple form container */

.contact-form {
    padding: clamp(35px, 4vw, 56px);

    color: var(--dark);
    background: var(--cream);

    border: 1px solid rgba(221, 197, 153, 0.55);
    border-radius: 12px;

    box-shadow:
        0 26px 75px
        rgba(0, 0, 0, 0.22);
}


/* Form heading */

.form-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;

    margin-bottom: 38px;
    padding-bottom: 22px;

    border-bottom: 1px solid rgba(35, 34, 38, 0.16);
}

.form-header span {
    font-family: var(--font-serif);
    font-size: 31px;
    font-weight: 400;
}

.form-header p {
    max-width: 190px;

    margin: 0;

    color: var(--muted-dark);

    font-size: 9px;
    line-height: 1.5;
    text-align: right;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* Fields */

.form-field {
    margin-bottom: 27px;
}

.form-field label {
    display: block;

    margin-bottom: 9px;

    color: var(--beige-deep);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 15px 0;

    color: var(--dark);
    background: transparent;

    border: 0;
    border-bottom: 1px solid rgba(35, 34, 38, 0.26);

    border-radius: 0;
    outline: none;

    font-size: 15px;
    line-height: 1.5;

    transition:
        border-color 300ms ease;
}

.form-field input {
    min-height: 54px;
}

.form-field select {
    min-height: 54px;

    appearance: none;
    cursor: pointer;
}

.form-field textarea {
    min-height: 115px;

    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(35, 34, 38, 0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: var(--beige-deep);
}


/* Phone and email */

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* Select arrow */

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "⌄";

    position: absolute;
    right: 2px;
    bottom: 18px;

    color: var(--beige-deep);

    font-size: 16px;

    pointer-events: none;
}


/* Consent */

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    color: var(--muted-dark);

    font-size: 11px;
    line-height: 1.6;

    cursor: pointer;
}

.custom-checkbox {
    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    border-radius: 3px;
}


/* Submit */

.submit-button {
    min-height: 60px;

    margin-top: 28px;
    padding: 0 23px;

    color: var(--white);
    background: var(--dark);

    border-radius: 6px;

    font-size: 10px;
}

.submit-button:hover {
    color: var(--dark);
    background: var(--beige);
}


/* Errors */

.field-error,
.contact-method-error,
.consent-error {
    font-size: 10px;
}


/* Remove old project information */

.contact-location,
#preferredUnitField {
    display: none !important;
}


/* Tablet and mobile */

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-introduction {
        max-width: 650px;
    }

    .contact-form {
        width: 100%;
    }
}


@media (max-width: 600px) {
    .contact-section {
        padding: 90px 0;
    }

    .contact-introduction h2 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .contact-introduction > p:not(.section-eyebrow) {
        font-size: 14px;
    }

    .contact-form {
        padding: 30px 23px;

        border-radius: 10px;
    }

    .form-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-header p {
        max-width: none;
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 14px;
    }
}


/* =========================================
   SOCIAL MEDIA LINKS
========================================= */

.hero-socials {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    animation:
        heroReveal
        900ms
        780ms
        var(--transition)
        both;
}

.hero-socials > span {
    margin-right: 6px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-socials a {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    color: var(--white);
    background: rgba(35, 34, 38, 0.38);

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;

    backdrop-filter: blur(8px);

    transition:
        color 300ms ease,
        background 300ms ease,
        border-color 300ms ease,
        transform 300ms var(--transition);
}

.hero-socials a:hover {
    color: var(--dark);
    background: var(--beige);
    border-color: var(--beige);

    transform: translateY(-3px);
}

.hero-socials svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.hero-socials .social-icon-fill {
    fill: currentColor;
    stroke: none;
}


/* Footer social links */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: 24px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
        color 300ms ease,
        transform 300ms var(--transition);
}

.footer-socials a:hover {
    color: var(--beige);

    transform: translateY(-2px);
}

.footer-socials svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.footer-socials .social-icon-fill {
    fill: currentColor;
    stroke: none;
}


/* =========================================
   HERO VIDEO — IPHONE AUTOPLAY
========================================= */

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    pointer-events: none;

    -webkit-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
}


/* Hide Safari media controls where supported */

.hero-video::-webkit-media-controls {
    display: none !important;
    opacity: 0 !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 0 !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;

    -webkit-appearance: none;
    appearance: none;

    opacity: 0 !important;
}

@media (max-width: 560px) {
    .hero-socials {
        margin-top: 20px;
    }

    .hero-socials > span {
        display: none;
    }

    .footer-socials {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}


/* =========================================
   PREMIUM UNIT SELECTOR + ENQUIRY CHOICES
========================================= */

body.unit-selector-open {
    overflow: hidden;
}


/* Full-screen apartment selector */

.unit-selector-modal {
    position: fixed;
    inset: 0;
    z-index: 500;

    display: grid;
    place-items: center;

    padding: 32px;

    visibility: hidden;
    opacity: 0;

    transition:
        visibility 500ms,
        opacity 400ms ease;
}

.unit-selector-modal.open {
    visibility: visible;
    opacity: 1;
}

.unit-selector-backdrop {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 18% 15%,
            rgba(221, 197, 153, 0.18),
            transparent 33%
        ),
        rgba(14, 13, 16, 0.9);

    backdrop-filter: blur(18px);
}

.unit-selector-panel {
    position: relative;
    z-index: 2;

    width: min(1360px, 100%);
    max-height: calc(100svh - 64px);

    padding: clamp(34px, 5vw, 72px);

    color: var(--white);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045),
            transparent 38%
        ),
        var(--dark);

    border: 1px solid rgba(221, 197, 153, 0.42);
    border-radius: 22px;

    box-shadow:
        0 45px 140px rgba(0, 0, 0, 0.52);

    overflow: auto;

    opacity: 0;
    transform:
        translateY(35px)
        scale(0.975);

    transition:
        opacity 500ms ease,
        transform 650ms var(--transition);
}

.unit-selector-modal.open .unit-selector-panel {
    opacity: 1;
    transform:
        translateY(0)
        scale(1);
}

.unit-selector-panel::before,
.unit-selector-panel::after {
    content: "";

    position: absolute;
    pointer-events: none;
}

.unit-selector-panel::before {
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 76px 76px;

    opacity: 0.35;
}

.unit-selector-panel::after {
    top: 0;
    left: clamp(34px, 5vw, 72px);

    width: 110px;
    height: 4px;

    background: var(--beige);
}

.unit-selector-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 5;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    color: var(--white);
    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    cursor: pointer;

    transition:
        color 300ms ease,
        background 300ms ease,
        transform 350ms var(--transition);
}

.unit-selector-close:hover {
    color: var(--dark);
    background: var(--beige);

    transform: rotate(90deg);
}

.unit-selector-close span {
    position: absolute;

    width: 18px;
    height: 1px;

    background: currentColor;
}

.unit-selector-close span:first-child {
    transform: rotate(45deg);
}

.unit-selector-close span:last-child {
    transform: rotate(-45deg);
}

.unit-selector-heading {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin-bottom: clamp(38px, 5vw, 66px);
}

.unit-selector-eyebrow {
    margin: 0 0 20px;

    color: var(--beige);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.unit-selector-heading h2 {
    font-size: clamp(48px, 5.8vw, 84px);
}

.unit-selector-heading h2 em {
    color: var(--beige);
}

.unit-selector-heading > p:last-child {
    max-width: 610px;

    margin: 27px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    line-height: 1.8;
}

.apartment-option-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.apartment-option-card {
    position: relative;
    isolation: isolate;

    min-height: 410px;

    display: flex;
    flex-direction: column;

    padding: 24px;

    color: var(--white);
    background:
        linear-gradient(
            145deg,
            rgba(221, 197, 153, 0.11),
            rgba(255, 255, 255, 0.025) 45%,
            rgba(255, 255, 255, 0.015)
        ),
        var(--dark-soft);

    border: 1px solid rgba(221, 197, 153, 0.25);
    border-radius: 16px;

    overflow: hidden;
    cursor: pointer;
    text-align: left;

    transition:
        border-color 350ms ease,
        box-shadow 500ms ease,
        transform 500ms var(--transition);
}

.apartment-option-card::before {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -90px;
    z-index: -1;

    width: 240px;
    height: 240px;

    border: 1px solid rgba(221, 197, 153, 0.16);
    border-radius: 50%;

    box-shadow:
        0 0 0 38px rgba(221, 197, 153, 0.035),
        0 0 0 76px rgba(221, 197, 153, 0.02);

    transition:
        transform 700ms var(--transition);
}

.apartment-option-card:hover,
.apartment-option-card:focus-visible {
    border-color: var(--beige);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.27);

    outline: none;
    transform: translateY(-8px);
}

.apartment-option-card:hover::before,
.apartment-option-card:focus-visible::before {
    transform: scale(1.16);
}

.apartment-option-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.apartment-option-topline small,
.apartment-option-topline strong {
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.apartment-option-topline small {
    color: var(--beige);
}

.apartment-option-topline strong {
    padding: 8px 10px;

    color: var(--dark);
    background: var(--beige);

    border-radius: 100px;
}

.apartment-option-number {
    margin-top: 24px;

    color: rgba(255, 255, 255, 0.08);

    font-family: var(--font-serif);
    font-size: 94px;
    line-height: 0.85;

    letter-spacing: -0.08em;
}

.apartment-option-content {
    display: flex;
    flex-direction: column;

    margin-top: auto;
}

.apartment-option-category {
    margin-bottom: 10px;

    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.apartment-option-name {
    max-width: 330px;

    font-family: var(--font-serif);
    font-size: clamp(30px, 3vw, 45px);
    line-height: 1.02;

    letter-spacing: -0.04em;
}

.apartment-option-area {
    display: flex;
    align-items: flex-end;
    gap: 7px;

    margin-top: 18px;
}

.apartment-option-area b {
    color: var(--beige);

    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 0.85;
}

.apartment-option-area span {
    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
}

.apartment-option-action {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 26px;
    padding-top: 17px;

    color: rgba(255, 255, 255, 0.72);

    border-top: 1px solid rgba(221, 197, 153, 0.28);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        color 300ms ease,
        padding 350ms var(--transition);
}

.apartment-option-card:hover .apartment-option-action,
.apartment-option-card:focus-visible .apartment-option-action {
    padding-right: 8px;
    color: var(--beige);
}

.apartment-option-action b {
    font-size: 18px;
    font-weight: 400;
}


/* Clickable unit choices inside the enquiry form */

.unit-choice-field {
    margin-bottom: 30px;
}

.unit-choice-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 15px;
}

.unit-choice-heading label {
    margin: 0;
}

.unit-choice-heading p {
    margin: 0;

    color: var(--muted-dark);

    font-size: 8px;
    line-height: 1.45;
    text-align: right;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.visually-hidden-select {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;

    border: 0 !important;
}

.enquiry-unit-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.enquiry-unit-option {
    position: relative;

    min-height: 112px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 16px;

    color: var(--dark);
    background: rgba(255, 255, 255, 0.48);

    border: 1px solid rgba(35, 34, 38, 0.14);
    border-radius: 9px;

    overflow: hidden;
    cursor: pointer;
    text-align: left;

    transition:
        color 300ms ease,
        background 300ms ease,
        border-color 300ms ease,
        box-shadow 350ms ease,
        transform 350ms var(--transition);
}

.apartment-enquiry-option {
    grid-column: span 2;
}

.category-enquiry-option {
    grid-column: span 3;
}

.enquiry-unit-option:hover,
.enquiry-unit-option:focus-visible {
    border-color: var(--beige-deep);

    outline: none;
    transform: translateY(-3px);
}

.enquiry-unit-option.selected {
    color: var(--white);
    background: var(--dark);

    border-color: var(--beige);

    box-shadow:
        inset 0 0 0 1px rgba(221, 197, 153, 0.25),
        0 12px 28px rgba(35, 34, 38, 0.14);
}

.enquiry-unit-option.selection-confirmed {
    animation:
        selectedUnitPulse
        850ms
        var(--transition);
}

@keyframes selectedUnitPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    45% {
        transform: translateY(-4px) scale(1.018);
    }
}

.enquiry-option-index {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: grid;
    place-items: center;

    color: var(--beige-deep);
    background: rgba(221, 197, 153, 0.16);

    border-radius: 5px;

    font-size: 8px;
    font-weight: 600;
}

.enquiry-unit-option.selected
.enquiry-option-index {
    color: var(--dark);
    background: var(--beige);
}

.enquiry-option-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.enquiry-option-copy small {
    margin-bottom: 7px;

    color: var(--beige-deep);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.enquiry-unit-option.selected
.enquiry-option-copy small {
    color: var(--beige);
}

.enquiry-option-copy strong {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.15;
}

.enquiry-option-copy > span {
    margin-top: 7px;

    color: var(--muted-dark);

    font-size: 8px;
    line-height: 1.35;
}

.enquiry-unit-option.selected
.enquiry-option-copy > span {
    color: rgba(255, 255, 255, 0.58);
}

.enquiry-option-check {
    position: absolute;
    right: 11px;
    bottom: 11px;

    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    color: var(--dark);
    background: var(--beige);

    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;

    opacity: 0;
    transform: scale(0.55);

    transition:
        opacity 250ms ease,
        transform 350ms var(--transition);
}

.enquiry-unit-option.selected
.enquiry-option-check {
    opacity: 1;
    transform: scale(1);
}

.general-enquiry-choice {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 10px;
    padding: 14px 2px;

    color: var(--muted-dark);
    background: transparent;

    border-bottom: 1px solid rgba(35, 34, 38, 0.18);

    font-size: 9px;

    cursor: pointer;
    text-align: left;

    transition:
        color 250ms ease,
        border-color 250ms ease,
        padding 350ms var(--transition);
}

.general-enquiry-choice:hover,
.general-enquiry-choice.selected {
    padding-right: 10px;
    padding-left: 10px;

    color: var(--beige-deep);
    border-color: var(--beige-deep);
}

.general-enquiry-choice span {
    font-size: 17px;
}

.unit-choice-field.invalid
.enquiry-unit-grid {
    padding: 5px;

    border: 1px solid rgba(160, 79, 66, 0.55);
    border-radius: 11px;
}
/* =========================================
   APARTMENT SELECTOR — FULL IMAGE CARDS
========================================= */

.apartment-option-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;

    align-items: stretch;
}


/* Main card */

.apartment-option-card {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-width: 0;
    min-height: 590px;

    display: block;

    padding: 0;

    color: var(--white);
    background: var(--dark);

    border: 1px solid rgba(221, 197, 153, 0.28);
    border-radius: 15px;

    overflow: hidden;
    cursor: pointer;
    text-align: left;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.22);

    transition:
        transform 500ms var(--transition),
        border-color 350ms ease,
        box-shadow 500ms ease;
}

.apartment-option-card:hover,
.apartment-option-card:focus-visible {
    border-color: var(--beige);

    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.42);

    outline: none;
    transform: translateY(-9px);
}


/* Remove the old circle decoration */

.apartment-option-card::before {
    display: none !important;
}


/* Full-card image */

.apartment-option-image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        brightness(0.87)
        contrast(1.05)
        saturate(1.04);

    transform: scale(1.001);

    transition:
        transform 900ms var(--transition),
        filter 500ms ease;
}

.apartment-option-card:hover
.apartment-option-image,
.apartment-option-card:focus-visible
.apartment-option-image {
    filter:
        brightness(0.94)
        contrast(1.05)
        saturate(1.08);

    transform: scale(1.055);
}


/* Dark gradient over the image */

.apartment-option-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: block;

    background:
        linear-gradient(
            180deg,
            rgba(20, 19, 22, 0.04) 0%,
            rgba(20, 19, 22, 0.08) 32%,
            rgba(20, 19, 22, 0.34) 53%,
            rgba(20, 19, 22, 0.88) 76%,
            rgba(20, 19, 22, 0.98) 100%
        );

    pointer-events: none;
}


/* Top labels */

.apartment-option-topline {
    position: absolute;
    top: 21px;
    right: 21px;
    left: 21px;
    z-index: 4;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    pointer-events: none;
}

.apartment-option-topline > span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.apartment-option-topline small {
    color: rgba(255, 255, 255, 0.82);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    text-shadow:
        0 3px 14px rgba(0, 0, 0, 0.6);
}

.apartment-option-topline strong {
    padding: 8px 12px;

    color: var(--dark);
    background: rgba(221, 197, 153, 0.95);

    border: 1px solid rgba(255, 255, 255, 0.33);
    border-radius: 100px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


/* Number badge like the main cards */

.apartment-option-number {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: grid;
    place-items: center;

    color: var(--dark);
    background: rgba(221, 197, 153, 0.95);

    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.22);

    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}


/* Bottom text content */

.apartment-option-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;

    min-width: 0;

    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 40px 31px 30px;
}

.apartment-option-category {
    margin-bottom: 12px;

    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    text-shadow:
        0 3px 14px rgba(0, 0, 0, 0.55);
}

.apartment-option-name {
    max-width: 100%;

    color: var(--white);

    font-family: var(--font-serif);
    font-size: clamp(38px, 3.1vw, 53px);
    font-weight: 400;
    line-height: 0.98;

    letter-spacing: -0.045em;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.48);
}

.apartment-option-description {
    max-width: 390px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;
    font-weight: 300;
    line-height: 1.7;
}


/* Area and action */

.apartment-option-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid rgba(221, 197, 153, 0.4);
}

.apartment-option-area {
    display: flex;
    align-items: flex-end;
    gap: 7px;

    margin: 0;
}

.apartment-option-area b {
    color: var(--beige);

    font-family: var(--font-serif);
    font-size: 39px;
    font-weight: 400;
    line-height: 0.85;
}

.apartment-option-area small {
    padding-bottom: 2px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;
}

.apartment-option-action {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 0;
    padding: 0;

    color: rgba(255, 255, 255, 0.78);

    border: 0;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.13em;
    text-align: right;
    text-transform: uppercase;

    transition:
        color 300ms ease;
}

.apartment-option-action b {
    color: var(--beige);

    font-size: 20px;
    font-weight: 400;

    transition:
        transform 350ms var(--transition);
}

.apartment-option-card:hover
.apartment-option-action,
.apartment-option-card:focus-visible
.apartment-option-action {
    color: var(--beige);
}

.apartment-option-card:hover
.apartment-option-action b,
.apartment-option-card:focus-visible
.apartment-option-action b {
    transform: translateX(6px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {
    .apartment-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .apartment-option-card {
        min-height: 570px;
    }

    .apartment-option-card:last-child {
        grid-column: 1 / -1;

        width: calc((100% - 26px) / 2);
        justify-self: center;
    }

    .apartment-option-name {
        font-size: 43px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
    .apartment-option-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .apartment-option-card,
    .apartment-option-card:last-child {
        width: 100%;
        min-height: 520px;

        grid-column: auto;
    }

    .apartment-option-topline {
        top: 16px;
        right: 16px;
        left: 16px;
    }

    .apartment-option-number {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }

    .apartment-option-content {
        padding: 34px 23px 24px;
    }

    .apartment-option-name {
        max-width: 92%;

        font-size: 39px;
    }

    .apartment-option-description {
        font-size: 10px;
    }

    .apartment-option-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .apartment-option-action {
        width: 100%;

        justify-content: space-between;
    }
}

/* Large residence number */

.apartment-option-number {
    position: absolute;
    top: 114px;
    left: 22px;
    z-index: 4;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-family: var(--font-serif);
    font-size: 76px;
    font-weight: 400;
    line-height: 0.8;

    letter-spacing: -0.075em;

    text-shadow:
        0 6px 24px rgba(0, 0, 0, 0.45);

    pointer-events: none;
}


/* Text area */

.apartment-option-content {
    position: relative;
    z-index: 3;

    min-width: 0;

    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 27px 24px 24px;

    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(221, 197, 153, 0.09),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            transparent 58%
        ),
        var(--dark-soft);
}

.apartment-option-content::before {
    content: "";

    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--beige),
            rgba(221, 197, 153, 0.08)
        );
}


/* Category */

.apartment-option-category {
    margin-bottom: 10px;

    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.17em;
    text-transform: uppercase;
}


/* Residence title */

.apartment-option-name {
    max-width: 100%;

    color: var(--white);

    font-family: var(--font-serif);
    font-size: clamp(30px, 2.7vw, 43px);
    font-weight: 400;
    line-height: 1.01;

    letter-spacing: -0.04em;
}


/* Area */

.apartment-option-area {
    display: flex;
    align-items: flex-end;
    gap: 7px;

    margin-top: 20px;
}

.apartment-option-area b {
    color: var(--beige);

    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 0.85;
}

.apartment-option-area span {
    padding-bottom: 2px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
}


/* Selection action */

.apartment-option-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: auto;
    padding-top: 20px;

    color: rgba(255, 255, 255, 0.69);

    border-top: 1px solid rgba(221, 197, 153, 0.25);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        color 300ms ease,
        padding 350ms var(--transition);
}

.apartment-option-card:hover
.apartment-option-action,
.apartment-option-card:focus-visible
.apartment-option-action {
    padding-right: 8px;

    color: var(--beige);
}

.apartment-option-action b {
    color: var(--beige);

    font-size: 19px;
    font-weight: 400;

    transition:
        transform 350ms var(--transition);
}

.apartment-option-card:hover
.apartment-option-action b,
.apartment-option-card:focus-visible
.apartment-option-action b {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {
    .apartment-option-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .apartment-option-card {
        min-height: 310px;

        grid-template-columns:
            minmax(280px, 0.85fr)
            minmax(0, 1.15fr);

        grid-template-rows: 310px;
    }

    .apartment-option-image {
        grid-column: 1;
        grid-row: 1;
    }

    .apartment-option-content {
        grid-column: 2;
        grid-row: 1;

        justify-content: center;

        padding: 38px 30px 28px;
    }

    .apartment-option-content::before {
        top: 30px;
        right: 30px;
        left: 30px;
    }

    .apartment-option-number {
        top: auto;
        right: auto;
        bottom: 27px;
        left: 22px;

        font-size: 72px;
    }

    .apartment-option-name {
        max-width: 390px;

        font-size: clamp(32px, 5vw, 48px);
    }

    .apartment-option-action {
        margin-top: 28px;
    }
}
/* =========================================================
   FINAL FULL-SCREEN APARTMENT SELECTOR
========================================================= */

body.unit-selector-open {
    overflow: hidden !important;
}


/* Full-screen selector */

.unit-selector-modal.residence-picker {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1000 !important;

    width: 100% !important;
    height: 100svh !important;

    display: block !important;
    padding: 0 !important;

    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;

    background: #19181c !important;

    transition:
        visibility 450ms,
        opacity 350ms ease !important;
}

.unit-selector-modal.residence-picker.open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}


/* Selector background */

.residence-picker .residence-picker-backdrop {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;

    background:
        radial-gradient(
            circle at 12% 7%,
            rgba(221, 197, 153, 0.13),
            transparent 31%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(221, 197, 153, 0.07),
            transparent 30%
        ),
        #1b1a1e !important;

    backdrop-filter: none !important;
}


/* Main full-screen panel */

.unit-selector-panel.residence-picker-panel {
    position: relative !important;
    z-index: 1 !important;

    width: 100% !important;
    height: 100svh !important;
    max-width: none !important;
    max-height: none !important;

    display: flex !important;
    flex-direction: column !important;

    padding:
        clamp(24px, 3vw, 46px)
        clamp(22px, 5vw, 82px)
        clamp(28px, 4vw, 55px) !important;

    color: var(--white) !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    opacity: 0 !important;
    transform: translateY(18px) scale(0.992) !important;

    transition:
        opacity 420ms ease,
        transform 600ms var(--transition) !important;
}

.unit-selector-modal.residence-picker.open
.unit-selector-panel.residence-picker-panel {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.unit-selector-panel.residence-picker-panel::before,
.unit-selector-panel.residence-picker-panel::after {
    content: none !important;
    display: none !important;
}


/* Selector heading */

.residence-picker-header {
    width: min(1500px, 100%);

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;

    margin:
        0
        auto
        clamp(24px, 3vh, 36px);
}

.residence-picker-heading {
    max-width: 720px;
}

.residence-picker-eyebrow {
    margin: 0 0 10px;

    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.residence-picker-heading h2 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-serif);
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 400;
    line-height: 0.98;

    letter-spacing: -0.045em;
}

.residence-picker-heading > p:last-child {
    max-width: 590px;

    margin: 13px 0 0;

    color: rgba(255, 255, 255, 0.61);

    font-size: 11px;
    font-weight: 300;
    line-height: 1.65;
}


/* Close button */

.residence-picker .residence-picker-close {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 5 !important;

    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;

    display: grid !important;
    place-items: center !important;

    padding: 0 !important;

    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.055) !important;

    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50% !important;

    cursor: pointer !important;

    transition:
        color 300ms ease,
        background 300ms ease,
        border-color 300ms ease,
        transform 350ms var(--transition) !important;
}

.residence-picker .residence-picker-close:hover,
.residence-picker .residence-picker-close:focus-visible {
    color: var(--dark) !important;
    background: var(--beige) !important;
    border-color: var(--beige) !important;

    outline: none !important;
    transform: rotate(90deg) !important;
}

.residence-picker .residence-picker-close span {
    position: absolute !important;

    width: 17px !important;
    height: 1px !important;

    display: block !important;

    background: currentColor !important;
}

.residence-picker .residence-picker-close span:first-child {
    transform: rotate(45deg) !important;
}

.residence-picker .residence-picker-close span:last-child {
    transform: rotate(-45deg) !important;
}


/* Three-card grid */

.residence-picker .residence-picker-grid {
    position: relative !important;
    z-index: 2 !important;

    width: min(1500px, 100%) !important;

    flex: 1 0 auto !important;

    display: grid !important;
    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: clamp(16px, 1.6vw, 26px) !important;
    align-items: stretch !important;

    margin: 0 auto !important;
}


/* Residence card reset */

.residence-picker
.residence-picker-card.apartment-option-card {
    all: unset;

    position: relative !important;
    isolation: isolate !important;

    box-sizing: border-box !important;
    min-width: 0 !important;
    min-height:
        min(650px, calc(100svh - 178px)) !important;

    display: block !important;

    color: var(--white) !important;
    background: var(--dark-soft) !important;

    border:
        1px solid
        rgba(221, 197, 153, 0.28) !important;

    border-radius: 15px !important;

    overflow: hidden !important;
    cursor: pointer !important;

    box-shadow:
        0 18px 48px
        rgba(0, 0, 0, 0.22) !important;

    transition:
        transform 500ms var(--transition),
        border-color 350ms ease,
        box-shadow 500ms ease !important;
}

.residence-picker
.residence-picker-card.apartment-option-card:hover,
.residence-picker
.residence-picker-card.apartment-option-card:focus-visible {
    border-color:
        rgba(221, 197, 153, 0.88) !important;

    box-shadow:
        0 30px 75px
        rgba(0, 0, 0, 0.4) !important;

    outline: none !important;
    transform: translateY(-8px) !important;
}

.residence-picker
.residence-picker-card.apartment-option-card::before,
.residence-picker
.residence-picker-card.apartment-option-card::after {
    content: none !important;
    display: none !important;
}


/* Full-card image */

.residence-picker-image {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        brightness(0.88)
        contrast(1.05)
        saturate(1.04);

    transform: scale(1.001);

    transition:
        transform 900ms var(--transition),
        filter 500ms ease;
}

.residence-picker-card:hover
.residence-picker-image,
.residence-picker-card:focus-visible
.residence-picker-image {
    filter:
        brightness(0.96)
        contrast(1.04)
        saturate(1.08);

    transform: scale(1.055);
}


/* Dark gradient */

.residence-picker-shade {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: block;

    background:
        linear-gradient(
            180deg,
            rgba(18, 17, 20, 0.1) 0%,
            rgba(18, 17, 20, 0.04) 29%,
            rgba(18, 17, 20, 0.2) 46%,
            rgba(18, 17, 20, 0.74) 67%,
            rgba(18, 17, 20, 0.97) 100%
        );

    pointer-events: none;
}


/* Top labels */

.residence-picker-top {
    position: absolute;
    top: 18px;
    right: 18px;
    left: 18px;
    z-index: 3;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    pointer-events: none;
}

.residence-picker-type {
    padding-top: 9px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    text-shadow:
        0 3px 15px
        rgba(0, 0, 0, 0.62);
}

.residence-picker-number {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: grid;
    place-items: center;

    color: var(--dark);
    background: rgba(221, 197, 153, 0.96);

    border:
        1px solid
        rgba(255, 255, 255, 0.38);

    border-radius: 8px;

    box-shadow:
        0 9px 26px
        rgba(0, 0, 0, 0.2);

    font-size: 9px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}


/* Bottom content */

.residence-picker-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    min-width: 0;

    display: flex;
    flex-direction: column;

    padding: clamp(25px, 2.2vw, 34px);
}

.residence-picker-block {
    width: fit-content;

    margin-bottom: 15px;
    padding: 8px 12px;

    color: var(--dark);
    background: var(--beige);

    border-radius: 100px;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.residence-picker-category {
    margin-bottom: 9px;

    color: var(--beige);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.residence-picker-name {
    max-width: 100%;

    color: var(--white);

    font-family: var(--font-serif);
    font-size: clamp(35px, 3vw, 49px);
    font-weight: 400;
    line-height: 0.98;

    letter-spacing: -0.045em;

    text-shadow:
        0 4px 20px
        rgba(0, 0, 0, 0.45);
}

.residence-picker-description {
    max-width: 390px;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 10px;
    font-weight: 300;
    line-height: 1.65;
}


/* Area and selection action */

.residence-picker-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;

    margin-top: 23px;
    padding-top: 18px;

    border-top:
        1px solid
        rgba(221, 197, 153, 0.38);
}

.residence-picker-area {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.residence-picker-area b {
    color: var(--beige);

    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 0.82;
}

.residence-picker-area small {
    padding-bottom: 2px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 9px;
}

.residence-picker-action {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.13em;
    text-align: right;
    text-transform: uppercase;

    transition:
        color 300ms ease;
}

.residence-picker-action b {
    color: var(--beige);

    font-size: 19px;
    font-weight: 400;

    transition:
        transform 350ms var(--transition);
}

.residence-picker-card:hover
.residence-picker-action,
.residence-picker-card:focus-visible
.residence-picker-action {
    color: var(--beige);
}

.residence-picker-card:hover
.residence-picker-action b,
.residence-picker-card:focus-visible
.residence-picker-action b {
    transform: translateX(5px);
}


/* Tablet */

@media (max-width: 1080px) {
    .unit-selector-panel.residence-picker-panel {
        padding: 28px 28px 44px !important;
    }

    .residence-picker
    .residence-picker-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }

    .residence-picker
    .residence-picker-card.apartment-option-card {
        min-height: 560px !important;
    }

    .residence-picker
    .residence-picker-card.apartment-option-card:last-child {
        grid-column: 1 / -1 !important;

        width:
            calc(
                (100% - clamp(16px, 1.6vw, 26px)) / 2
            ) !important;

        justify-self: center !important;
    }
}


/* Mobile */

@media (max-width: 700px) {
    .unit-selector-panel.residence-picker-panel {
        padding: 20px 17px 30px !important;
    }

    .residence-picker-header {
        align-items: center;
        gap: 18px;

        margin-bottom: 21px;
    }

    .residence-picker-eyebrow {
        margin-bottom: 7px;

        font-size: 7px;
    }

    .residence-picker-heading h2 {
        font-size: clamp(34px, 10vw, 45px);
    }

    .residence-picker-heading > p:last-child {
        display: none;
    }

    .residence-picker
    .residence-picker-close {
        width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
    }

    .residence-picker
    .residence-picker-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .residence-picker
    .residence-picker-card.apartment-option-card,
    .residence-picker
    .residence-picker-card.apartment-option-card:last-child {
        width: 100% !important;
        min-height: 510px !important;

        grid-column: auto !important;
    }

    .residence-picker-content {
        padding: 24px 21px 22px;
    }

    .residence-picker-name {
        font-size: 38px;
    }

    .residence-picker-description {
        font-size: 10px;
    }
}


/* Small mobile */

@media (max-width: 430px) {
    .residence-picker-header {
        align-items: flex-start;
    }

    .residence-picker-heading h2 {
        max-width: 250px;
    }

    .residence-picker
    .residence-picker-card.apartment-option-card,
    .residence-picker
    .residence-picker-card.apartment-option-card:last-child {
        min-height: 480px !important;
    }

    .residence-picker-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .residence-picker-action {
        width: 100%;
        justify-content: space-between;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
    .apartment-option-grid {
        gap: 13px;
    }

    .apartment-option-card {
        min-height: 440px;

        grid-template-columns: 1fr;
        grid-template-rows: 175px minmax(0, 1fr);

        border-radius: 13px;
    }

    .apartment-option-image {
        grid-column: 1;
        grid-row: 1;
    }

    .apartment-option-content {
        grid-column: 1;
        grid-row: 2;

        justify-content: flex-start;

        padding: 25px 20px 21px;
    }

    .apartment-option-content::before {
        top: 0;
        right: 20px;
        left: 20px;
    }

    .apartment-option-topline {
        top: 14px;
        right: 14px;
        left: 14px;
    }

    .apartment-option-topline small,
    .apartment-option-topline strong {
        font-size: 7px;
    }

    .apartment-option-topline small {
        padding: 7px 9px;
    }

    .apartment-option-topline strong {
        padding: 8px 10px;
    }

    .apartment-option-number {
        top: 92px;
        right: auto;
        bottom: auto;
        left: 17px;

        font-size: 61px;
    }

    .apartment-option-category {
        font-size: 7px;
    }

    .apartment-option-name {
        max-width: 85%;

        font-size: 32px;
    }

    .apartment-option-area {
        margin-top: 17px;
    }

    .apartment-option-area b {
        font-size: 36px;
    }

    .apartment-option-action {
        margin-top: auto;
        padding-top: 17px;
    }
}

/* Tablet */

@media (max-width: 1050px) {
    .apartment-option-grid {
        grid-template-columns: 1fr;
    }

    .apartment-option-card {
        min-height: 330px;
    }

    .apartment-option-number {
        position: absolute;
        top: 76px;
        right: 28px;
    }
}


/* Mobile */

@media (max-width: 700px) {
    .unit-selector-modal {
        align-items: end;

        padding: 0;
    }

    .unit-selector-panel {
        width: 100%;
        max-height: 92svh;

        padding: 44px 21px 26px;

        border-right: 0;
        border-bottom: 0;
        border-left: 0;

        border-radius: 22px 22px 0 0;
    }

    .unit-selector-panel::after {
        left: 21px;
    }

    .unit-selector-close {
        top: 16px;
        right: 16px;

        width: 42px;
        height: 42px;
    }

    .unit-selector-heading {
        padding-right: 42px;
    }

    .unit-selector-heading h2 {
        font-size: clamp(41px, 12vw, 58px);
    }

    .unit-selector-heading > p:last-child {
        font-size: 12px;
    }

    .apartment-option-grid {
        gap: 12px;
    }

    .apartment-option-card {
        min-height: 255px;

        padding: 20px;
    }

    .apartment-option-number {
        top: 70px;
        right: 20px;

        font-size: 70px;
    }

    .apartment-option-name {
        max-width: 70%;

        font-size: 31px;
    }

    .apartment-option-area b {
        font-size: 34px;
    }

    .unit-choice-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .unit-choice-heading p {
        text-align: left;
    }

    .enquiry-unit-grid {
        grid-template-columns: 1fr;
    }

    .apartment-enquiry-option,
    .category-enquiry-option {
        grid-column: auto;
    }

    .enquiry-unit-option {
        min-height: 95px;
    }
}