:root {
    --ink: #14251d;
    --forest: #193a2b;
    --paper: #f4f0e8;
    --sand: #d6c2a0;
    --rust: #a4573c;
    --white: #fff;
    --line: rgba(20, 37, 29, .18)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: DM Sans, sans-serif
}

button,
a {
    font: inherit
}

button {
    cursor: pointer
}

img {
    display: block;
    width: 100%
}

.nav {
    height: 78px;
    position: fixed;
    z-index: 20;
    inset: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 4vw;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    transition: .3s
}

.nav.scrolled {
    background: #14251df5;
    height: 68px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.1;
    letter-spacing: .17em;
    font-weight: 600
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: Italiana;
    font-size: 22px
}

.brand small {
    display: block;
    font-size: 7px;
    letter-spacing: .26em;
    margin-top: 5px
}

.nav nav {
    margin-left: auto;
    display: flex;
    gap: 2.3vw
}

.nav nav a {
    color: inherit;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .08em
}

.nav-cta,
.primary {
    border: 0;
    background: var(--rust);
    color: #fff;
    padding: 15px 20px;
    margin-left: 3vw;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .13em;
    font-weight: 600
}

.nav-cta span,
.primary span,
.text-btn span {
    margin-left: 16px
}

.menu {
    display: none;
    background: 0;
    border: 0
}

.hero {
    height: 100svh;
    min-height: 680px;
    position: relative;
    color: #fff;
    overflow: hidden
}

.hero-img {
    height: 100%;
    object-fit: cover;
    animation: slowzoom 16s ease-out both
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0b1912cc, #0b191247 58%, #0b19120d), linear-gradient(0deg, rgba(11, 25, 18, .65), transparent 50%)
}

@keyframes slowzoom {
    0% {
        transform: scale(1.06)
    }

    to {
        transform: scale(1)
    }
}

.hero-copy {
    position: absolute;
    left: 8vw;
    top: 50%;
    transform: translateY(-45%);
    max-width: 760px
}

.eyebrow {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .27em;
    font-weight: 600;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 12px
}

.eyebrow:before {
    content: "";
    width: 35px;
    height: 1px;
    background: currentColor
}

.light {
    color: #e3d8c5
}

.hero h1,
.section h2,
.manifesto h2,
.location h2,
.closing h2,
dialog h2 {
    font: 400 clamp(56px, 7.3vw, 112px)/.9 Italiana, serif;
    letter-spacing: -.025em;
    margin: 0
}

.hero h1 em,
.manifesto h2 em,
.closing h2 em {
    color: var(--sand);
    font-style: normal
}

.hero-sub {
    max-width: 470px;
    font-size: 16px;
    line-height: 1.7;
    margin: 28px 0
}

.light-btn {
    background: #ede4d6;
    color: var(--ink);
    margin-left: 0
}

.hero-facts {
    position: absolute;
    right: 5vw;
    bottom: 54px;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, .35);
    padding-top: 18px;
    gap: 4vw
}

.hero-facts div {
    display: flex;
    flex-direction: column
}

.hero-facts strong {
    font: 30px Italiana
}

.hero-facts span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .8;
    margin-top: 7px
}

.scroll {
    position: absolute;
    left: 4vw;
    bottom: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 8px;
    letter-spacing: .2em;
    writing-mode: vertical-rl
}

.scroll span {
    height: 36px;
    width: 1px;
    background: #fff;
    display: block;
    margin: 0 auto 12px
}

.section {
    padding: 130px 8vw
}

.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 9vw
}

.intro-title h2,
.section-head h2,
.price-intro h2 {
    font-size: clamp(55px, 6vw, 90px)
}

.intro-copy {
    padding-top: 46px;
    max-width: 520px
}

.intro-copy .lead {
    font: 30px/1.35 Italiana;
    margin: 0 0 26px
}

.intro-copy>p:last-of-type,
.section-head>p,
.price-intro>p {
    line-height: 1.8;
    color: #5d685f
}

.text-btn {
    background: 0;
    border: 0;
    border-bottom: 1px solid var(--ink);
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .16em;
    margin-top: 16px
}

.portrait {
    position: relative
}

.portrait img {
    height: 600px;
    object-fit: cover
}

.portrait span {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--paper);
    padding: 15px 28px;
    font-size: 9px;
    letter-spacing: .15em
}

.overview-card {
    align-self: end;
    background: var(--forest);
    color: #fff;
    padding: 50px
}

.overview-card dl {
    margin: 0
}

.overview-card dl div {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17)
}

.overview-card dt {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    opacity: .65
}

.overview-card dd {
    margin: 0;
    font-family: Italiana;
    font-size: 18px
}

.manifesto {
    height: 790px;
    position: relative;
    color: #fff
}

.manifesto>img {
    height: 100%;
    object-fit: cover
}

.manifesto:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0d1c14cc, #0d1c140d)
}

.manifesto-copy {
    position: absolute;
    z-index: 2;
    left: 8vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: 650px
}

.manifesto h2,
.location h2 {
    font-size: clamp(60px, 6vw, 94px)
}

.manifesto-copy>p:last-of-type {
    max-width: 470px;
    line-height: 1.8;
    margin: 28px 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 70px
}

.section-head>p {
    max-width: 360px
}

.amenity-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 1px;
    background: var(--line)
}

.amenity-grid article {
    background: var(--paper)
}

.featured {
    grid-row: span 2;
    position: relative;
    color: #fff
}

.featured:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 24, 17, .8), transparent 60%)
}

.featured img {
    height: 100%;
    object-fit: cover
}

.featured div {
    position: absolute;
    z-index: 1;
    bottom: 0;
    padding: 38px
}

.featured h3,
.amenity-card h3 {
    font: 28px Italiana;
    margin: 10px 0
}

.featured p,
.amenity-card p {
    font-size: 12px;
    opacity: .75
}

.amenity-card {
    min-height: 300px;
    padding: 35px;
    display: flex;
    flex-direction: column
}

.amenity-card.dark {
    background: var(--forest);
    color: #fff
}

.amenity-card>span:nth-child(2) {
    margin-top: auto;
    font-size: 9px;
    letter-spacing: .15em;
    opacity: .6
}

.line-icon {
    font: 46px Italiana
}

.amenity-list {
    grid-column: span 2;
    padding: 32px 36px !important
}

.amenity-list>p {
    font-size: 9px;
    letter-spacing: .17em
}

.amenity-list div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.amenity-list span {
    font: 18px Italiana;
    padding-top: 15px;
    border-top: 1px solid var(--line)
}

.pricing {
    background: #e9e1d4;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8vw
}

.price-intro>p {
    max-width: 390px
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.price-card {
    background: var(--paper);
    padding: 38px;
    position: relative
}

.price-card .number {
    position: absolute;
    right: 28px;
    top: 15px;
    font: 80px Italiana;
    color: #14251d12
}

.price-card>p {
    font-size: 9px;
    letter-spacing: .17em
}

.price-card h3 {
    font: 42px Italiana;
    margin: 35px 0
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid var(--line);
    padding-top: 24px
}

.price-row span {
    font-size: 13px
}

.price-row strong {
    font: 24px Italiana
}

.price-card .primary {
    margin: 27px 0 0
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 24px
}

.gallery-grid .wide {
    grid-row: span 2
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden
}

.gallery-grid img {
    height: 360px;
    object-fit: cover;
    transition: .6s
}

.gallery-grid .wide img {
    height: 780px
}

.gallery-grid figure:hover img {
    transform: scale(1.025)
}

figcaption {
    font-size: 9px;
    letter-spacing: .17em;
    margin-top: 13px
}

.location {
    min-height: 760px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--forest);
    color: #fff
}

.map-art {
    position: relative;
    overflow: hidden;
    background: #d5cbb8
}

.map-art:before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(42deg, transparent 0 95px, rgba(20, 37, 29, .12) 96px 98px), repeating-linear-gradient(-28deg, transparent 0 140px, rgba(20, 37, 29, .08) 142px 144px)
}

.road {
    position: absolute;
    background: var(--rust);
    height: 4px;
    width: 120%;
    transform-origin: left
}

.r1 {
    top: 35%;
    left: -10%;
    transform: rotate(18deg)
}

.r2 {
    top: 72%;
    left: 0;
    transform: rotate(-30deg)
}

.r3 {
    top: 15%;
    left: 55%;
    transform: rotate(80deg)
}

.pin {
    position: absolute;
    left: 48%;
    top: 43%;
    text-align: center;
    font-size: 9px;
    letter-spacing: .15em;
    color: var(--ink)
}

.pin span {
    display: block;
    margin: auto auto 12px;
    width: 25px;
    height: 25px;
    border: 7px solid var(--rust);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #a4573c38
}

.location-copy {
    padding: 100px 7vw
}

.location-copy ul {
    list-style: none;
    padding: 0;
    margin: 42px 0
}

.location-copy li {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16)
}

.location-copy strong {
    font: 19px Italiana;
    color: var(--sand)
}

.location-copy span {
    font-size: 12px;
    opacity: .8
}

.closing {
    text-align: center
}

.closing .eyebrow {
    justify-content: center
}

.closing h2 {
    font-size: clamp(62px, 8vw, 120px)
}

.closing .primary {
    margin: 45px 0 0
}

footer {
    background: #0f1c16;
    color: #fff;
    padding: 55px 8vw;
    text-align: center
}

.footer-brand {
    justify-content: center;
    margin-bottom: 25px
}

.footer-brand+p {
    font-size: 11px;
    opacity: .75
}

.fine {
    max-width: 780px;
    margin: 25px auto 0;
    font-size: 9px;
    line-height: 1.8;
    opacity: .45
}

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 12;
    background: #25d366;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 22px
}

.mobile-cta {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s, transform .8s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

dialog {
    width: min(520px, calc(100% - 30px));
    border: 0;
    padding: 55px;
    background: var(--paper);
    color: var(--ink)
}

dialog::backdrop {
    background: #08140ec7;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

dialog h2 {
    font-size: 60px
}

dialog>p:not(.eyebrow) {
    color: #657067;
    line-height: 1.6
}

.close {
    position: absolute;
    right: 18px;
    top: 12px;
    background: 0;
    border: 0;
    font-size: 30px;
    color: var(--ink)
}

form {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin-top: 30px
}

label {
    font-size: 9px;
    letter-spacing: .15em
}

input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 12px 0;
    outline: 0;
    font-size: 14px
}

form .primary {
    margin: 12px 0 0
}

form small {
    text-align: center;
    font-size: 9px;
    opacity: .55
}

.success {
    display: none;
    text-align: center;
    padding: 30px 0
}

.success span {
    display: grid;
    place-items: center;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--forest);
    color: #fff;
    font-size: 25px
}

.success h3 {
    font: 40px Italiana;
    margin: 20px 0 5px
}

.submitted form,
.submitted>p {
    display: none
}

.submitted .success {
    display: block
}

.marquee {
    overflow: hidden;
    background: var(--rust);
    color: #fff;
    padding: 15px 0
}

.marquee div {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 38px;
    animation: marquee 24s linear infinite
}

.marquee span {
    font-size: 10px;
    letter-spacing: .25em
}

.marquee i {
    font-size: 8px;
    color: var(--sand)
}

@keyframes marquee {
    to {
        transform: translate(-50%)
    }
}

.plans {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 8vw;
    background: var(--forest);
    color: #fff
}

.plan-visual {
    position: relative;
    overflow: hidden;
    min-height: 690px
}

.plan-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(9, 23, 16, .38), transparent)
}

.plan-visual img {
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease
}

.plan-visual:hover img {
    transform: scale(1.035)
}

.orbit {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: .18em;
    animation: float 3s ease-in-out infinite
}

.plan-copy {
    align-self: center
}

.plan-copy h2,
.advantages h2 {
    font: 400 clamp(54px, 5.4vw, 82px)/.94 Italiana;
    margin: 0
}

.plan-copy>p:not(.eyebrow) {
    max-width: 480px;
    line-height: 1.8;
    opacity: .67;
    margin: 30px 0
}

.plan-options {
    border-top: 1px solid rgba(255, 255, 255, .2)
}

.plan-option {
    width: 100%;
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    gap: 22px;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: #fff;
    padding: 24px 0;
    transition: .3s
}

.plan-option:hover {
    padding-left: 15px;
    background: #ffffff0a
}

.plan-option>span {
    font-size: 9px;
    opacity: .5
}

.plan-option strong {
    display: block;
    font: 25px Italiana
}

.plan-option small {
    font-size: 8px;
    letter-spacing: .15em;
    opacity: .55
}

.plan-option b {
    font-size: 18px;
    font-weight: 400;
    color: var(--sand)
}

.gallery-new {
    grid-column: auto
}

.gallery-grid .gallery-new img {
    height: 360px
}

.advantages {
    background: #e9e1d4
}

.advantages-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 70px
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.advantage-grid article {
    padding: 45px 35px;
    border-right: 1px solid var(--line);
    transition: .35s
}

.advantage-grid article:last-child {
    border: 0
}

.advantage-grid article:hover {
    background: var(--paper);
    transform: translateY(-8px)
}

.advantage-grid span {
    font-size: 9px;
    letter-spacing: .15em;
    color: var(--rust)
}

.advantage-grid h3 {
    font: 30px Italiana;
    margin: 55px 0 16px
}

.advantage-grid p {
    font-size: 13px;
    line-height: 1.8;
    color: #657067
}

.reveal {
    filter: blur(4px);
    transition: opacity .85s var(--delay, 0ms), transform .85s var(--delay, 0ms), filter .85s var(--delay, 0ms)
}

.reveal.visible {
    filter: none
}

@keyframes float {
    50% {
        transform: translateY(-9px)
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none
    }
}

@media(max-width:900px) {
    .nav nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--forest);
        display: none;
        flex-direction: column;
        padding: 30px 5vw
    }

    .nav.menu-open nav {
        display: flex
    }

    .nav-cta {
        display: none
    }

    .menu {
        display: flex;
        margin-left: auto;
        flex-direction: column;
        gap: 7px
    }

    .menu span {
        width: 25px;
        height: 1px;
        background: #fff
    }

    .hero-copy {
        left: 6vw;
        right: 6vw
    }

    .hero h1 {
        font-size: clamp(52px, 14vw, 78px)
    }

    .hero-facts {
        left: 6vw;
        right: 6vw;
        justify-content: space-between
    }

    .scroll {
        display: none
    }

    .section {
        padding: 85px 6vw
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .intro-copy {
        padding-top: 0
    }

    .portrait img {
        height: 480px
    }

    .manifesto {
        height: 680px
    }

    .section-head {
        display: block
    }

    .section-head>p {
        margin-top: 25px
    }

    .amenity-grid {
        grid-template-columns: 1fr 1fr
    }

    .featured {
        grid-column: span 2;
        height: 500px
    }

    .amenity-list {
        grid-column: span 2
    }

    .pricing,
    .plans {
        grid-template-columns: 1fr
    }

    .plan-visual {
        min-height: 520px
    }

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

    .map-art {
        min-height: 450px
    }

    .gallery-grid {
        gap: 14px
    }

    .gallery-grid img {
        height: 260px
    }

    .gallery-grid .wide img {
        height: 580px
    }

    .advantages-title {
        display: block
    }

    .advantage-grid {
        grid-template-columns: 1fr
    }

    .advantage-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .whatsapp {
        bottom: 75px
    }

    .mobile-cta {
        display: block;
        position: fixed;
        z-index: 11;
        bottom: 0;
        left: 0;
        width: 100%;
        border: 0;
        background: var(--rust);
        color: #fff;
        padding: 18px;
        font-size: 11px;
        letter-spacing: .18em
    }

    .mobile-cta span {
        margin-left: 20px
    }
}

@media(max-width:560px) {
    .nav {
        padding: 0 5vw
    }

    .hero {
        min-height: 720px
    }

    .hero-copy {
        top: 43%
    }

    .hero-sub {
        font-size: 14px
    }

    .hero-facts {
        bottom: 35px;
        gap: 12px
    }

    .hero-facts strong {
        font-size: 22px
    }

    .hero-facts span {
        font-size: 8px
    }

    .intro-title h2,
    .section-head h2,
    .price-intro h2 {
        font-size: 52px
    }

    .portrait img {
        height: 400px
    }

    .overview-card {
        padding: 35px 24px
    }

    .manifesto-copy {
        left: 6vw;
        right: 6vw
    }

    .manifesto h2,
    .location h2 {
        font-size: 54px
    }

    .amenity-grid {
        display: block;
        background: transparent
    }

    .amenity-grid article {
        margin-bottom: 1px
    }

    .featured {
        height: 460px
    }

    .amenity-list div {
        grid-template-columns: 1fr 1fr
    }

    .pricing {
        padding-top: 80px
    }

    .price-card {
        padding: 30px 22px
    }

    .price-card h3 {
        font-size: 34px
    }

    .price-row {
        align-items: start;
        flex-direction: column;
        gap: 12px
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid .wide {
        grid-row: auto
    }

    .gallery-grid .wide img,
    .gallery-grid img {
        height: 330px
    }

    .location-copy {
        padding: 80px 6vw
    }

    .location-copy li {
        grid-template-columns: 82px 1fr
    }

    .closing h2 {
        font-size: 56px
    }

    dialog {
        padding: 46px 25px
    }

    dialog h2 {
        font-size: 48px
    }
}

.nav {
    height: 82px;
    transition: height .35s, background .35s, box-shadow .35s;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px)
}

.nav.scrolled {
    height: 68px;
    background: #0f1f17f0;
    box-shadow: 0 8px 30px #00000026;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px)
}

.logo-crop {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    overflow: hidden;
    flex: 0 0 48px;
    border-radius: 2px
}

.logo-crop img {
    position: absolute;
    width: 241px;
    max-width: none;
    left: -11px;
    top: -8px
}

.brand-name {
    white-space: nowrap
}

.hero {
    width: 100%;
    height: 100svh;
    min-height: 680px
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center
}

.manifesto>img,
.featured img,
.gallery-grid img,
.plan-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero h1,
.section h2,
.manifesto h2,
.location h2,
.closing h2,
dialog h2 {
    font-weight: 500;
    letter-spacing: -.035em
}

.hero-sub,
.intro-copy>p,
.section-head>p,
.plan-copy>p,
.advantage-grid p {
    letter-spacing: -.01em
}

@media(max-width:900px) {
    .nav {
        height: 72px
    }

    .nav nav {
        top: 72px
    }

    .nav.scrolled nav {
        top: 68px
    }

    .logo-crop {
        width: 44px;
        height: 44px;
        flex-basis: 44px
    }

    .logo-crop img {
        width: 221px;
        left: -10px;
        top: -7px
    }

    .hero-img {
        object-position: 58% center
    }
}

@media(max-width:560px) {
    .brand-name {
        font-size: 11px
    }

    .brand-name small {
        font-size: 6px
    }

    .hero {
        height: 100svh;
        min-height: 720px
    }

    .hero-img {
        object-position: 61% center
    }
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #122019
}

.hero-slide {
    opacity: 0;
    visibility: hidden;
    animation: none;
    transform: translateY(var(--parallax-y, 0)) scale(1.08);
    transition: opacity 1.15s ease, visibility 1.15s ease;
    will-change: opacity, transform
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    animation: heroKenBurns 6.2s ease-out both
}

@keyframes heroKenBurns {
    0% {
        transform: translateY(var(--parallax-y, 0)) scale(1.025)
    }

    to {
        transform: translateY(var(--parallax-y, 0)) scale(1.09)
    }
}

.hero-shade {
    z-index: 1
}

.hero-copy,
.hero-facts,
.slider-controls,
.scroll {
    z-index: 2
}

.slider-controls {
    position: absolute;
    left: 8vw;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 15px
}

.slider-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: #0c1b132e;
    color: #fff;
    display: grid;
    place-items: center;
    transition: .3s;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

.slider-arrow:hover {
    background: #fff;
    color: var(--ink);
    transform: scale(1.07)
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 7px
}

.slider-dot {
    width: 35px;
    height: 20px;
    padding: 9px 0;
    border: 0;
    background: transparent
}

.slider-dot span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff59;
    position: relative;
    overflow: hidden
}

.slider-dot span:after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translate(-101%)
}

.slider-dot.active span:after {
    animation: slideProgress 5s linear forwards
}

@keyframes slideProgress {
    to {
        transform: translate(0)
    }
}

@media(max-width:900px) {
    .slider-controls {
        left: 6vw;
        bottom: 118px
    }

    .hero-slide {
        object-position: center center
    }

    .hero-slide:nth-child(2) {
        object-position: 55% center
    }

    .hero-slide:nth-child(3) {
        object-position: 50% center
    }
}

@media(max-width:560px) {
    .slider-controls {
        bottom: 112px
    }

    .slider-arrow {
        width: 34px;
        height: 34px
    }

    .slider-dot {
        width: 25px
    }

    .hero-slide:nth-child(1) {
        object-position: 58% center
    }

    .hero-slide:nth-child(2) {
        object-position: 52% center
    }

    .hero-slide:nth-child(3) {
        object-position: 50% center
    }
}

.hero-facts strong,
.overview-card dd,
.featured div>span,
.amenity-card>span:nth-child(2),
.price-card .number,
.price-row strong,
.location-copy strong,
.plan-option>span,
.plan-option strong,
.advantage-grid>article>span {
    font-family: DM Sans, sans-serif;
    font-style: normal;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0
}

.hero-copy,
.hero-copy.reveal.visible {
    top: auto;
    bottom: 105px;
    transform: none
}

.eoi-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    max-width: 100%;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .42);
    background: #a4573ce0;
    color: #fff;
    text-align: left;
    box-shadow: 0 14px 36px #0000002e;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    transition: .3s
}

.eoi-alert:hover {
    background: #b45b3e;
    transform: translateY(-3px)
}

.eoi-alert>span:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.eoi-alert small {
    font-size: 8px;
    letter-spacing: .18em;
    opacity: .76
}

.eoi-alert strong {
    font-size: 12px;
    letter-spacing: .02em
}

.eoi-alert b {
    font-size: 16px;
    font-weight: 400;
    margin-left: 9px
}

.eoi-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 #ffffffa6;
    animation: eoiPulse 1.7s infinite
}

@keyframes eoiPulse {
    70% {
        box-shadow: 0 0 0 9px #fff0
    }

    to {
        box-shadow: 0 0 #fff0
    }
}

.config-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.config-card {
    position: relative;
    background: var(--paper);
    padding: 28px;
    border: 1px solid rgba(20, 37, 29, .08);
    transition: .35s
}

.config-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px #14251d14
}

.config-card>span {
    font-size: 9px;
    color: var(--rust);
    letter-spacing: .16em
}

.config-card h3 {
    font: 500 25px DM Sans, sans-serif;
    margin: 22px 0
}

.config-card dl {
    margin: 0 0 24px
}

.config-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 10px
}

.config-card dt {
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #69736c
}

.config-card dd {
    margin: 0;
    font-weight: 600
}

.config-card>strong {
    display: block;
    font: 600 22px DM Sans, sans-serif;
    color: var(--forest)
}

.plans {
    align-items: stretch
}

.plan-visual {
    height: 100%;
    min-height: 640px
}

.plan-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 30px
}

.plan-options {
    width: 100%
}

.plan-meeting {
    align-self: flex-start;
    margin: 30px 0 0
}

.plan-option>div {
    min-width: 0
}

.plan-option strong,
.plan-option small {
    white-space: normal
}

.map-art {
    min-height: 760px
}

.map-art:before {
    display: none
}

.map-art iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.72) contrast(.96)
}

.map-link {
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 28px;
    background: var(--paper);
    color: var(--ink);
    padding: 15px 19px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: .13em;
    box-shadow: 0 12px 30px #00000029
}

.map-link span {
    margin-left: 13px
}

.location-address {
    font-size: 14px;
    line-height: 1.65;
    margin: 24px 0 0
}

.location-address span {
    opacity: .65;
    font-size: 11px
}

@media(max-width:900px) {
    .config-grid {
        grid-template-columns: 1fr 1fr
    }

    .plans {
        align-items: stretch
    }

    .plan-visual {
        height: 520px;
        min-height: 520px
    }

    .plan-copy {
        padding-block: 20px
    }

    .map-art {
        min-height: 520px
    }

    .location-address {
        margin-top: 22px
    }
}

@media(max-width:560px) {
    .eoi-alert {
        width: 100%;
        padding: 11px 12px
    }

    .eoi-alert strong {
        font-size: 10px
    }

    .hero-copy,
    .hero-copy.reveal.visible {
        top: 18%;
        bottom: auto;
        transform: none
    }

    .hero h1 {
        font-size: 46px;
        line-height: .96
    }

    .config-grid {
        grid-template-columns: 1fr
    }

    .config-card {
        padding: 24px
    }

    .plan-visual {
        height: 380px;
        min-height: 380px
    }

    .plan-meeting {
        width: 100%;
        margin-top: 24px
    }

    .map-art {
        min-height: 420px
    }

    .map-link {
        left: 16px;
        bottom: 16px
    }
}

.floor-plans,
.project-gallery {
    scroll-margin-top: 68px
}

.floor-plans {
    position: relative;
    border-bottom: 12px solid var(--rust)
}

.project-gallery {
    position: relative;
    background: #faf7f1;
    padding-top: 95px
}

.gallery-kicker {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 54px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line)
}

.gallery-kicker span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 10px
}

.gallery-kicker p {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .24em
}

.project-gallery .section-head {
    margin-bottom: 65px
}

@media(max-width:560px) {
    .floor-plans {
        border-bottom-width: 8px
    }

    .project-gallery {
        padding-top: 70px
    }

    .gallery-kicker {
        margin-bottom: 42px
    }

    .gallery-kicker p {
        font-size: 9px
    }
}

.hero-details-card {
    position: absolute;
    z-index: 3;
    right: 5vw;
    top: 13%;
    width: min(355px, 31vw);
    padding: 24px;
    background: #faf7f1f5;
    color: var(--ink);
    box-shadow: 0 24px 70px #06120c45;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px)
}

.hero-card-head {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line)
}

.hero-card-head p {
    font: 400 24px/1.1 Italiana;
    margin: 0 0 7px
}

.hero-card-head span {
    font-size: 9px;
    color: #59645d;
    letter-spacing: .04em
}

.hero-card-head span:first-letter {
    color: var(--rust)
}

.hero-details-card ul {
    margin: 15px 0;
    padding-left: 18px
}

.hero-details-card li {
    font-size: 10px;
    line-height: 1.75
}

.hero-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
    text-align: center
}

.hero-card-price small {
    font-size: 9px
}

.hero-card-price strong {
    font: 600 22px DM Sans, sans-serif
}

.hero-card-price span {
    flex-basis: 100%;
    font-size: 8px;
    color: var(--rust);
    text-transform: uppercase;
    letter-spacing: .09em
}

.hero-details-card .primary {
    display: block;
    margin: 0 auto;
    padding: 13px 18px
}

.hero-rera {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 7px;
    color: #6a736d
}

.hero-copy {
    max-width: 52vw
}

.location,
.map-art {
    min-height: 950px
}

.location-copy li {
    padding: 11px 0
}

.location-copy ul {
    margin: 30px 0
}

@media(max-width:1180px) {
    .hero-details-card {
        display: none
    }

    .hero-copy {
        max-width: 760px
    }
}

@media(max-width:900px) {
    .location {
        min-height: 0
    }

    .map-art {
        min-height: 520px
    }

    .location-copy li {
        padding: 13px 0
    }
}

@media(max-width:560px) {
    .map-art {
        min-height: 420px
    }

    .location-copy li {
        grid-template-columns: 75px 1fr;
        gap: 12px
    }

    .location-copy strong {
        font-size: 15px
    }
}

.form-error {
    min-height: 16px;
    margin: 0;
    color: #a53d32;
    font-size: 10px;
    line-height: 1.5;
    text-align: center
}

.form-error:empty {
    display: none
}

form .primary:disabled {
    cursor: wait;
    opacity: .65
}