/* ===========================
   Google Fonts
   font-family: 'Inter', sans-serif;
   font-family: 'Allura', cursive;
=========================== */

/* Reset */
:root{
    --content-width:90%;
    --max-width:1728px;
    --container-width:min(var(--content-width), var(--max-width));
    --container-gutter:max(calc((100% - var(--container-width)) / 2), 0px);
    --heading-size:36px;
    --heading-line:46px;
    --text-size:16px;
    --text-line:26px;
    --nav-size:16px;
    --button-size:16px;
    --section-space:60px;
    --space-8:8px;
    --space-16:16px;
    --space-24:24px;
    --space-32:32px;
    --space-40:40px;
    --space-48:48px;
    --space-64:64px;
    --space-80:80px;
    --space-100:100px;
    --heading-content-gap:var(--space-24);
    --subtitle-text-gap:20px;
    --paragraph-gap:20px;
    --grid-gap:var(--space-48);
    --two-column-gap:var(--space-64);
    --card-gap:var(--space-32);
    --button-gap:var(--space-24);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:clip;
}

body{
    background:#ffffff;
    font-family:"Inter", sans-serif;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ===========================
   Container
=========================== */

.container{
    width:100%;
    margin:0;
}

/* ===========================
   Navbar
=========================== */

.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    height:90px;
    width:100%;
    margin-left:0;
    padding-inline:5%;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    background:transparent;
}

.navbar::before{
    content:"";
    position:absolute;
    z-index:-1;
    top:0;
    bottom:0;
    left:50%;
    width:100vw;
    transform:translateX(-50%);
    background:#fff;
    transition:
        background-color .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        backdrop-filter .3s ease;
}

.navbar.scrolled{
    background:transparent;
}

.navbar.scrolled::before{
    background:rgba(255, 255, 255, .72);
    border-bottom:1px solid rgba(255, 255, 255, .55);
    box-shadow:0 10px 32px rgba(25, 20, 14, .10);
    -webkit-backdrop-filter:blur(18px) saturate(160%);
    backdrop-filter:blur(18px) saturate(160%);
}

.logo{
    justify-self:start;
}

.logo img{
    width:139px;
    display:block;
}

.navbar nav{
    justify-self:end;
    margin-right:clamp(24px, 2.1vw, 40px);
}

.nav-popup-logo{
    display:none;
}

.navbar nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:clamp(24px, 2.1vw, 40px);
}

.navbar nav ul li a{
    text-decoration:none;
    color:#000;
    font-family:"Inter", sans-serif;
    font-size:16px;
    font-weight:400;
    transition:0.3s;
}

.navbar nav ul li a:hover{
    color:#C79A5A;
}

/* Button */

.btn{
    justify-self:end;
    padding:14px 28px;
    border:none;
    background:#445859;
    color:#fff;

    font-family:"Inter", sans-serif;
    font-size:16px;
    font-weight:500;

    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#344748;
}

.nav-toggle,
.mobile-enquiry{
    display:none;
}

.mobile-sticky-cta{
    display:none;
}

.enquire-tab{
    position:fixed;
    z-index:1050;
    top:50%;
    right:0;
    display:flex;
    width:42px;
    min-width:42px;
    height:190px;
    min-height:190px;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    background:#445859;
    color:#fff;
    font-family:"Inter", sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:1;
    letter-spacing:normal;
    transform:translateY(-50%);
    cursor:pointer;
    transition:.3s;
}

.enquire-tab span{
    white-space:nowrap;
    transform:rotate(-90deg);
}

.enquire-tab:hover{
    background:#d2aa80;
    color:#000;
}

.enquire-tab:focus-visible{
    outline:3px solid #c79a5a;
    outline-offset:3px;
}

.scroll-leaf{
    translate:0 -18px;
    transition:translate .85s cubic-bezier(.22, 1, .36, 1);
    will-change:translate;
}

.home-sizes-leaf.scroll-leaf{
    translate:18px 0;
}

.leaf.scroll-leaf{
    translate:0 -30px;
    transition:
        translate .95s cubic-bezier(.22, 1, .36, 1),
        scale .3s ease;
}

.scroll-leaf.is-visible{
    translate:0 0;
}

.leaf.scroll-leaf.is-visible:hover{
    translate:0 -7px;
    scale:1.03;
}

@media (prefers-reduced-motion:reduce){
    .scroll-leaf{
        translate:none;
        transition:none;
    }

    .leaf.scroll-leaf.is-visible:hover{
        translate:none;
        scale:1;
    }
}

/* ===========================
   Hero Section
=========================== */

.hero{
    width:90%;
    margin:15px auto 0;
}

.hero img{
    width:100%;
    display:block;
}

/* ===========================
   About Section
=========================== */

.about{
    width:100%;
    margin:0 auto;
    padding:80px 7% 90px;
    text-align:center;
}

/* Project Logo */

.project-logo{
    margin-bottom:50px;
}

.project-logo img{
    width:200px;
    max-width:100%;
    display:block;
    margin:0 auto;
}

/* Tagline */

.tagline-wrapper{
    position:relative;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:centre;
    width:min(1050px, 100%);
    min-height:100px;
    margin:0 auto;
    opacity:.8;
}

.tagline{
    grid-column:2;
    color: #000;
    font-family:"Allura", cursive;
    font-size:84px;
    font-style: normal;
    font-weight: 400;
    line-height:1;
}

.leaf{
    grid-column:3;
    justify-self:start;
    position:static;
    width:155px;
    height: auto;
    margin-top:-40px;
    margin-left:40px;
    transform:rotate(360deg);
}

/* Location */

.location{
    margin-top:-45px;
    color:rgb(0, 0, 0);
    font-family:"Be Vietnam Pro", "Inter", sans-serif;
    font-size:28px;
    font-style:normal;
    font-weight:300;
    line-height:60px;
    opacity:.8;
}

/* RERA */

.rera{
    width:298px;
    max-width:100%;
    margin:20px auto 0;
    color:#000;
    text-align:center;
    font-family:"Inter", sans-serif;
    font-size:18px;
    font-style:normal;
    font-weight:400;
    line-height:26px;
    opacity:.8;
}

/* Heading */

.about .heading{
    margin-top:30px;
    margin-bottom:30px;
    color:#000;
    font-size:36px;
    font-style:normal;
    font-weight:400;
    line-height:65px;
    letter-spacing:1.44px;
    text-transform:uppercase;
    opacity:.8;
}

/* Description */

.about .description{
    width:1050px;
    max-width:100%;
    margin:24px auto 0;
    color:#000;
    text-align:center;
    font-family:"Inter", sans-serif;
    font-size:16px;
    font-style:normal;
    font-weight:400;
    line-height:26px;
    opacity:.8;
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(4, max-content);
    justify-content:center;
    gap:10px;
    width:100%;
    margin:20px auto 0;
    padding:0;
    list-style:none;
    color:#000;
    font-family:"Inter", sans-serif;
    font-size:16px;
    line-height:1.5;
    opacity:.85;
}

/* ===========================
   Balanced Composition
=========================== */

.composition{
    position:relative;
    width:100%;
    height:auto;
    margin:0;
    overflow:hidden;
}

.composition::before{
    content:"";
    position:absolute;
    top:0;
    right:5%;
    left:5%;
    border-top:1px solid #e1e1e1;
}

.composition-overview{
    position:relative;
    height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:var(--section-space) 5%;
    border-bottom:0;
}

.composition-title{
    font-family:"Allura", cursive;
    font-size:36px;
    font-weight:400;
    line-height:1.15;
    color:#303030;
    text-align:center;
    opacity:.8;
}

.project-facts{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    width:min(800px, 100%);
    margin:10px auto 0;
    gap:var(--grid-gap);
}

.project-fact{
    padding:0;
    text-align:left;
}

.project-fact + .project-fact{
    border-left:1px solid #dedede;
}

.fact-label{
    margin-bottom:10px;
    color:#000;
    font-family:"Be Vietnam Pro", sans-serif;
    font-size:26px;
    font-style:normal;
    font-weight:300;
    line-height:1.2;
    opacity:.8;
}

.fact-value{
    color:#000;
    font-family:"42dot Sans", sans-serif;
    font-size:clamp(22px, 2.2vw, 32px);
    font-style:normal;
    font-weight:500;
    line-height:1.2;
    opacity:.8;
    white-space:nowrap;
}

.composition-stat{
    margin:10px 0 0;
    color:#303030;
    font-family:"Prompt", sans-serif;
    font-size:clamp(18px, 2vw, 24px);
    font-weight:400;
    line-height:1.25;
    letter-spacing:.4px;
    text-align:center;
    text-transform:uppercase;
    white-space:nowrap;
}

.home-sizes{
    display:grid;
    grid-template-columns:minmax(240px, 30%) minmax(0, 1fr);
    align-items:center;
    gap:0;
    height:auto;
    padding:0 7% 0 0;
    background:#FFFDF8;
}

.container > .home-sizes{
    margin-block-start:0;
}

.home-sizes-art{
    display:flex;
    align-self:stretch;
    align-items:flex-end;
    justify-content:flex-start;
    overflow:hidden;
    pointer-events:none;
}

.home-sizes-leaf{
    display:block;
    width:min(235px, 100%);
    height:auto;
}

.home-sizes-content{
    justify-self:center;
    width:min(520px, 100%);
    margin:0 auto;
    padding:0;
    text-align:left;
    transform:translateY(-18px);
}

.home-sizes .home-sizes-kicker,
.home-sizes .home-sizes-subtitle{
    color:#000;
    font-family:"Be Vietnam Pro", sans-serif;
    font-size:26px;
    font-style:normal;
    font-weight:300;
    line-height:1.3;
}

.home-sizes-subtitle{
    margin-top:6px;
}

.size-list{
    display:flex;
    align-items:center;
    margin-top:24px;
}

.size-list span{
    flex:1;
    padding:0;
    font-size:24px;
    line-height:1.2;
    color:#333;
    text-align:left;
    white-space:nowrap;
}

.size-list span + span{
    border-left:1px solid #dedede;
}

@media (min-width:1025px){
    .size-list{
        display:grid;
        grid-template-columns:repeat(5, minmax(0, 1fr));
        width:100%;
    }

    .size-list span{
        display:flex;
        align-items:center;
        justify-content:center;
        width:100%;
        min-height:32px;
        text-align:center;
    }
}

/* Figma node 1554:62 — Location Highlights */
@media (min-width:1400px){
    .location-highlights{
        width:min(1720px, 100%);
        max-width:none;
        min-height:650px;
        margin-right:auto;
        margin-left:auto;
        padding:70px 0 60px;
    }

    .location-highlights .section-display-title{
        position:static;
        width:auto;
        margin:0 0 0 370px;
        color:#000;
        font-size:32px;
        text-align:left;
        opacity:.8;
        transform:none;
    }

    .location-highlights .location-layout{
        display:grid;
        grid-template-columns:204px minmax(0, 1fr);
        column-gap:clamp(120px, 9.3vw, 179px);
        align-items:center;
        width:100%;
        margin-top:96px;
    }

    .location-highlights .location-groups{
        display:grid;
        grid-template-columns:minmax(300px, 1.15fr) minmax(250px, 1fr) minmax(360px, 1.25fr);
        column-gap:0;
        align-items:start;
        width:100%;
    }

    .location-highlights .location-group,
    .location-highlights .location-group:last-child{
        width:auto;
        min-width:0;
        margin:0;
    }

    .location-highlights .location-group h3{
        margin:0 0 54px;
        color:#000;
        font-size:18px;
        opacity:.8;
    }

    .location-highlights .location-group ul{
        display:grid;
        row-gap:9px;
    }

    .location-highlights .location-group li{
        display:flex;
        align-items:center;
        width:100%;
        min-height:36px;
        gap:14px;
        margin:0;
        color:#000;
        font-size:14px;
    }

    .location-highlights .location-group li span{
        flex:0 0 36px;
        width:36px;
        height:36px;
        border-radius:0;
        background:transparent url("../images/figma-time-badge.svg") center/36px 36px no-repeat;
        color:#000;
        font-size:10px;
    }

    .location-highlights .location-group li span::after{
        margin-top:1px;
        color:#000;
    }

    .location-highlights .map-pin{
        align-self:center;
        justify-self:start;
        width:170px;
        margin:0 0 0 30px;
        filter:none;
    }

    .location-highlights .map-pin img{
        width:170px;
        height:270px;
    }

    .location-highlights .location-leaf{
        top:20px;
        right:10px;
        width:143px;
        height:262px;
        object-fit:cover;
        transform:rotate(132.03deg) scaleX(-1) scaleY(-.99) skewX(-6.3deg);
        transform-origin:center;
    }
}

/* ===========================
   Project Views & Location
=========================== */

.project-location{
    position:relative;
    isolation:isolate;
    padding:var(--section-space) 5%;
    background:transparent;
}

.project-location::before{
    content:"";
    position:absolute;
    z-index:-1;
    inset-block:0;
    left:50%;
    width:100vw;
    transform:translateX(-50%);
    background:#FFFDF8;
}

.section-display-title{
    font-size:30px;
    font-weight:400;
    line-height:1.3;
    letter-spacing:1px;
    text-align:center;
    text-transform:uppercase;
    color:#252525;
}

.project-views .section-display-title{
    font-size:48px;
}

.project-carousel{
    position:relative;
    display:flex;
    align-items:center;
    gap:28px;
    width:min(1630px, 100%);
    margin:24px auto 0;
}

.carousel-viewport{
    position:relative;
    width:min(1480px, calc(100% - 150px));
    aspect-ratio:1.92 / 1;
    margin:0 auto;
    overflow:hidden;
    background:#eee;
}

.project-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity .45s ease;
}

.project-slide.active{
    opacity:1;
}

.carousel-button{
    position:absolute;
    z-index:2;
    top:50%;
    display:grid;
    place-items:center;
    width:50px;
    height:50px;
    padding:0;
    border:0;
    border-radius:50%;
    transform:translateY(-50%);
    background:#e6e6e3;
    color:#4b4b4b;
    font-size:24px;
    cursor:pointer;
}

.carousel-button-prev{
    left:0;
}

.carousel-button-next{
    right:0;
}

.carousel-count{
    margin-top:24px;
    font-size:22px;
    text-align:center;
    color:#222;
}

.location-highlights{
    position:relative;
    width:1480px;
    max-width:100%;
    margin:110px auto 0;
}

.location-leaf{
    position:absolute;
    top:-90px;
    right:70px;
    width:155px;
    transform:rotate(8deg);
}

.location-highlights .section-display-title{
    font-size:42px;
    letter-spacing:.8px;
}

.location-layout{
    display:grid;
    grid-template-columns:220px 960px;
    column-gap:95px;
    align-items:start;
    margin-top:80px;
}

.map-pin{
    width:170px;
    height:auto;
    margin:75px auto 0;
    filter:drop-shadow(18px 18px 24px rgba(0, 0, 0, .10));
}

.map-pin.scroll-pop{
    scale:.84;
    transition:scale .7s cubic-bezier(.2, .85, .3, 1.25);
    will-change:scale;
}

.map-pin.scroll-pop.is-visible{
    scale:1;
}

.map-pin.scroll-pop.is-visible:hover{
    scale:1.06;
}

.map-pin img{
    display:block;
    width:170px;
    height:auto;
}

@media (prefers-reduced-motion:reduce){
    .map-pin.scroll-pop,
    .map-pin.scroll-pop.is-visible:hover{
        scale:1;
        transition:none;
    }
}

.location-groups{
    display:grid;
    grid-template-columns:290px 240px 300px;
    column-gap:65px;
}

.location-group h3{
    margin-bottom:36px;
    font-size:20px;
    font-weight:400;
    color:#474747;
}

.location-group ul{
    list-style:none;
}

.location-group li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:18px;
    font-size:15px;
    line-height:1.6;
    color:#444;
}

.location-group:last-child{
    width:300px;
}

.location-group li span{
    display:flex;
    flex-direction:column;
    flex:0 0 38px;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#d4b081;
    color:#49371f;
    font-size:11px;
    line-height:1;
    text-align:center;
}

.location-group li span::after{
    content:"MINS";
    display:block;
    margin-top:2px;
    font-size:5px;
    line-height:1;
    text-align:center;
}

/* ===========================
   Enquiry
=========================== */

.enquiry-section{
    width:100%;
    min-height:900px;
    margin-left:0;
    padding:198px 9.5% 120px;
    background:#fff;
}

.enquiry-title{
    font-size:48px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:1.4px;
    text-align:center;
    text-transform:uppercase;
    color:#282828;
}

.enquiry-form{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    column-gap:68px;
    row-gap:40px;
    width:min(1555px, 100%);
    margin:58px auto 0;
}

.form-field{
    display:flex;
    flex-direction:column;
}

.form-field label{
    font-size:18px;
    line-height:1.4;
    color:#111;
}

.form-field input,
.form-field select{
    width:100%;
    height:34px;
    border:0;
    border-bottom:1px solid #d8d8d8;
    border-radius:0;
    outline:0;
    background:transparent;
    color:#222;
    font:inherit;
}

.form-field input:focus,
.form-field select:focus{
    border-bottom-color:#222;
}

.otp-field{
    max-width:260px;
}

.otp-field label{
    font-size:14px;
}

.otp-field input{
    max-width:180px;
    height:30px;
    font-size:14px;
    letter-spacing:2px;
}

.otp-status{
    min-height:18px;
    margin-top:8px;
    color:#002F63;
    font-size:12px;
    line-height:1.4;
}

.otp-status.is-error{
    color:#b3261e;
}

.enquiry-submit{
    grid-column:1 / -1;
    justify-self:start;
    width:150px;
    height:44px;
    margin-top:20px;
    border:1px solid #445859;
    background:#445859;
    color:#fff;
    font-family:"Inter", sans-serif;
    font-size:13px;
    cursor:pointer;
    transition:background-color .25s ease, color .25s ease;
}

.enquiry-submit:hover{
    background:#fff;
    color:#445859;
}

.enquiry-submit:disabled{
    cursor:not-allowed;
    opacity:.68;
}

/* ===========================
   Amenities
=========================== */

.amenities-section{
    width:100%;
    margin-left:0;
    padding:16px 5% 28px;
    background:#fff;
}

.amenities-title{
    font-size:42px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:.8px;
    text-align:center;
    text-transform:uppercase;
    color:#282828;
}

.amenities-carousel{
    position:relative;
    display:flex;
    align-items:center;
    width:min(1630px, 100%);
    margin:10px auto 0;
}

.amenities-viewport{
    position:relative;
    width:min(1480px, calc(100% - 150px));
    aspect-ratio:1477 / 831;
    margin:0 auto;
    overflow:hidden;
    background:#eee;
}

.amenities-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity .45s ease;
}

.amenities-slide.active{
    opacity:1;
}

.amenities-button{
    position:absolute;
    z-index:2;
    top:50%;
    display:grid;
    place-items:center;
    width:50px;
    height:50px;
    padding:0;
    border:0;
    border-radius:50%;
    transform:translateY(-50%);
    background:#e6e6e3;
    color:#4b4b4b;
    font-size:24px;
    cursor:pointer;
}

.amenities-button-prev{
    left:0;
}

.amenities-button-next{
    right:0;
    background:#050505;
    color:#fff;
}

.amenities-count{
    margin-top:12px;
    font-size:14px;
    text-align:center;
    color:#222;
}

.amenities-features{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    padding:36px 32px;
    row-gap:52px;
    column-gap:34px;
    list-style:none;
    margin-top:50px;
}

.amenities-features li{
    display:flex;
    align-items:center;
    min-width:0;
    gap:16px;
    color:#2f2f2f;
    font-family:"Inter", sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.45;
}

.amenities-features li{
    text-transform:uppercase;
}

.amenities-features svg{
    flex:0 0 26px;
    width:26px;
    height:26px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.1;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.amenities-features img{
    flex:0 0 26px;
    width:26px;
    height:26px;
    object-fit:contain;
}

@media (min-width:901px){
    .amenities-features{
        width:100%;
        max-width:1350px;
        margin-top:50px;
        margin-right:0;
        margin-left:50px;
        padding:36px 0;
        grid-template-columns:repeat(5, minmax(0, 1fr));
        column-gap:20px;
        row-gap:52px;
    }
}

@media (max-width:900px){
    .amenities-features{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        padding:28px 22px;
        gap:28px 22px;
    }

}

@media (max-width:480px){
    .amenities-features{
        grid-template-columns:1fr;
    }
}

/* ===========================
   Floor Plans
=========================== */

.floor-plans-section{
    display:grid;
    grid-template-columns:minmax(0, 42fr) minmax(0, 58fr);
    column-gap:70px;
    align-items:start;
    width:100%;
    min-height:740px;
    margin-left:0;
    padding:32px 5% 54px;
    background:#fff;
}

.floor-plan-visual{
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    min-width:0;
}

.floor-plan-visual img{
    display:block;
    width:auto;
    max-width:100%;
    height:760px;
    object-fit:contain;
    cursor:zoom-in;
}

.floor-plan-popup-open{
    overflow:hidden;
}

.floor-plan-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(0, 0, 0, .78);
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease;
}

.floor-plan-lightbox.active{
    opacity:1;
    pointer-events:auto;
}

.floor-plan-lightbox-dialog{
    position:relative;
    width:min(1100px, 96vw);
    max-height:92vh;
    padding:22px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 24px 80px rgba(0, 0, 0, .35);
}

.floor-plan-lightbox-image{
    display:block;
    width:100%;
    max-height:84vh;
    object-fit:contain;
}

.floor-plan-lightbox-close{
    position:absolute;
    top:10px;
    right:12px;
    z-index:1;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#445859;
    color:#fff;
    font-size:28px;
    line-height:1;
    cursor:pointer;
}

.floor-plan-details{
    min-width:0;
    padding:0;
}

.floor-plans-title{
    font-family:"Prompt", sans-serif;
    font-size:42px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:.8px;
    text-transform:uppercase;
    color:#282828;
}

.floor-plan-tabs{
    display:flex;
    gap:18px;
    margin-top:38px;
}

.floor-plan-tab{
    min-width:128px;
    min-height:48px;
    padding:10px 20px;
    border:0;
    background:#f7f7f7;
    color:#222;
    font-family:"Inter", sans-serif;
    font-size:10px;
    line-height:1.55;
    text-align:left;
    text-transform:uppercase;
    cursor:pointer;
}

.floor-plan-tab.active{
    background:#445859;
    color:#fff;
}

.floor-plan-table-wrap{
    margin-top:55px;
    overflow-x:auto;
}

.floor-plan-table{
    width:100%;
    border-collapse:collapse;
    color:#333;
    font-family:"Prompt", sans-serif;
    font-size:clamp(9px, 0.72vw, 11px);
    line-height:1.25;
}

.floor-plan-table tr{
    font-size:inherit;
    line-height:inherit;
}

.floor-plan-table th{
    height:58px;
    padding:14px 16px;
    background:#d2aa80;
    font-weight:500;
    line-height:1.25;
    text-align:left;
}

.floor-plan-table td{
    height:34px;
    padding:8px 14px;
    border-bottom:1px solid #e6e6e6;
    line-height:1.25;
    text-align:left;
}

.floor-plan-amenities{margin-top:32px;}

.floor-plan-amenities h3{
    margin:0 0 22px;
    color:#282828;
    font-family:"Prompt", sans-serif;
    font-size:20px;
    font-weight:400;
    line-height:1.3;
    text-transform:uppercase;
}

.floor-plan-amenities ul{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:20px 24px;
    margin:0;
    padding:0;
    list-style:none;
}

.floor-plan-amenities li{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
    color:#2f2f2f;
    font-family:"Prompt", sans-serif;
    font-size:13px;
    font-weight:400;
    line-height:1.4;
    text-transform:uppercase;
}

.floor-plan-amenities svg{
    flex:0 0 26px;
    width:26px;
    height:26px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.5;
    stroke-linecap:round;
    stroke-linejoin:round;
}

@media (max-width:480px){
    .floor-plan-amenities ul{grid-template-columns:1fr;}
}

/* ===========================
   Master Plan
=========================== */

.master-plan-section{
    display:grid;
    grid-template-columns:minmax(0, 58fr) minmax(0, 42fr);
    column-gap:clamp(50px, 3vw, 60px);
    align-items:center;
    width:100%;
    min-height:760px;
    margin-left:0;
    padding:64px 5% 72px;
    background:#f7f7f7;
}

.master-plan-visual{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-width:0;
}

.master-plan-visual img{
    display:block;
    width:min(100%, 760px);
    height:auto;
    object-fit:contain;
}

.master-plan-details{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-self:center;
    width:100%;
    min-width:0;
    padding:clamp(24px, 3vw, 52px) 0 0;
}

.master-plan-title{
    font-size:48px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:.8px;
    text-transform:uppercase;
    color:#282828;
}

.master-plan-legend-title{
    margin-top:25px;
    font-size:14px;
    font-weight:400;
    line-height:1.4;
    text-transform:uppercase;
    color:#333;
}

.master-plan-legend{
    margin-top:20px;
    list-style:none;
}

.master-plan-legend li{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:14px;
    font-size:15px;
    line-height:1.4;
    text-transform:uppercase;
    color:#444;
}

.master-plan-legend span{
    display:grid;
    flex:0 0 30px;
    place-items:center;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#d4b081;
    color:#49371f;
    font-size:11px;
    line-height:1;
}

/* ===========================
   Specifications
=========================== */

.specifications-section{
    width:100%;
    padding:var(--section-space) 5%;
    background:#f7f7f7;
}

.specifications-inner{
    width:100%;
    max-width:1600px;
    margin:0 auto;
}

.specifications-title{
    font-size:42px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:.8px;
    text-align:center;
    text-transform:uppercase;
    color:#282828;
}

.specifications-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    column-gap:120px;
    align-items:start;
    margin-top:72px;
}

.specifications-column{
    display:grid;
    align-content:start;
    row-gap:52px;
}

.specification-item{
    display:grid;
    grid-template-columns:28px minmax(0, 1fr);
    gap:18px;
    align-items:start;
}

.specification-icon{
    display:block;
    width:28px;
    height:28px;
    border:0;
    object-fit:contain;
}

.specification-item h3{
    font-size:20px;
    font-weight:400;
    line-height:1.3;
    text-transform:uppercase;
    color:#333;
}

.specification-item p{
    max-width:620px;
    margin-top:14px;
    font-size:16px;
    line-height:1.55;
    color:#4d4d4d;
}

/* ===========================
   Location Map & Footer
=========================== */

.location-map-section{
    width:100%;
    padding-top:18px;
    background:#f7f7f7;
}

.location-map-title{
    font-size:30px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:.8px;
    text-align:center;
    text-transform:uppercase;
    color:#282828;
}

.location-map-frame{
    width:100%;
    height:460px;
    margin:14px 0 0;
    overflow:hidden;
}

.location-map-frame iframe{
    width:100%;
    height:100%;
    border:0;
}

.site-footer{
    width:100%;
    margin:0;
    padding:var(--section-space) 5%;
    background:#002F63;
    color:#fff;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    column-gap:clamp(24px, 3vw, 56px);
    align-items:start;
    width:100%;
    margin-inline:0;
}

.footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    width:100%;
    min-width:0;
    margin:0;
    padding:0;
}

.footer-column:nth-child(2){
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-column:nth-child(2) h2{
    text-align:left;
}

.footer-contact-details{
    width:max-content;
    max-width:100%;
    min-width:0;
    white-space: nowrap;
}

.footer-contact-details p{
    text-align:left;
}

.footer-column h2{
    margin:0 0 24px;
    font-size:22px;
    font-weight:500;
    line-height:1.3;
    text-transform:uppercase;
}

.footer-column:first-child h2{
    margin-bottom:40px;
}

.footer-column:nth-child(2) h2{
    margin-bottom:38px;
}

.footer-column p,
.footer-column address{
    margin:0;
    font-family:"Inter", sans-serif;
    font-size:16px;
    font-style:normal;
    line-height:1.55;
}

.footer-column:first-child address{
    line-height:1.7;
}

.footer-column a{
    color:inherit;
    text-decoration:none;
}

.footer-projects{
    align-items:flex-start;
    justify-self:end;
    width:fit-content;
    max-width:100%;
    margin:0;
    overflow:visible;
    padding:0;
    text-align:left;
}

.footer-projects ul{
    display:block;
    width:100%;
    margin:10px 0 0;
    padding:0;
    list-style:none;
    text-align:left;
}

.footer-projects li{
    margin:0;
    font-family:"Inter", sans-serif;
    font-size:16px;
    line-height:1.55;
}

.footer-projects li + li{
    margin-top:4px;
}

.footer-projects a{
    font-size:inherit;
    font-weight:400;
    line-height:inherit;
}

.footer-bottom{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto minmax(0, 1fr);
    align-items:center;
    position:relative;
    width:100%;
    margin-top:48px;
    margin-inline:0;
    padding-top:30px;
    border-top:1px solid rgba(255, 255, 255, 0.2);
    font-size:16px;
}

.footer-bottom-left{
    grid-column:1;
    justify-self:start;
    margin:0;
}

.footer-bottom-right{
    grid-column:3;
    justify-self:end;
    margin:0;
    text-align:right;
}

.back-to-top{
    display:grid;
    place-items:center;
    width:50px;
    height:50px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#f4f4f4;
    color:#333;
    font-size:0;
    cursor:pointer;
    position:absolute;
    left:50%;
    top:0;
    transform:translate(-50%, -50%);
}

.back-to-top::before{
    content:"";
    position:absolute;
    top:15px;
    left:50%;
    width:9px;
    height:9px;
    border-top:1.5px solid currentColor;
    border-left:1.5px solid currentColor;
    transform:translateX(-50%) rotate(45deg);
}

.back-to-top::after{
    content:"";
    position:absolute;
    top:17px;
    left:50%;
    width:1.5px;
    height:17px;
    background:currentColor;
    transform:translateX(-50%);
}

@media (min-width:1101px) and (max-width:1500px){
    .location-layout{
        grid-template-columns:190px minmax(0, 1fr);
        column-gap:60px;
    }

    .location-groups{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        column-gap:40px;
    }

    .location-group:last-child{
        width:auto;
    }

    .map-pin,
    .map-pin img{
        width:140px;
    }

    .amenities-carousel{
        width:min(1100px, 100%);
    }

    .amenities-viewport{
        width:calc(100% - 120px);
    }

    .floor-plan-visual img{
        height:580px;
    }

    .floor-plan-details{
        padding:0;
    }

    .specifications-grid{
        gap:80px;
    }

}

@media (max-width:1100px){
    .navbar nav ul{
        gap:20px;
    }

    .navbar nav ul li a,
    .btn{
        font-size:16px;
    }

    .tagline{
        font-size:80px;
    }

    .leaf{
        left:calc(50% + 390px);
        width:155px;
    }

    .location-layout{
        grid-template-columns:150px 1fr;
        gap:36px;
    }

    .project-views .section-display-title{
        font-size:32px;
    }

    .project-carousel{
        width:min(700px, 100%);
    }

    .carousel-viewport{
        width:min(1180px, calc(100% - 100px));
    }

    .carousel-button{
        width:38px;
        height:38px;
        font-size:18px;
    }

    .carousel-count{
        margin-top:12px;
        font-size:13px;
    }

    .location-highlights .section-display-title{
        font-size:32px;
    }

    .location-leaf{
        top:-40px;
        width:110px;
    }

    .map-pin{
        width:92px;
        height:auto;
        margin:0 auto;
    }

    .map-pin img{
        width:92px;
    }

    .location-groups{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:28px;
    }

    .location-group h3{
        margin-bottom:24px;
        font-size:16px;
    }

    .location-group:last-child{
        width:auto;
    }

    .amenities-title{
        font-size:32px;
    }

    .amenities-carousel{
        width:min(700px, 100%);
    }

    .amenities-viewport{
        width:calc(100% - 100px);
    }

    .amenities-button{
        width:38px;
        height:38px;
        font-size:18px;
    }

    .floor-plans-section{
        grid-template-columns:minmax(0, 42fr) minmax(0, 58fr);
    }

    .floor-plan-visual img{
        height:520px;
    }

    .floor-plan-details{
        padding:0;
    }

    .floor-plans-title{
        font-size:32px;
    }

    .floor-plan-table-wrap{
        margin-top:70px;
    }

    .master-plan-section{
        grid-template-columns:minmax(0, 58fr) minmax(0, 42fr);
        column-gap:50px;
        padding-inline:5%;
    }

    .master-plan-visual img{
        width:100%;
        height:auto;
    }

    .master-plan-details{
        padding:24px 0 0;
    }

    .specifications-grid{
        gap:60px;
    }

    .location-group li{
        gap:10px;
        margin-top:9px;
        font-size:11px;
    }

    .location-group li span{
        flex-basis:24px;
        width:24px;
        height:24px;
        font-size:8px;
    }
}

@media (max-width:850px){
    .container{
        width:100%;
    }

    .navbar{
        display:flex;
        width:100%;
        margin-left:0;
        height:auto;
        min-height:76px;
        padding:12px 6%;
        flex-wrap:wrap;
        gap:12px;
    }

    .navbar nav{
        order:3;
        width:100%;
        margin:0;
        overflow-x:auto;
        padding-bottom:4px;
    }

    .navbar nav ul{
        width:max-content;
        gap:24px;
    }

    .hero{
        width:100%;
        margin-top:0;
    }

    .about{
        padding:54px 24px;
    }

    .project-logo{
        margin-bottom:34px;
    }

    .project-logo img{
        width:150px;
    }

    .tagline{
        font-size:clamp(42px, 12vw, 58px);
    }

    .leaf{
        position:static;
        width:72px;
        margin-top:0;
        margin-left:12px;
    }

    .location{
        margin-top:-10px;
        font-size:16px;
    }

    .rera{
        font-size:13px;
        line-height:20px;
    }

    .heading{
        margin-top:40px;
        font-size:clamp(30px, 9vw, 38px);
    }

    .description{
        width:100%;
        font-size:12px;
        line-height:22px;
    }

    .composition-overview{
        height:auto;
        padding:var(--section-space) 24px;
    }

    .composition{
        width:100%;
        margin-left:0;
        height:auto;
    }

    .project-facts{
        grid-template-columns:1fr;
        gap:var(--grid-gap);
        margin-top:10px;
    }

    .project-fact{
        padding:0;
    }

    .project-fact + .project-fact{
        padding-top:var(--grid-gap);
        border-top:1px solid #dedede;
        border-left:0;
    }

    .fact-value{
        white-space:nowrap;
    }

    .home-sizes{
        height:auto;
        grid-template-columns:1fr;
        grid-template-areas:
            "content"
            "art";
        gap:0;
        padding:64px 24px 0 0;
    }

    .home-sizes-content{
        grid-area:content;
        width:100%;
        padding:0;
        text-align:left;
        transform:none;
    }

    .home-sizes-art{
        grid-area:art;
        min-height:210px;
        align-items:flex-end;
    }

    .home-sizes-leaf{
        width:235px;
    }

    .size-list{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px 0;
    }

    .size-list span{
        flex:0 0 50%;
        padding:0;
        font-size:22px;
    }

    .size-list span:nth-child(3){
        border-left:0;
    }

    .project-location{
        padding:var(--section-space) 24px;
    }

    .section-display-title{
        font-size:25px;
    }

    .project-views .section-display-title{
        font-size:25px;
    }

    .location-highlights .section-display-title{
        font-size:25px;
    }

    .project-carousel{
        gap:0;
    }

    .carousel-viewport{
        width:100%;
    }

    .carousel-button{
        width:34px;
        height:34px;
    }

    .carousel-button-prev{
        left:10px;
    }

    .carousel-button-next{
        right:10px;
    }

    .location-highlights{
        margin-top:88px;
    }

    .location-leaf{
        top:-42px;
        right:-22px;
        width:74px;
    }

    .location-layout{
        grid-template-columns:1fr;
        margin-top:52px;
    }

    .map-pin{
        width:70px;
        height:auto;
    }

    .map-pin img{
        width:70px;
    }

    .location-groups{
        grid-template-columns:1fr;
        gap:42px;
    }

    .location-group{
        width:min(360px, 100%);
        margin:auto;
    }

    .location-group h3{
        margin-bottom:20px;
        text-align:center;
    }

    .enquiry-section{
        width:100%;
        min-height:auto;
        margin-left:0;
        padding:90px 24px;
    }

    .enquiry-title{
        font-size:36px;
    }

    .enquiry-form{
        grid-template-columns:1fr;
        gap:34px;
        max-width:600px;
        margin-top:48px;
    }

    .enquiry-submit{
        grid-column:auto;
        justify-self:start;
        width:136px;
        height:40px;
        margin-top:12px;
        font-size:12px;
    }

    .amenities-section{
        width:100%;
        margin-left:0;
        padding:42px 24px 28px;
    }

    .amenities-title{
        font-size:25px;
    }

    .amenities-carousel{
        width:100%;
        margin-top:18px;
    }

    .amenities-viewport{
        width:100%;
    }

    .amenities-button-prev{
        left:10px;
    }

    .amenities-button-next{
        right:10px;
    }

    .floor-plans-section{
        grid-template-columns:1fr;
        width:100%;
        min-height:auto;
        margin-left:0;
        padding:60px 24px;
    }

    .floor-plan-visual{
        order:2;
        margin-top:44px;
    }

    .floor-plan-visual img{
        width:100%;
        height:auto;
        max-height:720px;
    }

    .floor-plan-details{
        order:1;
        padding:0;
    }

    .floor-plans-title{
        font-size:28px;
        text-align:center;
    }

    .floor-plan-tabs{
        justify-content:center;
        flex-wrap:wrap;
        margin-top:28px;
    }

    .floor-plan-table-wrap{
        margin-top:44px;
    }

    .floor-plan-table{
        min-width:720px;
        font-size:10px;
    }

    .floor-plan-table th{
        height:52px;
        padding:12px 14px;
    }

    .floor-plan-table td{
        height:32px;
        padding:7px 12px;
    }

    .master-plan-section{
        grid-template-columns:1fr;
        width:100%;
        min-height:auto;
        margin-left:0;
        padding:60px 24px;
    }

    .master-plan-visual{
        order:2;
        margin-top:42px;
        justify-content:center;
    }

    .master-plan-visual img{
        width:100%;
        height:auto;
        max-height:720px;
    }

    .master-plan-details{
        order:1;
        width:min(420px, 100%);
        margin:auto;
        padding:0;
    }

    .master-plan-title{
        font-size:28px;
        text-align:center;
    }

    .master-plan-legend-title{
        text-align:center;
    }

    .specifications-section{
        padding:var(--section-space) 24px;
    }

    .specifications-title{
        font-size:28px;
    }

    .specifications-grid{
        grid-template-columns:1fr;
        gap:42px;
        max-width:680px;
        margin:48px auto 0;
    }

    .specifications-column{
        gap:42px;
    }

    .specification-item p{
        margin-top:14px;
    }

    .specification-item h3{
        font-size:18px;
    }

    .specification-item p{
        font-size:14px;
        line-height:1.55;
    }

    .location-map-title{
        font-size:28px;
    }

    .location-map-frame{
        width:100%;
        height:380px;
    }

    .site-footer{
        width:100%;
        padding:var(--section-space) 6%;
    }

    .footer-content{
        grid-template-columns:1fr;
        width:100%;
        row-gap:42px;
    }

    .footer-projects{
        justify-self:start;
        align-items:flex-start;
        text-align:left;
    }

    .footer-projects ul{
        text-align:left;
    }

    .footer-bottom{
        width:100%;
        column-gap:20px;
    }
}

@media (max-width:520px){
    .location-map-frame{
        height:280px;
    }
}

@media (min-width:641px) and (max-width:850px){
    .project-location{
        padding:var(--section-space) 5%;
    }

    .section-display-title{
        font-size:30px;
    }

    .project-views .section-display-title{
        font-size:30px;
    }

    .location-highlights .section-display-title{
        font-size:30px;
    }

    .project-carousel{
        width:min(700px, 100%);
        margin-top:10px;
        gap:28px;
    }

    .carousel-viewport{
        width:min(1180px, calc(100% - 100px));
    }

    .carousel-button{
        width:38px;
        height:38px;
    }

    .carousel-button-prev{
        left:0;
    }

    .carousel-button-next{
        right:0;
    }

    .location-highlights{
        width:min(700px, 100%);
        margin-top:100px;
    }

    .location-leaf{
        top:-30px;
        right:12px;
        width:96px;
    }

    .location-layout{
        grid-template-columns:170px 1fr;
        gap:45px;
        margin-top:38px;
    }

    .map-pin{
        width:84px;
        height:auto;
    }

    .map-pin img{
        width:84px;
    }

    .location-groups{
        grid-template-columns:repeat(3, 1fr);
        gap:32px;
    }

    .location-group{
        width:auto;
        margin:0;
    }

    .location-group h3{
        margin-bottom:22px;
        text-align:left;
    }
}

@media (max-width:520px){
    .logo img{
        width:85px;
    }

    .btn{
        padding:11px 15px;
    }

    .tagline-wrapper{
        min-height:auto;
        display:block;
        padding-right:38px;
    }

    .tagline{
        font-size:40px;
    }

    .leaf{
        position:absolute;
        top:-8px;
        right:-8px;
        width:48px;
        margin:0;
    }

    .heading{
        font-size:30px;
    }

    .enquiry-title{
        font-size:30px;
    }
}

/* ===========================
   Consolidated responsive system
=========================== */

.composition-title,
.section-display-title,
.project-views .section-display-title,
.location-highlights .section-display-title,
.heading,
.enquiry-title,
.amenities-title,
.floor-plans-title,
.master-plan-title,
.specifications-title,
.location-map-title{
    font-size:var(--heading-size);
    line-height:var(--heading-line);
}

.description,
.home-sizes-kicker,
.home-sizes-subtitle,
.footer-column p,
.footer-column address,
.footer-projects li{
    font-size:var(--text-size);
    line-height:var(--text-line);
}

html{
    scroll-behavior:smooth;
}

section[id],
.location-highlights[id]{
    scroll-margin-top:100px;
}

.about,
.project-location,
.enquiry-section,
.amenities-section,
.floor-plans-section,
.master-plan-section,
.specifications-section,
.location-map-section{
    padding-block:var(--section-space);
}

.enquiry-section{
    min-height:0;
}

.composition-overview{
    height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding-top:var(--section-space);
    padding-bottom:var(--section-space);
}

.composition-overview .project-facts{
    width:100%;
    margin:10px 0 0;
    align-items:start;
}

.composition-overview .project-fact{
    min-width:0;
    padding-inline:0;
}

.home-sizes{
    height:450px;
    min-height:450px;
    padding-top:var(--section-space);
    padding-bottom:0;
}

.description{
    margin-top:var(--subtitle-text-gap);
}

.project-carousel,
.location-layout,
.enquiry-form,
.amenities-carousel{
    margin-top:var(--heading-content-gap);
}

.location-highlights{
    margin-top:var(--section-space);
}

.location-groups{
    gap:var(--grid-gap);
}

.location-group li + li{
    margin-top:var(--space-16);
}

.floor-plans-section,
.master-plan-section{
    column-gap:var(--two-column-gap);
}

.floor-plan-tabs{
    margin-top:var(--space-32);
}

.floor-plan-table-wrap{
    margin-top:var(--space-40);
}

.master-plan-legend-title{
    margin-top:var(--subtitle-text-gap);
}

.master-plan-legend{
    margin-top:var(--subtitle-text-gap);
}

.specifications-grid{
    gap:var(--grid-gap);
    margin-top:var(--heading-content-gap);
}

.specifications-column{
    row-gap:calc(var(--card-gap) + 8px);
}

.specification-item{
    gap:var(--space-16);
}

.specification-item p{
    margin-top:var(--space-16);
}

.location-map-frame{
    margin-top:var(--heading-content-gap);
}

.site-footer{
    padding-top:var(--section-space);
    padding-bottom:var(--section-space);
}

.footer-bottom{
    margin-top:60px;
}

/* ===========================
   Large screens / Desktop
=========================== */

@media (min-width:1200px){
    .hero{
        width:var(--container-width);
        max-width:1600px;
    }

    .project-carousel,
    .location-highlights,
    .amenities-carousel{
        max-width:1600px;
    }
}

/* ===========================
   Laptop
=========================== */

@media (max-width:1199px){
    .navbar{
        padding-inline:5%;
    }

    .navbar nav ul{
        gap:18px;
    }

    .navbar nav ul li a,
    .btn{
        font-size:14px;
    }

    .tagline{
        font-size:clamp(58px, 7vw, 80px);
    }

    .location-layout{
        grid-template-columns:150px minmax(0, 1fr);
        column-gap:48px;
    }

    .location-groups{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:var(--grid-gap);
    }

    .location-group:last-child{
        width:auto;
    }

    .floor-plans-section{
        column-gap:48px;
    }
}

/* ===========================
   Tablet
=========================== */

@media (max-width:992px){
    :root{
        --heading-size:26px;
        --heading-line:36px;
        --text-size:14px;
        --text-line:24px;
        --nav-size:15px;
        --button-size:15px;
        --section-space:30px;
        --heading-content-gap:20px;
        --subtitle-text-gap:18px;
        --paragraph-gap:18px;
        --grid-gap:var(--space-40);
        --two-column-gap:var(--space-48);
        --card-gap:28px;
        --button-gap:20px;
    }

    .navbar{
        display:grid;
        grid-template-columns:auto 1fr auto;
        min-height:76px;
        height:76px;
        padding:10px 2.5%;
        flex-wrap:nowrap;
    }

    .logo img{
        width:92px;
    }

    .nav-toggle{
        position:relative;
        z-index:3;
        grid-column:3;
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        width:44px;
        height:44px;
        padding:10px;
        border:0;
        background:transparent;
        cursor:pointer;
    }

    .nav-toggle span{
        display:block;
        width:24px;
        height:2px;
        background:#111;
        transition:transform .25s ease, opacity .25s ease;
    }

    .navbar.menu-open .nav-toggle span:nth-child(1){
        transform:translateY(7px) rotate(45deg);
    }

    .navbar.menu-open .nav-toggle span:nth-child(2){
        opacity:0;
    }

    .navbar.menu-open .nav-toggle span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg);
    }

    .navbar nav{
        position:fixed;
        z-index:2;
        inset:0;
        display:none;
        width:100vw;
        height:100vh;
        height:100dvh;
        margin:0;
        padding:104px 8% 48px;
        overflow-y:auto;
        background:#fff;
        box-shadow:none;
    }

    .navbar.menu-open nav{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        justify-content:center;
    }

    .nav-popup-logo{
        display:block;
        width:min(140px, 58vw);
        margin:0 auto 34px;
    }

    .nav-popup-logo img{
        display:block;
        width:100%;
        height:auto;
    }

    .navbar nav ul{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        width:100%;
        gap:0;
    }

    .navbar nav li + li{
        border-top:1px solid #eee;
    }

    .navbar nav ul li a{
        display:block;
        padding:18px 0;
        font-size:20px;
        line-height:1.3;
    }

    .navbar > .btn{
        display:none;
    }

    .mobile-enquiry{
        display:block;
        width:100%;
        margin-top:28px;
        padding:16px 20px;
        border:0;
        background:#445859;
        color:#fff;
        font:500 14px "Inter", sans-serif;
        cursor:pointer;
    }

    .hero{
        width:var(--container-width);
        margin-top:12px;
    }

    .about{
        padding:var(--section-space) 5%;
    }

    .tagline{
        font-size:clamp(50px, 8vw, 70px);
    }

    .heading{
        font-size:var(--heading-size);
        line-height:var(--heading-line);
    }

    .composition{
        height:auto;
    }

    .composition-overview{
        height:auto;
        padding:var(--section-space) 5%;
    }

    .home-sizes{
        grid-template-columns:minmax(150px, 24%) minmax(0, 1fr);
        height:auto;
        min-height:300px;
        padding-right:5%;
    }

    .home-sizes-leaf{
        width:160px;
    }

    .home-sizes-content{
        width:100%;
        transform:none;
    }

    .size-list span{
        padding-inline:0;
        font-size:24px;
    }

    .project-location{
        padding:var(--section-space) 5%;
    }

    .location-highlights{
        margin-top:var(--section-space);
    }

    .location-layout{
        grid-template-columns:1fr;
        row-gap:var(--grid-gap);
        margin-top:var(--heading-content-gap);
    }

    .map-pin{
        width:100px;
        margin:0 auto;
    }

    .map-pin img{
        width:100px;
    }

    .location-groups{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:var(--grid-gap);
    }

    .location-group:last-child{
        grid-column:1 / -1;
        width:100%;
    }

    .enquiry-section{
        min-height:0;
        padding:var(--section-space) 5%;
    }

    .enquiry-title{
        font-size:var(--heading-size);
        line-height:var(--heading-line);
    }

    .enquiry-form{
        gap:var(--grid-gap);
    }

    .amenities-section{
        padding:var(--section-space) 5%;
    }

    .floor-plans-section{
        grid-template-columns:1fr;
        row-gap:var(--two-column-gap);
        min-height:0;
        padding:var(--section-space) 5%;
    }

    .floor-plan-visual{
        justify-content:center;
    }

    .floor-plan-visual img{
        width:min(680px, 100%);
        height:auto;
    }

    .floor-plan-table-wrap{
        margin-top:40px;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

    .floor-plan-table{
        min-width:720px;
        font-size:10px;
    }

    .floor-plan-table th{
        height:52px;
        padding:12px 14px;
    }

    .floor-plan-table td{
        height:32px;
        padding:7px 12px;
    }

    .master-plan-section{
        grid-template-columns:1fr;
        row-gap:var(--two-column-gap);
        min-height:0;
        padding:var(--section-space) 5%;
    }

    .master-plan-visual{
        order:1;
        justify-content:center;
        margin:0;
    }

    .master-plan-visual img{
        width:min(680px, 100%);
        height:auto;
        max-height:none;
    }

    .master-plan-details{
        order:2;
        width:min(680px, 100%);
        margin:0 auto;
        padding:0;
    }

    .master-plan-title,
    .master-plan-legend-title{
        text-align:left;
    }

    .location-map-frame{
        height:450px;
    }

    .footer-content{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:var(--grid-gap);
    }

    .footer-projects{
        grid-column:1 / -1;
        justify-self:start;
    }
}

/* ===========================
   Mobile
=========================== */

@media (max-width:768px){
    :root{
        --heading-size:18px;
        --heading-line:28px;
        --text-size:14px;
        --text-line:24px;
        --nav-size:14px;
        --button-size:14px;
        --section-space:25px;
        --heading-content-gap:var(--space-16);
        --subtitle-text-gap:var(--space-16);
        --paragraph-gap:var(--space-16);
        --grid-gap:var(--space-24);
        --two-column-gap:var(--space-32);
        --card-gap:var(--space-24);
        --button-gap:var(--space-16);
    }

    .navbar{
        padding-inline:2.5%;
    }

    .navbar nav{
        inset:0;
        width:100vw;
        height:100vh;
        height:100dvh;
    }

    .hero{
        width:var(--container-width);
    }

    .hero img{
        min-height:260px;
        object-fit:cover;
    }

    .about{
        padding:var(--section-space) 5%;
    }

    .project-logo img{
        width:min(150px, 58vw);
    }

    .about-highlights{
        grid-template-columns:1fr;
        justify-content:start;
        width:100%;
        margin-top:10px;
        font-size:13px;
        line-height:1.45;
    }

    .tagline-wrapper{
        padding:0;
    }

    .tagline{
        font-size:clamp(38px, 11vw, 54px);
    }

    .leaf{
        position:static;
        width:60px;
        margin:12px auto 0;
    }

    .project-facts{
        grid-template-columns:1fr;
        gap:var(--grid-gap);
        margin-top:10px;
    }

    .project-fact{
        padding:0;
    }

    .project-fact + .project-fact{
        border-top:1px solid #dedede;
        border-left:0;
        padding-left:0;
    }

    .fact-value{
        font-size:20px;
        white-space:nowrap;
    }

    .home-sizes{
        grid-template-columns:1fr;
        padding:var(--section-space) 5% 0;
    }

    .home-sizes-art{
        justify-content:center;
        max-height:150px;
    }

    .home-sizes-leaf{
        width:130px;
    }

    .home-sizes-content{
        padding:0;
        text-align:left;
    }

    .size-list{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        row-gap:20px;
    }

    .size-list span{
        font-size:18px;
    }

    .size-list span:nth-child(3){
        border-left:0;
    }

    .project-carousel,
    .amenities-carousel{
        width:100%;
    }

    .carousel-viewport,
    .amenities-viewport{
        width:calc(100% - 76px);
    }

    .carousel-button,
    .amenities-button{
        width:34px;
        height:34px;
    }

    .location-leaf{
        display:none;
    }

    .location-groups{
        grid-template-columns:1fr;
        gap:var(--card-gap);
    }

    .location-group:last-child{
        grid-column:auto;
    }

    .location-group h3{
        margin-bottom:20px;
    }

    .enquiry-form{
        grid-template-columns:1fr;
        gap:var(--grid-gap);
        margin-top:var(--heading-content-gap);
    }

    .floor-plan-tabs{
        flex-direction:column;
    }

    .floor-plan-tab{
        width:100%;
    }

    .master-plan-legend li{
        gap:14px;
        font-size:12px;
    }

    .master-plan-legend span{
        flex-basis:26px;
        width:26px;
        height:26px;
        font-size:10px;
    }

    .location-map-frame{
        height:300px;
    }

    .footer-content{
        grid-template-columns:1fr;
        row-gap:var(--grid-gap);
    }

    .footer-column:nth-child(2){
        align-items:flex-start;
    }

    .footer-column:nth-child(2) h2{
        text-align:left;
    }

    .footer-contact-details{
        align-self:flex-start;
    }

    .footer-bottom{
        grid-template-columns:1fr 1fr;
        column-gap:24px;
        font-size:13px;
    }

    .footer-bottom-right{
        grid-column:2;
    }
}

/* ===========================
   Small mobile
=========================== */

@media (max-width:480px){
    .logo img{
        width:82px;
    }

    .floor-plan-table{
        min-width:620px;
        font-size:9px;
    }

    .floor-plan-table th{
        height:46px;
        padding:9px 10px;
        line-height:1.2;
    }

    .floor-plan-table td{
        height:28px;
        padding:6px 10px;
        line-height:1.2;
    }

    .hero img{
        min-height:220px;
    }

    .description{
        line-height:var(--text-line);
    }

    .size-list span{
        padding-inline:0;
        font-size:18px;
    }

    .carousel-viewport,
    .amenities-viewport{
        width:calc(100% - 64px);
    }

    .location-map-frame{
        height:300px;
    }

    .footer-contact-email{
        white-space:normal;
    }
}

/* ===========================
   Global content alignment
   One gutter controls every major page region while backgrounds remain full width.
=========================== */

.navbar nav ul li a{
    font-size:var(--nav-size);
    line-height:normal;
}

.btn,
.mobile-enquiry,
.enquiry-submit,
.floor-plan-tab{
    font-size:var(--button-size);
    line-height:normal;
}

.enquiry-submit{
    justify-self:center;
    width:150px;
    height:44px;
    font-size:13px;
}

.floor-plan-table,
.footer-column p,
.footer-column address,
.footer-projects li,
.footer-bottom{
    font-size:var(--text-size);
    line-height:var(--text-line);
}

.navbar,
.about,
.composition-overview,
.project-location,
.enquiry-section,
.amenities-section,
.floor-plans-section,
.master-plan-section,
.specifications-section,
.site-footer{
    padding-inline:var(--container-gutter);
}

.hero{
    width:var(--container-width);
    max-width:none;
    margin-inline:auto;
}

@media (min-width:1025px){
    .composition-overview{
        display:flex;
        height:auto;
        min-height:0;
        padding-top:var(--section-space);
        padding-bottom:var(--section-space);
    }

    .composition-overview .project-facts{
        position:relative;
        width:min(800px, 100%);
        column-gap:var(--grid-gap);
        margin:10px auto 0;
        align-items:start;
    }

    .composition-overview .project-facts::before{
        content:"";
        position:absolute;
        top:0;
        bottom:0;
        left:50%;
        width:1px;
        background:#dedede;
        transform:translateX(-50%);
    }

    .composition-overview .project-fact{
        display:flex;
        flex-direction:column;
        align-items:center;
        padding:0;
        text-align:center;
    }

    .composition-overview .project-fact + .project-fact{
        border-left:0;
        padding-left:0;
    }

    .composition-overview .fact-label,
    .composition-overview .fact-value{
        width:100%;
    }

    .composition-overview .project-fact:first-child .fact-label{
        padding:0;
        text-align:center;
    }

    .composition-overview .project-fact:last-child .fact-label{
        padding:0;
        text-align:center;
    }

    .composition-overview .project-fact:first-child .fact-value{
        padding:0;
        text-align:center;
    }

    .composition-overview .project-fact:last-child .fact-value{
        padding:0;
        text-align:center;
    }

    .composition-title{
        color:#000;
        font-family:"Allura", cursive;
        font-size:64px;
        font-style:normal;
        font-weight:400;
        line-height:1.15;
        text-align:center;
        margin:0;
    }

    .composition-overview .fact-label{
        margin-bottom:10px;
        font-size:26px;
        line-height:1.2;
    }

    .composition-overview .fact-value{
        margin:0;
        font-size:clamp(18px, 5vw, 28px);
        line-height:1.2;
        white-space:nowrap;
    }

    .leaf{
        width:800px;
        height:auto;
        aspect-ratio:auto;
        position:absolute;
        top:-90px;
        right:-30px;
        margin:0;
        transform:rotate(360deg);
    }
}

.composition::before{
    right:var(--container-gutter);
    left:var(--container-gutter);
}

.home-sizes{
    padding-right:var(--container-gutter);
}

.project-carousel,
.location-highlights,
.enquiry-form,
.amenities-carousel,
.specifications-inner{
    width:100%;
    max-width:none;
}

.location-map-section{
    padding-inline:var(--container-gutter);
}

.home-sizes .home-sizes-kicker,
.home-sizes .home-sizes-subtitle{
    font-size:26px;
    line-height:1.3;
}

.home-sizes-content{
    padding:0;
}

.size-list span{
    font-size:24px;
}

@media (max-width:1024px){
    :root{
        --content-width:95%;
        --heading-size:26px;
        --heading-line:36px;
        --text-size:14px;
        --text-line:24px;
        --nav-size:15px;
        --button-size:15px;
        --section-space:30px;
    }

    .home-sizes .home-sizes-kicker,
    .home-sizes .home-sizes-subtitle{
        font-size:22px;
        line-height:1.3;
    }

    .size-list span{
        font-size:20px;
    }
}

@media (max-width:992px){
    .about .heading{
        font-size:var(--heading-size);
        line-height:var(--heading-line);
    }

    .about .description{
        width:100%;
        font-size:var(--text-size);
        line-height:var(--text-line);
    }
}

@media (max-width:768px){
    :root{
        --heading-size:18px;
        --heading-line:28px;
        --text-size:14px;
        --text-line:24px;
        --nav-size:14px;
        --button-size:14px;
        --section-space:25px;
    }

    .enquire-tab{
        display:none;
    }

    body{
        padding-bottom:calc(54px + env(safe-area-inset-bottom));
    }

    .mobile-sticky-cta{
        position:fixed;
        z-index:1100;
        right:0;
        bottom:0;
        left:0;
        display:grid;
        grid-template-columns:1fr 1fr;
        width:100%;
        padding:0;
        background:transparent;
        box-shadow:none;
    }

    .mobile-sticky-cta a,
    .mobile-sticky-cta button{
        display:flex;
        align-items:center;
        justify-content:center;
        min-height:38px;
        border:1px solid #445859;
        font-family:"Inter", sans-serif;
        font-size:12px;
        font-weight:500;
        line-height:1;
        text-decoration:none;
        cursor:pointer;
    }

    .mobile-sticky-call{
        background:#fff;
        color:#002F63;
    }

    .mobile-sticky-enquiry{
        background:#445859;
        color:#fff;
    }

    .about .heading{
        margin-top:15px;
        margin-bottom:15px;
    }

    .home-sizes .home-sizes-kicker,
    .home-sizes .home-sizes-subtitle{
        font-size:18px;
        line-height:1.35;
    }

    .size-list span{
        font-size:16px;
    }

    .about,
    .location,
    .rera,
    .about .heading,
    .about .description,
    .composition-title,
    .project-fact,
    .home-sizes-content,
    .size-list span,
    .section-display-title,
    .project-views .section-display-title,
    .location-highlights .section-display-title,
    .location-group h3,
    .location-group li,
    .enquiry-title,
    .amenities-title,
    .floor-plans-title,
    .master-plan-title,
    .master-plan-legend-title,
    .master-plan-legend li,
    .specifications-title,
    .specification-item,
    .location-map-title,
    .carousel-count,
    .amenities-count{
        text-align:left;
    }

    .project-logo img,
    .leaf,
    .map-pin,
    .location-group,
    .master-plan-details,
    .specifications-grid{
        margin-left:0;
        margin-right:auto;
    }

    .home-sizes-art,
    .floor-plan-visual,
    .master-plan-visual{
        justify-content:flex-start;
    }

    .map-pin,
    .map-pin.scroll-pop,
    .map-pin.scroll-pop.is-visible{
        display:none;
    }

    .composition-overview,
    .specification-item{
        align-items:flex-start;
    }

    .specification-item h3{
        font-size:16px;
        line-height:1.3;
    }

    .specification-item p{
        font-size:14px;
        line-height:1.55;
    }

    .size-list{
        justify-items:start;
    }

    .carousel-count,
    .amenities-count{
        text-align:center;
    }

    .section-display-title,
    .project-views .section-display-title,
    .location-highlights .section-display-title,
    .amenities-title{
        text-align:center;
    }

    .form-field label{
        font-size:13px;
        line-height:1.3;
    }

    .form-field input,
    .form-field select{
        height:28px;
        font-size:13px;
    }

    .otp-field{
        max-width:190px;
    }

    .otp-field label{
        font-size:12px;
    }

    .otp-field input{
        max-width:140px;
        height:26px;
        font-size:12px;
    }

    .otp-status{
        max-width:190px;
        font-size:11px;
        line-height:1.3;
    }

    .enquiry-submit{
        justify-self:start;
        width:136px;
        height:40px;
        margin-top:12px;
        font-size:12px;
    }

    #project-overview{
        text-align:left;
    }

    #project-overview .project-logo{
        margin-bottom:10px;
    }

    #project-overview .project-logo img{
        margin-left:0;
        margin-right:auto;
    }

    #project-overview .tagline-wrapper{
        display:block;
        padding:0;
        text-align:left;
    }

    #project-overview .tagline,
    #project-overview .location,
    #project-overview .rera,
    #project-overview .heading,
    #project-overview .description{
        width:100%;
        margin-right:0;
        margin-left:0;
        text-align:left;
    }

    #project-overview .tagline{
        margin-top:0;
        margin-bottom:0;
    }

    #project-overview .leaf,
    #project-overview .location,
    #project-overview .rera,
    #project-overview .heading,
    #project-overview .description{
        margin-top:10px;
    }

    #project-overview .leaf{
        display:none;
    }

    #project-overview .heading{
        margin-bottom:10px;
    }
}

/* Final desktop alignment for the home sizes section. */
@media (min-width:1025px){
    .home-sizes{
        display:grid;
        grid-template-columns:32% 68%;
        align-items:center;
        gap:0;
        height:auto;
        padding:0;
        background:#FFFDF8;
    }

    .home-sizes-content{
        justify-self:start;
        width:100%;
        max-width:800px;
        margin:0;
        padding:0;
        text-align:left;
        transform:translate(30px, -18px);
    }

    .home-sizes-art{
        display:flex;
        align-self:stretch;
        align-items:flex-end;
        justify-content:flex-start;
        overflow:hidden;
        padding-right:0;
        pointer-events:none;
    }

    .home-sizes-leaf{
        width:min(300px, 100%);
    }

    .home-sizes .home-sizes-kicker,
    .home-sizes .home-sizes-subtitle{
        font-family:"Be Vietnam Pro", sans-serif;
        font-size:26px;
        font-weight:300;
        line-height:1.3;
    }

    .size-list{
        display:grid;
        grid-template-columns:repeat(5, minmax(0, 1fr));
        width:100%;
        margin-top:50px;
    }

    .size-list span{
        font-size:32px;
        justify-content:flex-start;
        padding:0 18px;
        text-align:left;
    }

    .size-list span:first-child{
        padding-left:0;
    }
}

/* Consistent typography and spacing for Specifications. */
.specifications-section{
    padding-block:90px;
}

.size-list span{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3px;
    font-size:clamp(20px, 2.2vw, 34px);
    text-align:center;
}

.size-list small{
    font-size:.35em;
    line-height:1;
    letter-spacing:.03em;
    align-self:center;
    margin-top:.45em;
    margin-bottom:0;
}

@media (min-width:1025px){
    .size-list span{
        justify-content:flex-start;
        text-align:left;
    }
}

.location-maps{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:28px;
    width:100%;
    margin-bottom:0;
    padding:46px 0 0;
    background:transparent;
}

.location-maps .location-map-section{
    margin:0;
    padding:0;
    background:transparent;
}

.location-maps .location-map-title{
    margin:0 0 18px;
    color:#282828;
    font-family:"Prompt", sans-serif;
    font-size:clamp(20px, 2.2vw, 26px);
    font-weight:500;
    line-height:1.2;
    letter-spacing:.2px;
    text-align:center;
    text-transform:uppercase;
}

.location-maps .location-map-frame{
    height:460px;
    margin:0;
}

@media (max-width:768px){
    .location-maps{
        grid-template-columns:1fr;
        gap:34px;
    }

    .location-maps .location-map-frame{
        height:320px;
    }
}

.site-footer{
    padding-top:var(--section-space);
    padding-bottom:25px;
}

.enquiry-popup-open{
    overflow:hidden;
}

.enquiry-popup{
    position:fixed;
    inset:0;
    z-index:9998;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:0;
    margin:0;
    padding:18px;
    background:rgba(0, 0, 0, .68);
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease;
}

.enquiry-popup.active{
    opacity:1;
    pointer-events:auto;
}

.enquiry-popup-card{
    position:relative;
    width:min(560px, 100%);
    max-height:calc(100vh - 36px);
    overflow-y:auto;
    border-radius:18px;
    background:#fff;
    box-shadow:0 28px 90px rgba(0, 0, 0, .35);
}

.enquiry-popup-title,
.enquiry-popup-form,
.enquiry-popup-close{
    position:relative;
    z-index:1;
}

.enquiry-popup-title{
    width:100%;
    margin:0 auto;
    padding:28px 56px 0;
    background:#fff;
    font-size:clamp(16px, 2vw, 22px);
    line-height:1.2;
    text-align:center;
    text-transform:uppercase;
    color:#282828;
}

.enquiry-popup-form{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px 22px;
    width:100%;
    max-height:none;
    margin:0 auto;
    padding:22px 28px 28px;
    overflow:visible;
    border-radius:0;
    background:#fff;
    box-shadow:none;
}

.enquiry-popup-close{
    position:absolute;
    top:12px;
    right:14px;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#445859;
    color:#fff;
    font-size:28px;
    line-height:1;
    cursor:pointer;
}

.enquiry-actions{
    grid-column:1 / -1;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
    margin-top:4px;
}

.enquiry-actions .enquiry-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:auto;
    min-width:145px;
    height:42px;
    margin:0;
    padding:0 18px;
    border-radius:0;
    font-family:"Inter", sans-serif;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
}

@media (max-width:640px){
    .enquiry-popup{
        padding:12px;
    }

    .enquiry-popup-card{
        max-height:calc(100vh - 24px);
    }

    .enquiry-popup-title{
        padding:24px 50px 0 22px;
        text-align:left;
    }

    .enquiry-popup-form{
        grid-template-columns:1fr;
        gap:14px;
        padding:18px 22px 22px;
    }

    .otp-field,
    .otp-field input{
        max-width:none;
    }

    .enquiry-popup-close{
        top:20px;
        right:20px;
    }

    .enquiry-actions .enquiry-submit{
        width:100%;
    }
}

.specifications-grid{
    margin-top:60px;
    column-gap:80px;
}

.specifications-column{
    row-gap:48px;
}

.specification-item h3{
    line-height:1.3;
}

.specification-item p{
    margin-top:10px;
    line-height:1.6;
}

@media (max-width:992px){
    .specifications-section{
        padding-block:40px;
    }

    .specifications-grid{
        margin-top:36px;
        gap:36px;
    }

    .specifications-column{
        row-gap:36px;
    }

    .specification-item p{
        margin-top:8px;
        line-height:1.55;
    }
}

/* Give Location Highlights more vertical presence. */
.location-highlights{
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:650px;
    padding-block:90px;
}

.location-highlights .location-layout{
    align-items:center;
}

.location-highlights .map-pin{
    margin-top:0;
    margin-bottom:0;
}

@media (max-width:992px){
    .location-highlights{
        display:block;
        min-height:0;
        padding-block:40px;
    }
}

@media (min-width:1025px){
    .location-highlights .section-display-title{
        position:relative;
        top:-20px;
    }

    .location-highlights .location-layout{
        grid-template-columns:170px minmax(0, 1fr);
        column-gap:60px;
        align-items:stretch;
        width:100%;
    }

    .location-highlights .location-groups{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        column-gap:50px;
        align-items:start;
        width:100%;
    }

    .location-highlights .location-group,
    .location-highlights .location-group:last-child{
        width:auto;
        margin:0;
        align-self:start;
    }

    .location-highlights .location-group h3{
        width:100%;
    }

    .location-highlights .location-group li{
        width:100%;
    }

    .location-highlights .map-pin{
        align-self:center;
        justify-self:start;
        margin:0;
    }

    .location-highlights .location-leaf{
        top:0;
        right:0;
    }
}

/* Final Figma implementation: node 1554:62. */
@media (min-width:1400px){
    .container > .location-highlights{
        display:flex;
        flex-direction:column;
        justify-content:center;
        width:90%;
        max-width:1720px;
        min-height:650px;
        margin-right:auto;
        margin-left:auto;
        padding:70px 0 60px;
    }

    .location-highlights .section-display-title{
        position:static;
        width:auto;
        margin:0 0 0 370px;
        color:#000;
        font-size:32px;
        text-align:left;
        opacity:.8;
        transform:none;
    }

    .location-highlights .location-layout{
        display:grid;
        grid-template-columns:170px minmax(0, 1fr);
        column-gap:200px;
        align-items:center;
        width:100%;
        margin-top:96px;
    }

    .location-highlights .location-groups{
        display:grid;
        grid-template-columns:minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1.25fr);
        column-gap:0;
        align-items:start;
        width:90%;
        justify-self:start;
    }

    .location-highlights .location-group,
    .location-highlights .location-group:last-child{
        width:auto;
        min-width:0;
        margin:0;
        align-self:start;
    }

    .location-highlights .location-group h3{
        width:100%;
        margin:0 0 54px;
        color:#000;
        font-size:18px;
        opacity:.8;
    }

    .location-highlights .location-group ul{
        display:grid;
        row-gap:9px;
    }

    .location-highlights .location-group li{
        display:flex;
        align-items:center;
        width:100%;
        min-height:36px;
        gap:14px;
        margin:0;
        color:#000;
        font-size:14px;
    }

    .location-highlights .location-group li span{
        flex:0 0 36px;
        width:36px;
        height:36px;
        border-radius:0;
        background:transparent url("../images/figma-time-badge.svg") center/36px 36px no-repeat;
        color:#000;
        font-size:10px;
    }

    .location-highlights .location-group li span::after{
        margin-top:1px;
        color:#000;
    }

    .location-highlights .map-pin{
        align-self:center;
        justify-self:start;
        width:170px;
        margin:0 0 0 30px;
        filter:none;
    }

    .location-highlights .map-pin img{
        width:170px;
        height:270px;
    }

    .location-highlights .location-leaf{
        top:20px;
        right:10px;
        width:110px;
        height:auto;
        object-fit:contain;
        transform:rotate(320deg) scaleX(-1);
        transform-origin:center;
    }
}

/* Final responsive layout standards. */
:root{
    --content-width:90%;
    --heading-content-gap:20px;
    --button-gap:20px;
}

.navbar,
.about,
.composition-overview,
.project-location,
.amenities-section,
.specifications-section,
.floor-plans-section,
.master-plan-section,
.location-highlights,
.location-maps,
.enquiry-section,
.site-footer{
    padding-left:var(--container-gutter);
    padding-right:var(--container-gutter);
}

.home-sizes{
    width:100%;
    padding-left:0;
    padding-right:0;
}

.hero{
    width:var(--container-width);
    margin-left:auto;
    margin-right:auto;
}

.about,
.composition-overview,
.project-location,
.amenities-section,
.specifications-section,
.floor-plans-section,
.master-plan-section,
.location-highlights,
.enquiry-section{
    padding-top:var(--section-space);
    padding-bottom:var(--section-space);
}

.composition-title,
.section-display-title,
.project-views .section-display-title,
.location-highlights .section-display-title,
.heading,
.enquiry-title,
.amenities-title,
.floor-plans-title,
.master-plan-title,
.specifications-title,
.location-map-title{
    margin-bottom:var(--heading-content-gap);
}

.btn,
.mobile-enquiry,
.enquiry-submit{
    min-height:44px;
}

.project-carousel,
.location-layout,
.enquiry-form,
.amenities-carousel,
.specifications-grid,
.location-map-frame{
    margin-top:var(--heading-content-gap);
}

.floor-plan-tabs,
.floor-plan-table-wrap,
.master-plan-legend-title,
.master-plan-legend{
    margin-top:var(--heading-content-gap);
}

@media (max-width:1024px){
    :root{
        --content-width:95%;
        --heading-content-gap:15px;
        --button-gap:15px;
    }
}

@media (max-width:768px){
    .about,
    .composition,
    .project-location,
    .home-sizes,
    .amenities-section,
    .specifications-section,
    .floor-plans-section,
    .master-plan-section,
    .location-highlights,
    .location-maps,
    .enquiry-section{
        border-top:1px solid #e5e5e5;
    }
}
