@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dancing+Script:wght@400..700&family=Dosis:wght@200..800&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');

:root {
    /* =====================================================
       GARDEN ENCLAVE — BROCHURE COLOUR PALETTE
       ===================================================== */

    /* Primary Brand */
    --ge-navy: #03152F;
    --ge-navy-dark: #020F22;

    /* Brochure Gold */
    --ge-gold: #C49A46;
    --ge-gold-light: #D5B467;

    /* Text */
    --ge-white: #FFFFFF;
    --ge-white-soft: #F4F2ED;

    /* Light Sections */
    --ge-cream: #F5F2EB;

    /* Body */
    --ge-text: #202020;
    --ge-muted: #6D6D6D;

    /* Borders */
    --ge-border: rgba(196, 154, 70, 0.35);

    /* Typography */
    --ge-display-font: "Cormorant Garamond", Georgia, serif;
    --ge-body-font: "Montserrat", Arial, sans-serif;
}
/* =========================================================
   HEADER
   ========================================================= */

.ge-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;

    width: 100%;

    background: transparent;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Header when page is scrolled */

.ge-header.scrolled {
    background: rgba(3, 21, 47, 0.97);

    border-bottom: 1px solid var(--ge-border);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}


/* Header hidden while scrolling down */

.ge-header.header-hidden {
    transform: translateY(-100%);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.ge-header .navbar {
    min-height: 88px;
    padding: 0;
}


/* =========================================================
   LOGO
   ========================================================= */

.ge-header-logo {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    color: var(--ge-white) !important;

    line-height: 1;
}

.ge-logo-main {
    font-family: var(--ge-display-font);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.ge-logo-location {
    margin-top: 6px;

    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.25em;

    color: var(--ge-gold);
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.ge-header-nav {
    gap: 8px;
}

.ge-header-nav .nav-link {
    position: relative;

    padding: 10px 14px !important;

    color: rgba(255, 255, 255, 0.9) !important;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition: color 0.3s ease;
}


/* Gold hover underline */

.ge-header-nav .nav-link::after {
    content: "";

    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;

    height: 1px;

    background: var(--ge-gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

.ge-header-nav .nav-link:hover {
    color: var(--ge-gold) !important;
}

.ge-header-nav .nav-link:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.ge-header-btn {
    min-height: 42px;
    padding: 0 20px;

    font-size: 10px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.ge-menu-toggle {
    width: 44px;
    height: 44px;

    padding: 8px;

    border: 0 !important;

    box-shadow: none !important;
}

.ge-menu-toggle span {
    display: block;

    width: 24px;
    height: 1px;

    margin: 5px auto;

    background: var(--ge-white);

    transition: all 0.3s ease;
}


/* =========================================================
   MOBILE OFFCANVAS
   ========================================================= */

.ge-mobile-menu {
    width: min(85%, 360px);

    background: var(--ge-navy);

    color: var(--ge-white);
}

.ge-mobile-menu .offcanvas-header {
    padding: 28px 24px;

    border-bottom: 1px solid var(--ge-border);
}

.ge-mobile-logo {
    font-family: var(--ge-display-font);
    font-size: 24px;
    letter-spacing: 0.05em;
}

.ge-mobile-location {
    margin-top: 5px;

    font-size: 8px;
    letter-spacing: 0.2em;

    color: var(--ge-gold);
}

.ge-mobile-close {
    filter: invert(1);
    opacity: 0.8;
}

.ge-mobile-nav {
    margin-top: 20px;
}

.ge-mobile-nav .nav-link {
    padding: 17px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    color: var(--ge-white) !important;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ge-mobile-nav .nav-link:hover {
    color: var(--ge-gold) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-header .navbar {
        min-height: 76px;
    }

    .ge-logo-main {
        font-size: 22px;
    }

    .ge-logo-location {
        font-size: 7px;
    }

    .ge-header.scrolled {
        background: rgba(3, 21, 47, 0.98);
    }
}


@media (max-width: 575.98px) {

    .ge-header .navbar {
        min-height: 70px;
    }

    .ge-logo-main {
        font-size: 20px;
    }

    .ge-header .container {
        padding-left: 18px;
        padding-right: 18px;
    }
}
/* =========================================================
   GARDEN ENCLAVE — HERO / BANNER
   ========================================================= */

.ge-hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    background-color: var(--ge-navy);

    color: var(--ge-white);

    overflow: hidden;
}


/* =========================================================
   HERO BACKGROUND IMAGE
   ========================================================= */

.ge-hero-bg {
    z-index: 0;
}

.ge-hero-bg-image {
    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   HERO OVERLAY
   Darker towards the content side while keeping
   the building/image visible.
   ========================================================= */

.ge-hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(3, 21, 47, 0.08) 0%,
        rgba(3, 21, 47, 0.18) 35%,
        rgba(3, 21, 47, 0.48) 55%,
        rgba(3, 21, 47, 0.78) 72%,
        rgba(3, 21, 47, 0.94) 100%
    );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.ge-hero-content {
    padding-top: 70px;
}


/* =========================================================
   HERO EYEBROW
   ========================================================= */

.ge-hero-eyebrow {
    margin: 0;

    font-family: var(--ge-body-font);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* =========================================================
   HERO MAIN TITLE
   ========================================================= */

.ge-hero-title {
    margin: 0;

    font-family: var(--ge-display-font);
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 500;
    line-height: 0.98;

    letter-spacing: -0.025em;

    color: var(--ge-white);
}


/* =========================================================
   GOLD DIVIDER
   ========================================================= */

.ge-hero-content .gold-line {
    width: 45px;
    height: 1px;

    background: var(--ge-gold);
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.ge-hero-description {
  max-width: 580px;

    font-family: var(--ge-body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.84);
}


/* =========================================================
   CARPET AREA
   ========================================================= */

.ge-hero-area {
    margin: 32px 0 34px;
}


.ge-hero-area-number {
    font-family: var(--ge-display-font);
    font-size: clamp(58px, 5vw, 76px);
    font-weight: 500;
    line-height: 0.8;

    color: var(--ge-gold);
}


.ge-hero-area-unit {
    padding-bottom: 3px;

    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.6;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--ge-white);
}
/* =========================================================
   GARDEN ENCLAVE — GLOBAL BUTTON
   ========================================================= */

.ge-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 28px;

    border: 1px solid var(--ge-gold);

    font-family: var(--ge-body-font);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Primary Gold Button */

.ge-btn-primary {
    color: var(--ge-navy);
    background-color: var(--ge-gold);
}

.ge-btn-primary:hover {
    color: var(--ge-white);
    background-color: transparent;
    border-color: var(--ge-gold);
}


/* Outline Button */

.ge-btn-outline {
    color: var(--ge-gold);
    background-color: transparent;
}

.ge-btn-outline:hover {
    color: var(--ge-navy);
    background-color: var(--ge-gold);
}


/* Mobile */

@media (max-width: 575.98px) {

    .ge-btn {
        min-height: 44px;
        padding: 0 22px;
        font-size: 10px;
    }

}

/* =========================================================
   GARDEN ENCLAVE — HERO / BANNER
   ========================================================= */

.ge-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;

    background-color: var(--ge-navy);
    color: var(--ge-white);

    overflow: hidden;
}


/* =========================================================
   BACKGROUND IMAGE
   ========================================================= */

.ge-hero-bg {
    z-index: 0;
}

.ge-hero-bg-image {
    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   HERO OVERLAY
   Full-width navy gradient.
   Kept lighter on the image and progressively darker
   towards the content on the right.
   ========================================================= */

.ge-hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(3, 21, 47, 0.08) 0%,
        rgba(3, 21, 47, 0.16) 22%,
        rgba(3, 21, 47, 0.32) 38%,
        rgba(3, 21, 47, 0.55) 52%,
        rgba(3, 21, 47, 0.76) 66%,
        rgba(3, 21, 47, 0.91) 82%,
        rgba(3, 21, 47, 0.97) 100%
    );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.ge-hero-content {
    max-width: 680px;

    padding-top: 70px;
    padding-bottom: 40px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.ge-hero-eyebrow {
    margin: 0;

    font-family: var(--ge-body-font);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* =========================================================
   MAIN HERO TITLE
   ========================================================= */

.ge-hero-title {
    max-width: 620px;

    margin: 0;

    font-family: var(--ge-display-font);
    font-size: clamp(48px, 4.7vw, 72px);
    font-weight: 500;
    line-height: 0.98;

    letter-spacing: -0.02em;

    color: var(--ge-white);

    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   GOLD DIVIDER
   ========================================================= */

.ge-hero-content .gold-line {
    width: 46px;
    height: 1px;

    margin-top: 24px !important;
    margin-bottom: 22px !important;

    background: var(--ge-gold);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.ge-hero-description {
    max-width: 580px;

    margin: 0;

    font-family: var(--ge-body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;

    color: rgba(255, 255, 255, 0.94);

    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   CARPET AREA
   ========================================================= */

.ge-hero-area {
    margin-top: 30px;
    margin-bottom: 32px;
}


.ge-hero-area-number {
    font-family: var(--ge-display-font);
    font-size: clamp(58px, 5vw, 76px);
    font-weight: 500;
    line-height: 0.8;

    color: var(--ge-gold);

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
}


.ge-hero-area-unit {
    padding-bottom: 4px;

    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.6;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--ge-white);
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

    .ge-hero-content {
        max-width: 700px;
    }

    .ge-hero-title {
        max-width: 650px;
        font-size: 78px;
    }

    .ge-hero-description {
        max-width: 600px;
        font-size: 15px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(3, 21, 47, 0.10) 0%,
            rgba(3, 21, 47, 0.22) 25%,
            rgba(3, 21, 47, 0.42) 42%,
            rgba(3, 21, 47, 0.62) 58%,
            rgba(3, 21, 47, 0.84) 75%,
            rgba(3, 21, 47, 0.96) 100%
        );
    }

    .ge-hero-content {
        max-width: 620px;
        padding-top: 100px;
    }

    .ge-hero-title {
        font-size: 60px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-hero {
        min-height: 720px;
    }


    /* Content moves towards bottom */

    .ge-hero .row {
        align-items: flex-end !important;
    }


    .ge-hero-content {
        max-width: 100%;

        padding-top: 120px;
        padding-bottom: 50px;
    }


    /* Vertical overlay for mobile */

    .ge-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(3, 21, 47, 0.04) 5%,
            rgba(3, 21, 47, 0.10) 25%,
            rgba(3, 21, 47, 0.28) 42%,
            rgba(3, 21, 47, 0.55) 57%,
            rgba(3, 21, 47, 0.80) 72%,
            rgba(3, 21, 47, 0.95) 88%,
            rgba(3, 21, 47, 0.99) 100%
        );
    }


    .ge-hero-title {
        max-width: 100%;

        font-size: 50px;
        line-height: 0.95;
    }


    .ge-hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.12em;
    }


    .ge-hero-description {
        max-width: 100%;

        font-size: 13px;
        line-height: 1.7;
    }


    .ge-hero-area {
        margin-top: 26px;
        margin-bottom: 30px;
    }


    .ge-hero-area-number {
        font-size: 64px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .ge-hero {
        min-height: 680px;
    }


    .ge-hero-content {
        padding-top: 110px;
        padding-bottom: 42px;
    }


    .ge-hero-title {
        font-size: 46px;
    }


    .ge-hero-description {
        font-size: 12.5px;
    }


    .ge-hero-area-number {
        font-size: 60px;
    }

}
/* =========================================================
   ABOUT / WHY GARDEN ENCLAVE
   ========================================================= */

.ge-about {
    position: relative;

  

    background: var(--ge-cream);

    overflow: hidden;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.ge-about-content {
    position: relative;

    z-index: 2;

    padding-right: 70px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.ge-about-eyebrow {
    margin: 0 0 18px;

    font-family: var(--ge-body-font);

    font-size: 11px;
    font-weight: 600;

    line-height: 1.5;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.ge-about-title {
    max-width: 600px;

    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(52px, 5vw, 72px);
    font-weight: 500;

    line-height: 0.94;

    letter-spacing: -0.025em;

    color: var(--ge-navy);
}


/* =========================================================
   GOLD DIVIDER
   ========================================================= */

.ge-about-line {
    width: 48px;
    height: 1px;

    margin: 30px 0 25px;

    background: var(--ge-gold);
}


/* =========================================================
   LEAD
   ========================================================= */

.ge-about-lead {
    max-width: 540px;

    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(24px, 2.2vw, 31px);
    font-weight: 500;

    line-height: 1.25;

    color: var(--ge-navy);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.ge-about-description {
    max-width: 530px;

    margin: 20px 0 0;

    font-family: var(--ge-body-font);

    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;

    color: var(--ge-text);
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.ge-about-image-wrap {
    position: relative;

    padding-left: 20px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.ge-about-image {
    width: 100%;
    height: 650px;

    overflow: hidden;
}

.ge-about-image img {
    object-position: center center;

    transition: transform 0.7s ease;
}

.ge-about-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   LEGACY BOX
   ========================================================= */

.ge-about-legacy {
    position: absolute;

    left: -70px;
    bottom: 55px;

    z-index: 5;

    width: 400px;

    padding: 34px 38px 36px;

    background: var(--ge-navy);

    box-shadow: 0 18px 45px rgba(3, 21, 47, 0.18);
}


/* =========================================================
   4+ NUMBER
   ========================================================= */

.ge-about-number {
    font-family: var(--ge-display-font);

    font-size: 92px;
    font-weight: 500;

    line-height: 0.72;

    color: var(--ge-gold);
}


/* =========================================================
   DECADES
   ========================================================= */

.ge-about-decades {
    padding-bottom: 5px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--ge-white);
}


/* =========================================================
   LEGACY TITLE
   ========================================================= */

.ge-about-legacy-title {
    margin: 25px 0 0;

    font-family: var(--ge-display-font);

    font-size: 34px;
    font-weight: 500;

    line-height: 1.05;

    color: var(--ge-white);
}


/* =========================================================
   TOMORROW
   ========================================================= */

.ge-about-tomorrow {
    margin-top: 16px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    line-height: 1.6;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

   
    .ge-about-content {
        padding-right: 90px;
    }

    .ge-about-title {
        font-size: 76px;
    }

    .ge-about-image {
        height: 700px;
    }

    .ge-about-legacy {
        left: -90px;
        bottom: 65px;

        width: 430px;

        padding: 38px 42px 40px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-about {
        padding: 90px 0;
    }

    .ge-about-content {
        padding-right: 35px;
    }

    .ge-about-title {
        font-size: 58px;
    }

    .ge-about-image-wrap {
        padding-left: 0;
    }

    .ge-about-image {
        height: 560px;
    }

    .ge-about-legacy {
        left: -45px;
        bottom: 40px;

        width: 360px;

        padding: 30px 32px;
    }

    .ge-about-number {
        font-size: 80px;
    }

    .ge-about-legacy-title {
        font-size: 30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-about {
        padding: 70px 0;
    }

    .ge-about-content {
        padding-right: 0;

        margin-bottom: 45px;
    }

    .ge-about-title {
        font-size: 48px;
    }

    .ge-about-lead {
        font-size: 24px;
    }

    .ge-about-description {
        font-size: 13px;
    }

    .ge-about-image-wrap {
        padding-left: 0;
    }

    .ge-about-image {
        height: 430px;
    }

    /*
       On mobile the box still overlaps
       the image, but from the bottom.
    */

    .ge-about-legacy {
        left: 20px;
        bottom: -45px;

        width: calc(100% - 40px);

        padding: 27px 25px 30px;
    }

    .ge-about-number {
        font-size: 70px;
    }

    .ge-about-legacy-title {
        font-size: 28px;
    }

    .ge-about-tomorrow {
        font-size: 9px;
    }

    /*
       Give the section enough space for
       the overlapping box.
    */

    .ge-about-image-wrap {
        padding-bottom: 45px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .ge-about {
        padding: 60px 0;
    }

    .ge-about-title {
        font-size: 43px;
    }

    .ge-about-image {
        height: 360px;
    }

    .ge-about-legacy {
        left: 15px;

        width: calc(100% - 30px);

        padding: 25px 22px 28px;
    }

    .ge-about-number {
        font-size: 64px;
    }

    .ge-about-legacy-title {
        font-size: 25px;
    }

}
/* =========================================================
   AMENITIES SECTION
   ========================================================= */

.ge-amenities {
   
    background: var(--ge-cream);

    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.ge-amenities-heading {
    max-width: 850px;
    margin-bottom: 45px;
}


.ge-section-eyebrow {
    margin: 0 0 16px;

    font-family: var(--ge-body-font);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.24em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


.ge-amenities-title {
    margin: 0;

    font-family: var(--ge-display-font);
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 500;

    line-height: 1.02;
    letter-spacing: -0.025em;

    color: var(--ge-navy);
}


/* =========================================================
   CAROUSEL
   ========================================================= */

.ge-amenities-carousel {
    position: relative;
}


/* =========================================================
   SLIDE
   ========================================================= */

.ge-amenity-slide {
    position: relative;

    height: 570px;

    overflow: hidden;

    border-radius: 24px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.ge-amenity-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.ge-amenity-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 21, 47, 0.94) 0%,
            rgba(3, 21, 47, 0.78) 25%,
            rgba(3, 21, 47, 0.35) 48%,
            rgba(3, 21, 47, 0.04) 75%,
            rgba(3, 21, 47, 0.10) 100%
        );
}


/* =========================================================
   SLIDE CONTENT
   ========================================================= */

.ge-amenity-content {
    position: absolute;

    left: 8%;
    top: 50%;

    width: 390px;

    transform: translateY(-50%);

    z-index: 2;

    color: var(--ge-white);
}


/* Number */

.ge-amenity-number {
    margin-bottom: 2px;

    font-family: var(--ge-display-font);

    font-size: 76px;
    font-weight: 500;

    line-height: 0.8;

    color: rgba(255, 255, 255, 0.18);
}


/* Category */

.ge-amenity-category {
    margin-top: 8px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* Amenity title */

.ge-amenity-title {
    margin: 14px 0 0;

    font-family: var(--ge-display-font);

    font-size: clamp(48px, 5vw, 68px);
    font-weight: 500;

    line-height: 0.95;
    letter-spacing: -0.02em;

    color: var(--ge-white);
}


/* Gold divider */

.ge-amenity-line {
    width: 44px;
    height: 1px;

    margin: 24px 0 18px;

    background: var(--ge-gold);
}


/* Description */

.ge-amenity-description {
    max-width: 360px;

    margin: 0;

    font-family: var(--ge-body-font);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   ARROWS
   ========================================================= */

.ge-amenity-arrow {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--ge-gold);
    border-radius: 50%;

    background: rgba(3, 21, 47, 0.55);

    color: var(--ge-white);

    transform: translateY(-50%);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.ge-amenity-arrow:hover {
    background: var(--ge-gold);
    color: var(--ge-navy);
}


.ge-amenity-arrow i {
    font-size: 17px;
}


.ge-amenity-prev {
    left: 24px;
}


.ge-amenity-next {
    right: 24px;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.ge-amenity-indicators {
    position: absolute;

    bottom: 20px;

    left: 50%;

    width: auto;

    margin: 0;

    transform: translateX(-50%);

    z-index: 5;

    gap: 9px;
}


.ge-amenity-indicators button {
    width: 7px;
    height: 7px;

    margin: 0 !important;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.65);

    opacity: 1;

    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}


.ge-amenity-indicators button.active {
    width: 28px;

    border-radius: 20px;

    background-color: var(--ge-gold);
}


/* =========================================================
   AMENITY NAVIGATION
   ========================================================= */

.ge-amenity-nav {
    display: flex;

    margin-top: 42px;

    border-top: 1px solid var(--ge-border);
    border-bottom: 1px solid var(--ge-border);

    overflow-x: auto;

    scrollbar-width: none;
}


.ge-amenity-nav::-webkit-scrollbar {
    display: none;
}


.ge-amenity-nav-item {
    position: relative;

    flex: 1 0 140px;

    min-height: 115px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 18px 12px;

    border: 0;
    border-right: 1px solid var(--ge-border);

    background: transparent;

    font-family: var(--ge-body-font);

    color: var(--ge-navy);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.ge-amenity-nav-item:first-child {
    border-left: 1px solid var(--ge-border);
}


.ge-amenity-nav-item i {
    font-size: 25px;

    color: var(--ge-gold);

    transition: color 0.3s ease;
}


.ge-amenity-nav-item span {
    font-size: 11px;
    font-weight: 600;

    line-height: 1.35;

    text-align: center;
}


.ge-amenity-nav-item:hover,
.ge-amenity-nav-item.active {
    background: var(--ge-navy);
    color: var(--ge-white);
}


.ge-amenity-nav-item:hover i,
.ge-amenity-nav-item.active i {
    color: var(--ge-gold);
}


/* =========================================================
   CAROUSEL FADE
   ========================================================= */

.ge-amenities-carousel .carousel-item {
    transition:
        opacity 0.7s ease-in-out;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  
    .ge-amenity-slide {
        height: 620px;
    }

    .ge-amenity-content {
        left: 8%;
        width: 440px;
    }

    .ge-amenity-title {
        font-size: 76px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-amenities {
        padding: 90px 0 70px;
    }

    .ge-amenity-slide {
        height: 520px;
    }

    .ge-amenity-content {
        left: 7%;
        width: 350px;
    }

    .ge-amenity-title {
        font-size: 54px;
    }

    .ge-amenity-number {
        font-size: 65px;
    }

    .ge-amenity-nav-item {
        flex-basis: 130px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-amenities {
        padding: 70px 0 55px;
    }


    .ge-amenities-heading {
        margin-bottom: 30px;
    }


    .ge-amenities-title {
        font-size: 43px;
        line-height: 1;
    }


    .ge-amenity-slide {
        height: 500px;

        border-radius: 18px;
    }


    .ge-amenity-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 21, 47, 0.10) 0%,
                rgba(3, 21, 47, 0.20) 30%,
                rgba(3, 21, 47, 0.78) 68%,
                rgba(3, 21, 47, 0.96) 100%
            );
    }


    .ge-amenity-content {
        left: 25px;
        right: 25px;
        bottom: 50px;
        top: auto;

        width: auto;

        transform: none;
    }


    .ge-amenity-number {
        font-size: 58px;
    }


    .ge-amenity-title {
        font-size: 47px;
    }


    .ge-amenity-description {
        max-width: 100%;
        font-size: 12px;
    }


    .ge-amenity-arrow {
        width: 42px;
        height: 42px;

        top: auto;
        bottom: 25px;

        transform: none;
    }


    .ge-amenity-prev {
        left: auto;
        right: 78px;
    }


    .ge-amenity-next {
        right: 25px;
    }


    .ge-amenity-indicators {
        bottom: 18px;
        left: 50%;
    }


    /*
       Horizontal amenity navigation
       becomes scrollable on mobile.
    */

    .ge-amenity-nav {
        margin-top: 30px;
    }


    .ge-amenity-nav-item {
        flex: 0 0 125px;
        min-height: 105px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .ge-amenity-slide {
        height: 460px;
    }

    .ge-amenity-content {
        left: 20px;
        right: 20px;
        bottom: 45px;
    }

    .ge-amenity-title {
        font-size: 42px;
    }

    .ge-amenity-number {
        font-size: 52px;
    }

    .ge-amenity-category {
        font-size: 9px;
    }

    .ge-amenity-description {
        font-size: 11.5px;
    }

}
/* =========================================================
   CTA / VISUAL SEPARATOR
   ========================================================= */

.ge-cta {
    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(3, 21, 47, 0.96),
            rgba(3, 21, 47, 0.90)
        ),
        url("../images/cta-bg.jpg") center / cover no-repeat;

    overflow: hidden;
}


/* =========================================================
   SUBTLE OVERLAY
   ========================================================= */

.ge-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(184, 143, 54, 0.08),
            transparent 60%
        );

    pointer-events: none;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.ge-cta-eyebrow {
    margin: 0 0 12px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* =========================================================
   TITLE
   ========================================================= */

.ge-cta-title {
    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.02em;

    color: var(--ge-white);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.ge-cta-description {
    max-width: 650px;

    margin: 20px auto 0;

    font-family: var(--ge-body-font);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   OUTLINE BUTTON
   Uses the same global button system but gives
   the secondary CTA a lighter treatment.
   ========================================================= */

.ge-cta .ge-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);

    color: var(--ge-white);

    background: transparent;
}

.ge-cta .ge-btn-outline:hover {
    border-color: var(--ge-gold);

    background: var(--ge-gold);

    color: var(--ge-navy);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-cta-title {
        font-size: 42px;
    }

    .ge-cta-description {
        font-size: 12px;
    }

    .ge-cta .ge-btn {
        width: 100%;
        max-width: 250px;
    }

}
/* =========================================================
   FOOTER
   ========================================================= */

.ge-footer {
    background: var(--ge-navy);
    color: var(--ge-white);
}


/* =========================================================
   BRAND
   ========================================================= */

.ge-footer-logo {
    display: inline-block;

    font-family: var(--ge-display-font);

    font-size: 30px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.04em;

    color: var(--ge-white);

    text-decoration: none;
}


.ge-footer-tagline {
    margin: 20px 0 0;

    font-family: var(--ge-display-font);

    font-size: 22px;
    font-weight: 400;

    line-height: 1.25;

    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.ge-footer-heading {
    margin: 0 0 22px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* =========================================================
   LINKS
   ========================================================= */

.ge-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}


.ge-footer-links li {
    margin-bottom: 12px;
}


.ge-footer-links a {
    font-family: var(--ge-body-font);

    font-size: 12px;
    font-weight: 400;

    color: rgba(255, 255, 255, 0.72);

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


.ge-footer-links a:hover {
    padding-left: 4px;

    color: var(--ge-gold);
}


/* =========================================================
   CONTACT
   ========================================================= */

.ge-footer-contact {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.ge-footer-contact p {
    margin: 0 0 5px;

    font-family: var(--ge-body-font);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}


.ge-footer-contact a {
    font-family: var(--ge-body-font);

    font-size: 12px;

    color: rgba(255, 255, 255, 0.72);

    text-decoration: none;

    transition: color 0.25s ease;
}


.ge-footer-contact a:hover {
    color: var(--ge-gold);
}


/* =========================================================
   DIVIDER
   ========================================================= */

.ge-footer-divider {
    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.ge-footer-copyright {
    font-family: var(--ge-body-font);

    font-size: 10px;

    color: rgba(255, 255, 255, 0.48);
}


/* =========================================================
   BOTTOM LINKS
   ========================================================= */

.ge-footer-bottom-links {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    gap: 14px;
}


.ge-footer-bottom-links a {
    font-family: var(--ge-body-font);

    font-size: 10px;

    color: rgba(255, 255, 255, 0.48);

    text-decoration: none;

    transition: color 0.25s ease;
}


.ge-footer-bottom-links a:hover {
    color: var(--ge-gold);
}


.ge-footer-bottom-links span {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--ge-gold);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-footer-logo {
        font-size: 26px;
    }

    .ge-footer-tagline {
        font-size: 20px;
    }

    .ge-footer-bottom-links {
        justify-content: flex-start;
    }

}
/* =========================================================
   CONTACT / ENQUIRY
   ========================================================= */

.ge-contact {
    background: var(--ge-cream);
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.ge-contact-info {
    position: relative;

    padding: 65px 60px;

    background: var(--ge-navy);

    color: var(--ge-white);
}


/* Eyebrow */

.ge-contact-eyebrow,
.ge-form-eyebrow {
    margin: 0 0 16px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* Main heading */

.ge-contact-title {
    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(45px, 4.5vw, 65px);
    font-weight: 500;

    line-height: 0.98;
    letter-spacing: -0.02em;

    color: var(--ge-white);
}


/* Intro */

.ge-contact-intro {
    max-width: 420px;

    margin: 28px 0 0;

    font-family: var(--ge-body-font);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.70);
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.ge-contact-details {
    margin-top: 45px;
}


.ge-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    margin-bottom: 25px;
}


.ge-contact-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(184, 143, 54, 0.55);
    border-radius: 50%;

    color: var(--ge-gold);
}


.ge-contact-icon i {
    font-size: 14px;
}


.ge-contact-label {
    display: block;

    margin-bottom: 5px;

    font-family: var(--ge-body-font);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


.ge-contact-item p,
.ge-contact-item a {
    margin: 0;

    font-family: var(--ge-body-font);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.78);

    text-decoration: none;
}


.ge-contact-item a:hover {
    color: var(--ge-gold);
}


/* =========================================================
   FORM
   ========================================================= */

.ge-contact-form-wrap {
    padding: 65px 65px;

    background: var(--ge-white);

    border: 1px solid var(--ge-border);
}


/* Form heading */

.ge-form-title {
    margin: 0 0 38px;

    font-family: var(--ge-display-font);

    font-size: clamp(35px, 3.2vw, 48px);
    font-weight: 500;

    line-height: 1;

    color: var(--ge-navy);
}


/* =========================================================
   FORM FIELDS
   ========================================================= */

.ge-form-field {
    position: relative;
}


.ge-form-field label {
    display: block;

    margin-bottom: 9px;

    font-family: var(--ge-body-font);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--ge-navy);
}


.ge-form-field input,
.ge-form-field textarea {
    width: 100%;

    padding: 12px 0;

    border: 0;
    border-bottom: 1px solid var(--ge-border);

    border-radius: 0;

    outline: none;

    background: transparent;

    font-family: var(--ge-body-font);

    font-size: 13px;

    color: var(--ge-navy);

    transition: border-color 0.25s ease;
}


.ge-form-field textarea {
    resize: vertical;

    min-height: 105px;
}


.ge-form-field input::placeholder,
.ge-form-field textarea::placeholder {
    color: rgba(3, 21, 47, 0.38);
}


.ge-form-field input:focus,
.ge-form-field textarea:focus {
    border-color: var(--ge-gold);
}


/* =========================================================
   SUBMIT BUTTON
   Uses existing global .ge-btn styles
   ========================================================= */

.ge-enquiry-form .ge-btn {
    margin-top: 5px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-contact-info {
        padding: 50px 40px;
    }

    .ge-contact-form-wrap {
        padding: 50px 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-contact-info {
        padding: 50px 30px;
    }

    .ge-contact-form-wrap {
        padding: 45px 25px;
    }

    .ge-contact-title {
        font-size: 45px;
    }

    .ge-form-title {
        font-size: 38px;
    }

}
/* =========================================================
   WHO IS THIS HOME FOR?
   ========================================================= */

.ge-who-home {
    background: var(--ge-white);

    overflow: hidden;
}


/* =========================================================
   HEADING
   ========================================================= */

.ge-who-eyebrow {
    margin: 0 0 15px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


.ge-who-title {
    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(50px, 5vw, 72px);
    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.025em;

    color: var(--ge-navy);
}


.ge-who-line {
    width: 48px;
    height: 1px;

    margin-top: 28px;

    background: var(--ge-gold);
}


/* =========================================================
   INTRO
   ========================================================= */

.ge-who-intro {
    margin: 0;

    font-family: var(--ge-display-font);

    font-size: 25px;
    font-weight: 500;

    color: var(--ge-navy);
}


/* =========================================================
   FAMILY ITEMS
   ========================================================= */

.ge-who-item {
    min-height: 125px;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 25px 45px 25px 0;

    border-top: 1px solid var(--ge-border);
}


.ge-who-item p {
    max-width: 430px;

    margin: 0;

    font-family: var(--ge-body-font);

    font-size: 14px;
    font-weight: 500;

    line-height: 1.6;

    color: var(--ge-navy);
}


/* =========================================================
   CHECK
   ========================================================= */

.ge-who-check {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--ge-gold);
    border-radius: 50%;

    font-family: var(--ge-body-font);

    font-size: 15px;

    color: var(--ge-gold);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.ge-who-item:hover .ge-who-check {
    background: var(--ge-gold);

    color: var(--ge-navy);
}


/* =========================================================
   LAST ITEM
   ========================================================= */

.ge-who-item:last-child {
    border-bottom: 1px solid var(--ge-border);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-who-item {
        padding-right: 25px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-who-title {
        font-size: 47px;
    }

    .ge-who-intro {
        font-size: 22px;
    }

    .ge-who-item {
        min-height: auto;

        padding: 20px 0;

        gap: 18px;
    }

    .ge-who-item p {
        font-size: 13px;
    }

    .ge-who-check {
        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }

}
/* =========================================================
   WHO IS THIS HOME FOR?
   ========================================================= */

.ge-who-home {
    background: var(--ge-white);
    overflow: hidden;
}


/* =========================================================
   CONTENT
   ========================================================= */

.ge-who-content {
    max-width: 600px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.ge-who-eyebrow {
    margin: 0 0 16px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


/* =========================================================
   TITLE
   ========================================================= */

.ge-who-title {
    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(50px, 5vw, 72px);
    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.025em;

    color: var(--ge-navy);
}


/* =========================================================
   GOLD LINE
   ========================================================= */

.ge-who-line {
    width: 48px;
    height: 1px;

    margin: 28px 0;
    
    background: var(--ge-gold);
}


/* =========================================================
   INTRO
   ========================================================= */

.ge-who-intro {
    margin: 0 0 22px;

    font-family: var(--ge-display-font);

    font-size: 26px;
    font-weight: 500;

    line-height: 1.2;

    color: var(--ge-navy);
}


/* =========================================================
   POINTERS
   ========================================================= */

.ge-who-pointers {
    max-width: 560px;
}


.ge-who-pointer {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 14px 0;

    border-bottom: 1px solid var(--ge-border);
}


.ge-who-pointer:first-child {
    border-top: 1px solid var(--ge-border);
}


/* =========================================================
   CHECK ICON
   ========================================================= */

.ge-who-check {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--ge-gold);
    border-radius: 50%;

    color: var(--ge-gold);
}


.ge-who-check i {
    font-size: 14px;
}


/* =========================================================
   POINTER TEXT
   ========================================================= */

.ge-who-pointer p {
    margin: 0;

    font-family: var(--ge-body-font);

    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;

    color: var(--ge-navy);
}


/* =========================================================
   IMAGE
   ========================================================= */

.ge-who-image {
    width: 100%;
    height: 620px;

    overflow: hidden;
}


.ge-who-image img {
    object-position: center;

    transition: transform 0.7s ease;
}


.ge-who-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-who-image {
        height: 520px;
    }

    .ge-who-title {
        font-size: 58px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-who-title {
        font-size: 47px;
    }

    .ge-who-intro {
        font-size: 23px;
    }

    .ge-who-pointer {
        padding: 13px 0;
    }

    .ge-who-pointer p {
        font-size: 12px;
    }

    .ge-who-image {
        height: 400px;
    }

}
.ge-location {
    background: var(--ge-cream);
    overflow: hidden;
}

.ge-location-map {
    position: relative;
    width: 100%;
    height: 560px;
}

.ge-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
/* =========================================================
   FLOOR PLANS
   ========================================================= */

.ge-floor-plans {
    background: #f0ebe2;
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.ge-floor-eyebrow {
    margin: 0 0 15px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


.ge-floor-title {
    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.025em;

    color: var(--ge-navy);
}


.ge-floor-line {
    width: 48px;
    height: 1px;

    margin-top: 25px;

    background: var(--ge-gold);
}


.ge-floor-intro {
    max-width: 600px;

    margin: 20px auto 0;

    font-family: var(--ge-body-font);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.8;

    color: var(--ge-text);
}


/* =========================================================
   TABS
   ========================================================= */

.ge-floor-tabs {
    display: flex;

    justify-content: center;

    gap: 6px;

    margin-bottom: 0;

    border: 0;
}


.ge-floor-tabs .nav-item {
    margin: 0;
}


.ge-floor-tabs .nav-link {
    padding: 14px 30px;

    border: 1px solid rgba(3, 21, 47, 0.16);
    border-radius: 0;

    background: rgba(255, 255, 255, 0.55);

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--ge-navy);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.ge-floor-tabs .nav-link:hover {
    border-color: var(--ge-gold);

    color: var(--ge-gold);
}


.ge-floor-tabs .nav-link.active {
    border-color: var(--ge-navy);

    background: var(--ge-navy);

    color: var(--ge-white);
}


/* =========================================================
   TAB CONTENT
   ========================================================= */

.ge-floor-tab-content {
    margin-top: 35px;
}


/* =========================================================
   FLOOR PLAN IMAGE
   ========================================================= */

.ge-floor-image {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 500px;

    padding: 35px;

    background: var(--ge-white);

    border: 1px solid rgba(3, 21, 47, 0.10);
}


.ge-floor-image img {
    display: block;

    width: 100%;
    max-height: 500px;

    object-fit: contain;
}


/* =========================================================
   DETAILS
   ========================================================= */

.ge-floor-details {
    padding-left: 15px;
}


.ge-floor-detail-label {
    margin: 0 0 12px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


.ge-floor-detail-title {
    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(34px, 3vw, 46px);
    font-weight: 500;

    line-height: 1.05;

    color: var(--ge-navy);
}


.ge-floor-detail-line {
    width: 45px;
    height: 1px;

    margin: 25px 0;

    background: var(--ge-gold);
}


/* =========================================================
   AREA
   ========================================================= */

.ge-floor-area {
    display: flex;

    align-items: flex-end;

    gap: 12px;

    margin-bottom: 25px;
}


.ge-floor-area span {
    font-family: var(--ge-display-font);

    font-size: 70px;
    font-weight: 500;

    line-height: 0.75;

    color: var(--ge-gold);
}


.ge-floor-area small {
    padding-bottom: 3px;

    font-family: var(--ge-body-font);

    font-size: 9px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--ge-navy);
}


.ge-floor-detail-text {
    margin: 0 0 28px;

    font-family: var(--ge-body-font);

    font-size: 13px;

    line-height: 1.8;

    color: var(--ge-text);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-floor-details {
        padding-left: 0;
    }

    .ge-floor-image {
        min-height: 430px;
    }

    .ge-floor-image img {
        max-height: 430px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-floor-title {
        font-size: 45px;
    }

    .ge-floor-tabs {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .ge-floor-tabs::-webkit-scrollbar {
        display: none;
    }

    .ge-floor-tabs .nav-link {
        flex: 0 0 auto;

        white-space: nowrap;

        padding: 12px 20px;
    }

    .ge-floor-tab-content {
        margin-top: 25px;
    }

    .ge-floor-image {
        min-height: 330px;

        padding: 15px;
    }

    .ge-floor-image img {
        max-height: 330px;
    }

    .ge-floor-details {
        padding-left: 0;
    }

    .ge-floor-area span {
        font-size: 60px;
    }

}
/* =========================================================
   SPECIFICATIONS
   ========================================================= */

.ge-specifications {
    background: var(--ge-navy);

    color: var(--ge-white);

    overflow: hidden;
}


/* =========================================================
   LEFT INTRO
   ========================================================= */

.ge-spec-intro {
    max-width: 520px;
}


.ge-spec-eyebrow {
    margin: 0 0 16px;

    font-family: var(--ge-body-font);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--ge-gold);
}


.ge-spec-title {
    margin: 0;

    font-family: var(--ge-display-font);

    font-size: clamp(50px, 5vw, 72px);
    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.025em;

    color: var(--ge-white);
}


.ge-spec-line {
    width: 48px;
    height: 1px;

    margin: 28px 0;
    
    background: var(--ge-gold);
}


.ge-spec-description {
    max-width: 450px;

    margin: 0;

    font-family: var(--ge-body-font);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   LARGE NUMBER
   ========================================================= */

.ge-spec-number {
    display: flex;
    align-items: flex-end;

    gap: 15px;

    margin-top: 65px;
}


.ge-spec-number span {
    font-family: var(--ge-display-font);

    font-size: 100px;
    font-weight: 500;

    line-height: 0.7;

    color: var(--ge-gold);

    opacity: 0.9;
}


.ge-spec-number small {
    padding-bottom: 3px;

    font-family: var(--ge-body-font);

    font-size: 9px;
    font-weight: 600;

    line-height: 1.5;

    letter-spacing: 0.15em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   ACCORDION
   ========================================================= */

.ge-spec-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}


.ge-spec-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


/* =========================================================
   ACCORDION TRIGGER
   ========================================================= */

.ge-spec-trigger {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 25px 0;

    border: 0;

    background: transparent;

    text-align: left;

    color: var(--ge-white);
}


/* Number */

.ge-spec-item-number {
    width: 32px;

    flex: 0 0 32px;

    font-family: var(--ge-body-font);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.08em;

    color: var(--ge-gold);
}


/* Title */

.ge-spec-item-title {
    flex: 1;

    font-family: var(--ge-display-font);

    font-size: 30px;
    font-weight: 500;

    line-height: 1;

    color: var(--ge-white);

    transition: color 0.25s ease;
}


.ge-spec-trigger:hover .ge-spec-item-title {
    color: var(--ge-gold);
}


/* =========================================================
   PLUS ICON
   ========================================================= */

.ge-spec-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(196, 154, 70, 0.55);
    border-radius: 50%;

    color: var(--ge-gold);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.ge-spec-icon i {
    font-size: 16px;

    transition: transform 0.3s ease;
}


/* Open state */

.ge-spec-trigger:not(.collapsed) .ge-spec-icon {
    background: var(--ge-gold);

    color: var(--ge-navy);
}


.ge-spec-trigger:not(.collapsed) .ge-spec-icon i {
    transform: rotate(45deg);
}


/* =========================================================
   CONTENT
   ========================================================= */

.ge-spec-content {
    padding: 0 65px 28px 57px;
}


.ge-spec-content p {
    max-width: 600px;

    margin: 0;

    font-family: var(--ge-body-font);

    font-size: 12px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .ge-spec-number {
        margin-top: 45px;
    }

    .ge-spec-item-title {
        font-size: 28px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .ge-spec-title {
        font-size: 47px;
    }

    .ge-spec-number {
        margin-top: 40px;
    }

    .ge-spec-number span {
        font-size: 75px;
    }

    .ge-spec-trigger {
        gap: 15px;

        padding: 20px 0;
    }

    .ge-spec-item-title {
        font-size: 24px;
    }

    .ge-spec-content {
        padding: 0 20px 22px 47px;
    }

    .ge-spec-icon {
        width: 30px;
        height: 30px;

        flex-basis: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .ge-spec-item-title {
        font-size: 21px;
    }

    .ge-spec-item-number {
        width: 25px;
        flex-basis: 25px;
    }

}
/* =====================================================
   GARDEN ENCLAVE LOGO
   ===================================================== */

.ge-header-logo {
    display: flex;
    align-items: center;
    padding: 0;
}

.ge-logo-image {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
    padding:15px
}