:root {
    --color-blue-950: #002d6c;
    --color-blue-900: #022354;
    --color-blue-800: #022354;
    --color-blue-600: #1679bf;
    --color-gold: #d5b98d;
    --color-kicker: #b1966d;
    --color-description: #575757;
    --color-cream: #f8fdff;
    --color-white: #ffffff;
    --color-text: #24364f;
    --color-muted: #607089;
    --border-soft: rgba(28, 76, 123, 0.14);
    --shadow-panel: 0 24px 70px rgba(7, 48, 91, 0.18);
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Outfit", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-cream);
}

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

img,
svg {
    display: block;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 20%) minmax(0, 60%) minmax(0, 20%);
    align-items: center;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 22px 0;
    color: var(--color-white);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 180px;
}

.brand img {
    width: 100%;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 500;
}

.primary-nav a {
    position: relative;
    padding: 6px 0;
    text-shadow: 0 2px 10px rgba(0, 32, 73, 0.48);
}

.primary-nav a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    content: "";
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    background: rgba(4, 40, 84, 0.34);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-white);
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 640px;
    padding: 1px 24px 0;
    overflow: hidden;
}

.hero-section::after {
    position: absolute;
    left: -4vw;
    right: -4vw;
    bottom: 0;
    z-index: 3;
    height: 180px;
    content: "";
    border-radius: 0 0 80px 80px;
    box-shadow: 0 54px 0 var(--color-cream);
    pointer-events: none;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    border-radius: 0 0 76px 76px;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 31, 74, 0.88) 0%, rgba(5, 57, 109, 0.64) 32%, rgba(6, 65, 116, 0.28) 60%, rgba(2, 22, 57, 0.22) 100%),
        linear-gradient(180deg, rgba(2, 28, 68, 0.45) 0%, rgba(2, 28, 68, 0.08) 52%, rgba(2, 28, 68, 0.38) 100%);
}

.hero-content {
    position: relative;
    z-index: 4;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding-top: 252px;
    color: var(--color-white);
}

.hero-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.hero-content h1 {
    max-width: 590px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(44px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow: 0 8px 22px rgba(0, 32, 73, 0.34);
}

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

.hero-copy {
    max-width: 680px;
    margin: 22px 0 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(2, 28, 68, 0.25);
}

.btn-primary {
    color: var(--color-white);
    background:
        linear-gradient(rgba(2, 35, 84, 0.08), rgba(2, 35, 84, 0.08)),
        #022354 url("../assets/images/abstract-blue-swirling-liquid-marble-design.webp") center center / cover no-repeat;
    border-color: var(--color-gold);
}

.btn-secondary {
    color: var(--color-blue-950);
    background: var(--color-white);
    border-color: var(--color-white);
}

.lifestyle-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    background: rgba(255, 255, 255);
    border: 2px solid rgba(215, 161, 83, 0.68);
    border-radius: 26px;
}

.lifestyle-transition-section {
    position: relative;
    z-index: 8;
    padding: 0 24px 78px;
    margin-top: -112px;
    background: transparent;
}

.lifestyle-item {
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 176px;
    padding: 18px 0px 18px;
    text-align: center;
}

.lifestyle-item + .lifestyle-item {
    border-left: 1px solid var(--border-soft);
}

.lifestyle-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.lifestyle-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.lifestyle-item h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    color: #3a4f66;
}

.lifestyle-item p {
    max-width: 190px;
    margin: 13px 0 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-description);
}

.concept-section {
    position: relative;
    isolation: isolate;
    padding: 104px 24px 90px;
    overflow: hidden;
    background: var(--color-cream);
}

.concept-section::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background: url("../assets/images/bgoverlay.webp") center bottom / cover no-repeat;
    opacity: 0.1;
    transform: translateX(-50%);
    pointer-events: none;
}

.concept-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(360px, 0.76fr);
    align-items: center;
    gap: clamp(70px, 7vw, 128px);
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.concept-copy {
    max-width: 650px;
}

.section-kicker {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-kicker);
}

.concept-copy h2 {
    max-width: 620px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(38px, 3.25vw, 58px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
    color: var(--color-blue-950);
}

.section-rule {
    display: block;
    width: 48px;
    height: 2px;
    margin: 24px 0 24px;
    background: var(--color-gold);
}

.concept-description {
    max-width: 620px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.78;
    color: var(--color-description);
}

.concept-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

.concept-feature {
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 112px;
    padding: 0 26px;
    text-align: center;
}

.concept-feature + .concept-feature {
    border-left: 1px solid rgba(2, 35, 84, 0.12);
}

.feature-image {
    width: 74px;
    height: 74px;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(2, 35, 84, 0.12);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-feature h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    color: #3a4f66;
}

.concept-button {
    margin-top: 28px;
}

.concept-visual {
    position: relative;
    width: min(100%, 520px);
    height: 500px;
    aspect-ratio: 0.88;
    justify-self: end;
    overflow: hidden;
    border-radius: 50% 50% 0 0;
    box-shadow: 0 26px 70px rgba(2, 35, 84, 0.16);
}

.concept-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 88px 24px 68px;
    background: var(--color-cream);
}

.location-shell {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.section-heading-center {
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(36px, 3.05vw, 56px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: 0;
    color: var(--color-blue-950);
}

.section-heading-center .section-kicker {
    margin-bottom: 14px;
}

.location-map {
    width: min(100%, 1320px);
    margin: 0 auto;
    overflow: hidden;
    border: 3px solid rgba(213, 185, 141, 0.78);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: 0 20px 54px rgba(2, 35, 84, 0.1);
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(7, minmax(150px, 1fr));
    gap: 20px;
    width: min(100%, 1320px);
    margin: 28px auto 0;
}

.location-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    min-height: 238px;
    padding: 9px 9px 16px;
    text-align: center;
    background: var(--color-white);
    border: 1px solid #cda974;
    border-radius: 999px 999px 0 0;
    box-shadow: none;
}

.location-photo {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    border: 1px solid #cda974;
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
    overflow: hidden;
    background: var(--color-cream);
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 64px;
    height: 48px;
    margin: -39px auto 0;
    padding-top: 11px;
    color: var(--color-blue-950);
    background: var(--color-white);
    border-radius: 999px 999px 0 0;
}

.location-svg {
    display: block;
    width: 33px;
    height: 33px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(2071%) hue-rotate(202deg) brightness(87%) contrast(105%);
}

.location-card h3 {
    position: relative;
    align-self: end;
    margin: 20px 0 0;
    padding-top: 15px;
    border-top: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-blue-950);
}

.location-card h3::before {
    position: absolute;
    top: 0;
    left: 18%;
    right: 18%;
    height: 1px;
    content: "";
    background: #b1966d;
}

.location-description {
    max-width: 1130px;
    margin: 22px auto 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    color: var(--color-blue-950);
}

.getaway-section {
    position: relative;
    isolation: isolate;
    padding: 86px 24px 92px;
    overflow: hidden;
    color: var(--color-white);
    background: #002D6C;
    border-radius: 96px 96px 0 0;
}

.getaway-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("../assets/images/abstract-blue-swirling-liquid-marble-design.webp") center center / cover no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

.getaway-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.getaway-heading {
    max-width: 1060px;
    margin: 0 auto 58px;
    text-align: center;
}

.getaway-heading .section-kicker,
.getaway-copy .section-kicker {
    color: #d5b98d;
}

.getaway-heading h2 {
    margin: 12px 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 3.4vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    color: var(--color-white);
}

.getaway-heading p:last-child {
    max-width: 1080px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-white);
}

.getaway-row {
    display: grid;
    grid-template-columns: minmax(380px, 0.78fr) minmax(480px, 0.88fr);
    align-items: center;
    gap: clamp(52px, 6vw, 108px);
    width: min(100%, 1320px);
    margin: 0 auto;
}

.getaway-row + .getaway-row {
    margin-top: 66px;
}

.getaway-row-reverse {
    grid-template-columns: minmax(480px, 0.88fr) minmax(380px, 0.78fr);
}

.getaway-row-reverse .getaway-copy {
    grid-column: 2;
    grid-row: 1;
}

.getaway-row-reverse .getaway-image {
    grid-column: 1;
    grid-row: 1;
}

.getaway-copy {
    max-width: 560px;
}

.getaway-copy .section-kicker {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}

.getaway-copy .section-rule {
    width: 76px;
    margin: 0 0 22px;
    background: #caac83;
}

.getaway-copy h3 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(32px, 2.75vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    color: var(--color-white);
}

.getaway-copy p:last-child {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--color-white);
}

.getaway-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.getaway-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.facilities-section {
    position: relative;
    isolation: isolate;
    padding: 92px 24px 86px;
    overflow: hidden;
    background: var(--color-cream);
}

.facilities-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: 100vw;
    height: 280px;
    background: url("../assets/images/cloud.webp") center top / cover no-repeat;
    opacity: 0.45;
    transform: translateX(-50%);
    pointer-events: none;
}

.facilities-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.section-description {
    max-width: 820px;
    margin: 18px auto 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-description);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: min(100%, 1320px);
    margin: 26px auto 0;
}

.facility-card {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid rgba(177, 150, 109, 0.78);
    border-radius: 8px;
}

.facility-photo {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-cream);
}

.facility-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-card-body {
    min-height: 132px;
    padding: 20px 22px 22px;
}

.facility-card h3 {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    color: var(--color-blue-950);
}

.facility-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-description);
}

.facility-categories {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    gap: 22px;
    width: min(100%, 1320px);
    margin: 24px auto 0;
    padding: 10px 10px 10px;
    background: #fbf4e8;
    border-radius: 8px;
}

.facility-category-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    margin: 0 0 0px;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    text-align: left;
    color: #101010;
    background: #d6b989;
    cursor: pointer;
}

.facility-category-toggle span {
    display: inline-block;
    min-width: 13px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.facility-category ul {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    transition: max-height 320ms ease, margin 320ms ease, opacity 240ms ease, transform 320ms ease;
}

.facility-category-list {
    max-height: 720px;
    opacity: 1;
    transform: translateY(0);
}

.facility-category-list.is-collapsed {
    max-height: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.facility-category li {
    position: relative;
    margin: 0;
    padding-left: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
    color: #101010;
}

.facility-category li::before {
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 10px;
    height: 10px;
    content: "";
    background: url("../assets/images/dot.svg") center / contain no-repeat;
    transform: translateY(-50%);
}

.gallery-section {
    padding: 74px 24px 62px;
    background: var(--color-cream);
}

.gallery-shell {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.gallery-section .section-heading-center {
    margin-bottom: 58px;
}

.gallery-slider {
    position: relative;
}

.gallery-track {
    display: grid;
    grid-auto-columns: calc((100% - 40px) / 3);
    grid-auto-flow: column;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(2, 35, 84, 0.42);
    box-shadow: 0 12px 26px rgba(2, 35, 84, 0.22);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-arrow::before {
    width: 11px;
    height: 11px;
    content: "";
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
}

.gallery-arrow-prev {
    left: 14px;
}

.gallery-arrow-prev::before {
    transform: rotate(-135deg) translate(-1px, -1px);
}

.gallery-arrow-next {
    right: 14px;
}

.gallery-arrow-next::before {
    transform: rotate(45deg) translate(-1px, 1px);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    background: rgba(2, 35, 84, 0.72);
    border-color: var(--color-white);
    transform: translateY(-50%) scale(1.04);
}

.gallery-description {
    max-width: 1120px;
    margin: 48px auto 0;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-description);
}

.aerial-section {
    position: relative;
    isolation: isolate;
    padding: 76px 24px 86px;
    overflow: hidden;
    background: var(--color-cream);
}

.aerial-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: min(34vw, 440px);
    height: 260px;
    background: url("../assets/images/left-bottom.webp") left bottom / contain no-repeat;
    opacity: 0.55;
    pointer-events: none;
}

.aerial-bottom-art {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: min(34vw, 440px);
    height: 260px;
    background: url("../assets/images/right-bottom.webp") right bottom / contain no-repeat;
    opacity: 0.55;
    pointer-events: none;
}

.aerial-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.aerial-section .section-heading-center {
    margin-bottom: 54px;
}

.aerial-slider {
    position: relative;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.aerial-track {
    display: grid;
    grid-auto-columns: calc((100% - 10px) / 2);
    grid-auto-flow: column;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.aerial-track::-webkit-scrollbar {
    display: none;
}

.aerial-slide {
    overflow: hidden;
    border-radius: 8px;
}

.aerial-slide img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

.floor-section {
    position: relative;
    isolation: isolate;
    padding: 96px 24px 102px;
    overflow: hidden;
    color: var(--color-white);
    background: #022354;
}

.floor-shell {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.floor-heading {
    max-width: 980px;
    margin: 0 auto 106px;
    text-align: center;
}

.floor-heading .section-kicker {
    color: var(--color-kicker);
}

.floor-heading h2 {
    margin: 12px 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 3.25vw, 58px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: 0;
    color: var(--color-white);
}

.floor-heading p:last-child {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-white);
}

.floor-layout {
    display: grid;
    grid-template-columns: minmax(440px, 1fr) minmax(440px, 1fr);
    column-gap: 24px;
    row-gap: 96px;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.interior-slider {
    position: relative;
    min-width: 0;
}

.interior-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.interior-track::-webkit-scrollbar {
    display: none;
}

.floor-card {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    align-items: center;
    height: 420px;
    padding: 48px 38px;
    background: #fbf8f2;
    border-radius: 14px;
}

.floor-card-copy h3 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-blue-950);
}

.floor-size {
    margin: 0 0 22px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-kicker);
}

.floor-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.floor-card li {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-blue-950);
}

.floor-card li::before {
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 9px;
    height: 9px;
    content: "";
    background: var(--color-blue-950);
    border-radius: 50%;
    transform: translateY(-50%);
}

.floor-note {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-blue-950);
}

.floor-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.interior-slide {
    flex: 0 0 100%;
    min-width: 100%;
    overflow: hidden;
    height: 420px;
    border-radius: 8px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.interior-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floor-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(2, 35, 84, 0.42);
    box-shadow: 0 12px 26px rgba(2, 35, 84, 0.24);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.floor-arrow::before {
    width: 11px;
    height: 11px;
    content: "";
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
}

.floor-arrow-prev {
    left: 14px;
}

.floor-arrow-prev::before {
    transform: rotate(-135deg) translate(-1px, -1px);
}

.floor-arrow-next {
    right: 14px;
}

.floor-arrow-next::before {
    transform: rotate(45deg) translate(-1px, 1px);
}

.floor-arrow:hover,
.floor-arrow:focus-visible {
    background: rgba(2, 35, 84, 0.72);
    border-color: var(--color-white);
    transform: translateY(-50%) scale(1.04);
}

.floor-layouts {
    margin-top: 76px;
    text-align: center;
}

.floor-layouts h3 {
    margin: 0 0 48px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 3.15vw, 58px);
    font-weight: 700;
    line-height: 1.06;
    color: var(--color-white);
}

.floor-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.layout-card {
    color: var(--color-white);
}

.layout-view {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--color-white);
}

.layout-card img {
    width: 100%;
    aspect-ratio: 21 / 7.6;
    object-fit: cover;
    margin-bottom: 20px;
    background: var(--color-white);
}

.layout-card h4 {
    margin: 22px 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-white);
}

.layout-card p:last-child {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

.virtual-section {
    display: none;
    padding: 72px 24px 88px;
    background: var(--color-cream);
}

.virtual-shell {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.virtual-section .section-heading-center {
    margin-bottom: 22px;
}

.virtual-group + .virtual-group {
    margin-top: 24px;
}

.virtual-group h3 {
    margin: 0 0 22px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(30px, 2.5vw, 44px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--color-blue-950);
}

.virtual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px;
    width: min(100%, 1060px);
    margin: 0 auto;
}

.virtual-frame {
    position: relative;
    overflow: hidden;
    background: #ddd3c7;
}

.virtual-frame img,
.virtual-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    object-fit: cover;
}

.virtual-controls {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 2;
    display: grid;
    width: 31px;
    background: var(--color-white);
    border: 1px solid #888;
}

.virtual-controls span {
    display: grid;
    place-items: center;
    width: 29px;
    height: 30px;
    border-bottom: 1px solid #888;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #101010;
}

.virtual-controls span:last-child {
    border-bottom: 0;
}

.expand-icon {
    position: relative;
}

.expand-icon::before {
    width: 15px;
    height: 15px;
    content: "";
    border: 3px dashed #101010;
}

.investment-section {
    padding: 86px 24px 92px;
    background: var(--color-cream);
}

.investment-shell {
    display: grid;
    grid-template-columns: minmax(460px, 1fr) minmax(460px, 1fr);
    align-items: center;
    gap: 22px;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.investment-main .section-kicker {
    margin-bottom: 24px;
    color: #d5b98d;
}

.investment-main h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(42px, 3.55vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    color: var(--color-blue-950);
}

.investment-main .section-rule {
    margin: 18px 0 24px;
}

.investment-main p {
    max-width: 660px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-description);
}

.investment-image {
    width: min(100%, 640px);
    margin-top: 22px;
    overflow: hidden;
    border-radius: 14px;
}

.investment-image img {
    width: 100%;
    aspect-ratio: 1.43;
    object-fit: cover;
}

.investment-benefits {
    display: grid;
    gap: 20px;
}

.investment-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    min-height: 138px;
    overflow: hidden;
    background: #fbf8f4;
    border-radius: 8px;
}

.investment-icon {
    justify-self: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-cream);
    box-shadow: 0 6px 16px rgba(2, 35, 84, 0.13);
}

.investment-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-card > div:last-child {
    padding: 24px 32px 24px 0;
}

.investment-card h3 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--color-blue-950);
}

.investment-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-description);
}

.register-section {
    position: relative;
    isolation: isolate;
    padding: 86px 24px 92px;
    overflow: hidden;
    background: var(--color-cream);
}

.register-section::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;
    width: 100vw;
    height: 78%;
    background: url("../assets/images/bgoverlay.webp") center bottom / cover no-repeat;
    opacity: 0.2;
    transform: translateX(-50%);
    pointer-events: none;
}

.register-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(520px, 0.96fr) minmax(420px, 0.74fr);
    align-items: center;
    gap: clamp(56px, 6vw, 110px);
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 50px 38px;
    color: var(--color-white);
    background: var(--color-blue-950);
    border-radius: 24px;
}

.register-content {
    max-width: 660px;
}

.register-content .section-kicker {
    margin-bottom: 24px;
    color: #d6b989;
}

.register-content h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(40px, 3.3vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    color: var(--color-white);
}

.register-content .section-rule {
    margin: 18px 0 24px;
    background: var(--color-kicker);
}

.register-content > p {
    max-width: 640px;
    margin: 0 0 28px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
    color: var(--color-white);
}

.register-form {
    display: grid;
    gap: 22px;
}

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

.register-form label {
    display: grid;
}

.register-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.register-form input,
.register-form select,
.register-form textarea {
    width: 100%;
    border: 0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #101010;
    background: var(--color-white);
}

.register-form input,
.register-form select {
    height: 48px;
    padding: 0 14px;
}

.register-form textarea {
    min-height: 148px;
    padding: 18px 14px;
    resize: vertical;
}

.register-form input::placeholder,
.register-form textarea::placeholder {
    color: #cfcfcf;
}

.register-form select {
    color: #101010;
}

.register-form select option {
    color: #101010;
}

.register-form .honeypot {
    display: none;
}

.submit-button {
    min-height: 42px;
    border: 0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    background: #d6b989;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
    background: #c9aa75;
    transform: translateY(-1px);
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-status {
    display: none;
    margin: -8px 0 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white);
}

.form-status.is-visible {
    display: block;
}

.form-status.is-error {
    color: #ffd8d8;
}

.register-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 22px;
}

.register-links a {
    display: inline-flex;
    width: 42px;
    height: 42px;
}

.register-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.register-visual {
    justify-self: center;
    width: min(100%, 470px);
    overflow: hidden;
    border-radius: 999px 999px 0 0;
}

.register-visual img {
    width: 100%;
    aspect-ratio: 0.72;
    object-fit: cover;
}

.site-footer {
    color: var(--color-white);
    background: var(--color-blue-950);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.08fr;
    gap: 80px;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 58px 0 74px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.footer-brand img {
    width: min(100%, 340px);
    height: auto;
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
}

.footer-links h2,
.footer-contact h2 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
}

.footer-links a {
    width: fit-content;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-kicker);
}

.footer-contact address {
    display: grid;
    gap: 20px;
    font-style: normal;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
}

.footer-contact-icon {
    display: grid;
    justify-items: center;
    padding-top: 4px;
}

.footer-contact-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: var(--color-white);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
}

.footer-contact p,
.footer-contact a {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-white);
}

.footer-contact p + p {
    margin-top: 8px;
}

.footer-bottom {
    padding: 12px 24px;
    text-align: center;
    background: rgba(0, 0, 0, 0.12);
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.footer-bottom a {
    color: inherit;
}

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

.simple-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    padding: 24px 0;
}

.simple-header .brand {
    width: 180px;
}

.simple-header-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    background: var(--color-blue-950);
}

.disclaimer-section {
    padding: 20px 0px;
    background: var(--color-cream);
}

.disclaimer-shell {
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
}

.disclaimer-shell h1 {
    margin: 0 0 28px;
    font-family: var(--font-heading);
    font-size: clamp(42px, 4vw, 68px);
    font-weight: 700;
    line-height: 1;
    color: var(--color-blue-950);
}

.disclaimer-content {
    padding: 20px;
    border: 1px solid rgba(177, 150, 109, 0.55);
    border-radius: 8px;
    background: var(--color-white);
}

.disclaimer-content h2 {
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-blue-950);
}

.disclaimer-content p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--color-description);
}

.disclaimer-content p + p {
    margin-top: 22px;
}

@media (max-width: 1024px) {
    .site-header {
        width: min(100% - 32px, 920px);
        grid-template-columns: auto 1fr;
        gap: 28px;
    }

    .primary-nav {
        justify-content: flex-end;
        gap: 20px;
        font-size: 16px;
    }

    .hero-content {
        width: min(100% - 32px, 920px);
        padding-top: 220px;
    }

    .lifestyle-panel {
        grid-template-columns: repeat(2, 1fr);
        width: min(100% - 32px, 760px);
    }

    .lifestyle-transition-section {
        margin-top: -96px;
    }

    .lifestyle-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border-soft);
    }

    .lifestyle-item:nth-child(4) {
        border-top: 1px solid var(--border-soft);
    }

    .concept-section {
        padding-top: 86px;
    }

    .concept-shell {
        grid-template-columns: 1fr;
        gap: 56px;
        width: min(100% - 32px, 760px);
    }

    .concept-copy,
    .concept-copy h2,
    .concept-description {
        max-width: none;
    }

    .concept-visual {
        justify-self: center;
        width: min(100%, 460px);
        border-radius: 50% 50% 0 0;
    }

    .location-section {
        padding-top: 76px;
    }

    .location-shell {
        width: min(100% - 32px, 920px);
    }

    .location-cards {
        grid-template-columns: repeat(4, minmax(150px, 1fr));
        gap: 16px;
    }

    .getaway-section {
        padding-top: 76px;
        border-radius: 64px 64px 0 0;
    }

    .getaway-shell {
        width: min(100% - 32px, 920px);
    }

    .getaway-heading {
        margin-bottom: 48px;
    }

    .getaway-row,
    .getaway-row-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        width: min(100%, 760px);
    }

    .getaway-row-reverse .getaway-copy,
    .getaway-row-reverse .getaway-image {
        grid-column: auto;
        grid-row: auto;
    }

    .getaway-row + .getaway-row {
        margin-top: 58px;
    }

    .facilities-section {
        padding-top: 76px;
    }

    .facilities-shell {
        width: min(100% - 32px, 920px);
    }

    .facility-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 720px);
    }

    .facility-categories {
        width: min(100%, 720px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .gallery-section {
        padding-top: 66px;
    }

    .gallery-shell {
        width: min(100% - 32px, 920px);
    }

    .gallery-track {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .aerial-section {
        padding-top: 66px;
    }

    .aerial-shell {
        width: min(100% - 32px, 920px);
    }

    .floor-section {
        padding-top: 78px;
    }

    .floor-shell {
        width: min(100% - 32px, 920px);
    }

    .floor-heading {
        margin-bottom: 58px;
    }

    .floor-layout {
        grid-template-columns: 1fr;
        width: min(100%, 640px);
    }

    .floor-layout-grid {
        grid-template-columns: 1fr;
        width: min(100%, 640px);
        margin: 0 auto;
        gap: 42px;
    }

    .virtual-section {
        padding-top: 66px;
    }

    .virtual-shell {
        width: min(100% - 32px, 920px);
    }

    .virtual-grid {
        gap: 28px;
        width: min(100%, 760px);
    }

    .investment-section {
        padding-top: 72px;
    }

    .investment-shell {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 760px);
        gap: 34px;
    }

    .investment-image {
        width: 100%;
    }

    .register-section {
        padding-top: 72px;
    }

    .register-panel {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 760px);
        gap: 38px;
    }

    .register-content {
        max-width: none;
    }

    .register-visual {
        width: min(100%, 390px);
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
        width: min(100% - 32px, 920px);
        gap: 44px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .site-header {
        width: calc(100% - 28px);
        padding: 14px 0;
    }

    .brand {
        width: 148px;
        min-width: 0;
    }

    .nav-toggle {
        position: relative;
        z-index: 31;
        display: block;
        justify-self: end;
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        width: 100vw;
        height: 100vh;
        padding: 92px 28px 42px;
        background: rgba(2, 35, 84, 0.94);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
    }

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

    .primary-nav a {
        display: block;
        width: 100%;
        max-width: 260px;
        padding: 6px 12px;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.25;
        text-align: center;
        text-shadow: none;
    }

    .primary-nav a::after {
        display: none;
    }

    .hero-section {
        height: 80vh;
        min-height: 680px;
        padding-inline: 14px;
    }

    .hero-section::after,
    .hero-media,
    .hero-overlay {
        border-radius: 0 0 42px 42px;
    }

    .hero-media img {
        content: url("../assets/images/register-visual.webp");
        object-position: center center;
    }

    .hero-content {
        width: 100%;
        padding-top: 164px;
    }

    .hero-kicker {
        font-size: 11px;
    }

    .hero-content h1 {
        max-width: 420px;
        font-size: 42px;
    }

    .hero-copy {
        max-width: 80%;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-actions {
        gap: 12px;
    }

    .btn {
        min-height: 46px;
        padding-inline: 18px;
        font-size: 16px;
        max-width: 188px;
    }

    .lifestyle-panel {
        width: 100%;
        border-radius: 20px;
    }

    .lifestyle-item {
        min-height: 166px;
        padding: 22px 18px;
    }

    .lifestyle-icon {
        width: 100px;
        height: 100px;
    }

    .lifestyle-icon img {
        width: 100px;
        height: 100px;
    }

    .lifestyle-item h2 {
        font-size: 14px;
    }

    .lifestyle-item p {
        font-size: 14px;
        line-height: 1.55;
    }

    .concept-section {
        padding: 72px 14px 70px;
    }

    .concept-shell {
        width: 100%;
        gap: 42px;
    }

    .section-kicker {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .concept-copy h2 {
        font-size: 36px;
        line-height: 1.08;
    }

    .section-rule {
        margin-block: 20px;
    }

    .concept-description {
        font-size: 16px;
        line-height: 1.72;
    }

    .concept-features {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 26px;
    }

    .concept-feature {
        grid-template-columns: 64px 1fr;
        justify-items: start;
        align-items: center;
        min-height: auto;
        padding: 0;
        text-align: left;
    }

    .concept-feature + .concept-feature {
        padding-top: 18px;
        border-top: 1px solid rgba(2, 35, 84, 0.12);
        border-left: 0;
    }

    .feature-image {
        width: 56px;
        height: 56px;
        margin: 0;
    }

    .concept-feature h3 {
        font-size: 16px;
    }

    .concept-visual {
        width: min(100%, 380px);
        border-radius: 190px 190px 0 0 / 152px 152px 0 0;
    }

    .location-section {
        padding: 62px 14px 56px;
    }

    .location-shell {
        width: 100%;
    }

    .section-heading-center {
        margin-bottom: 20px;
    }

    .section-heading h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .location-map {
        border-width: 2px;
        border-radius: 14px;
    }

    .location-map img {
        aspect-ratio: 16 / 9;
    }

    .location-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 18px;
    }

    .location-card {
        height: 270px;
        min-height: 270px;
        padding: 8px 8px 16px;
    }

    .location-card h3 {
        font-size: 17px;
    }

    .location-icon {
        width: 58px;
        height: 43px;
        margin-top: -43px;
        padding-top: 12px;
    }

    .location-svg {
        width: 26px;
        height: 26px;
    }

    .location-description {
        margin-top: 18px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.7;
    }

    .getaway-section {
        padding: 62px 20px 66px;
        border-radius: 42px 42px 0 0;
    }

    .getaway-shell {
        width: 100%;
    }

    .getaway-heading {
        margin-bottom: 42px;
    }

    .getaway-heading h2 {
        font-size: 36px;
        line-height: 1.08;
    }

    .getaway-heading p:last-child,
    .getaway-copy p:last-child {
        font-size: 16px;
        line-height: 1.75;
    }

    .getaway-copy .section-kicker {
        font-size: 16px;
    }

    .getaway-copy h3 {
        font-size: 34px;
        line-height: 1.08;
    }

    .getaway-image {
        border-radius: 6px;
    }

    .facilities-section {
        padding: 62px 14px 62px;
    }

    .facilities-shell {
        width: 100%;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .facility-grid {
        grid-template-columns: 1fr;
        width: min(100%, 360px);
        gap: 16px;
    }

    .facility-card-body {
        min-height: auto;
        padding: 18px 18px 20px;
    }

    .facility-card h3 {
        font-size: 24px;
    }

    .facility-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .facility-categories {
        width: min(100%, 360px);
        padding: 8px 8px 18px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .facility-category-toggle {
        min-height: 40px;
        font-size: 16px;
    }

    .facility-category li {
        font-size: 16px;
    }

    .gallery-section {
        padding: 56px 14px 52px;
    }

    .gallery-shell {
        width: 100%;
    }

    .gallery-section .section-heading-center {
        margin-bottom: 34px;
    }

    .gallery-track {
        grid-auto-columns: 100%;
        gap: 14px;
    }

    .gallery-arrow {
        width: 38px;
        height: 38px;
    }

    .gallery-description {
        margin-top: 30px;
        font-size: 14px;
        line-height: 1.7;
    }

    .aerial-section {
        padding: 56px 14px 64px;
    }

    .aerial-shell {
        width: 100%;
    }

    .aerial-section .section-heading-center {
        margin-bottom: 34px;
    }

    .aerial-track {
        grid-auto-columns: 100%;
        gap: 14px;
    }

    .aerial-slide img {
        aspect-ratio: 16 / 9;
    }

    .floor-section {
        padding: 62px 20px 70px;
    }

    .floor-shell {
        width: 100%;
    }

    .floor-heading {
        margin-bottom: 38px;
    }

    .floor-heading h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .floor-heading p:last-child {
        font-size: 16px;
        line-height: 1.7;
    }

    .floor-layout {
        width: 100%;
        gap: 18px;
    }

    .floor-card {
        grid-template-columns: 1fr;
        gap: 22px;
        height: auto;
        padding: 30px 24px;
    }

    .floor-card-copy h3 {
        font-size: 30px;
    }

    .floor-size {
        font-size: 15px;
    }

    .interior-slide,
    .interior-slide img {
        height: 240px;
        min-height: 240px;
    }

    .floor-arrow {
        width: 38px;
        height: 38px;
    }

    .floor-layouts {
        margin-top: 54px;
    }

    .floor-layouts h3 {
        margin-bottom: 34px;
        font-size: 34px;
    }

    .layout-view {
        margin-bottom: 12px;
        font-size: 15px;
    }

    .layout-card h4 {
        margin: 18px 0 12px;
        font-size: 18px;
    }

    .layout-card p:last-child {
        font-size: 14px;
    }

    .virtual-section {
        padding: 56px 14px 64px;
    }

    .virtual-shell {
        width: 100%;
    }

    .virtual-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .virtual-group h3 {
        margin-bottom: 16px;
        font-size: 30px;
    }

    .virtual-group + .virtual-group {
        margin-top: 28px;
    }

    .investment-section {
        padding: 58px 14px 66px;
    }

    .investment-shell {
        width: 100%;
    }

    .investment-main h2 {
        font-size: 38px;
    }

    .investment-main p,
    .investment-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .investment-card {
        grid-template-columns: 92px 1fr;
        min-height: 124px;
    }

    .investment-icon {
        width: 64px;
        height: 64px;
    }

    .investment-card > div:last-child {
        padding: 20px 18px 20px 0;
    }

    .investment-card h3 {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .register-section {
        padding: 58px 14px 66px;
    }

    .register-panel {
        width: 100%;
        padding: 34px 22px;
        border-radius: 18px;
    }

    .register-content h2 {
        font-size: 36px;
    }

    .register-content > p {
        font-size: 16px;
        line-height: 1.75;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .register-form {
        gap: 18px;
    }

    .register-form textarea {
        min-height: 132px;
    }

    .register-visual {
        width: min(100%, 300px);
    }

    .footer-shell {
        grid-template-columns: 1fr;
        width: calc(100% - 28px);
        gap: 36px;
        padding: 42px 0 48px;
    }

    .footer-brand {
        padding-top: 0;
    }

    .footer-brand img {
        width: min(100%, 300px);
    }

    .footer-links h2,
    .footer-contact h2 {
        font-size: 28px;
    }

    .footer-contact-row {
        grid-template-columns: 40px 1fr;
    }

    .footer-contact-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 520px) {
    .hero-section {
        height: 100vh;
        min-height: 640px;
    }

    .hero-media,
    .hero-overlay {
        inset-bottom: 0;
    }

    .hero-section::after {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 310px);
    }

    .lifestyle-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
        width: min(100% - 42px, 386px);
        padding: 10px;
        border-radius: 24px;
        transform: none;
    }

    .lifestyle-transition-section {
        padding: 0 14px 66px;
        margin-top: -340px;
    }

    .lifestyle-item {
        min-height: 168px;
        padding: 0 2px;
    }

    .lifestyle-item + .lifestyle-item,
    .lifestyle-item:nth-child(2),
    .lifestyle-item:nth-child(3),
    .lifestyle-item:nth-child(4) {
        border-left: 0;
        border-top: 0;
    }

    .location-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .location-card:last-child {
        grid-column: 1 / -1;
        width: calc((100% - 14px) / 2);
        justify-self: center;
    }
}

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