        /* ═══════════════TOKENS══════════════════ */
        :root {
            --f: #1a2e22;
            --fm: #243d2e;
            --fl: #2e5040;
            --fd: #0d1a11;
            --fxl: #f0f6f2;
            --g: #b08d57;
            --gl: #d4af70;
            --gd: #8a6c3e;
            --gp: #f5edda;
            --gxp: #faf7f0;
            --cr: #f8f4ec;
            --crd: #efe8d5;
            --ink: #181818;
            --s: #484848;
            --m: #888;
            --li: #bbb;
            --bd: #e3ddd4;
            --w: #fff;
            --green: #2ecc71;
            --red: #e74c3c;
            --sh0: 0 2px 12px rgba(26, 46, 34, .07);
            --sh1: 0 8px 32px rgba(26, 46, 34, .11);
            --sh2: 0 24px 72px rgba(26, 46, 34, .17);
            --sh3: 0 40px 100px rgba(26, 46, 34, .22);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px
        }
        body {
            font-family: 'Outfit', sans-serif;
            background: var(--cr);
            color: var(--ink);
            overflow-x: hidden
        }
        ::selection {
            background: var(--g);
            color: #fff
        }

        ::-webkit-scrollbar {
            width: 5px
        }

        ::-webkit-scrollbar-track {
            background: var(--cr)
        }

        ::-webkit-scrollbar-thumb {
            background: var(--g);
            border-radius: 4px
        }

        img {
            max-width: 100%;
            display: block
        }
        a {
            text-decoration: none;
            color: inherit
        }
        /* ══════════NAV═══════════════ */
        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 900;
            height: 64px;
            transition: background .4s, box-shadow .4s
        }
        #nav.solid {
            background: rgba(13, 26, 17, .96);
            backdrop-filter: blur(16px);
            box-shadow: 0 1px 0 rgba(176, 141, 87, .18)
        }
        .nav-in {
            max-width: 1360px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 4vw;
            gap: 16px
        }
        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 500;
            color: #fff;
            letter-spacing: .4px;
            white-space: nowrap
        }
        .logo b {
            color: var(--gl);
            font-weight: 400
        }
        .nav-links {
            display: flex;
            gap: 2px;
            margin: 0 auto
        }
        .nl {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, .55);
            padding: 8px 14px;
            border-radius: 5px;
            transition: .18s;
            white-space: nowrap;
            cursor: pointer
        }
        .nl:hover {
            color: #fff;
            background: rgba(255, 255, 255, .07)
        }
        .nl.hot {
            color: var(--gl)
        }
        .nav-r {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0
        }
        .btn-ghost {
            border: 1.5px solid rgba(176, 141, 87, .35);
            color: rgba(255, 255, 255, .75);
            padding: 7px 16px;
            border-radius: 5px;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            background: transparent;
            transition: .2s
        }
        .btn-ghost:hover {
            border-color: var(--gl);
            color: var(--gl)
        }
        .btn-solid {
            background: var(--g);
            color: var(--f);
            padding: 8px 20px;
            border-radius: 5px;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: .2s
        }

        .btn-solid:hover {
            background: var(--gl);
            transform: translateY(-1px)
        }
        .nav-wa {
            display: flex;
            align-items: center;
            gap: 6px;
            color: rgba(37, 211, 102, .9);
            font-size: 12.5px;
            font-weight: 600;
            padding: 7px 14px;
            border: 1.5px solid rgba(37, 211, 102, .25);
            border-radius: 5px;
            transition: .2s;
            cursor: pointer
        }
        .nav-wa:hover {
            background: rgba(37, 211, 102, .08)
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px
        }
        .nav-hamburger span {
            width: 22px;
            height: 2px;
            background: rgba(255, 255, 255, .8);
            border-radius: 2px;
            transition: .3s;
            display: block
        }
        /* ══════HERO═══════════════════ */
        .hero {
            position: relative;
            height: 100svh;
            min-height: 680px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 0 5vw
        }
        /* Slideshow */
        .hero-slides {
            position: absolute;
            inset: 0;
            z-index: 0
        }
        .hs {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s ease;
            transform: scale(1.05);
            transition: opacity 1.8s ease, transform 8s ease
        }

        .hs.on {
            opacity: 1;
            transform: scale(1)
        }

        /* Layered overlays for depth */
        .hero-ov1 {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(13, 26, 17, .5) 0%, rgba(13, 26, 17, .2) 40%, rgba(13, 26, 17, .7) 85%, rgba(13, 26, 17, .95) 100%)
        }

        .hero-ov2 {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: radial-gradient(ellipse at 50% 80%, rgba(176, 141, 87, .06) 0%, transparent 60%)
        }

        /* Grain texture */
        .hero-grain {
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
            opacity: .03;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 300px
        }

        .hero-body {
            position: relative;
            z-index: 5;
            text-align: center;
            max-width: 860px;
            width: 100%
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(176, 141, 87, .4);
            background: rgba(176, 141, 87, .08);
            backdrop-filter: blur(8px);
            color: var(--gl);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 7px 18px;
            border-radius: 40px;
            margin-bottom: 26px;
            animation: riseIn .9s ease both
        }

        .live-dot {
            width: 7px;
            height: 7px;
            background: #2ecc71;
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 0 0 rgba(46, 204, 113, .4);
            animation: livepulse 2.2s infinite
        }

        @keyframes livepulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, .4)
            }

            50% {
                box-shadow: 0 0 0 8px rgba(46, 204, 113, 0)
            }
        }

        .hero-h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(46px, 7vw, 90px);
            font-weight: 300;
            color: #fff;
            line-height: 1.02;
            letter-spacing: -2px;
            margin-bottom: 20px
        }

        .hero-h1 span {
            display: block
        }

        .hero-h1 em {
            font-style: italic;
            color: var(--gl);
            font-weight: 400
        }

        .hero-h1 .line1 {
            animation: riseIn 1s .08s ease both
        }

        .hero-h1 .line2 {
            animation: riseIn 1s .18s ease both
        }

        .hero-sub {
            font-size: clamp(14px, 1.5vw, 17px);
            color: rgba(255, 255, 255, .52);
            line-height: 1.8;
            max-width: 520px;
            margin: 0 auto 38px;
            animation: riseIn 1s .3s ease both;
            font-weight: 300
        }

        @keyframes riseIn {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ── Hero Search ── */
        .hero-search-wrap {
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(12px);
            border-radius: 14px;
            padding: 7px 7px 7px 22px;
            display: flex;
            align-items: center;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .15);
            animation: riseIn 1s .42s ease both;
            max-width: 800px;
            width: 100%;
            margin: 0 auto
        }

        .hsw-icon {
            font-size: 17px;
            color: var(--m);
            flex-shrink: 0;
            margin-right: 6px
        }

        .hsw-input {
            flex: 1;
            border: none;
            background: transparent;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            color: var(--ink);
            outline: none;
            padding: 8px 0;
            min-width: 0
        }

        .hsw-input::placeholder {
            color: var(--li)
        }

        .hsw-divider {
            width: 1px;
            height: 38px;
            background: var(--bd);
            flex-shrink: 0;
            margin: 0 12px
        }

        .hsw-sel {
            border: none;
            background: transparent;
            font-family: 'Outfit', sans-serif;
            font-size: 13.5px;
            color: var(--s);
            outline: none;
            cursor: pointer;
            padding: 8px 28px 8px 6px;
            appearance: none;
            min-width: 120px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center
        }

        .hsw-btn {
            background: var(--f);
            color: #fff;
            padding: 13px 28px;
            border-radius: 9px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: .22s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 7px;
            flex-shrink: 0
        }

        .hsw-btn:hover {
            background: var(--fl);
            box-shadow: 0 8px 24px rgba(26, 46, 34, .3)
        }

        /* Quick pills */
        .hero-pills {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 20px;
            animation: riseIn 1s .56s ease both
        }

        .hp {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .09);
            border: 1px solid rgba(255, 255, 255, .18);
            backdrop-filter: blur(8px);
            color: rgba(255, 255, 255, .8);
            padding: 7px 15px;
            border-radius: 40px;
            font-size: 12.5px;
            font-weight: 500;
            cursor: pointer;
            transition: .22s
        }

        .hp:hover {
            background: rgba(176, 141, 87, .18);
            border-color: rgba(176, 141, 87, .5);
            color: #fff;
            transform: translateY(-2px)
        }

        /* Slide nav */
        .hero-slide-nav {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 6;
            display: flex;
            gap: 8px
        }

        .snd {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .3);
            cursor: pointer;
            transition: .3s
        }

        .snd.on {
            width: 28px;
            border-radius: 4px;
            background: var(--gl)
        }

        /* Scroll cue */
        .scroll-cue {
            position: absolute;
            bottom: 26px;
            right: 5vw;
            z-index: 6;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px
        }

        .sc-txt {
            font-size: 9.5px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .3)
        }

        .sc-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, transparent, rgba(176, 141, 87, .6))
        }

        /* ═══════════TICKER══════════════ */
        .ticker {
            background: var(--f);
            border-bottom: 1px solid rgba(176, 141, 87, .15);
            overflow: hidden;
            height: 40px;
            display: flex;
            align-items: center
        }

        .ticker-label {
            background: var(--g);
            color: var(--f);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 0 16px;
            height: 100%;
            display: flex;
            align-items: center;
            flex-shrink: 0;
            white-space: nowrap
        }

        .ticker-track {
            display: flex;
            animation: tickerScroll 40s linear infinite;
            white-space: nowrap;
            gap: 0
        }

        .ticker-track:hover {
            animation-play-state: paused
        }

        .ti-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0 32px;
            font-size: 12px;
            color: rgba(255, 255, 255, .5);
            border-right: 1px solid rgba(255, 255, 255, .07)
        }

        .ti-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            flex-shrink: 0
        }

        .ti-item .dot.green {
            background: #2ecc71
        }

        .ti-item .dot.gold {
            background: var(--g)
        }

        .ti-item strong {
            color: rgba(255, 255, 255, .82)
        }

        @keyframes tickerScroll {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        /* ═════════STAT BAR════════ */
        .statbar {
            background: var(--fd);
            border-bottom: 1px solid rgba(176, 141, 87, .12)
        }

        .statbar-in {
            max-width: 1360px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            padding: 0 4vw
        }

        .stat-item {
            padding: 24px 16px;
            display: flex;
            align-items: center;
            gap: 14px;
            border-right: 1px solid rgba(255, 255, 255, .05)
        }

        .stat-item:last-child {
            border-right: none
        }

        .si-ico {
            font-size: 26px;
            flex-shrink: 0;
            filter: grayscale(.2)
        }

        .si-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 30px;
            color: var(--gl);
            line-height: 1;
            font-weight: 400
        }

        .si-lbl {
            font-size: 10.5px;
            font-weight: 500;
            color: rgba(255, 255, 255, .35);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 2px
        }

        /* ══════════SECTION SCAFFOLDING═══════════════ */
        .sec {
            padding: 88px 5vw
        }

        .sec-in {
            max-width: 1360px;
            margin: 0 auto
        }

        .sec-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 48px;
            flex-wrap: wrap
        }

        .sec-kicker {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--g);
            margin-bottom: 10px
        }

        .sec-h {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 3.8vw, 52px);
            font-weight: 300;
            color: var(--f);
            line-height: 1.1;
            margin-bottom: 10px
        }

        .sec-h em {
            font-style: italic;
            font-weight: 400
        }

        .sec-sub {
            font-size: 15px;
            color: var(--m);
            line-height: 1.75;
            max-width: 560px;
            font-weight: 300
        }

        .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--f);
            border: 1.5px solid var(--bd);
            padding: 9px 18px;
            border-radius: 6px;
            transition: .2s;
            white-space: nowrap
        }

        .link-arrow:hover {
            border-color: var(--f);
            background: var(--fxl)
        }
        /* scroll reveal */
        .rv {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease
        }
        .rv.show {
            opacity: 1;
            transform: none
        }
        .rv-d1 {
            transition-delay: .1s
        }
        .rv-d2 {
            transition-delay: .2s
        }

        .rv-d3 {
            transition-delay: .3s
        }

        .rv-d4 {
            transition-delay: .4s
        }

        /* ══════PROPERTY CARDS═══════════════════════════ */
        .prop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
            gap: 20px
        }

        .pcard {
            background: var(--w);
            border: 1px solid var(--bd);
            border-radius: 14px;
            overflow: hidden;
            transition: .32s;
            cursor: pointer;
            position: relative
        }

        .pcard:hover {
            transform: translateY(-5px);
            box-shadow: var(--sh3);
            border-color: rgba(176, 141, 87, .3)
        }

        .pcard.p-feat {
            border-color: rgba(176, 141, 87, .38);
            box-shadow: 0 0 0 1px rgba(176, 141, 87, .15)
        }

        /* image */
        .pc-img {
            position: relative;
            height: 218px;
            overflow: hidden;
            background: var(--crd)
        }

        .pc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(.88);
            transition: .55s
        }

        .pcard:hover .pc-img img {
            transform: scale(1.07);
            filter: brightness(.75)
        }

        .pc-bgs {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            z-index: 2
        }

        .badge {
            font-size: 9.5px;
            font-weight: 700;
            letter-spacing: .8px;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 30px
        }

        .b-sale {
            background: var(--f);
            color: var(--gl)
        }

        .b-hot {
            background: #e74c3c;
            color: #fff
        }

        .b-new {
            background: #2ecc71;
            color: #fff
        }

        .b-feat {
            background: var(--g);
            color: var(--f)
        }

        .b-veri {
            background: rgba(46, 204, 113, .85);
            color: #fff
        }

        .pc-fav {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 3;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, .92);
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            transition: .22s;
            backdrop-filter: blur(4px)
        }

        .pc-fav:hover {
            background: #fff;
            transform: scale(1.15)
        }

        .pc-fav.on {
            color: var(--red)
        }

        .pc-price {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(13, 26, 17, .88);
            backdrop-filter: blur(8px);
            color: var(--gl);
            font-family: 'Cormorant Garamond', serif;
            font-size: 21px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 8px;
            z-index: 2;
            line-height: 1.2;
            border: 1px solid rgba(176, 141, 87, .2)
        }

        .pc-price small {
            font-size: 10px;
            color: rgba(212, 175, 112, .5);
            font-family: 'Outfit', sans-serif;
            display: block;
            line-height: 1.2
        }

        .pc-imgct {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0, 0, 0, .5);
            color: #fff;
            font-size: 10.5px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 10px;
            z-index: 2;
            backdrop-filter: blur(4px)
        }

        /* body */
        .pc-body {
            padding: 16px 18px 18px
        }

        .pc-type {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--g);
            margin-bottom: 7px;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .pc-rating {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 3px;
            background: var(--gxp);
            border: 1px solid rgba(176, 141, 87, .2);
            padding: 2px 8px;
            border-radius: 6px
        }

        .pc-stars {
            color: var(--g);
            font-size: 10px;
            letter-spacing: 1px
        }

        .pc-rv {
            font-size: 11px;
            font-weight: 700;
            color: var(--f)
        }

        .pc-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--f);
            margin-bottom: 5px;
            line-height: 1.2
        }

        .pc-loc {
            font-size: 12.5px;
            color: var(--m);
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 12px
        }

        .pc-specs {
            display: flex;
            gap: 16px;
            margin-bottom: 11px;
            flex-wrap: wrap
        }

        .pc-sp {
            font-size: 12.5px;
            color: var(--s);
            display: flex;
            align-items: center;
            gap: 5px
        }

        .pc-sp strong {
            color: var(--f);
            font-weight: 600
        }

        .pc-tags {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            margin-bottom: 13px
        }

        .pc-tag {
            font-size: 11px;
            font-weight: 600;
            background: var(--fxl);
            color: var(--fl);
            padding: 3px 9px;
            border-radius: 8px
        }

        .pc-foot {
            display: flex;
            gap: 8px;
            padding-top: 12px;
            border-top: 1px solid var(--bd)
        }
        .btn-eq {
            flex: 1;
            background: var(--f);
            color: #fff;
            padding: 10px;
            border-radius: 7px;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: .2s
        }
        .btn-eq:hover {
            background: var(--fl)
        }
        .btn-dt {
            flex: 1;
            background: transparent;
            color: var(--f);
            padding: 10px;
            border-radius: 7px;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 600;
            border: 1.5px solid var(--bd);
            cursor: pointer;
            transition: .2s;
            text-align: center
        }
        .btn-dt:hover {
            border-color: var(--f);
            background: var(--fxl)
        }

        .btn-cmp {
            background: var(--gxp);
            color: var(--gd);
            padding: 10px 12px;
            border-radius: 7px;
            font-size: 12px;
            font-weight: 700;
            border: 1.5px solid rgba(176, 141, 87, .2);
            cursor: pointer;
            transition: .2s
        }

        .btn-cmp:hover,
        .btn-cmp.on {
            background: var(--g);
            color: var(--f);
            border-color: var(--g)
        }

        /* ═════LAND TYPE MOSAIC════════════════════ */
        .mosaic {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto;
            gap: 3px
        }

        .mt {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 4px
        }

        .mt::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13, 26, 17, .92) 0%, rgba(13, 26, 17, .1) 60%);
            transition: .4s
        }

        .mt:hover::after {
            background: linear-gradient(to top, rgba(13, 26, 17, .97) 0%, rgba(13, 26, 17, .35) 60%)
        }

        .mt-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .6s;
            display: block;
            filter: brightness(.7) saturate(.8)
        }

        .mt:hover .mt-img {
            transform: scale(1.06);
            filter: brightness(.55)
        }

        .mt:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2
        }

        .mt:nth-child(1) {
            min-height: 360px
        }

        .mt:nth-child(n+2):nth-child(-n+5) {
            min-height: 175px
        }

        .mt-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 2;
            transform: translateY(4px);
            transition: .3s
        }

        .mt:hover .mt-body {
            transform: translateY(0)
        }

        .mt-kicker {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(176, 141, 87, .65);
            margin-bottom: 5px
        }

        .mt-title {
            font-family: 'Cormorant Garamond', serif;
            color: #fff;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 3px
        }

        .mt:nth-child(1) .mt-title {
            font-size: 30px
        }

        .mt-ct {
            font-size: 12px;
            color: rgba(255, 255, 255, .42)
        }

        .mt-arr {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 2;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
            transition: .3s
        }

        .mt:hover .mt-arr {
            background: var(--g);
            border-color: var(--g);
            color: var(--f);
            transform: rotate(45deg)
        }

        /* ══════════LOCATION EXPLORER═══════════════ */
        .loc-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px
        }

        .lc {
            position: relative;
            height: 210px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: .3s
        }

        .lc:hover {
            transform: translateY(-4px);
            box-shadow: var(--sh2)
        }

        .lc-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: .55s;
            filter: brightness(.6) saturate(.75)
        }

        .lc:hover .lc-bg {
            transform: scale(1.06);
            filter: brightness(.48)
        }

        .lc-ov {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13, 26, 17, .92) 0%, transparent 55%)
        }

        .lc-hot {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(232, 196, 122, .9);
            color: var(--f);
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 3px 9px;
            border-radius: 20px
        }

        .lc-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px
        }

        .lc-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 500;
            color: #fff;
            margin-bottom: 2px
        }

        .lc-sub {
            font-size: 12px;
            color: rgba(255, 255, 255, .48)
        }

        .lc-price {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--gl);
            margin-top: 4px
        }

        /* ════════WHY US — SPLIT LAYOUT═══════════════ */
        .why-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center
        }

        .why-visual {
            position: relative
        }

        .why-img-main {
            width: 100%;
            height: 580px;
            object-fit: cover;
            border-radius: 14px;
            display: block;
            filter: brightness(.9) saturate(.9)
        }

        .why-card-float {
            position: absolute;
            bottom: 28px;
            right: -28px;
            background: var(--f);
            border-radius: 12px;
            padding: 22px 26px;
            border: 1px solid rgba(176, 141, 87, .25);
            box-shadow: var(--sh2);
            min-width: 190px
        }

        .wcf-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 40px;
            color: var(--gl);
            line-height: 1
        }

        .wcf-lbl {
            font-size: 11px;
            color: rgba(255, 255, 255, .4);
            font-weight: 500;
            letter-spacing: 1px;
            margin-top: 3px
        }

        .why-float2 {
            position: absolute;
            top: 32px;
            left: -22px;
            background: var(--w);
            border-radius: 10px;
            padding: 14px 18px;
            border: 1px solid var(--bd);
            box-shadow: var(--sh1);
            display: flex;
            align-items: center;
            gap: 12px
        }

        .wf2-ico {
            font-size: 24px
        }

        .wf2-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--f)
        }

        .wf2-sub {
            font-size: 11px;
            color: var(--m)
        }

        .why-pills {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 36px
        }

        .wp {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 18px 20px;
            background: var(--w);
            border: 1px solid var(--bd);
            border-radius: 10px;
            transition: .22s
        }

        .wp:hover {
            box-shadow: var(--sh1);
            border-color: rgba(176, 141, 87, .25);
            transform: translateX(4px)
        }

        .wp-ico {
            width: 46px;
            height: 46px;
            min-width: 46px;
            border-radius: 10px;
            background: var(--f);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px
        }

        .wp-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--f);
            margin-bottom: 4px
        }

        .wp-desc {
            font-size: 13px;
            color: var(--m);
            line-height: 1.65
        }

        /* ══════════════HOW IT WORKS═════════════════════ */
        .hiw-bg {
            background: var(--f);
            position: relative;
            overflow: hidden
        }

        .hiw-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(176, 141, 87, .05) 0%, transparent 65%)
        }

        .hiw-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            position: relative;
            z-index: 1
        }

        .hiw-step {
            padding: 40px 24px;
            text-align: center;
            position: relative
        }

        .hiw-step::after {
            content: '→';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(176, 141, 87, .2);
            font-size: 22px;
            z-index: 2
        }

        .hiw-step:last-child::after {
            display: none
        }

        .hiw-n {
            font-family: 'Cormorant Garamond', serif;
            font-size: 60px;
            font-weight: 300;
            color: rgba(176, 141, 87, .12);
            line-height: 1;
            margin-bottom: 4px
        }

        .hiw-ico {
            font-size: 32px;
            margin-bottom: 12px;
            display: block
        }

        .hiw-title {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 7px
        }

        .hiw-desc {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .38);
            line-height: 1.7
        }

        /* ═══════════NEW LAUNCHES══════════════ */
        .nl-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px
        }

        .nl-card {
            background: var(--w);
            border: 1px solid var(--bd);
            border-radius: 12px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 220px 1fr;
            transition: .28s;
            cursor: pointer
        }

        .nl-card:hover {
            box-shadow: var(--sh2);
            transform: translateY(-3px)
        }

        .nl-img {
            position: relative;
            overflow: hidden
        }

        .nl-img img {
            width: 220px;
            height: 100%;
            object-fit: cover;
            filter: brightness(.85);
            transition: .5s;
            display: block
        }

        .nl-card:hover .nl-img img {
            filter: brightness(.7);
            transform: scale(1.04)
        }

        .nl-body {
            padding: 20px 22px
        }

        .nl-type {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            color: var(--g);
            margin-bottom: 8px
        }

        .nl-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 21px;
            font-weight: 600;
            color: var(--f);
            margin-bottom: 5px;
            line-height: 1.25
        }

        .nl-loc {
            font-size: 12.5px;
            color: var(--m);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 4px
        }

        .nl-specs {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 13px
        }

        .nl-spec {
            font-size: 12.5px;
            color: var(--s);
            display: flex;
            align-items: center;
            gap: 6px
        }

        .nl-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 25px;
            color: var(--f);
            font-weight: 500;
            margin-bottom: 13px
        }

        .nl-price small {
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            color: var(--m);
            font-weight: 400
        }

        .nl-ctas {
            display: flex;
            gap: 8px
        }

        .btn-xsm-g {
            background: var(--g);
            color: var(--f);
            padding: 8px 16px;
            border-radius: 6px;
            font-family: 'Outfit', sans-serif;
            font-size: 12.5px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: .2s
        }

        .btn-xsm-g:hover {
            background: var(--gl)
        }

        .btn-xsm-o {
            background: transparent;
            color: var(--s);
            padding: 8px 14px;
            border-radius: 6px;
            font-family: 'Outfit', sans-serif;
            font-size: 12.5px;
            font-weight: 600;
            border: 1.5px solid var(--bd);
            cursor: pointer;
            transition: .2s
        }

        .btn-xsm-o:hover {
            border-color: var(--f);
            color: var(--f)
        }

        /* ══════════ROI CALCULATOR═══════════════ */
        .roi-bg {
            background: linear-gradient(140deg, var(--fd) 0%, var(--f) 50%, var(--fm) 100%);
            position: relative;
            overflow: hidden
        }

        .roi-bg::after {
            content: 'ROI';
            position: absolute;
            right: -20px;
            bottom: -40px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 220px;
            font-weight: 700;
            color: rgba(255, 255, 255, .025);
            pointer-events: none;
            line-height: 1
        }

        .roi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
            position: relative;
            z-index: 1
        }

        .roi-copy .sec-h {
            color: #fff
        }

        .roi-copy .sec-h em {
            color: var(--gl)
        }

        .roi-copy .sec-sub {
            color: rgba(255, 255, 255, .42)
        }

        .roi-stats {
            display: flex;
            gap: 36px;
            flex-wrap: wrap;
            margin-top: 32px
        }

        .rs-item .rs-val {
            font-family: 'Cormorant Garamond', serif;
            font-size: 38px;
            color: var(--gl);
            line-height: 1
        }

        .rs-item .rs-lbl {
            font-size: 10.5px;
            color: rgba(255, 255, 255, .32);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 3px
        }

        .roi-form {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(176, 141, 87, .22);
            border-radius: 14px;
            padding: 32px;
            backdrop-filter: blur(10px)
        }

        .rf-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            color: #fff;
            font-weight: 300;
            margin-bottom: 22px
        }

        .rf-title em {
            font-style: italic;
            color: var(--gl)
        }

        .rf-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px
        }

        .rf-grp {
            display: flex;
            flex-direction: column;
            gap: 5px
        }

        .rf-lbl {
            font-size: 10.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, .42);
            letter-spacing: .5px;
            text-transform: uppercase
        }

        .rf-inp {
            padding: 11px 13px;
            border: 1.5px solid rgba(255, 255, 255, .14);
            border-radius: 7px;
            background: rgba(255, 255, 255, .07);
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            color: #fff;
            outline: none;
            transition: .22s;
            width: 100%
        }

        .rf-inp:focus {
            border-color: var(--g);
            background: rgba(255, 255, 255, .1)
        }

        .rf-inp::placeholder {
            color: rgba(255, 255, 255, .27)
        }

        .btn-calc {
            width: 100%;
            background: var(--g);
            color: var(--f);
            padding: 13px;
            border-radius: 7px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: .2s;
            margin-top: 6px
        }

        .btn-calc:hover {
            background: var(--gl);
            transform: translateY(-1px)
        }

        .roi-result {
            display: none;
            margin-top: 18px;
            background: rgba(176, 141, 87, .1);
            border: 1px solid rgba(176, 141, 87, .28);
            border-radius: 10px;
            padding: 18px;
            animation: riseIn .4s ease
        }

        .roi-result.show {
            display: block
        }

        .rr-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 7px 0;
            border-bottom: 1px solid rgba(176, 141, 87, .12)
        }

        .rr-row:last-child {
            border: none;
            margin-top: 4px;
            font-size: 15px;
            font-weight: 700;
            color: var(--gl)
        }

        .rr-k {
            color: rgba(255, 255, 255, .48)
        }

        .rr-v {
            color: rgba(255, 255, 255, .85)
        }

        /* ═════════TESTIMONIALS════════════════ */
        .tst-bg {
            background: var(--gxp)
        }

        .tst-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        .tst-card {
            background: var(--w);
            border: 1px solid var(--bd);
            border-radius: 14px;
            padding: 26px;
            position: relative;
            overflow: hidden;
            transition: .25s
        }

        .tst-card:hover {
            box-shadow: var(--sh1);
            border-color: rgba(176, 141, 87, .28);
            transform: translateY(-3px)
        }

        .tst-card::before {
            content: '"';
            position: absolute;
            top: -14px;
            right: 16px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 110px;
            color: rgba(176, 141, 87, .08);
            line-height: 1;
            pointer-events: none;
            font-style: italic
        }

        .tst-stars {
            color: var(--g);
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 13px
        }

        .tst-txt {
            font-size: 14px;
            color: var(--s);
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1
        }

        .tst-foot {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .tst-av {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--f);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
            color: var(--gl);
            flex-shrink: 0;
            font-family: 'Cormorant Garamond', serif
        }

        .tst-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--f)
        }

        .tst-plot {
            font-size: 12px;
            color: var(--m)
        }

        .tst-verified {
            margin-left: auto;
            font-size: 10px;
            font-weight: 700;
            color: var(--green);
            display: flex;
            align-items: center;
            gap: 4px
        }

        /* ══════════BLOG═══════════════ */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        .bc {
            background: var(--w);
            border: 1px solid var(--bd);
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: .28s;
            display: block;
            color: inherit;
            text-decoration: none
        }

        .bc:hover {
            box-shadow: var(--sh2);
            transform: translateY(-4px)
        }

        .bc-img {
            height: 192px;
            overflow: hidden;
            position: relative
        }

        .bc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(.85);
            transition: .5s;
            display: block
        }

        .bc:hover .bc-img img {
            transform: scale(1.05);
            filter: brightness(.72)
        }

        .bc-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(176, 141, 87, .88);
            color: var(--f);
            font-size: 9.5px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 20px
        }

        .bc-body {
            padding: 18px
        }

        .bc-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 19px;
            font-weight: 600;
            color: var(--f);
            margin-bottom: 8px;
            line-height: 1.3
        }

        .bc-excerpt {
            font-size: 13px;
            color: var(--m);
            line-height: 1.7;
            margin-bottom: 12px
        }

        .bc-meta {
            display: flex;
            align-items: center;
            font-size: 11.5px;
            color: var(--li);
            gap: 10px
        }

        .bc-read {
            margin-left: auto;
            font-weight: 700;
            font-size: 12px;
            color: var(--g)
        }

        /* ════════════CTA STRIP═════════════ */
        .cta-strip {
            background: var(--f);
            padding: 80px 5vw;
            position: relative;
            overflow: hidden
        }

        .cta-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 80% 50%, rgba(176, 141, 87, .07) 0%, transparent 55%)
        }

        .cta-wrap {
            max-width: 1360px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1
        }

        .cta-h {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(30px, 4vw, 56px);
            font-weight: 300;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 14px
        }

        .cta-h em {
            font-style: italic;
            color: var(--gl)
        }

        .cta-p {
            font-size: 15px;
            color: rgba(255, 255, 255, .42);
            line-height: 1.75;
            max-width: 560px;
            font-weight: 300
        }

        .cta-btns {
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex-shrink: 0
        }

        .btn-cta-gold {
            background: var(--g);
            color: var(--f);
            padding: 17px 40px;
            border-radius: 7px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: .22s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center
        }

        .btn-cta-gold:hover {
            background: var(--gl);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(176, 141, 87, .3)
        }

        .btn-cta-wa {
            background: transparent;
            color: #25d366;
            border: 1.5px solid rgba(37, 211, 102, .3);
            padding: 15px 32px;
            border-radius: 7px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: .22s;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            white-space: nowrap
        }

        .btn-cta-wa:hover {
            background: rgba(37, 211, 102, .08);
            transform: translateY(-1px)
        }

        /* ════════════STICKY LEAD BAR═════════════ */
        .sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 800;
            background: var(--fd);
            border-top: 1px solid rgba(176, 141, 87, .2);
            padding: 12px 5vw;
            display: flex;
            align-items: center;
            gap: 16px;
            transform: translateY(100%);
            transition: .4s;
            box-shadow: 0 -4px 32px rgba(0, 0, 0, .25)
        }

        .sticky-bar.show {
            transform: translateY(0)
        }

        .sb-txt {
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            flex: 1;
            min-width: 0
        }

        .sb-txt strong {
            color: #fff
        }

        .sb-ctas {
            display: flex;
            gap: 8px;
            flex-shrink: 0
        }

        .sb-btn1 {
            background: var(--g);
            color: var(--f);
            padding: 9px 20px;
            border-radius: 5px;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: .2s;
            white-space: nowrap
        }

        .sb-btn1:hover {
            background: var(--gl)
        }

        .sb-btn2 {
            background: rgba(37, 211, 102, .12);
            color: #25d366;
            padding: 9px 16px;
            border-radius: 5px;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 600;
            border: 1.5px solid rgba(37, 211, 102, .25);
            cursor: pointer;
            transition: .2s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px
        }

        .sb-btn2:hover {
            background: rgba(37, 211, 102, .2)
        }

        .sb-close {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, .3);
            font-size: 18px;
            cursor: pointer;
            padding: 4px 8px;
            flex-shrink: 0
        }

        .sb-close:hover {
            color: rgba(255, 255, 255, .7)
        }

        /* ════════FOOTER═════════════════ */
        .footer {
            background: var(--fd);
            padding: 60px 5vw 28px
        }

        .footer-top {
            max-width: 1360px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
            gap: 44px;
            padding-bottom: 44px;
            border-bottom: 1px solid rgba(255, 255, 255, .06)
        }

        .ft-brand .logo {
            font-size: 20px;
            margin-bottom: 12px;
            display: block
        }

        .ft-brand p {
            font-size: 13px;
            color: rgba(255, 255, 255, .32);
            line-height: 1.8;
            max-width: 280px;
            margin-bottom: 18px;
            font-weight: 300
        }

        .ft-contact a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
            margin-bottom: 7px;
            transition: .15s
        }

        .ft-contact a:hover {
            color: var(--gl)
        }

        .ft-socials {
            display: flex;
            gap: 9px;
            margin-top: 18px
        }

        .ft-soc {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: rgba(255, 255, 255, .35);
            cursor: pointer;
            transition: .2s
        }

        .ft-soc:hover {
            border-color: var(--gl);
            color: var(--gl)
        }

        .ft-col h4 {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .27);
            margin-bottom: 16px
        }

        .ft-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px
        }

        .ft-col ul li a {
            font-size: 13px;
            color: rgba(255, 255, 255, .38);
            transition: .15s;
            font-weight: 300
        }

        .ft-col ul li a:hover {
            color: var(--gl)
        }

        .footer-btm {
            max-width: 1360px;
            margin: 0 auto;
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px
        }

        .ft-copy {
            font-size: 12px;
            color: rgba(255, 255, 255, .2)
        }

        .ft-legal {
            display: flex;
            gap: 20px
        }

        .ft-legal a {
            font-size: 12px;
            color: rgba(255, 255, 255, .22);
            transition: .15s
        }

        .ft-legal a:hover {
            color: var(--gl)
        }

        /* ═══════════FLOAT ACTIONS══════════════ */
        .float-stack {
            position: fixed;
            right: 24px;
            bottom: 80px;
            z-index: 700;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center
        }

        .flt-wa {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
            cursor: pointer;
            animation: waBeat 3s infinite;
            text-decoration: none;
            color: inherit
        }

        @keyframes waBeat {

            0%,
            100% {
                box-shadow: 0 6px 28px rgba(37, 211, 102, .4)
            }

            50% {
                box-shadow: 0 6px 36px rgba(37, 211, 102, .65)
            }
        }

        .flt-call {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--f);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
            cursor: pointer;
            border: 2px solid var(--g);
            text-decoration: none
        }

        .flt-top {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(13, 26, 17, .85);
            border: 1.5px solid rgba(176, 141, 87, .3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: var(--gl);
            cursor: pointer;
            transition: .3s;
            opacity: 0;
            pointer-events: none
        }

        .flt-top.show {
            opacity: 1;
            pointer-events: auto
        }

        .flt-top:hover {
            background: var(--f)
        }

        /* ══════════════ENQUIRY MODAL═══════════ */
        .m-overlay {
            position: fixed;
            inset: 0;
            z-index: 1500;
            background: rgba(13, 26, 17, .65);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px
        }

        .m-overlay.open {
            display: flex
        }

        .m-box {
            background: var(--w);
            border-radius: 16px;
            width: min(500px, 100%);
            overflow: hidden;
            box-shadow: var(--sh3);
            animation: popIn .28s cubic-bezier(.34, 1.56, .64, 1)
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(.92) translateY(20px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        .m-head {
            background: var(--f);
            padding: 26px 28px;
            position: relative;
            overflow: hidden
        }

        .m-head::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(176, 141, 87, .09), transparent 65%);
            pointer-events: none
        }

        .m-kicker {
            font-size: 9.5px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--g);
            margin-bottom: 7px
        }

        .m-h {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 300;
            color: #fff
        }

        .m-h em {
            font-style: italic;
            color: var(--gl)
        }

        .m-close {
            position: absolute;
            top: 14px;
            right: 16px;
            background: rgba(255, 255, 255, .1);
            border: none;
            color: rgba(255, 255, 255, .6);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .2s
        }

        .m-close:hover {
            background: rgba(255, 255, 255, .2);
            color: #fff
        }

        .m-body {
            padding: 26px 28px
        }

        .fg {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 14px
        }

        .fg label {
            font-size: 10.5px;
            font-weight: 700;
            color: var(--f);
            letter-spacing: .6px;
            text-transform: uppercase
        }

        .fg input,
        .fg select,
        .fg textarea {
            padding: 11px 13px;
            border: 1.5px solid var(--bd);
            border-radius: 7px;
            font-family: 'Outfit', sans-serif;
            font-size: 13.5px;
            color: var(--ink);
            outline: none;
            transition: .2s;
            width: 100%
        }

        .fg input:focus,
        .fg select:focus,
        .fg textarea:focus {
            border-color: var(--g);
            box-shadow: 0 0 0 3px rgba(176, 141, 87, .1)
        }

        .fg2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .btn-submit {
            width: 100%;
            background: var(--f);
            color: #fff;
            padding: 13px;
            border-radius: 7px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: .22s;
            margin-top: 4px
        }

        .btn-submit:hover {
            background: var(--fl)
        }

        .m-wa-alt {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #25d366;
            font-size: 13.5px;
            font-weight: 600;
            margin-top: 12px;
            padding: 10px;
            border: 1.5px solid rgba(37, 211, 102, .2);
            border-radius: 7px;
            cursor: pointer;
            transition: .2s
        }

        .m-wa-alt:hover {
            background: rgba(37, 211, 102, .06)
        }
        /* toast */
        #toast {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            z-index: 2000;
            background: var(--f);
            color: #fff;
            padding: 14px 24px;
            border-radius: 9px;
            font-size: 13.5px;
            font-weight: 600;
            box-shadow: var(--sh2);
            opacity: 0;
            transition: .3s;
            white-space: nowrap;
            border-left: 3px solid var(--green)
        }
        #toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0)
        }
        /* ══════════RESPONSIVE═══════════════ */
        @media(max-width:1100px) {
            .mosaic {
                grid-template-columns: 1fr 1fr
            }

            .mt:nth-child(1) {
                grid-column: span 2
            }

            .why-wrap,
            .roi-grid {
                grid-template-columns: 1fr
            }

            .why-card-float,
            .why-float2 {
                display: none
            }

            .why-img-main {
                height: 400px
            }

            .statbar-in {
                grid-template-columns: repeat(3, 1fr)
            }

            .stat-item:nth-child(4),
            .stat-item:nth-child(5) {
                border-top: 1px solid rgba(255, 255, 255, .05)
            }

            .footer-top {
                grid-template-columns: 1fr 1fr
            }

            .tst-grid {
                grid-template-columns: 1fr 1fr
            }

            .hiw-grid {
                grid-template-columns: 1fr 1fr
            }

            .hiw-step::after {
                display: none
            }

            .loc-grid {
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:768px) {

            .nav-links,
            .nav-wa {
                display: none
            }

            .nav-hamburger {
                display: flex
            }

            .hero-h1 {
                letter-spacing: -1px
            }

            .hero-search-wrap {
                flex-direction: column;
                gap: 10px;
                padding: 14px;
                border-radius: 12px;
                align-items: stretch
            }

            .hsw-divider {
                display: none
            }
            .hsw-sel {
                width: 100%
            }
            .hsw-btn {
                justify-content: center
            }
            .nl-grid,
            .blog-grid {
                grid-template-columns: 1fr
            }

            .nl-card {
                grid-template-columns: 1fr
            }
            .nl-img img {
                width: 100%;
                height: 180px
            }
            .cta-wrap {
                grid-template-columns: 1fr
            }

            .mosaic {
                grid-template-columns: 1fr
            }
            .mt:nth-child(1) {
                grid-column: span 1
            }
            .hiw-grid {
                grid-template-columns: 1fr
            }
            .tst-grid {
                grid-template-columns: 1fr
            }
            .hero-pills {
                gap: 6px
            }
            .hp {
                font-size: 11.5px;
                padding: 6px 12px
            }

            .statbar-in {
                grid-template-columns: repeat(2, 1fr)
            }

            .footer-top {
                grid-template-columns: 1fr
            }
            .cta-btns {
                width: 100%
            }
            .sticky-bar {
                flex-wrap: wrap
            }
            .sec {
                padding: 56px 5vw
            }
        }
/* HERO SHOULD NEVER COVER MODAL */
.hero,
.hero-ov1,
.hero-ov2,
.hero-grain {
    z-index: 1 !important;
}
