
        /* ── RESET & BASE ─────────────────────────────────── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --ink: #0B0C10;
            --ink-mid: #14171E;
            --ink-lift: #1C202B;
            --ivory: #F7F4EE;
            --ivory-mid: #EDE9E1;
            --ivory-dark: #DDD8CE;
            --gold: #C5A059;
            --gold-glow: rgba(197, 160, 89, .18);
            --gold-light: #DFBA73;
            --gold-dim: rgba(197, 160, 89, .12);
            --text-dk: #F3F4F6;
            --text-dk-muted: #9CA3AF;
            --text-lt: #111827;
            --text-lt-muted: #4B5563;
            --border-dk: rgba(197, 160, 89, .14);
            --border-lt: rgba(17, 24, 39, .09);
            --font-serif: 'Playfair Display', serif;
            --font-display: 'Cormorant Garamond', serif;
            --font-sans: 'Outfit', sans-serif;
            --ease: cubic-bezier(.16, 1, .3, 1);
            --dur: .38s;
        }



        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--gold) var(--ink);
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--ink);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 3px;
        }

        body {
            font-family: var(--font-sans);
            background: var(--ink);
            color: var(--text-dk);
            overflow-x: hidden;
            line-height: 1.6;
            transition: background .4s ease, color .4s ease;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-serif);
            font-weight: 400;
            letter-spacing: -.02em;
        }

        em {
            font-family: var(--font-display);
            font-style: italic;
            color: var(--gold);
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
        }

     

        /* ── PROGRESS BAR ─────────────────────────────────── */
        #progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            width: 0%;
            background: var(--gold);
            z-index: 2000;
            transition: width .1s linear;
        }

        /* ── BUTTONS ──────────────────────────────────────── */
        .btn {
            font-family: var(--font-sans);
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .2em;
            text-transform: uppercase;
            padding: .95rem 2.1rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
        }

        .btn-primary {
            background: var(--gold);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--gold-light);
            box-shadow: 0 8px 28px var(--gold-glow);
            transform: translateY(-2px);
        }

        .btn-outline-dk {
            background: transparent;
            color: var(--text-dk);
            border: 1px solid rgba(255, 255, 255, .22);
        }

        .btn-outline-dk:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }

        .btn-outline-lt {
            background: transparent;
            color: var(--text-lt);
            border: 1.5px solid currentColor;
        }

        .btn-outline-lt:hover {
            background: var(--text-lt);
            color: #fff;
            transform: translateY(-2px);
        }

        [data-theme="light"] .btn-outline-lt:hover {
            background: var(--text-lt);
        }

        /* ── EYEBROW ──────────────────────────────────────── */
        .eyebrow {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.4rem;
        }

        .eyebrow-line {
            width: 36px;
            height: 1px;
            background: var(--gold);
        }

        .eyebrow-text {
            font-size: .6rem;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
        }

        .eyebrow.on-light .eyebrow-line {
            background: var(--text-lt);
        }

        .eyebrow.on-light .eyebrow-text {
            color: var(--text-lt);
        }

        /* ── SECTION TITLE ────────────────────────────────── */
        .section-title {
            font-size: clamp(2.1rem, 4.2vw, 3.6rem);
            line-height: 1.12;
            margin-bottom: 2rem;
        }

        /* ── NAV ──────────────────────────────────────────── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.6rem 4rem;
            transition: padding var(--dur) var(--ease), background var(--dur) ease, border-color var(--dur) ease;
        }

        nav.scrolled {
            background: rgba(11, 12, 16, .88);
            backdrop-filter: blur(20px) saturate(1.4);
            -webkit-backdrop-filter: blur(20px) saturate(1.4);
            padding: .9rem 4rem;
            border-bottom: 1px solid var(--border-dk);
        }

        [data-theme="light"] nav.scrolled {
            background: rgba(249, 250, 251, .9);
            box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
        }

        [data-theme="light"] .navbar{
            background: #ffffff61;
        }

        .nav-brand {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .nav-brand-top {
            font-size: .58rem;
            letter-spacing: .35em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
        }

        .nav-brand-name {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--text-dk);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .brand-logo{
        padding: 10px;
    background: white;
    border-radius: 8px;
    width: 130px;
}

        .nav-link {
            text-decoration: none;
            color: rgba(243, 244, 246, .55);
            font-size: .72rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            font-weight: 500;
            transition: color .25s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform .3s var(--ease);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        [data-theme="light"] .nav-link {
            color: rgba(17, 24, 39, .7);
        }

        [data-theme="light"] .nav-link:hover,
        [data-theme="light"] .nav-link.active {
            color: var(--gold);
        }



        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            border: none;
            background: transparent;
            z-index: 1001;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--text-dk);
            transition: transform .3s var(--ease), opacity .3s;
            border-radius: 1px;
        }

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* ── HERO ─────────────────────────────────────────── */
        .hero {
            height: 100vh;
            min-height: 740px;
            display: flex;
            align-items: flex-end;
            padding: 0 4rem 6rem;
            position: relative;
            overflow: hidden;
            background: var(--ink);
        }

        .hero-img {
            position: absolute;
            inset: 0;
            z-index: 1;
            will-change: transform;
        }

        .hero-img img {
            width: 100%;
            height: 110%;
            object-fit: cover;
            object-position: center 20%;
            transform: translateY(0);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: linear-gradient(to top, rgba(11, 12, 16, .97) 0%, rgba(11, 12, 16, .52) 45%, rgba(11, 12, 16, .22) 100%);
        }

       [data-theme="light"] .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(249, 250, 251, 0.92) 0%,
        rgba(249, 250, 251, 0.75) 35%,
        rgba(249, 250, 251, 0.15) 65%,
        rgba(249, 250, 251, 0.0) 100%
    );
}
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 820px;
        }

        .hero-badges {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            border: 1px solid var(--gold);
            padding: .38rem 1.1rem;
            font-size: .58rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(197, 160, 89, .08);
            font-weight: 600;
        }

        .badge-live::before {
            content: '';
            width: 7px;
            height: 7px;
            background: var(--gold);
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .35;
                transform: scale(.65);
            }
        }

        .badge-brand {
            font-size: .63rem;
            letter-spacing: .28em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .38);
            border-left: 1px solid rgba(255, 255, 255, .14);
            padding-left: 1rem;
        }

        [data-theme="light"] .badge-brand {
            color: rgba(17, 24, 39, 0.65);
            border-left-color: rgba(17, 24, 39, .14);
        }

        .hero-title {
            font-size: clamp(2.8rem, 6.2vw, 5.4rem);
            line-height: 1.06;
            margin-bottom: 1.4rem;
        }

        .hero-desc {
            font-size: .93rem;
            color: rgba(243, 244, 246, .58);
            max-width: 500px;
            margin-bottom: 2.8rem;
            line-height: 1.8;
        }

        [data-theme="light"] .hero-desc {
            color: rgba(17, 24, 39, .8);
        }

        .hero-actions {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        /* Ghost text */
        .hero-ghost {
            position: absolute;
            right: 2.5rem;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            transform-origin: right center;
            font-family: var(--font-serif);
            font-size: clamp(6rem, 12vw, 11rem);
            color: transparent;
            -webkit-text-stroke: 1px rgba(197, 160, 89, .06);
            pointer-events: none;
            white-space: nowrap;
            z-index: 2;
            user-select: none;
        }

        /* ── STATS BANNER ─────────────────────────────────── */
        .stats-banner {
            background: var(--ivory);
            border-top: 3px solid var(--gold);
        }

        [data-theme="light"] .stats-banner {
            background: var(--ink-mid);
        }

        .stat-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2.8rem 2.5rem;
            transition: background .3s;
            flex: 1;
            text-align: center;
        }

        .stat-card:hover {
            background: var(--ivory-mid);
        }

        [data-theme="light"] .stat-card:hover {
            background: var(--ivory-mid);
        }

        /* Responsive borders using column wrappers */
        .stats-banner .row > div {
            display: flex;
            flex-direction: column;
            border-right: 1px solid var(--border-lt);
        }

        /* On desktop (lg and up): 4 columns in a row. Last column has no border-right */
        @media (min-width: 992px) {
            .stats-banner .row > div {
                border-bottom: none;
            }
            .stats-banner .row > div:nth-child(4) {
                border-right: none;
            }
        }

        /* Under desktop: 2 columns in a row */
        @media (max-width: 991.98px) {
            .stats-banner .row > div {
                border-right: 1px solid var(--border-lt);
                border-bottom: 1px solid var(--border-lt);
                flex: 0 0 50%;
                max-width: 50%;
                width: 50%;
                min-width: 0;
            }
            [data-theme="light"] .stats-banner .row > div {
                border-right-color: var(--border-dk);
                border-bottom-color: var(--border-dk);
            }
            .stats-banner .row > div:nth-child(2n) {
                border-right: none;
            }
            .stats-banner .row > div:nth-child(3),
            .stats-banner .row > div:nth-child(4) {
                border-bottom: none;
            }
        }

        .stat-val {
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: clamp(1.8rem, 2.8vw, 2.6rem);
            color: var(--text-lt);
            line-height: 1.1;
            margin-bottom: .5rem;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.15rem;
            font-variant-numeric: lining-nums tabular-nums;
        }

        .stat-suffix,
        .stat-unit {
            font-size: 0.5em;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .stat-lbl {
            font-size: .62rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--text-lt-muted);
            font-weight: 500;
        }

        /* ── OVERVIEW ─────────────────────────────────────── */
        .overview {
            background: var(--ivory);
            padding: 7rem 4rem;
            border-top: 1px solid var(--border-lt);
        }

        [data-theme="light"] .overview {
            background: var(--ink);
            border-top-color: var(--border-dk);
        }

        .overview-wrapper {
            align-items: start;
        }

        .overview-text p {
            font-size: .95rem;
            color: var(--text-lt-muted);
            line-height: 1.85;
            margin-bottom: 1.8rem;
        }

        [data-theme="light"] .overview-text p {
            color: var(--text-dk-muted);
        }

        .overview-callout {
            background: var(--ink-mid);
            padding: 2.2rem 2.5rem;
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
            border-left: 3px solid var(--gold);
        }

        [data-theme="light"] .overview-callout {
            background: var(--ink-lift);
        }

        .overview-callout-tag {
            font-size: .62rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: .4rem;
            font-weight: 600;
        }

        .overview-callout-body {
            font-family: var(--font-serif);
            font-size: 1.22rem;
            color: var(--text-dk);
            line-height: 1.55;
        }

        .overview-specs {
            border: 1px solid var(--border-lt);
        }

        [data-theme="light"] .overview-specs {
            border-color: var(--border-dk);
        }

        .spec-item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 1.8rem;
            transition: background .3s;
            flex: 1;
        }

        .spec-item:hover {
            background: var(--ivory-mid);
        }

        [data-theme="light"] .spec-item:hover {
            background: var(--ivory-mid);
        }

        /* Border layout using column wrappers - 2 columns in a row globally */
        .overview-specs .row > div {
            display: flex;
            flex-direction: column;
            border-right: 1px solid var(--border-lt);
            border-bottom: 1px solid var(--border-lt);
        }

        [data-theme="light"] .overview-specs .row > div {
            border-right-color: var(--border-dk);
            border-bottom-color: var(--border-dk);
        }

        /* Remove right border on the 2nd column in each row (even columns) */
        .overview-specs .row > div:nth-child(2n) {
            border-right: none;
        }

        /* Remove bottom border on the last two columns */
        .overview-specs .row > div:nth-last-child(-n+2) {
            border-bottom: none;
        }

        /* Mobile specific column width constraints to prevent stretching */
        @media (max-width: 575.98px) {
            .overview-specs .row > div {
                flex: 0 0 50%;
                max-width: 50%;
                width: 50%;
                min-width: 0;
            }
        }

        .spec-label {
            font-size: .58rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--text-lt-muted);
            margin-bottom: .5rem;
        }

        [data-theme="light"] .spec-label {
            color: var(--text-dk-muted);
        }

        .spec-value {
            font-family: var(--font-serif);
            font-size: 1.15rem;
            color: var(--text-lt);
        }

        [data-theme="light"] .spec-value {
            color: var(--text-dk);
        }

        /* ── IMAGE DIVIDER ────────────────────────────────── */
        .img-divider {
            height: 500px;
            position: relative;
            overflow: hidden;
        }

        .img-divider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 35%;
        }

        .img-divider-overlay {
            position: absolute;
            inset: 0;
            background: rgba(11, 12, 16, .5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .img-divider-quote {
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 3.8vw, 3rem);
            color: var(--ivory);
            text-align: center;
            max-width: 680px;
            padding: 0 2rem;
            line-height: 1.45;
            font-style: italic;
            font-weight: 300;
        }

        .img-divider-quote span {
            color: #C5A059;
        }

        /* ── RESIDENCES ───────────────────────────────────── */
        .residences {
            background: var(--ink-mid);
            padding: 7rem 4rem;
            border-top: 1px solid var(--border-dk);
        }

        [data-theme="light"] .residences {
            background: var(--ink-lift);
        }

        /* Tabs */
        .config-tabs {
            display: flex;
            gap: 0;
            margin-bottom: 3.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            flex-wrap: wrap;
        }

        [data-theme="light"] .config-tabs {
            border-bottom-color: var(--border-dk);
        }

        .config-tab {
            font-family: var(--font-sans);
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .15em;
            text-transform: uppercase;
            background: transparent;
            color: var(--text-dk-muted);
            border: none;
            padding: .8rem 1.5rem .9rem;
            cursor: pointer;
            transition: color .3s;
            position: relative;
        }

        .config-tab::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform .35s var(--ease);
        }

        .config-tab:hover {
            color: var(--text-dk);
        }

        .config-tab.active {
            color: var(--gold);
        }

        .config-tab.active::after,
        .config-tab:hover::after {
            transform: scaleX(1);
        }

        [data-theme="light"] .config-tab:hover {
            color: var(--text-lt);
        }

        /* Config panels — FIX: panels are display:none/flex, not inheriting grid */
        .config-panel {
            display: none;
        }

        .config-panel.active {
            display: flex !important;
            animation: fadeUp .45s var(--ease) both;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .config-img-box {
            position: relative;
            border: 1px solid var(--border-dk);
            overflow: hidden;
            border-radius: 2px;
        }

        [data-theme="light"] .config-img-box {
            border-color: var(--border-lt);
        }

        .config-img-box img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            opacity: .88;
        }

        .config-img-box::after {
            content: 'CONCEPTUAL RENDER';
            position: absolute;
            top: 1.1rem;
            left: 1.1rem;
            font-size: .52rem;
            letter-spacing: .25em;
            color: rgba(255, 255, 255, .3);
            font-weight: 600;
        }

        .config-details {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }

        .config-title {
            font-size: 1.9rem;
            color: var(--text-dk);
        }

        .config-desc {
            font-size: .87rem;
            color: var(--text-dk-muted);
            line-height: 1.75;
        }

        .config-stats-row {
            border-top: 1px solid rgba(255, 255, 255, .07);
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            padding: 1.4rem 0;
        }

        [data-theme="light"] .config-stats-row {
            border-color: var(--border-dk);
        }

        .config-stat-lbl {
            font-size: .6rem;
            color: var(--text-dk-muted);
            text-transform: uppercase;
            letter-spacing: .18em;
            margin-bottom: .4rem;
        }

        .config-stat-val {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            color: var(--gold);
        }

        /* Calculator */
        .calc-widget {
            background: var(--ink-lift);
            border: 1px solid var(--border-dk);
            padding: 1.8rem;
            border-radius: 2px;
        }

        [data-theme="light"] .calc-widget {
            background: var(--ink-mid);
            border-color: var(--border-lt);
        }

        .calc-heading {
            font-size: .62rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--text-dk-muted);
            margin-bottom: 1.2rem;
            display: flex;
            justify-content: space-between;
        }

        .calc-heading strong {
            color: var(--gold);
            font-weight: 600;
        }

        .calc-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: .75rem;
            font-size: .83rem;
        }

        .calc-lbl {
            color: var(--text-dk-muted);
        }

        .calc-val {
            font-family: var(--font-serif);
            color: var(--text-dk);
            font-size: .98rem;
        }

        .calc-val.total {
            color: var(--gold);
            font-size: 1.3rem;
        }

        .calc-sep {
            height: 1px;
            background: rgba(255, 255, 255, .07);
            margin: .8rem 0;
        }

        [data-theme="light"] .calc-sep {
            background: var(--border-dk);
        }

        .slider-group {
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px dashed rgba(255, 255, 255, .08);
        }

        [data-theme="light"] .slider-group {
            border-top-color: var(--border-dk);
        }

        .slider-lbl-row {
            display: flex;
            justify-content: space-between;
            font-size: .72rem;
            color: var(--text-dk-muted);
            margin-bottom: .5rem;
        }

        .slider-lbl-row span {
            color: var(--text-dk);
        }

        .range-input {
            -webkit-appearance: none;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, .08);
            outline: none;
            border-radius: 2px;
        }

        [data-theme="light"] .range-input {
            background: var(--border-dk);
        }

        .range-input::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--gold);
            cursor: pointer;
            transition: background .2s, box-shadow .2s;
        }

        .range-input::-webkit-slider-thumb:hover {
            background: var(--gold-light);
            box-shadow: 0 0 12px var(--gold-glow);
        }

        /* ── GALLERY STRIP ────────────────────────────────── */
        .gallery-strip {
        }

        .gallery-cell {
            height: 360px;
            overflow: hidden;
            position: relative;
        }

        .gallery-cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .65s var(--ease);
        }

        .gallery-cell:hover img {
            transform: scale(1.06);
        }

        .gallery-label {
            position: absolute;
            bottom: 1.4rem;
            left: 1.4rem;
            font-size: .6rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .8);
            background: rgba(11, 12, 16, .55);
            backdrop-filter: blur(8px);
            padding: .38rem .8rem;
            font-weight: 600;
        }

        /* ── AMENITIES ────────────────────────────────────── */
        .amenities {
            background: var(--ivory);
            padding: 7rem 4rem;
            border-top: 3px solid var(--gold);
        }

        [data-theme="light"] .amenities {
            background: var(--ink);
        }

        .amenities-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .amenities-filters {
            display: flex;
            gap: .6rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            border: 1px solid var(--border-lt);
            color: var(--text-lt-muted);
            padding: .52rem 1.2rem;
            font-size: .65rem;
            text-transform: uppercase;
            letter-spacing: .14em;
            cursor: pointer;
            transition: all .3s;
            font-family: var(--font-sans);
            border-radius: 1px;
        }

        [data-theme="light"] .filter-btn {
            border-color: var(--border-dk);
            color: var(--text-dk-muted);
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--text-lt);
            background: var(--text-lt);
            color: var(--ivory);
        }

        [data-theme="light"] .filter-btn:hover,
        [data-theme="light"] .filter-btn.active {
            border-color: var(--text-lt);
            background: var(--text-lt);
            color: var(--ivory);
        }

        /* Helper class for javascript filtering */
        .hidden {
            display: none !important;
        }

        /* Amenity grid */
        .amenities-grid {
            border: 1px solid var(--border-lt);
        }

        [data-theme="light"] .amenities-grid {
            border-color: var(--border-dk);
        }

        .amenity-card {
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            transition: background .3s, border-color .3s;
            cursor: default;
            height: 100%;
        }

        [data-theme="light"] .amenity-card {
            background: var(--ink-mid);
        }

        .amenity-card:hover {
            background: var(--ink-mid);
        }

        [data-theme="light"] .amenity-card:hover {
            background: var(--ink-lift);
        }

        /* Column wrapper borders for amenities grid */
        .amenities-grid .row > div {
            border-right: 1px solid var(--border-lt);
            border-bottom: 1px solid var(--border-lt);
        }

        [data-theme="light"] .amenities-grid .row > div {
            border-right-color: var(--border-dk);
            border-bottom-color: var(--border-dk);
        }

        /* Large screens (lg and up): 4 columns in a row */
        @media (min-width: 992px) {
            .amenities-grid .row > div:nth-child(4n) {
                border-right: none;
            }
            .amenities-grid .row > div:nth-last-child(-n+4) {
                border-bottom: none;
            }
        }

        /* Medium screens (sm to md): 2 columns in a row */
        @media (min-width: 576px) and (max-width: 991.98px) {
            .amenities-grid .row > div:nth-child(2n) {
                border-right: none;
            }
            .amenities-grid .row > div:nth-last-child(-n+2) {
                border-bottom: none;
            }
        }

        /* Small screens (xs): 1 column in a row */
        @media (max-width: 575.98px) {
            .amenities-grid .row > div {
                border-right: none;
            }
            .amenities-grid .row > div:last-child {
                border-bottom: none;
            }
        }

        .amenity-icon {
            width: 44px;
            height: 44px;
            border: 1px solid var(--border-lt);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .3s, border-color .3s;
        }

        [data-theme="light"] .amenity-icon {
            border-color: var(--border-dk);
        }

        .amenity-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--text-lt);
            fill: none;
            stroke-width: 1.5;
            transition: stroke .3s;
        }

        [data-theme="light"] .amenity-icon svg {
            stroke: var(--text-lt);
        }

        .amenity-card:hover .amenity-icon {
            background: var(--gold);
            border-color: var(--gold);
        }

        .amenity-card:hover .amenity-icon svg {
            stroke: var(--ink);
        }

        .amenity-title {
            font-family: var(--font-serif);
            font-size: 1.06rem;
            color: var(--text-lt);
            transition: color .3s;
        }

        [data-theme="light"] .amenity-title {
            color: var(--text-lt);
        }

        .amenity-card:hover .amenity-title {
            color: var(--text-dk);
        }

        [data-theme="light"] .amenity-card:hover .amenity-title {
            color: var(--text-dk);
        }

        .amenity-desc {
            font-size: .77rem;
            color: var(--text-lt-muted);
            line-height: 1.6;
            transition: color .3s;
        }

        [data-theme="light"] .amenity-desc {
            color: var(--text-dk-muted);
        }

        .amenity-card:hover .amenity-desc {
            color: var(--text-dk-muted);
        }

        .lifestyle-band {
            background: var(--ivory-mid);
            padding: 5rem 4rem;
            align-items: center;
            border-top: 1px solid var(--border-lt);
        }

        [data-theme="light"] .lifestyle-band {
            background: var(--ink);
            border-top-color: var(--border-dk);
        }

        .lifestyle-img {
            height: 500px;
            overflow: hidden;
            border-radius: 2px;
        }

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


        .lifestyle-text p {
            font-size: .94rem;
            color: var(--text-lt-muted);
            line-height: 1.85;
        }

        [data-theme="light"] .lifestyle-text p {
            color: var(--text-dk-muted);
        }

        .lifestyle-h3 {
            font-family: var(--font-serif);
            font-size: clamp(1.9rem, 3.2vw, 2.7rem);
            color: var(--text-lt);
            line-height: 1.2;
        }

        [data-theme="light"] .lifestyle-h3 {
            color: var(--text-dk);
        }

        .lh-grid {
        }

        .lh-card {
            padding: 1.2rem;
            background: var(--ivory);
            border: 1px solid var(--border-lt);
            display: flex;
            flex-direction: column;
            gap: .25rem;
        }

        [data-theme="light"] .lh-card {
            background: var(--ink-mid);
            border-color: var(--border-dk);
        }

        .lh-val {
            font-family: var(--font-serif);
            font-size: 1.45rem;
            color: var(--text-lt);
        }

        [data-theme="light"] .lh-val {
            color: var(--text-dk);
        }

        .lh-lbl {
            font-size: .6rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--text-lt-muted);
        }

        [data-theme="light"] .lh-lbl {
            color: var(--text-dk-muted);
        }

        /* ── LOCATION ─────────────────────────────────────── */
        .location {
            background: var(--ink);
            padding: 7rem 4rem;
            border-top: 1px solid var(--border-dk);
        }

        [data-theme="light"] .location {
            background: var(--ink-lift);
        }

        .location-grid {
            align-items: center;
        }

        .location-desc {
            font-size: .94rem;
            color: var(--text-dk-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .advantage-list {
            display: flex;
            flex-direction: column;
        }

        .advantage-item {
            display: flex;
            gap: 1.4rem;
            padding: 1.2rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            border-left: 2px solid transparent;
            cursor: pointer;
            transition: border-color .3s, padding-left .3s;
        }

        [data-theme="light"] .advantage-item {
            border-bottom-color: var(--border-dk);
        }

        .advantage-item:last-child {
            border-bottom: none;
        }

        .advantage-item:hover,
        .advantage-item.active {
            border-left-color: var(--gold);
            padding-left: 1.4rem;
        }

        .advantage-num {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            color: rgba(255, 255, 255, .14);
            transition: color .3s;
            min-width: 26px;
            line-height: 1;
        }

        .advantage-item:hover .advantage-num,
        .advantage-item.active .advantage-num {
            color: var(--gold);
        }

        .advantage-body {
            display: flex;
            flex-direction: column;
            gap: .3rem;
        }

        .advantage-title {
            font-size: .88rem;
            font-weight: 500;
            color: var(--text-dk-muted);
            transition: color .3s;
        }

        .advantage-item:hover .advantage-title,
        .advantage-item.active .advantage-title {
            color: var(--text-dk);
        }

        .advantage-desc {
            font-size: .78rem;
            color: var(--text-dk-muted);
            line-height: 1.55;
        }

        /* Map */
        .map-container {
            position: relative;
            border: 1px solid var(--border-dk);
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
        }

        [data-theme="light"] .map-container {
            border-color: var(--border-lt);
        }

        .map-container img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            filter: brightness(.5) saturate(.75);
            display: block;
        }

        .map-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hs-dot {
            fill: var(--gold);
        }

        .hs-ring {
            fill: none;
            stroke: var(--gold);
            stroke-width: 1;
            animation: hspulse 3s infinite linear;
        }

        @keyframes hspulse {
            0% {
                r: 4;
                opacity: 1;
            }

            100% {
                r: 18;
                opacity: 0;
            }
        }

        .hs-project {
            fill: var(--gold);
        }

        .hs-project-ring {
            fill: none;
            stroke: var(--gold);
            stroke-width: 2;
            animation: prpulse 2s infinite ease-in-out;
        }

        @keyframes prpulse {

            0%,
            100% {
                r: 9;
                opacity: 1;
            }

            50% {
                r: 17;
                opacity: .35;
            }
        }

        .map-hs {
            cursor: pointer;
        }

        .map-popup {
            position: absolute;
            bottom: 1.6rem;
            left: 1.6rem;
            right: 1.6rem;
            background: rgba(11, 12, 16, .92);
            backdrop-filter: blur(14px);
            border: 1px solid var(--gold);
            padding: 1.3rem 1.4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 2px;
            animation: slideUp .35s var(--ease);
        }

        [data-theme="light"] .map-popup {
            background: rgba(249, 250, 251, .95);
            border-color: var(--border-dk);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(14px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .popup-info .popup-title {
            font-size: .9rem;
            font-weight: 600;
            color: var(--gold-light);
            margin-bottom: .15rem;
        }

        .popup-info .popup-dist {
            font-size: .78rem;
            color: var(--text-dk);
        }

        [data-theme="light"] .popup-info .popup-dist {
            color: var(--text-lt);
        }

        .popup-cta {
            font-size: .62rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: #fff;
            background: var(--gold);
            padding: .5rem 1rem;
            text-decoration: none;
            font-weight: 600;
            font-family: var(--font-sans);
            transition: background .2s;
            white-space: nowrap;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .popup-cta:hover {
            background: var(--gold-light);
        }

        /* ── EOI SECTION ──────────────────────────────────── */
        .eoi-section {
            background: var(--ink-mid);
            padding: 7rem 4rem;
            border-top: 1px solid var(--border-dk);
        }

        [data-theme="light"] .eoi-section {
            background: var(--ink-lift);
        }

        .eoi-grid {
            align-items: start;
        }

        .eoi-info {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .eoi-desc {
            font-size: .93rem;
            color: var(--text-dk-muted);
            line-height: 1.8;
        }

        .eoi-preview {
            width: 100%;
        
            object-fit: cover;
            border-top: 2px solid var(--gold);
        }

        .eoi-card {
            background: var(--ivory);
            padding: 2.5rem;
            border-top: 3px solid var(--gold);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        [data-theme="light"] .eoi-card {
            background: var(--ink-mid);
        }

        .eoi-card-tag {
            font-size: .6rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--text-lt-muted);
            font-weight: 600;
        }

        [data-theme="light"] .eoi-card-tag {
            color: var(--text-dk-muted);
        }

        .eoi-card-amount {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 3.2vw, 3rem);
            color: var(--text-lt);
            line-height: 1;
        }

        [data-theme="light"] .eoi-card-amount {
            color: var(--text-dk);
        }

        .eoi-card-desc {
            font-size: .86rem;
            color: var(--text-lt-muted);
            line-height: 1.7;
        }

        [data-theme="light"] .eoi-card-desc {
            color: var(--text-dk-muted);
        }

        .eoi-refund {
            display: flex;
            align-items: center;
            gap: .6rem;
            font-size: .78rem;
            color: #2E7D32;
            font-weight: 500;
        }

        .eoi-refund svg {
            width: 15px;
            height: 15px;
            stroke: #2E7D32;
            fill: none;
            stroke-width: 2.5;
            flex-shrink: 0;
        }

        /* Form */
        .form-panel {
            background: var(--ink-lift);
            border: 1px solid var(--border-dk);
            padding: 2.8rem;
            border-radius: 2px;
        }

        [data-theme="light"] .form-panel {
            background: var(--ink-mid);
            border-color: var(--border-lt);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: .4rem;
            margin-bottom: 1.4rem;
        }

        .form-row {
        }

        .form-group label {
            font-size: .58rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--text-dk-muted);
            font-weight: 600;
        }

        .form-group input,
        .form-group select {
            background: rgba(11, 12, 16, .55);
            border: 1px solid var(--border-dk);
            color: var(--text-dk);
            font-family: var(--font-sans);
            font-size: .84rem;
            padding: .88rem 1rem;
            outline: none;
            width: 100%;
            transition: border-color .25s, box-shadow .25s;
            border-radius: 1px;
            -webkit-appearance: none;
            appearance: none;
        }

        [data-theme="light"] .form-group input,
        [data-theme="light"] .form-group select {
            background: var(--ink-lift);
            border-color: var(--border-dk);
            color: var(--text-lt);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, .15);
        }

        [data-theme="light"] .form-group input::placeholder {
            color: var(--text-dk-muted);
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px var(--gold-dim);
        }

        .form-group select option {
            background: var(--ink-mid);
            color: var(--text-dk);
        }

        [data-theme="light"] .form-group select option {
            background: var(--ink-lift);
            color: var(--text-lt);
        }

        .form-submit {
            width: 100%;
            margin-top: .6rem;
            justify-content: center;
        }

        .form-note {
            font-size: .6rem;
            color: var(--text-dk-muted);
            text-align: center;
            margin-top: 1rem;
            line-height: 1.6;
        }

        /* Loading */
        .loading-state {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.4rem;
            min-height: 360px;
        }

        .spinner {
            width: 42px;
            height: 42px;
            border: 2px solid rgba(197, 160, 89, .12);
            border-top: 2px solid var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loading-msg {
            font-size: .72rem;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
        }

        /* Success cert */
        .cert-state {
            display: none;
            animation: zoomIn .5s var(--ease) both;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .cert-card {
            background: var(--ivory);
            border-top: 3px solid var(--gold);
            padding: 2.8rem 2.5rem;
            position: relative;
        }

        [data-theme="light"] .cert-card {
            background: var(--ink-mid);
        }

        .cert-corner {
            position: absolute;
            width: 20px;
            height: 20px;
            border: 1.5px solid var(--gold);
        }

        .cert-corner-tl {
            top: .8rem;
            left: .8rem;
            border-right: none;
            border-bottom: none;
        }

        .cert-corner-tr {
            top: .8rem;
            right: .8rem;
            border-left: none;
            border-bottom: none;
        }

        .cert-corner-bl {
            bottom: .8rem;
            left: .8rem;
            border-right: none;
            border-top: none;
        }

        .cert-corner-br {
            bottom: .8rem;
            right: .8rem;
            border-left: none;
            border-top: none;
        }

        .cert-header {
            text-align: center;
        }

        .cert-badge {
            display: inline-block;
            background: var(--gold);
            color: #fff;
            font-size: .58rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            padding: .35rem 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cert-title {
            font-family: var(--font-serif);
            font-size: 1.75rem;
            color: var(--text-lt);
            margin-bottom: .25rem;
        }

        [data-theme="light"] .cert-title {
            color: var(--text-dk);
        }

        .cert-sub {
            font-size: .63rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--text-lt-muted);
        }

        [data-theme="light"] .cert-sub {
            color: var(--text-dk-muted);
        }

        .cert-rule {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: .45;
            margin: 1.6rem 0;
        }

        .cert-details {
            display: flex;
            flex-direction: column;
            gap: .9rem;
            max-width: 420px;
            margin: 0 auto 1.8rem;
        }

        .cert-row {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px dashed rgba(0, 0, 0, .08);
            padding-bottom: .45rem;
        }

        [data-theme="light"] .cert-row {
            border-bottom-color: var(--border-dk);
        }

        .cert-row:last-child {
            border: none;
        }

        .cert-lbl {
            font-size: .65rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--text-lt-muted);
        }

        [data-theme="light"] .cert-lbl {
            color: var(--text-dk-muted);
        }

        .cert-val {
            font-size: .88rem;
            font-weight: 600;
            color: var(--text-lt);
        }

        [data-theme="light"] .cert-val {
            color: var(--text-dk);
        }

        .cert-val.accent {
            font-family: var(--font-serif);
            font-size: 1.02rem;
            color: var(--gold);
        }

        .cert-stamp {
            width: 60px;
            height: 60px;
            border: 2px dashed rgba(197, 160, 89, .4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: rotate(-15deg);
            margin: 0 auto 1.4rem;
        }

        .cert-stamp span {
            font-size: .38rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(197, 160, 89, .5);
            font-weight: 700;
            text-align: center;
        }

        .cert-note {
            font-size: .6rem;
            color: var(--text-lt-muted);
            text-align: center;
            margin-bottom: 1.4rem;
            line-height: 1.65;
        }

        [data-theme="light"] .cert-note {
            color: var(--text-dk-muted);
        }

        /* ── FOOTER ───────────────────────────────────────── */
        footer {
            background: var(--ink);
            border-top: 1px solid var(--border-dk);
            padding: 4rem;
        }

        [data-theme="light"] footer {
            background: var(--ink);
        }

        .footer-grid {
            margin-bottom: 2.5rem;
        }

        .footer-brand-name {
            font-family: var(--font-serif);
            font-size: 1.35rem;
            color: var(--text-dk);
            margin-bottom: .6rem;
        }

        .footer-brand-desc {
            font-size: .77rem;
            color: var(--text-dk-muted);
            line-height: 1.65;
        }

        .footer-nav-heading {
            font-size: .68rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            display: block;
            margin-bottom: 1rem;
        }

        .footer-links {
        }

        .footer-link {
            text-decoration: none;
            color: var(--text-dk-muted);
            font-size: .77rem;
            transition: color .25s;
        }

        .footer-link:hover {
            color: var(--gold);
        }

        .footer-contact-lbl {
            font-size: .62rem;
            text-transform: uppercase;
            color: var(--text-dk-muted);
            display: block;
            margin-bottom: .25rem;
        }

        .footer-contact-val {
            font-size: .83rem;
            color: var(--text-dk);
            margin-bottom: 1rem;
            display: block;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .05);
            padding-top: 1.8rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        [data-theme="light"] .footer-bottom {
            border-top-color: var(--border-dk);
        }

        .footer-disclaimer {
            font-size: .6rem;
            color: var(--text-dk-muted);
            max-width: 740px;
            line-height: 1.65;
        }

        .footer-rera {
            font-size: .6rem;
            color: var(--gold);
            letter-spacing: .15em;
            text-transform: uppercase;
            font-weight: 600;
            white-space: nowrap;
        }

        /* ── SCROLL-TO-TOP ────────────────────────────────── */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 900;
            width: 42px;
            height: 42px;
            background: var(--gold);
            border: none;
            border-radius: 2px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px);
            transition: opacity .3s, transform .3s, background .2s;
            box-shadow: 0 4px 16px var(--gold-glow);
        }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--gold-light);
        }

        .scroll-top svg {
            width: 16px;
            height: 16px;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5;
        }

        /* ── REVEAL ───────────────────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── RESPONSIVE ───────────────────────────────────── */
        @media (max-width: 1100px) {

            nav,
            nav.scrolled {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }

            .hero,
            .overview,
            .residences,
            .amenities,
            .location,
            .eoi-section,
            footer,
            .lifestyle-band {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }

            .eoi-grid {
                gap: 3.5rem;
            }


        }

        @media (max-width: 900px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 72%;
                height: 100vh;
                background: var(--ink-mid);
                flex-direction: column;
                justify-content: center;
                gap: 2.5rem;
                transition: right .4s var(--ease);
                z-index: 999;
                border-left: 1px solid var(--border-dk);
                padding: 2rem;
            }

            [data-theme="light"] .nav-links {
                background: var(--ink-mid);
                border-left-color: var(--border-lt);
            }

            .nav-links.open {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .eoi-grid {
                grid-template-columns: 1fr;
            }


            .lifestyle-img {
                height: 300px;
            }




            .gallery-cell {
                height: 220px;
            }
        }

        @media (max-width: 640px) {

            .hero,
            .overview,
            .residences,
            .amenities,
            .location,
            .eoi-section,
            footer,
            .lifestyle-band {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }


            .gallery-cell {
                height: 200px;
            }





            .config-tabs {
                gap: 0;
            }

            .config-tab {
                font-size: .65rem;
                padding: .7rem 1rem;
            }

            .eoi-grid {
                gap: 2.5rem;
            }

        }

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

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }
        }

        /* Floating Phone Icon */
        .phone-float {
            position: fixed;
            bottom: 5.5rem;
            right: 2rem;
            width: 56px;
            height: 56px;
            background-color: var(--gold);
            color: white;
            border-radius: 50%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 999;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            text-decoration: none;
        }

        .phone-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px var(--gold-glow);
            background-color: var(--gold-light);
            color: white;
        }

        .phone-float i {
            font-size: 24px;
        }

        /* Floating Enquire Now Button */
        .enquire-float-btn {
            position: fixed;
            top: 45%;
            right: 0;
            transform: rotate(-90deg);
            transform-origin: right bottom;
            background-color: var(--gold);
            color: #0B0C10;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 0.95rem 1.7rem;
            border: none;
            border-radius: 8px 8px 0 0;
            cursor: pointer;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            white-space: nowrap;
            transition: all 0.3s ease;
            margin-right: -1px;
        }

        .enquire-float-btn:hover {
            background-color: var(--gold-light);
            color: #0B0C10;
            box-shadow: 0 -6px 20px var(--gold-glow);
        }

        /* Enquire Popup Modal */
        .enquire-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .enquire-modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .enquire-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(11, 12, 16, 0.85);
            backdrop-filter: blur(10px);
        }

        .enquire-modal-content {
            position: relative;
            background: var(--ink-mid);
            border: 1px solid var(--border-dk);
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            padding: 2.5rem;
            z-index: 2001;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            max-height: 90vh;
            overflow-y: auto;
        }

        .enquire-modal.active .enquire-modal-content {
            transform: scale(1);
        }

        .enquire-modal-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            background: none;
            border: none;
            color: var(--text-dk-muted);
            font-size: 2rem;
            line-height: 1;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .enquire-modal-close:hover {
            color: var(--gold);
        }

        .modal-title {
            font-family: var(--font-serif);
            font-size: 1.75rem;
            color: var(--text-dk);
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .modal-subtitle {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            color: var(--text-dk-muted);
            margin-bottom: 2rem;
            text-align: center;
            line-height: 1.5;
        }

        .modal-loading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem 0;
        }

        .modal-success-certificate {
            animation: modalFadeIn 0.5s ease forwards;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .map-iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(0.8) invert(0.9) contrast(1.1) brightness(0.95);
            border-radius: 18px;
        }

        /* Floor Plan Blur & Unlock overlay */
        .floorplan-blur-wrapper {
            width: 100%;
            filter: blur(10px);
            pointer-events: none;
            transition: filter 0.4s ease;
        }

        .floorplan-unlock-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(11, 12, 16, 0.75);
            z-index: 10;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(2px);
        }

        .floorplan-unlock-title {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            color: var(--text-dk);
            margin-bottom: 0.5rem;
            letter-spacing: 0.02em;
        }

        .floorplan-unlock-subtitle {
            font-family: var(--font-sans);
            font-size: 0.8rem;
            color: var(--text-dk-muted);
            margin-bottom: 1.5rem;
            max-width: 320px;
            line-height: 1.5;
        }

        .floorplan-unlock-btn {
            box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
        }

        @media (max-width: 991.98px) {
            .map-container {
                height: 280px !important;
            }
        }

        @media (max-width: 768px) {
            .overview,
            .residences,
            .amenities,
            .location,
            .eoi-section,
            .lifestyle-band {
                padding-top: 3.5rem !important;
                padding-bottom: 3.5rem !important;
                padding-left: 1.5rem !important;
                padding-right: 1.5rem !important;
            }
            
            .section-title {
                margin-bottom: 1.5rem !important;
            }
            
            .stats-banner {
                padding: 1.5rem 0 !important;
            }
            
            .stat-card {
                padding: 1.2rem 1rem !important;
            }
            
            .overview-callout {
                margin-top: 1.5rem !important;
                padding: 1.5rem !important;
            }
        }


    