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

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #fff;
}

.hero-wrap {
    padding-bottom: 0;
}

.hero {
    position: relative;
    line-height: 0;
    overflow: hidden;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 3rem;
    line-height: normal;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 22%, rgba(0, 0, 0, 0) 42%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 24%, rgba(0, 0, 0, 0) 48%);
}

.hero-header {
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.hero-logo-image {
    display: block;
    width: clamp(7rem, 18vw, 22rem);
    height: auto;
}

.site-header-bar {
    gap: 1rem;
}

.site-header-actions {
    flex-shrink: 0;
}

.inner-header .btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-register {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: 0.85rem;
    --bs-btn-font-size: 0.82rem;
    --bs-btn-font-weight: 600;
    --bs-btn-color: #fff;
    --bs-btn-bg: #000;
    --bs-btn-border-color: #000;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #222;
    --bs-btn-hover-border-color: #222;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #333;
    --bs-btn-active-border-color: #333;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.btn-menu {
    display: inline-flex;
    /* display: none; /* Temporary: hide hamburger menu */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.btn-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.hero-headline {
    font-size: clamp(1.75rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-headline span {
    display: block;
}

.site-menu-mount {
    position: fixed;
    inset: 0;
    z-index: 1060;
    pointer-events: none;
}

.site-menu-container {
    position: relative;
    height: 100%;
}

.site-menu-mount .site-offcanvas {
    --bs-offcanvas-width: 50%;
    --bs-offcanvas-bg: #fff;
    --bs-offcanvas-border-width: 0;
    --bs-offcanvas-color: #111;
    --bs-offcanvas-transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    max-height: 100%;
    pointer-events: none;
    background-color: #fff;
    color: #111;
    visibility: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.site-menu-mount .site-offcanvas.offcanvas {
    position: absolute;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.6s;
}

.site-menu-mount .site-offcanvas.offcanvas-end {
    transform: translate3d(100%, 0, 0);
}

.site-menu-mount .site-offcanvas.offcanvas-end.show,
.site-menu-mount .site-offcanvas.offcanvas-end.showing {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}

.site-menu-mount .site-offcanvas.offcanvas-end.hiding {
    visibility: visible;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.28s cubic-bezier(0.4, 0, 1, 1), visibility 0s linear 0.28s;
}

.site-menu-mount .site-offcanvas.offcanvas-end:not(.show):not(.showing):not(.hiding) {
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: none;
}

.site-offcanvas .offcanvas-title {
    color: #111;
}

.offcanvas-backdrop {
    --bs-backdrop-opacity: 0.15;
}

.offcanvas-backdrop.fade {
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.offcanvas-backdrop.fade.show {
    opacity: var(--bs-backdrop-opacity);
}

.offcanvas-backdrop.fade:not(.show) {
    transition: opacity 0.2s ease;
    opacity: 0;
}

.site-offcanvas-header {
    flex: 0 0 auto;
    justify-content: flex-end;
    padding: 1.25rem 1.25rem 0;
    border-bottom: 0;
}

.site-offcanvas-close {
    margin: 0;
    opacity: 0.85;
}

.site-offcanvas-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    min-height: 0;
    padding: 0.5rem 2rem 2.5rem;
    overflow-y: auto;
}

.site-menu-nav {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.8vw, 1.1rem);
}

@media (max-width: 767.98px) {
    .site-menu-mount .site-menu-container.container {
        max-width: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        height: 100dvh;
    }

    .site-menu-mount .site-offcanvas {
        --bs-offcanvas-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100dvh;
    }

    .site-offcanvas-header {
        padding: 1rem 1rem 0;
    }

    .site-offcanvas-body {
        gap: 1.25rem;
        padding: 0.25rem 1.5rem 1.5rem;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .site-menu-link {
        font-size: clamp(1.15rem, 5.5vw, 1.5rem);
    }

    .site-menu-brand-logo {
        max-width: 11rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-menu-mount .site-offcanvas,
    .offcanvas-backdrop {
        --bs-offcanvas-transition: none;
        transition: none;
    }
}

.site-menu-link {
    display: block;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    padding: 0;
}

.site-menu-link:hover,
.site-menu-link:focus {
    color: #000;
    opacity: 0.65;
}

.site-menu-brand {
    display: block;
    margin-top: auto;
    text-decoration: none;
}

.site-menu-brand-logo {
    display: block;
    width: 100%;
    max-width: min(100%, 26rem);
    height: auto;
    filter: brightness(0);
}

.intro-section {
    color: #000;
    padding: 2.5rem 0;
}

.intro-headline {
    font-size: clamp(1.75rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.intro-headline span {
    display: block;
}

.intro-text {

    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.5;
}

.floorplans-section {
    color: #000;
    padding: 2.5rem 0 3rem;
}

.floorplans-section .container {
    border-top: 1px solid #000;
    padding-top: 2.5rem;
}

.floorplans-heading {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.floorplans-subheader {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.floorplans-subheading {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.4;
}

.btn-accent {
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 0.65rem;
    --bs-btn-font-size: 0.72rem;
    --bs-btn-font-weight: 700;
    --bs-btn-color: #fff;
    --bs-btn-bg: #cc202d;
    --bs-btn-border-color: #cc202d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b01c27;
    --bs-btn-hover-border-color: #b01c27;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #9a1922;
    --bs-btn-active-border-color: #9a1922;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.floorplan-card {
    border: 1px solid #000;
    background: #fff;
}

.floorplan-card-image img {
    display: block;
    width: 100%;
    height: auto;
}

.floorplan-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
}

.floorplan-card-title {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.floorplan-specs {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.floorplan-specs li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
}

.floorplan-specs img {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.floorplan-actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.cta-section {
    color: #fff;
    padding: 0 0 3rem;
}

.cta-layout {
    border-right: 35px solid #FF0000;
}

.cta-top {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}

.cta-headline-block,
.cta-text-block {
    background: #000;
}

.cta-headline-block {
    padding: 2rem 1.5rem 2.5rem;
}

.cta-text-block {
    padding: 2rem 1.5rem;
}

.cta-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.cta-headline span {
    display: block;
}

.cta-headline-mixed {
    display: block;
}

.cta-headline-light {
    font-weight: 400;
    color: #9a9a9a;
}

.cta-headline-em {
    font-weight: 900;
    color: #fff;
}

.cta-intro-text {
    max-width: 26rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
}

.cta-media {
    border-top: 35px solid #FF0000;
    line-height: 0;
}

.cta-image {
    display: block;
    width: 100%;
    height: auto;
}

.cta-bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    border-bottom: 10px solid #FF0000;
}

.cta-map {
    background: #fff;
    line-height: 0;
}

.cta-map-image {
    display: block;
    width: 100%;
    height: auto;
}

.cta-tour {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
    min-height: 280px;
    background: #000;
    padding: 2rem 1.5rem;
}

.cta-tour-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.cta-tour-heading span {
    display: block;
}

.cta-tour-text {
    margin-top: 1rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.cta-map-link {
    display: inline-flex;
    align-self: flex-start;
}

.cta-map-icon {
    display: block;
    width: 3.25rem;
    height: 3.25rem;
}

@media (min-width: 768px) {
    .hero-overlay {
        padding: 1.5rem 2rem 4rem;
    }

    .intro-section {
        padding: 3rem 0;
    }

    .floorplans-subheader {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .floorplan-card-body {
        padding: 1.5rem 1.5rem 1.75rem;
    }

    .floorplan-specs {
        gap: 1rem;
    }

    .cta-top,
    .cta-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .cta-headline-block {
        padding: 2.5rem 2rem 3rem;
    }

    .cta-text-block {
        padding: 2.5rem 2rem 2rem 1.5rem;
    }

    .cta-tour {
        padding: 2.5rem 2rem;
        min-height: 100%;
    }
}

@media (min-width: 1200px) {
    .hero-overlay {
        padding-bottom: 5rem;
    }

    .intro-section {
        padding: 3.5rem 0;
    }

    .floorplans-section {
        padding: 3rem 0 3.5rem;
    }

    .floorplans-section .container {
        padding-top: 3rem;
    }

    .floorplans-subheader {
        margin-bottom: 2.5rem;
    }

    .cta-section {
        padding-bottom: 3.5rem;
    }

    .cta-headline-block {
        padding: 3rem 2.5rem 3.5rem;
    }

    .cta-text-block {
        padding: 3rem 3rem 2.5rem 2rem;
    }

    .cta-tour {
        padding: 3rem 2.5rem;
    }
}

.features-section {
    color: #fff;
    padding: 0 0 3rem;
}

.features-panel {
    position: relative;
    line-height: 0;
}

.features-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.features-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease-in-out;
}

.features-slide {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: auto;
}

.features-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.55) 28%,
        rgba(0, 0, 0, 0.15) 55%,
        rgba(0, 0, 0, 0) 72%
    );
}

.features-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    line-height: normal;
}

.features-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1.25rem;
    height: 100%;
    padding: 1.5rem;
}

.features-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #000;
    padding: 1.25rem 1.5rem;
}

.features-headline {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.features-headline span {
    display: block;
}

.features-btn {
    display: none; /* Temporary: hide View Feature And Finishes */
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: 0.7rem;
    --bs-btn-font-size: 0.68rem;
}

.features-detail-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.features-detail-text {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
}

@media (min-width: 768px) {
    .features-overlay {
        grid-template-columns: 1fr 1fr;
    }

    .features-copy {
        padding: 2rem;
        gap: 1.5rem;
    }

    .features-detail {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .features-copy {
        padding: 2rem 2.5rem;
    }

    .features-detail {
        padding: 1.75rem 2rem;
    }
}

.two-homes-section {
    color: #fff;
    padding: 0 0 3rem;
}

.two-homes-panel {
    position: relative;
    line-height: 0;
}

.two-homes-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.55) 28%,
        rgba(0, 0, 0, 0.15) 55%,
        rgba(0, 0, 0, 0) 72%
    );
}

.two-homes-image {
    display: block;
    width: 100%;
    height: auto;
}

.two-homes-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    line-height: normal;
}

.two-homes-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1rem;
    height: 100%;
    padding: 1.5rem;
}

.two-homes-headline {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.two-homes-headline span {
    display: block;
}

.two-homes-text {
    max-width: 28rem;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
}

.two-homes-btn {
    display: none; /* Temporary: hide View Two Homes in One */
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: 0.7rem;
    --bs-btn-font-size: 0.68rem;
    margin-top: 0.25rem;
}

.two-homes-video {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 220px;
    background: #000;
}

.two-homes-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.two-homes-play {
    display: inline-flex;
    line-height: 0;
}

.two-homes-play svg {
    display: block;
    width: clamp(2.5rem, 5vw, 3rem);
    height: auto;
}

.two-homes-fpo {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .two-homes-overlay {
        grid-template-columns: 1fr 1fr;
    }

    .two-homes-copy {
        padding: 2rem;
        gap: 1.25rem;
    }

    .two-homes-video {
        min-height: 100%;
    }
}

@media (min-width: 1200px) {
    .two-homes-copy {
        padding: 2.5rem;
    }
}

.video-section {
    padding: 0 0 3rem;
}

.video-wrap {
    position: relative;
    line-height: 0;
}

.video-player {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}

.video-play-trigger {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.video-wrap:hover .video-play-trigger,
.video-wrap:focus-within .video-play-trigger {
    opacity: 1;
}

.video-wrap.is-playing .video-play-trigger {
    opacity: 0;
    pointer-events: none;
}

.video-play-icon {
    display: inline-flex;
    line-height: 0;
    transform: scale(1);
    transition: transform 0.25s ease;
}

.video-wrap:hover .video-play-icon,
.video-wrap:focus-within .video-play-icon {
    transform: scale(1.08);
}

.video-play-icon svg {
    display: block;
    width: clamp(3rem, 8vw, 4.5rem);
    height: auto;
}

.register-section {
    color: #000;
    padding: 0;
}

.register-panel {
    background: #000;
    color: #fff;
    border-top: 1px solid #fff;
    padding: 3rem 1.5rem 3.5rem;
}

.register-header {
    margin-bottom: 2.5rem;
}

.register-heading {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.register-form > .register-fields {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

.register-input {
    min-height: 3.75rem;
    border: 1px solid #fff;
    border-radius: 0;
    background: #000;
    color: #fff;
    padding: 1.15rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.register-input::placeholder {
    color: #fff;
    opacity: 1;
    text-transform: uppercase;
}

.register-input:focus {
    border-color: #fff;
    background: #000;
    color: #fff;
    box-shadow: none;
}

.register-input.is-invalid {
    border-color: #ff6b6b;
}

.register-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.register-field-error {
    min-height: 1rem;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #ff6b6b;
}

.register-form-alert {
    margin-bottom: 1.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.register-form-alert[hidden] {
    display: none !important;
}

.register-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 8px;
    padding-right: 2.5rem;
}

.register-form .form-select option {
    color: #000;
    text-transform: none;
}

.register-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.register-submit {
    --bs-btn-padding-x: 2.25rem;
    --bs-btn-padding-y: 0.85rem;
    --bs-btn-font-size: 0.72rem;
    justify-self: start;
}

.register-disclaimer {
    font-size: 0.62rem;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    max-width: 52rem;
}

.register-brand {
    display: block;
    margin-top: 4.5rem;
    text-decoration: none;
    color: #fff;
}

.register-brand-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.register-brand:hover {
    color: #fff;
    opacity: 0.85;
}

.thank-you-section {
    min-height: 100vh;
    background: #000;
    color: #fff;
}

.thank-you-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.thank-you-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thank-you-overlay {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 3rem;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.88) 42%, rgba(0, 0, 0, 0.96) 100%);
}

.thank-you-header {
    margin-bottom: clamp(2rem, 6vw, 4rem);
}

.thank-you-header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 52rem);
    margin-inline: auto;
}

.thank-you-logo-image {
    display: block;
    width: clamp(7rem, 18vw, 18rem);
    height: auto;
}

.thank-you-body {
    width: min(100%, 52rem);
    margin-inline: auto;
    margin-top: auto;
    text-align: center;
}

.thank-you-card {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.thank-you-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
}

.thank-you-eyebrow::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #cc202d;
    box-shadow: 0 0 0 0.35rem rgba(204, 32, 45, 0.22);
}

.thank-you-heading {
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.thank-you-heading span {
    display: block;
}

.thank-you-lead {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 38rem;
    margin-inline: auto;
}

.thank-you-steps {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    visibility: hidden; /* Temporary: keep layout space while hidden */
    pointer-events: none;
}

.thank-you-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-items: center;
}

.thank-you-step-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #cc202d;
}

.thank-you-step-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.thank-you-step-text {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2.5rem;
}

.thank-you-btn-secondary {
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 0.65rem;
    --bs-btn-font-size: 0.72rem;
    --bs-btn-font-weight: 700;
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgba(255, 255, 255, 0.65);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.thank-you-contact {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.thank-you-contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.thank-you-contact-links {
    display: grid;
    gap: 0.85rem;
}

.thank-you-contact-link {
    display: grid;
    gap: 0.2rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.thank-you-contact-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.thank-you-contact-type {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.thank-you-contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.thank-you-brand {
    display: block;
    margin-top: clamp(2.5rem, 6vw, 4rem);
    margin-inline: auto;
    text-decoration: none;
    opacity: 0.9;
}

.thank-you-brand:hover {
    opacity: 1;
}

.thank-you-brand-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .thank-you-overlay {
        padding: 2rem 2.5rem 3.5rem;
    }

    .thank-you-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .thank-you-step {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-right: 1rem;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        text-align: center;
    }

    .thank-you-step-number {
        margin-inline: auto;
    }

    .thank-you-step:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .thank-you-contact-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .thank-you-contact-link {
        transition: none;
    }

    .thank-you-contact-link:hover {
        transform: none;
    }
}

@media (min-width: 768px) {
    .register-form > .register-fields {
        --bs-gutter-x: 1.75rem;
        --bs-gutter-y: 1.5rem;
    }

    .register-actions {
        grid-template-columns: auto 1fr;
        gap: 3rem;
        margin-top: 3.5rem;
        align-items: start;
    }

    .register-panel {
        padding: 3.5rem 2rem 4rem;
    }

    .register-header {
        margin-bottom: 3rem;
    }

    .register-brand {
        margin-top: 5rem;
    }
}

@media (min-width: 1200px) {
    .register-form > .register-fields {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 1.75rem;
    }

    .register-panel {
        padding: 4rem 2.5rem 0.0rem;
    }

    .register-header {
        margin-bottom: 3.5rem;
    }

    .register-actions {
        margin-top: 4rem;
        gap: 3.5rem;
    }

    .register-brand {
        margin-top: 6rem;
    }
}

.inner-page,
.connect-page,
.gallery-page,
.siteplan-page {
    background: #fff;
    color: #000;
}

.inner-header {
    background: #fff;
}

.inner-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex: 0 1 auto;
    min-width: 0;
}

.inner-logo-image {
    display: block;
    width: clamp(7rem, 18vw, 22rem);
    max-width: 100%;
    height: auto;
    filter: brightness(0);
}

.btn-menu-dark span {
    background: #000;
}

.connect-hero {
    background: #fff;
}

.connect-headline {
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000;
}

.connect-headline span {
    display: block;
}

.connect-map {
    background: #fff;
    line-height: 0;
    min-height: 280px;
}

.connect-map-image {
    display: block;
    min-height: 280px;
    object-fit: cover;
}

.connect-contact {
    min-height: 280px;
    background: #cc202d;
    color: #fff;
}

.connect-contact-label {
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.connect-contact-value {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: #fff;
}

.connect-contact-value:hover,
.connect-contact-value:focus {
    color: #fff;
    opacity: 0.85;
}

.inner-page .register-section,
.connect-page .register-section,
.gallery-page .register-section,
.siteplan-page .register-section {
    padding: 0;
}

.inner-page .register-panel,
.connect-page .register-panel,
.gallery-page .register-panel,
.siteplan-page .register-panel {
    border-top: 0;
}

.siteplan-section {
    overflow-x: clip;
}

.siteplan-download-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0.85rem 0 1.25rem;
    border-top: 1px solid #000;
}

.siteplan-download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.72rem, 1.4vw, 0.85rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
}

.siteplan-download-link:hover,
.siteplan-download-link:focus {
    color: #cc202d;
}

.siteplan-download-icon {
    display: inline-flex;
}

.siteplan-image {
    display: block;
    width: 100%;
    height: auto;
}

.connect-footer-brand {
    background: #000;
}

.connect-footer-brand-logo {
    display: block;
    max-width: 100%;
    height: auto;
}

.gallery-heading {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000;
}

.gallery-carousel.carousel {
    position: relative;
    overflow: hidden;
}

.gallery-carousel.carousel .carousel-inner {
    position: relative;
}

.gallery-carousel.carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.gallery-carousel-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-carousel.carousel .gallery-carousel-control {
    position: absolute;
    top: 50%;
    bottom: auto;
    z-index: 5;
    width: 3rem;
    height: 3rem;
    margin-top: -1.5rem;
    opacity: 1;
    background: #000;
    border: 0;
    border-radius: 0;
    cursor: pointer;
}

.gallery-carousel.carousel .gallery-carousel-control.carousel-control-prev {
    left: 0;
}

.gallery-carousel.carousel .gallery-carousel-control.carousel-control-next {
    right: 0;
}

.gallery-carousel-control .gallery-carousel-control-icon {
    pointer-events: none;
}

.gallery-carousel-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.gallery-carousel-control:hover,
.gallery-carousel-control:focus {
    opacity: 1;
    background: #000;
}

.gallery-section + .gallery-section {
    padding-top: 0;
}

@media (min-width: 768px) {
    .gallery-carousel.carousel .gallery-carousel-control {
        width: 3.5rem;
        height: 3.5rem;
        margin-top: -1.75rem;
    }
}

.neighbourhood-page {
    background: #fff;
    color: #000;
}

.neighbourhood-hero-panel {
    line-height: 0;
}

.neighbourhood-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.neighbourhood-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.25rem, 3vw, 2rem);
    line-height: normal;
    pointer-events: none;
}

.neighbourhood-hero-overlay > * {
    pointer-events: auto;
}

.inner-header-overlay {
    position: relative;
    z-index: 2;
    background: transparent;
}

.neighbourhood-hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.neighbourhood-hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
}

.neighbourhood-hero-title span {
    display: block;
}

.neighbourhood-intro-headline {
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000;
}

.neighbourhood-intro-text {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.98;
    color: #000;
}

.neighbourhood-grid-cell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 12;
    overflow: hidden;
}

.neighbourhood-grid-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.neighbourhood-grid-text {
    background: #fff;
}

.neighbourhood-grid-heading {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000;
}

.neighbourhood-grid-heading span {
    display: block;
}

.neighbourhood-amenities-banner {
    position: relative;
    line-height: 0;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}

.neighbourhood-amenities-banner-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.neighbourhood-amenities-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    line-height: normal;
    pointer-events: none;
}

.neighbourhood-amenities-banner-title {
    max-width: 18ch;
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
}

.neighbourhood-amenity-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

.neighbourhood-amenity-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    flex-shrink: 0;
}

.neighbourhood-amenity-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.neighbourhood-amenity-body {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(6.5rem, 14vw, 9rem);
}

.neighbourhood-amenity-copy {
    width: 100%;
    text-align: center;
}

.neighbourhood-amenity-title {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000;
}

.neighbourhood-amenity-text {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: #000;
}

.neighbourhood-slider-section .gallery-carousel-image {
    aspect-ratio: 16 / 9;
}

.neighbourhood-map-heading {
    font-size: clamp(2rem, 5vw, 7.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000;
}

.neighbourhood-map {
    line-height: 0;
}

.neighbourhood-map-image {
    display: block;
    width: 100%;
    height: auto;
}

.neighbourhood-map-marker {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    background: #000;
    color: #fff;
    font-size: clamp(0.62rem, 1.1vw, 0.82rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.neighbourhood-map-marker-douglas {
    left: 22%;
    top: 28%;
}

.neighbourhood-map-marker-dandelion {
    left: 20%;
    top: 52%;
}

.neighbourhood-map-marker-woodward {
    left: 78%;
    top: 30%;
}

.neighbourhood-map-marker-maple {
    left: 78%;
    top: 46%;
}

@media (max-width: 767.98px) {
    .neighbourhood-map-marker {
        padding: 0.4rem 0.65rem;
        font-size: 0.58rem;
    }

    .neighbourhood-map-marker-douglas {
        left: 24%;
        top: 26%;
    }

    .neighbourhood-map-marker-dandelion {
        left: 22%;
        top: 50%;
    }

    .neighbourhood-map-marker-woodward {
        left: 76%;
        top: 28%;
    }

    .neighbourhood-map-marker-maple {
        left: 76%;
        top: 44%;
    }
}

.features-page {
    background: #fff;
    color: #000;
}

.features-hero-panel {
    line-height: 0;
}

.features-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.features-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.25rem, 3vw, 2rem);
    line-height: normal;
    pointer-events: none;
}

.features-hero-overlay > * {
    pointer-events: auto;
}

.features-hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.features-hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
}

.features-hero-title span {
    display: block;
}

.features-intro-headline {
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000;
}

.features-intro-text {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.98;
    color: #000;
}

.features-grid-row {
    position: relative;
}

.features-grid-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #000;
    transform: translateX(-50%);
    pointer-events: none;
}

.features-grid-column {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3.5rem);
    margin-top: 20px;
}

@media (min-width: 768px) {
    .features-grid-column {
        margin-top: 0;
        padding: 0;
    }

    .features-grid-column:first-child .features-grid-block {
        padding-right: clamp(1rem, 2.5vw, 2rem);
    }

    .features-grid-column:last-child .features-grid-block {
        padding-left: clamp(1rem, 2.5vw, 2rem);
    }
}

@media (max-width: 767.98px) {
    .features-grid-row::before {
        display: none;
    }
}

.features-grid-image {
    display: block;
    width: 100%;
    height: auto;
}

.features-grid-heading {
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #000;
}

.features-grid-list {
    margin: 0;
    padding-left: 1.15rem;
    font-size: clamp(0.9rem, 1.35vw, 1rem);
    font-weight: 400;
    line-height: 2.5rem;
    color: #000;
}

.features-grid-list li + li {
    margin-top: 0.35rem;
}

.features-page .register-section {
    padding: 0;
}

.features-page .register-panel {
    border-top: 0;
}

.floorplan-details-page {
    background: #fff;
    color: #000;
}

.floorplan-details-hero-panel {
    line-height: 0;
}

.floorplan-details-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.floorplan-details-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.25rem, 3vw, 2rem);
    line-height: normal;
    pointer-events: none;
}

.floorplan-details-hero-overlay > * {
    pointer-events: auto;
}

.floorplan-details-hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.floorplan-details-hero-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
}

.floorplan-details-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.floorplan-details-subtitle {
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    font-size: clamp(1.35rem, 3vw, 2.35rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000;
}

.floorplan-details-specbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding: 0.85rem 0 1.25rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.floorplan-details-specs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.75rem;
}

.floorplan-details-specs li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: clamp(0.68rem, 1.2vw, 0.78rem);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.floorplan-details-specs img {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.floorplan-details-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.72rem, 1.4vw, 0.85rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
}

.floorplan-details-download:hover,
.floorplan-details-download:focus {
    color: #cc202d;
}

.floorplan-details-download-icon {
    display: inline-flex;
}

.floorplan-details-level-image {
    display: block;
    width: 100%;
    height: auto;
}

.floorplan-details-level-label {
    margin-top: 0.85rem;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    color: #666;
}

.floorplan-details-extra {
    margin-top: clamp(2rem, 4vw, 3.5rem);
}

.floorplan-details-legend {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000;
}

.floorplan-details-legend-swatch {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: #cc202d;
}

.floorplan-details-key-image,
.floorplan-details-optionals-image {
    display: block;
    width: 100%;
    height: auto;
}

.floorplan-details-page .register-section {
    padding: 0;
}

.floorplan-details-page .register-panel {
    border-top: 0;
}
