:root {
    --navy: #06294d;
    --deep: #031d39;
    --green: #688b10;
    --green-dark: #4f7008;
    --cream: #f7f4ed;
    --ink: #14223b;
    --muted: #5f6671;
    --white: #fff;
    --line: #d9ddcf;
    --shadow: 0 18px 45px rgba(4, 34, 65, .14)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: Montserrat, sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden
}

img {
    display: block;
    width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select {
    font: inherit
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    padding: 0 5.5%;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: .3s;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(5, 37, 70, .06)
}

.site-header.scrolled {
    height: 68px;
    box-shadow: 0 8px 30px rgba(3, 29, 57, .09)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 210px
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), #a8be44);
    color: white;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 20px;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5)
}

.brand strong,
.brand small {
    display: block
}

.brand strong {
    font: 700 20px/1 Montserrat, sans-serif
}

.brand small {
    font-size: 9px;
    margin-top: 4px;
    color: var(--muted)
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex: 1
}

.main-nav a {
    font-size: 11px;
    font-weight: 600;
    position: relative
}

.main-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: .25s
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: white;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
    box-shadow: 0 8px 18px rgba(104, 139, 16, .18)
}

.button:hover {
    background: var(--green-dark);
    transform: translateY(-2px)
}

.header-button {
    white-space: nowrap
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 25px;
    color: var(--navy)
}

.hero {
    min-height: 720px;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url("../images/landing/hero.jpg") center/cover no-repeat;
    padding: 110px 6% 65px
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .86) 31%, rgba(255, 255, 255, .18) 57%, rgba(1, 23, 45, .04) 100%)
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 540px
}

.eyebrow {
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    letter-spacing: .04em;
    font-size: 18px
}

.hero h1,
.section-copy h2,
.highlights h2,
.amenities h2,
.section-title h2,
.location h2,
.contact h2 {
    font-family: Montserrat, sans-serif;
    color: var(--navy);
    font-weight: 500
}

.hero h1 {
    font-size: clamp(58px, 7vw, 96px);
    line-height: .82;
    text-transform: uppercase;
    margin: 14px 0 24px;
    letter-spacing: -.03em
}

.hero h2 {
    font: 700 clamp(22px, 2.3vw, 31px)/1.2 Montserrat, sans-serif;
    color: var(--green);
    margin-bottom: 12px
}

.hero-copy>p:not(.eyebrow) {
    font-size: 14px
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.call-pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 11px 20px;
    border-radius: 30px;
    background: var(--navy);
    color: white;
    font-weight: 700;
    font-size: 13px
}

.button-light {
    background: white;
    color: var(--navy)
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: white
}

.section {
    padding: 78px 6%
}

.overview,
.highlights,
.amenities,
.location {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center
}

.overview {
    background: #fff
}

.overview-visual {
    position: relative;
    padding: 18px
}

.overview-visual:before {
    content: "";
    position: absolute;
    inset: 0 28px 28px 0;
    border: 2px solid rgba(104, 139, 16, .65)
}

.overview-visual img {
    position: relative;
    height: 410px;
    object-fit: cover;
    box-shadow: var(--shadow)
}

.section-copy h2,
.highlights h2,
.amenities h2,
.location h2 {
    font-size: clamp(17px, 3.8vw, 40px);
    line-height: 1.1;
    margin: 7px 0 14px
}

.section-copy h3 {
    font: 600 20px Montserrat, sans-serif;
    color: var(--green);
    margin-bottom: 18px
}

.section-copy>p:not(.eyebrow),
.highlights p:not(.eyebrow),
.location-copy>p:not(.eyebrow),
.contact-intro>p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 14px
}

.section-copy .button {
    margin-top: 12px
}

.highlights {
    background: var(--cream)
}

.highlight-image img {
    height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow)
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 34px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.highlight-grid div {
    padding: 22px 10px;
    border-right: 1px solid var(--line);
    text-align: center
}

.highlight-grid div:last-child {
    border: 0
}

.highlight-grid strong {
    display: block;
    font: 700 35px Montserrat, sans-serif;
    color: var(--green)
}

.highlight-grid span {
    font-size: 10px;
    text-transform: uppercase
}

.amenities {
    padding-right: 0
}

.amenity-copy {
    padding-left: 1%
}

.amenity-copy ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
    list-style: none;
    margin: 23px 0
}

.amenity-copy li {
    font-size: 12px
}

.amenity-copy li:before {
    content: "◆";
    font-size: 9px;
    color: var(--green);
    margin-right: 9px
}

.amenity-image img {
    height: 475px;
    object-fit: cover;
    object-position: center
}

.configuration {
    padding: 55px 6% 62px;
    background: linear-gradient(135deg, var(--deep), #063b6d);
    color: white;
    position: relative;
    overflow: hidden
}

.configuration:before,
.configuration:after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: repeating-linear-gradient(45deg, transparent 0 16px, rgba(104, 139, 16, .18) 16px 28px);
    transform: rotate(20deg)
}

.configuration:before {
    left: -100px;
    bottom: -120px
}

.configuration:after {
    right: -100px;
    top: -120px
}

.section-title {
    text-align: center;
    position: relative;
    z-index: 1
}

.section-title h2 {
    font-size: 35px;
    color: inherit
}

.configuration-cards {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
    position: relative;
    z-index: 1
}

.config-card {
    width: 280px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 5px;
    padding: 22px;
    text-align: center
}

.config-card>span {
    font-size: 25px
}

.config-card h3 {
    display: inline;
    font-size: 22px;
    margin-left: 8px
}

.config-card p {
    font-size: 11px;
    margin-top: 10px;
    color: #cbd8e5
}

.config-card strong {
    display: block;
    font-size: 18px;
    margin: 6px 0 13px
}

.config-card .button {
    padding: 10px 20px
}

.location {
    background: #fff;
    grid-template-columns: 1fr 1fr
}

.location-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin: 25px 0
}

.location-points span {
    font-size: 11px;
    display: flex;
    gap: 8px
}

.location-map img {
    height: 410px;
    object-fit: contain
}

.gallery {
    background: #fdfdfb
}

.gallery .section-title {
    margin-bottom: 28px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.gallery-item {
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(3, 29, 57, .12)
}

.gallery-item img {
    height: 190px;
    object-fit: cover;
    transition: .45s
}

.gallery-item:hover img {
    transform: scale(1.07)
}

.contact {
    display: grid;
    grid-template-columns: .85fr .78fr 1.15fr;
    background: var(--cream);
    align-items: stretch
}

.contact-intro {
    padding: 55px 5vw
}

.contact-intro h2 {
    font-size: 42px;
    line-height: 1;
    margin: 7px 0 15px
}

.contact-benefits {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    color: var(--green);
    font-size: 10px
}

.enquiry-form {
    background: var(--navy);
    color: white;
    padding: 35px 28px
}

.enquiry-form h3 {
    color: #aac730;
    font: 700 25px Montserrat, sans-serif;
    margin-bottom: 18px
}

.enquiry-form label {
    display: block;
    margin-bottom: 10px
}

.enquiry-form label span {
    display: block;
    font-size: 9px;
    margin-bottom: 5px;
    color: #c8d2dc
}

.enquiry-form input,
.enquiry-form select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .45);
    background: transparent;
    color: white;
    border-radius: 4px;
    padding: 11px
}

.enquiry-form select option {
    color: #111
}

.submit-button {
    width: 100%;
    text-transform: uppercase;
    margin-top: 7px
}

.form-status {
    min-height: 18px;
    margin-top: 8px;
    font-size: 11px;
    color: #cce57b
}

.contact-map img {
    height: 100%;
    min-height: 420px;
    object-fit: cover
}

.footer {
    background: var(--navy);
    color: white;
    padding: 38px 6% 18px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 35px
}

.footer .brand {
    min-width: 0
}

.footer .brand strong {
    color: white
}

.footer .brand small {
    color: #cbd5df
}

.footer h3 {
    font: 700 18px Montserrat, sans-serif;
    margin-bottom: 10px
}

.footer>div:not(.brand) a,
.footer>div:not(.brand) p {
    display: block;
    font-size: 10px;
    color: #ccd4dc;
    margin-bottom: 6px
}

.copyright {
    grid-column: 1/-1;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 14px;
    font-size: 9px;
    color: #cbd4dc
}

.floating-call {
    position: fixed;
    z-index: 900;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: white;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25)
}

.lightbox,
.amenity-modal {
    position: fixed;
    max-width: min(900px, 92vw);
    border: 0;
    padding: 10px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .4)
}

.lightbox::backdrop,
.amenity-modal::backdrop {
    background: rgba(0, 20, 40, .82)
}

.lightbox img {
    max-height: 82vh;
    object-fit: contain
}

.lightbox button,
.amenity-modal button {
    position: absolute;
    right: 12px;
    top: 8px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 24px;
    z-index: 2
}

.amenity-modal {
    padding: 35px
}

.amenity-modal h2 {
    font: 700 38px Montserrat, sans-serif;
    margin-bottom: 15px
}

.amenity-modal img {
    max-height: 70vh;
    object-fit: contain
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s, transform .7s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:1050px) {
    .main-nav {
        gap: 14px
    }

    .main-nav a {
        font-size: 9px
    }

    .header-button {
        display: none
    }

    .overview,
    .highlights,
    .amenities,
    .location {
        gap: 35px
    }

    .contact {
        grid-template-columns: 1fr 1fr
    }

    .contact-map {
        grid-column: 1/-1
    }

    .contact-map img {
        height: 360px;
        min-height: 0
    }
}

@media(max-width:800px) {
    .site-header {
        height: 68px;
        padding: 0 5%
    }

    .brand {
        min-width: 0
    }

    .brand strong {
        font-size: 17px
    }

    .brand-mark {
        width: 40px;
        height: 40px
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 68px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px 6%;
        background: white;
        box-shadow: 0 15px 25px rgba(0, 0, 0, .12)
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a {
        font-size: 12px;
        padding: 8px
    }

    .hero {
        height: auto;
        min-height: 760px;
        background-position: 62% center;
        padding: 120px 6% 55px;
        align-items: flex-end
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .8) 52%, rgba(255, 255, 255, .04))
    }

    .hero h1 {
        font-size: 58px
    }

    .overview,
    .highlights,
    .amenities,
    .location {
        grid-template-columns: 1fr;
        padding: 65px 6%
    }

    .overview-visual {
        order: 1
    }

    .highlight-image {
        order: 2
    }

    .amenities {
        padding-right: 6%
    }

    .amenity-image img,
    .highlight-image img {
        height: 360px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact {
        grid-template-columns: 1fr
    }

    .contact-map {
        grid-column: auto
    }

    .footer {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand,
    .copyright {
        grid-column: 1/-1
    }
}

@media(max-width:520px) {
    .hero h1 {
        font-size: 47px
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column
    }

    .hero-actions>* {
        width: 100%;
        justify-content: center
    }

    .section {
        padding: 55px 5%
    }

    .overview-visual img,
    .amenity-image img,
    .highlight-image img {
        height: 290px
    }

    .highlight-grid {
        grid-template-columns: 1fr
    }

    .highlight-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .amenity-copy ul,
    .location-points {
        grid-template-columns: 1fr
    }

    .configuration-cards {
        flex-direction: column;
        align-items: center
    }

    .config-card {
        width: 100%;
        max-width: 330px
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .gallery-item img {
        height: 230px
    }

    .contact-benefits {
        flex-direction: column;
        gap: 10px
    }

    .footer {
        grid-template-columns: 1fr
    }

    .footer-brand,
    .copyright {
        grid-column: auto
    }
}


.overview {
    grid-template-columns: 1.25fr .75fr
}

.overview-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px
}

.highlights {
    grid-template-columns: 1fr !important
}

.highlights .section-copy {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.highlights .section-copy>p {
    margin-left: auto !important;
    margin-right: auto !important
}

.highlight-grid {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto
}

@media(max-width:800px) {
    .overview {
        grid-template-columns: 1fr
    }

    .overview-visual img {
        height: 400px
    }
}

@media(max-width:520px) {
    .overview-visual img {
        height: 320px
    }
}

.silhouette-highlight {
    position: relative;
    display: block;
    color: var(--navy) !important;
    background: none !important;
    padding: 0 !important;
    font-weight: 700
}

.overview .section-copy>p {
    margin-top: 20px !important;
    max-width: 720px
}

.highlights .section-copy>p {
    margin-top: 20px !important;
    max-width: 720px
}

.overview-visual.clean-building img,
.highlight-image img {
    object-fit: cover;
    object-position: center center
}

.overview-visual.clean-building:before {
    inset: 0 28px 28px 0
}

.narrative-interlude {
    position: relative;
    background: #fff;
    color: var(--navy);
    padding: 95px 7%;
    overflow: hidden;
    border-bottom: 1px solid #edf0e7
}

.narrative-interlude:before {
    content: "“";
    position: absolute;
    left: 2%;
    top: -95px;
    font: 700 330px/1 Montserrat, sans-serif;
    color: rgba(104, 139, 16, .07)
}

.narrative-interlude-copy {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center
}

.narrative-interlude h2 {
    font: 500 clamp(24px, 2.4vw, 36px)/1.25 Montserrat, sans-serif;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -.01em
}

.narrative-interlude p {
    max-width: 940px;
    margin: 0 auto 18px;
    color: #4e5d6c;
    font: 400 clamp(13px, 1.15vw, 16px)/1.9 Montserrat, sans-serif
}

.narrative-interlude strong {
    display: block;
    margin-top: 35px;
    color: var(--green-dark);
    font: 700 clamp(22px, 2.5vw, 34px)/1.3 Montserrat, sans-serif
}

@media(max-width:700px) {
    .narrative-interlude {
        padding: 65px 6%
    }

    .narrative-interlude h2 {
        font-size: 36px
    }

    .narrative-interlude p {
        font-size: 13px;
        line-height: 1.75
    }
}


.project-metrics {
    display: block;
    background: #fff;
    color: var(--navy);
    padding: 92px 6% 105px;
    border-top: 1px solid #edf0e7
}

.metrics-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto
}

.metrics-heading .eyebrow {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    letter-spacing: .3em
}

.metrics-heading h2 {
    font: 500 clamp(32px, 4vw, 54px)/1.1 Montserrat, sans-serif;
    color: var(--navy);
    margin-top: 22px
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 1450px;
    margin: 58px auto 0
}

.metric-card {
    position: relative;
    min-height: 300px;
    padding: 34px 32px;
    background: #fff;
    border: 1px solid #dfe4d8;
    box-shadow: 0 14px 38px rgba(3, 29, 57, .07)
}

.metric-index {
    position: absolute;
    right: 28px;
    top: 28px;
    color: #9ba7b3;
    font-size: 10px;
    letter-spacing: .08em
}

.metric-card strong {
    display: block;
    margin-top: 50px;
    font: 700 50px/1 Montserrat, sans-serif;
    color: var(--navy)
}

.metric-card strong.metric-feature {
    font-size: 20px
}

.metric-card h3 {
    margin-top: 8px;
    color: var(--ink);
    font-size: 20px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.metric-card p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

@media(max-width:950px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .project-metrics {
        padding: 65px 5%
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        margin-top: 38px
    }

    .metric-card {
        min-height: 245px
    }

    .metrics-heading h2 {
        font-size: 36px
    }
}

.detail-story {
    background: #e9eef5
}

.detail-story-media {
    height: min(58vw, 690px);
    min-height: 430px;
    overflow: hidden;
    background: #0a1526
}

.detail-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.85) contrast(1.03)
}

.detail-story-copy {
    max-width: 1050px;
    margin: 0 auto;
    padding: 75px 7% 85px;
    text-align: center
}

.detail-story-copy h2 {
    font: 700 clamp(46px, 6vw, 82px)/1 Montserrat, sans-serif;
    color: var(--navy);
    margin: 8px 0 28px
}

.detail-story-copy>p:not(.eyebrow) {
    max-width: 900px;
    margin: 0 auto 17px;
    color: #39475a;
    font: 400 clamp(13px, 1.25vw, 16px)/1.9 Montserrat, sans-serif
}

.detail-story-copy strong {
    display: block;
    margin-top: 30px;
    color: var(--green-dark);
    font: 700 clamp(21px, 2.2vw, 31px)/1.3 Montserrat, sans-serif
}

.detail-story-copy .eyebrow {
    letter-spacing: .18em
}

@media(max-width:700px) {
    .detail-story-media {
        height: 58vh;
        min-height: 380px
    }

    .detail-story-copy {
        padding: 55px 6% 65px
    }

    .detail-story-copy h2 {
        font-size: 46px
    }

    .detail-story-copy>p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.75
    }
}

.hero-copy {
    max-width: 980px;
    text-align: center;
    margin: auto
}

.hero h1 {
    font-size: clamp(48px, 6vw, 85px);
    line-height: 1.05;
    text-transform: none;
    letter-spacing: -.02em;
    color: #fff;
    text-shadow: 0 8px 35px rgba(0, 0, 0, .42)
}

.hero-tagline {
    margin-top: 22px !important;
    color: #f4f0e6 !important;
    font-family: 'Times New Roman', Times, serif, sans-serif !important;
    font-size: clamp(14px, 1.3vw, 18px) !important;
    font-weight: 400 !important;
    font-style: italic !important;
    line-height: 1.5 !important;
    letter-spacing: .12em !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, .3)
}

.hero-shade {
    background: linear-gradient(0deg, rgba(2, 18, 35, .72), rgba(2, 18, 35, .08) 68%, rgba(2, 18, 35, .3))
}

.brochure-modal {
    width: min(520px, 92vw);
    border: 1px solid rgba(197, 168, 106, .45);
    border-radius: 4px;
    background: #061b34;
    color: white;
    padding: 40px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55)
}

.brochure-modal::backdrop {
    background: rgba(0, 10, 25, .82);
    backdrop-filter: blur(5px)
}

.brochure-modal h2 {
    font: 700 26px/1.2 Montserrat, sans-serif;
    margin: 8px 0 12px
}

.brochure-modal>p:not(.eyebrow) {
    color: #b9c5d1;
    font-size: 12px;
    line-height: 1.7
}

.brochure-modal form {
    margin-top: 24px
}

.brochure-modal label {
    display: block;
    margin-bottom: 13px
}

.brochure-modal label span {
    display: block;
    color: #c8d2dc;
    font-size: 9px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.brochure-modal input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 3px;
    background: rgba(255, 255, 255, .05);
    color: white
}

.brochure-modal form>.button {
    width: 100%;
    margin-top: 5px
}

.modal-close {
    position: absolute;
    right: 14px;
    top: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: white;
    font-size: 26px;
    cursor: pointer
}

.header-button {
    font-family: Montserrat, sans-serif
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    transform: scale(1.04)
}

.hero-shade {
    z-index: 1
}

.hero-copy,
.scroll-cue {
    z-index: 2
}

@media(max-width:800px) {
    .hero-video {
        object-position: center center;
        transform: scale(1.12)
    }
}

.amenities-showcase {
    padding: 92px 6%;
    background: var(--deep);
    color: white;
    overflow: hidden
}

.amenities-heading {
    max-width: 860px;
    margin-bottom: 38px
}

.amenities-heading h2 {
    font: 700 clamp(42px, 5vw, 70px)/.98 Montserrat, sans-serif;
    max-width: 760px
}

.amenities-heading>p:last-child {
    max-width: 620px;
    margin-top: 15px;
    color: #afbfce;
    font-size: 13px;
    line-height: 1.8
}

.amenity-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(270px, .65fr);
    min-height: 610px;
    border: 1px solid rgba(255, 255, 255, .15)
}

.amenity-photo-wrap {
    position: relative;
    overflow: hidden;
    background: #061c30
}

.amenity-photo-wrap>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease, transform .8s ease
}

.amenity-photo-wrap.is-changing>img {
    opacity: .22;
    transform: scale(1.04)
}

.amenity-photo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(1, 18, 35, .88), rgba(1, 18, 35, .03) 62%)
}

.amenity-active-copy {
    position: absolute;
    left: 45px;
    right: 110px;
    bottom: 40px
}

.amenity-active-copy>span {
    color: #b0ce39;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em
}

.amenity-active-copy h3 {
    font: 700 clamp(35px, 4.6vw, 66px)/1 Montserrat, sans-serif;
    margin: 7px 0
}

.amenity-active-copy p {
    max-width: 590px;
    color: #d6e0e8;
    font-size: 12px;
    line-height: 1.7
}

.amenity-arrows {
    position: absolute;
    right: 34px;
    bottom: 38px;
    display: flex;
    gap: 8px
}

.amenity-arrows button {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(3, 29, 57, .3);
    color: white;
    font-size: 19px;
    cursor: pointer;
    transition: .25s
}

.amenity-arrows button:hover {
    background: var(--green);
    border-color: var(--green)
}

.amenity-tabs {
    display: flex;
    flex-direction: column;
    background: #082747;
    overflow: auto
}

.amenity-tab {
    min-height: 74px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 13px 22px;
    text-align: left;
    color: #c7d2dc;
    background: transparent;
    cursor: pointer;
    font: 600 12px Montserrat, sans-serif;
    transition: .25s
}

.amenity-tab span {
    display: inline-block;
    width: 38px;
    color: #7790a6;
    font-size: 10px
}

.amenity-tab:hover,
.amenity-tab.active {
    background: var(--green);
    color: white;
    padding-left: 28px
}

.amenity-tab.active span {
    color: #e8f3ba
}

.amenity-more {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0 0;
    margin-left: auto;
    max-width: 760px
}

.amenity-more span {
    font: 700 28px Montserrat, sans-serif;
    color: #b0ce39
}

.amenity-more p {
    color: #afbfce;
    font-size: 11px;
    line-height: 1.7
}

@media(max-width:800px) {
    .amenities-showcase {
        padding: 68px 5%
    }

    .amenity-stage {
        grid-template-columns: 1fr;
        min-height: 0
    }

    .amenity-photo-wrap {
        height: 500px
    }

    .amenity-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: visible
    }

    .amenity-tab {
        min-height: 62px
    }
}

@media(max-width:520px) {
    .amenities-heading h2 {
        font-size: 40px
    }

    .amenity-photo-wrap {
        height: 470px
    }

    .amenity-active-copy {
        left: 22px;
        right: 22px;
        bottom: 85px
    }

    .amenity-active-copy h3 {
        font-size: 42px
    }

    .amenity-arrows {
        left: 22px;
        right: auto;
        bottom: 23px
    }

    .amenity-tabs {
        grid-template-columns: 1fr
    }

    .amenity-tab {
        min-height: 55px
    }
}


.project-metrics .metric-card {
    background: #f4f7ec;
    border-color: #dce5c7
}


.amenities-showcase {
    padding: 100px 6%;
    background: #fff;
    color: var(--navy)
}

.amenities-heading {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center
}

.amenities-heading .eyebrow {
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    letter-spacing: .26em
}

.amenities-heading h2 {
    max-width: 850px;
    margin: 15px auto 0;
    color: var(--navy);
    font-size: clamp(44px, 5vw, 72px)
}

.amenities-heading>p:last-child {
    max-width: 650px;
    margin: 18px auto 0;
    color: #68737e
}

.amenity-stage {
    display: flex;
    flex-direction: column;
    max-width: 1480px;
    min-height: 0;
    margin: 0 auto;
    border: 0;
    background: #fff
}

.amenity-photo-wrap {
    height: 650px;
    border-radius: 3px;
    background: #f5f6f1;
    box-shadow: 0 18px 48px rgba(3, 29, 57, .1)
}

.amenity-photo-shade {
    background: linear-gradient(0deg, rgba(3, 29, 57, .72), rgba(3, 29, 57, 0) 55%)
}

.amenity-active-copy {
    left: 42px;
    right: 150px;
    bottom: 38px
}

.amenity-active-copy>span {
    color: #d8e9a0
}

.amenity-active-copy h3 {
    color: #fff
}

.amenity-active-copy p {
    color: #eef2f4
}

.amenity-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
    background: #fff;
    overflow: visible
}

.amenity-tab {
    min-height: 74px;
    padding: 17px 18px;
    border: 1px solid #e0e5d7;
    border-radius: 2px;
    background: #f7f8f3;
    color: var(--navy)
}

.amenity-tab span {
    color: #87939d
}

.amenity-tab:hover,
.amenity-tab.active {
    padding-left: 22px;
    background: #eef3df;
    color: var(--navy);
    border-color: #b9cc80
}

.amenity-tab.active span {
    color: var(--green-dark)
}

.amenity-arrows button {
    background: rgba(255, 255, 255, .92);
    border-color: #fff;
    color: var(--navy)
}

.amenity-arrows button:hover {
    color: #fff
}

.amenity-more {
    max-width: 1480px;
    justify-content: center;
    margin: 10px auto 0;
    padding-top: 24px;
    text-align: center
}

.amenity-more p {
    color: #68737e
}

@media(max-width:900px) {
    .amenity-photo-wrap {
        height: 540px
    }

    .amenity-tabs {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .amenities-showcase {
        padding: 65px 5%
    }

    .amenities-heading h2 {
        font-size: 42px
    }

    .amenity-photo-wrap {
        height: 430px
    }

    .amenity-tabs {
        grid-template-columns: 1fr
    }

    .amenity-tab {
        min-height: 58px
    }

    .amenity-active-copy {
        left: 22px;
        right: 22px;
        bottom: 86px
    }
}


.amenity-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1480px;
    margin: 0 auto
}

.amenity-photo-grid article {
    position: relative;
    overflow: hidden;
    background: #f4f6ef;
    box-shadow: 0 12px 32px rgba(3, 29, 57, .09)
}

.amenity-photo-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform .45s ease
}

.amenity-photo-grid article:hover img {
    transform: scale(1.04)
}

.amenity-photo-grid h3 {
    padding: 18px 16px 20px;
    color: var(--navy);
    font: 700 24px/1.1 Montserrat, sans-serif;
    background: #f7f8f3
}

@media(max-width:900px) {
    .amenity-photo-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .amenity-photo-grid {
        grid-template-columns: 1fr
    }

    .amenity-photo-grid img {
        height: 260px
    }
}


.amenity-photo-grid article {
    min-height: 300px
}

.amenity-photo-grid h3 {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 15px 14px;
    margin: 0;
    background: rgba(247, 248, 243, .94);
    border-left: 4px solid var(--green);
    box-shadow: 0 8px 24px rgba(3, 29, 57, .16);
    backdrop-filter: blur(5px)
}


.amenity-carousel {
    position: relative;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 52px
}

.amenity-carousel .amenity-photo-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 54px)/4);
    grid-template-columns: none;
    gap: 18px;
    max-width: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 0 22px;
    scrollbar-color: var(--green) #e8ecdf;
    scrollbar-width: thin
}

.amenity-carousel .amenity-photo-grid::-webkit-scrollbar {
    height: 8px
}

.amenity-carousel .amenity-photo-grid::-webkit-scrollbar-track {
    background: #e8ecdf;
    border-radius: 10px
}

.amenity-carousel .amenity-photo-grid::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 10px
}

.amenity-carousel .amenity-photo-grid article {
    min-height: 500px;
    scroll-snap-align: start
}

.amenity-carousel .amenity-photo-grid img {
    height: 500px
}

.amenity-scroll {
    position: absolute;
    z-index: 5;
    top: 225px;
    width: 46px;
    height: 46px;
    border: 1px solid #d9e1c8;
    border-radius: 50%;
    background: #f3f6e9;
    color: var(--navy);
    font: 400 34px/1 sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(3, 29, 57, .13)
}

.amenity-scroll:hover {
    background: var(--green);
    color: #fff
}

.amenity-scroll-prev {
    left: 0
}

.amenity-scroll-next {
    right: 0
}

@media(max-width:1000px) {
    .amenity-carousel .amenity-photo-grid {
        grid-auto-columns: calc((100% - 18px)/2)
    }
}

@media(max-width:600px) {
    .amenity-carousel {
        padding: 0 36px
    }

    .amenity-carousel .amenity-photo-grid {
        grid-auto-columns: 100%
    }

    .amenity-carousel .amenity-photo-grid article,
    .amenity-carousel .amenity-photo-grid img {
        height: 440px;
        min-height: 440px
    }

    .amenity-scroll {
        top: 198px;
        width: 38px;
        height: 38px
    }

    .amenity-scroll-prev {
        left: -2px
    }

    .amenity-scroll-next {
        right: -2px
    }
}


.configuration.plan-enquiry {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: stretch;
    padding: 95px 6%;
    background: #fbfcf8;
    color: var(--navy)
}

.configuration.plan-enquiry:before,
.configuration.plan-enquiry:after {
    display: none
}

.plan-preview {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border: 1px solid #e1e7d8;
    background: #f0f3e9;
    box-shadow: 0 18px 45px rgba(3, 29, 57, .08)
}

.plan-preview img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    filter: blur(14px);
    transform: scale(1.08);
    opacity: .72
}

.plan-preview:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(250, 252, 246, .18)
}

.plan-preview>span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 13px 24px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #d9e2c7;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase
}

.plan-form-panel {
    padding: 56px 50px;
    background: #f2f6e9;
    border: 1px solid #dde6ca
}

.plan-form-panel h2 {
    font: 700 clamp(42px, 4.5vw, 62px)/.95 Montserrat, sans-serif;
    margin: 12px 0 27px;
    color: var(--navy)
}

.wardrobe-highlight {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 2px 10px;
    padding: 17px 18px;
    margin-bottom: 25px;
    background: #fff;
    border-left: 4px solid var(--green);
    box-shadow: 0 8px 24px rgba(3, 29, 57, .07)
}

.wardrobe-highlight>span {
    grid-row: 1/3;
    color: var(--green);
    font-size: 24px
}

.wardrobe-highlight strong {
    font: 700 22px Montserrat, sans-serif
}

.wardrobe-highlight small {
    color: #6c7780;
    font-size: 10px;
    line-height: 1.5
}

.plan-form label {
    display: block;
    margin-bottom: 14px
}

.plan-form label>span {
    display: block;
    margin-bottom: 7px;
    color: #54616c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase
}

.plan-form input {
    width: 100%;
    padding: 14px;
    border: 1px solid #d5deca;
    border-radius: 3px;
    background: #fff;
    color: var(--ink);
    outline: none
}

.plan-form input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(104, 139, 16, .09)
}

.plan-form .button {
    width: 100%;
    margin-top: 5px;
    padding: 14px
}

.plan-form .form-status {
    color: var(--green-dark)
}

@media(max-width:900px) {
    .configuration.plan-enquiry {
        grid-template-columns: 1fr
    }

    .plan-preview,
    .plan-preview img {
        min-height: 480px
    }
}

@media(max-width:520px) {
    .configuration.plan-enquiry {
        padding: 65px 5%;
        gap: 25px
    }

    .plan-preview,
    .plan-preview img {
        min-height: 380px
    }

    .plan-form-panel {
        padding: 35px 23px
    }

    .plan-form-panel h2 {
        font-size: 42px
    }
}


.amenities-showcase {
    padding: 86px 5% 95px;
    background: linear-gradient(135deg, #fff 0%, #fafbf7 100%)
}

.amenities-heading {
    max-width: 1280px;
    margin: 0 auto 30px
}

.amenities-heading h2 {
    max-width: none;
    margin: 0;
    color: var(--navy);
    font: 700 clamp(34px, 3.1vw, 54px)/1.15 Montserrat, sans-serif;
    text-transform: none;
    letter-spacing: .01em
}

.amenity-zone-tabs {
    display: flex;
    justify-content: center;
    gap: 38px;
    margin: 0 auto 56px
}

.amenity-zone-tabs button {
    min-width: 176px;
    padding: 13px 30px;
    border: 1px solid #d79b1c;
    border-radius: 30px;
    background: #fff;
    color: #d1900c;
    font: 600 16px Montserrat, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s
}

.amenity-zone-tabs button.active,
.amenity-zone-tabs button:hover {
    background: #132b52;
    border-color: #132b52;
    color: #fff
}

.amenity-carousel {
    max-width: 1640px;
    padding: 0 70px
}

.amenity-carousel .amenity-photo-grid {
    grid-auto-columns: calc((100% - 72px)/3);
    gap: 36px;
    padding-bottom: 10px;
    scrollbar-width: none
}

.amenity-carousel .amenity-photo-grid::-webkit-scrollbar {
    display: none
}

.amenity-carousel .amenity-photo-grid article {
    height: 530px;
    min-height: 530px;
    border-radius: 14px;
    box-shadow: none;
    background: #eef1ea
}

.amenity-carousel .amenity-photo-grid article[hidden] {
    display: none
}

.amenity-carousel .amenity-photo-grid img {
    height: 530px;
    border-radius: 14px;
    object-fit: cover
}

.amenity-photo-grid h3 {
    left: 19%;
    right: 19%;
    bottom: 24px;
    padding: 18px 12px;
    border: 0;
    border-radius: 4px;
    background: #132b52;
    color: #dfa41d;
    box-shadow: none;
    text-align: center;
    font: 700 16px/1.2 Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: .1em;
    backdrop-filter: none
}

.amenity-scroll {
    top: 242px;
    width: 56px;
    height: 56px;
    border-color: #e0e4dc;
    background: rgba(255, 255, 255, .94);
    color: #132b52
}

@media(max-width:1000px) {
    .amenity-carousel .amenity-photo-grid {
        grid-auto-columns: calc((100% - 24px)/2);
        gap: 24px
    }

    .amenities-heading h2 {
        text-align: center
    }

    .amenity-zone-tabs {
        margin-bottom: 38px
    }
}

@media(max-width:620px) {
    .amenity-zone-tabs {
        gap: 10px
    }

    .amenity-zone-tabs button {
        min-width: 130px;
        font-size: 13px
    }

    .amenity-carousel {
        padding: 0 38px
    }

    .amenity-carousel .amenity-photo-grid {
        grid-auto-columns: 100%
    }

    .amenity-carousel .amenity-photo-grid article,
    .amenity-carousel .amenity-photo-grid img {
        height: 470px;
        min-height: 470px
    }

    .amenity-scroll {
        top: 210px
    }

    .amenity-photo-grid h3 {
        left: 10%;
        right: 10%
    }
}


.configuration.plan-enquiry {
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 6%
}

.plan-preview {
    min-height: 455px;
    border-radius: 5px
}

.plan-preview img {
    min-height: 455px;
    filter: blur(5px);
    transform: scale(1.025);
    opacity: .84
}

.plan-preview>span {
    padding: 11px 20px;
    font-size: 10px
}

.plan-form-panel {
    padding: 38px 40px;
    border-radius: 5px;
    background: #f5f7f0;
    box-shadow: 0 14px 38px rgba(3, 29, 57, .06)
}

.plan-form-panel h2 {
    font-size: clamp(38px, 3.5vw, 50px);
    margin: 9px 0 24px
}

.plan-form label {
    margin-bottom: 11px
}

.plan-form input {
    padding: 12px 13px
}

.plan-form .button {
    padding: 13px;
    margin-top: 3px
}

@media(max-width:900px) {
    .configuration.plan-enquiry {
        grid-template-columns: 1fr;
        max-width: none
    }

    .plan-preview,
    .plan-preview img {
        min-height: 420px
    }
}

@media(max-width:520px) {
    .configuration.plan-enquiry {
        padding: 55px 5%
    }

    .plan-preview,
    .plan-preview img {
        min-height: 320px
    }

    .plan-form-panel {
        padding: 30px 22px
    }

    .plan-form-panel h2 {
        font-size: 38px
    }
}


.amenity-directory {
    position: relative;
    overflow: hidden;
    padding: 64px 6%;
    background: linear-gradient(135deg, #f5f7ef 0%, #fff 48%, #f0f4e8 100%);
    color: var(--navy);
    border-block: 1px solid #e5eadc
}

.amenity-directory:before,
.amenity-directory:after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border: 65px solid rgba(104, 139, 16, .045);
    transform: rotate(45deg)
}

.amenity-directory:before {
    left: -245px;
    top: -205px
}

.amenity-directory:after {
    right: -245px;
    bottom: -250px
}

.amenity-directory-inner {
    position: relative;
    z-index: 1;
    max-width: 1450px;
    margin: auto
}

.amenity-directory h2 {
    text-align: center;
    color: var(--navy);
    font: 700 clamp(25px, 2.2vw, 37px)/1.15 Montserrat, sans-serif;
    text-transform: none;
    letter-spacing: .02em;
    margin-bottom: 30px
}

.amenity-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px 18px
}

.amenity-directory article {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    min-height: 68px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .91);
    border: 1px solid #dfe6d4;
    border-radius: 4px;
    box-shadow: 0 5px 16px rgba(3, 29, 57, .04)
}

.amenity-directory article>span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #d7a331;
    border-radius: 4px;
    color: #b78010;
    font-size: 9px;
    font-weight: 700
}

.amenity-directory h3 {
    font-size: 12px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .035em
}

.amenity-directory p {
    margin-top: 3px;
    color: #75808a;
    font-size: 13px
}

.amenities-showcase {
    padding-top: 58px
}

.amenities-heading h2 {
    font-size: clamp(25px, 2.25vw, 38px)
}

.amenity-zone-tabs {
    margin-bottom: 30px
}

.amenity-zone-tabs button {
    min-width: 150px;
    padding: 11px 25px;
    font-size: 14px
}

.amenity-carousel .amenity-photo-grid article,
.amenity-carousel .amenity-photo-grid img {
    height: 410px;
    min-height: 410px
}

.amenity-scroll {
    top: 178px
}

@media(max-width:900px) {
    .amenity-directory-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .amenity-directory {
        padding: 50px 5%
    }

    .amenity-directory-grid {
        grid-template-columns: 1fr
    }

    .amenity-directory h2 {
        font-size: 24px
    }

    .amenity-carousel .amenity-photo-grid article,
    .amenity-carousel .amenity-photo-grid img {
        height: 400px;
        min-height: 400px
    }

    .amenity-scroll {
        top: 175px
    }
}


.configuration.plan-library {
    display: block;
    max-width: none;
    margin: 0;
    padding: 70px 6% 82px;
    background: #f6f8f1;
    color: var(--navy)
}

.configuration.plan-library:before,
.configuration.plan-library:after {
    display: none
}

.plan-library-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 34px
}

.plan-library-heading h2 {
    font: 700 clamp(30px, 3.4vw, 40px)/1 Montserrat, sans-serif;
    margin: 8px 0 10px
}

.plan-library-heading>p:last-child {
    color: #6c7781;
    font-size: 17px
}

.plan-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1350px;
    margin: auto
}

.plan-preview-card {
    position: relative;
    height: 330px;
    overflow: hidden;
    border: 1px solid #dce3d2;
    border-radius: 5px;
    background: #e8ece2;
    cursor: pointer
}

.plan-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.06);
    opacity: .58;
    transition: .35s
}

.plan-preview-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 29, 57, .65), transparent 45%)
}

.plan-preview-card span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: 85%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .9);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700
}

.plan-preview-card:hover img {
    filter: blur(5px);
    transform: scale(1.09)
}

.plan-modal {
    width: min(1220px, 92vw);
    max-width: none;
    border: 0;
    border-radius: 14px;
    padding: 0;
    background: #eef6fb;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .42);
    overflow: hidden
}

.plan-modal::backdrop {
    background: rgba(4, 18, 38, .82);
    backdrop-filter: blur(8px)
}

.plan-modal[open] {
    display: grid;
    grid-template-columns: 1fr 1.18fr
}

.plan-modal-visual img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover
}

.plan-modal-form {
    position: relative;
    padding: 42px 55px;
    color: var(--navy);
    background: linear-gradient(145deg, #cfe4f2, #f7fbfd)
}

.plan-modal-form .brand-mark {
    margin: 0 auto 14px
}

.plan-modal-form>.eyebrow,
.plan-modal-form>h2,
.plan-modal-form>p {
    text-align: center
}

.plan-modal-form h2 {
    font: 700 40px Montserrat, sans-serif;
    margin: 5px 0 6px
}

.plan-modal-form>p {
    color: #607080;
    font-size: 10px;
    margin-bottom: 26px
}

.plan-modal-form .plan-form input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #667b8f;
    border-radius: 0;
    padding: 12px 2px
}

.plan-modal-form .plan-form label {
    margin-bottom: 18px
}

.plan-modal-form .plan-form .button {
    max-width: 190px;
    margin: 25px auto 0;
    display: flex;
    border-radius: 30px;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
    box-shadow: none
}

.plan-modal-close {
    position: absolute;
    z-index: 5;
    right: 18px;
    top: 16px;
    width: 38px;
    height: 38px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    background: transparent;
    color: var(--navy);
    font-size: 24px;
    cursor: pointer
}

@media(max-width:850px) {
    .plan-preview-grid {
        grid-template-columns: 1fr
    }

    .plan-preview-card {
        height: 300px
    }

    .plan-modal[open] {
        grid-template-columns: 1fr
    }

    .plan-modal-visual {
        display: none
    }

    .plan-modal-form {
        padding: 42px 30px
    }
}


.amenities-heading {
    margin-bottom: 38px
}


.plan-preview-card span {
    display: none
}

.plan-modal {
    width: min(980px, 90vw)
}

.plan-modal-visual img {
    min-height: 500px;
    object-position: center
}

.plan-modal-form {
    padding: 30px 38px
}

.plan-modal-form h2 {
    font-size: 34px
}

.plan-modal-form>p {
    margin-bottom: 18px
}

.plan-modal-form .plan-form label {
    margin-bottom: 12px
}

.plan-modal-form .plan-form .button {
    margin-top: 16px
}

.contact {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    padding: 78px 7% 0;
    background: linear-gradient(135deg, #e9eef1, #f7f8f4);
    gap: 55px;
    align-items: center
}

.contact-intro {
    padding: 20px 2vw 55px
}

.contact-intro h2 {
    max-width: 600px;
    font: 700 clamp(38px, 4vw, 58px)/1.05 Montserrat, sans-serif;
    color: var(--navy)
}

.contact-intro>p:not(.eyebrow) {
    max-width: 560px;
    color: #53616d;
    font-size: 13px;
    line-height: 1.8
}

.contact .enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    padding: 36px 38px;
    background: #fff;
    color: var(--navy);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(3, 29, 57, .1)
}

.contact .enquiry-form h3 {
    grid-column: 1/-1;
    text-align: center;
    color: var(--navy);
    font: 700 34px Montserrat, sans-serif;
    text-transform: uppercase;
    margin-bottom: 8px
}

.contact .enquiry-form label {
    margin: 0
}

.contact .enquiry-form label span {
    color: #62717e
}

.contact .enquiry-form input {
    height: 54px;
    border: 1px solid #bdc8d0;
    background: #fff;
    color: var(--ink);
    padding: 12px
}

.contact .enquiry-form .submit-button {
    grid-column: 2;
    width: 170px;
    justify-self: end;
    border-radius: 28px;
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--navy);
    box-shadow: none
}

.contact .enquiry-form .form-status {
    grid-column: 1/-1;
    color: var(--green-dark)
}

.contact .contact-map {
    grid-column: 1/-1;
    margin: 55px -7.6% 0
}

.contact .contact-map img {
    width: 100%;
    height: 430px;
    min-height: 0;
    object-fit: cover;
    object-position: center
}

@media(max-width:850px) {
    .contact {
        grid-template-columns: 1fr;
        padding-top: 60px;
        gap: 20px
    }

    .contact-intro {
        padding-bottom: 15px
    }

    .contact .contact-map {
        margin-top: 30px
    }

    .contact .enquiry-form {
        grid-template-columns: 1fr
    }

    .contact .enquiry-form h3,
    .contact .enquiry-form .submit-button,
    .contact .enquiry-form .form-status {
        grid-column: 1
    }

    .contact .enquiry-form .submit-button {
        justify-self: stretch;
        width: 100%
    }
}


main {
    background: #f5f3ed
}

.narrative-interlude,
.overview,
.project-metrics,
.amenity-directory,
.amenities-showcase,
.configuration.plan-library,
.location {
    background: transparent !important;
    border: 0 !important
}

.amenity-directory:before,
.amenity-directory:after {
    display: none
}


.hero-end-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease
}

.hero.show-end-image .hero-end-image {
    opacity: 1;
    visibility: visible
}

.hero.show-end-image .hero-video {
    opacity: 0
}

.hero-video {
    transition: opacity 1s ease
}


.site-header {
    background: transparent;
    border-bottom: 0;
    color: #fff;
    backdrop-filter: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35)
}

.site-header .brand small {
    color: rgba(255, 255, 255, .82)
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    backdrop-filter: blur(14px);
    text-shadow: none
}

.site-header.scrolled .brand small {
    color: var(--muted)
}

@media(max-width:800px) {
    .site-header .menu-toggle {
        color: #fff
    }

    .site-header.scrolled .menu-toggle {
        color: var(--navy)
    }

    .site-header .main-nav.open {
        color: var(--ink);
        text-shadow: none
    }
}


.hero {
    height: 86vh;
    min-height: 620px
}

.plan-preview-card {
    cursor: default
}

.plan-modal {
    width: min(430px, 90vw);
    border-radius: 10px
}

.plan-modal[open] {
    display: block
}

.plan-modal-visual {
    display: none
}

.plan-modal-form {
    padding: 28px 30px 26px
}

.plan-modal-form .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 17px;
    margin-bottom: 8px
}

.plan-modal-form h2 {
    font-size: 29px;
    margin: 3px 0 5px
}

.plan-modal-form>p {
    margin-bottom: 14px
}

.plan-modal-form .plan-form label {
    margin-bottom: 9px
}

.plan-modal-form .plan-form input {
    padding: 9px 2px
}

.plan-modal-form .plan-form .button {
    margin-top: 12px;
    padding: 10px 18px
}

@media(max-width:520px) {
    .hero {
        height: 82vh;
        min-height: 560px
    }
}


.amenities-showcase {
    background: #f3f1e9 !important
}

.amenity-carousel .amenity-photo-grid article {
    background: #faf9f4 !important;
    border: 1px solid rgba(19, 43, 82, .08)
}

.amenity-carousel .amenity-photo-grid img {
    width: 100%;
    object-fit: cover;
    object-position: center
}


.plan-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1050px
}

.plan-preview-card {
    height: 390px;
    background: #eef0ea
}

.plan-preview-card img {
    filter: blur(10px);
    opacity: .66;
    transform: scale(1.08)
}

.plan-preview-card:after {
    background: linear-gradient(0deg, rgba(3, 29, 57, .52), rgba(3, 29, 57, .05) 58%)
}

.plan-preview-card span {
    display: block;
    top: 50%;
    font-weight: 600;
    letter-spacing: .04em;
    border-radius: 28px;
    padding: 13px 24px;
    box-shadow: 0 8px 24px rgba(3, 29, 57, .12)
}

.plan-preview-card strong {
    position: absolute;
    z-index: 3;
    left: 24px;
    bottom: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em
}

.plan-preview-card:hover img {
    filter: blur(8px);
    transform: scale(1.1)
}

.plan-modal-form {
    background: #f8faf7;
    padding: 36px 42px
}

.plan-modal-form h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 30px
}

.plan-modal-form .plan-form input {
    font-family: Montserrat, sans-serif
}

@media(max-width:850px) {
    .plan-preview-grid {
        grid-template-columns: 1fr
    }

    .plan-preview-card {
        height: 330px
    }
}


.site-header .brand-logo {
    width: 250px;
    max-height: 64px;
    object-fit: contain;
    object-position: left center
}

.footer .brand-logo {
    width: 250px;
    max-height: 82px;
    object-fit: contain;
    object-position: left center
}

.modal-brand-logo {
    width: 230px;
    max-height: 76px;
    object-fit: contain;
    object-position: left center
}

@media(max-width:800px) {
    .site-header .brand-logo {
        width: 190px;
        max-height: 52px
    }

    .footer .brand-logo {
        width: 210px
    }

    .modal-brand-logo {
        width: 200px
    }
}