        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C0111F;
            --red-deep: #8B0D18;
            --red-bright: #E8172A;
            --red-glow: rgba(192, 17, 31, 0.35);
            --black: #070608;
            --copper: #915b42;
            --copper-light: #a96f55;
            --copper-bright: #b38673;
            --dark: #0E0B0C;
            --dark-mid: #161012;
            --surface: #1C1416;
            --text: #F0EAE8;
            
            --text-dim: #e3c1b2;
            --text-muted: #5A4848;
            --off-white: #F5F0EE;
            --silver: #C8C0BC;
            --silver-dim: #8A8480;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100%;
        }

        body {
            font-family: 'Kanit';
            margin: 0;
            background: url('Images/Gradient-TL (1).webp') fixed center/cover no-repeat;
            color: var(--text);
            overflow-x: hidden;
            max-width: 100%;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Georama', sans-serif;
            font-optical-sizing: auto;
            font-variation-settings: "wdth" 150;
        }

        p {
            font-family: 'Kanit';
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            margin: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.2rem 3.5rem;
            background: var(--copper);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
        }

        nav.scrolled {
            background: rgba(145, 91, 66, 0.92);
            border-bottom-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }

        .nav-brand {
            display: flex;
            flex-direction: row;
            align-items: center;
            
            gap: 1.6rem;
            line-height: 1.2;
            min-width: 0;
        }

        .nav-brand .name {
            display: block;
            flex-shrink: 0;
            height: 70px;
            width: auto;
            max-width: min(280px, 42vw);
            object-fit: contain;
            object-position: left center;
            transform: scale(1.2);
        }

        .nav-brand .dev {
            font-size: 9px;
            letter-spacing: 0.4em;
            color: #fff;
            text-transform: uppercase;
            margin-top: 0;
            min-width: 0;
        }

        .nav-brand .dev span {
            color: #fff;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .nav-links a {
            font-size: 11px;
            font-weight: 300;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: var(--copper-bright);
        }

        .nav-cta {
            padding: 0.6rem 1.8rem;
            background: #fff;
            color: var(--copper);
            border: none;
            font-family: 'Kanit';
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
        }

        .nav-cta:hover {
            background: var(--copper-bright);
            color: #fff;
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--copper);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            
            filter: brightness(0.3) saturate(0.7);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 55%;
            background: linear-gradient(0deg, var(--copper) 0%, transparent 100%);
        }

        /* Red glow orb */
        .hero-orb {
            position: absolute;
            top: 5%;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(192, 17, 31, 0.5) 0%, rgba(192, 17, 31, 0.1) 40%, transparent 70%);
            animation: orbPulse 4s ease-in-out infinite;
        }

        @keyframes orbPulse {

            0%,
            100% {
                opacity: 0.6;
                transform: translateX(-50%) scale(1)
            }

            50% {
                opacity: 1;
                transform: translateX(-50%) scale(1.1)
            }
        }

        .hero-skyline {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 45%;
            
            filter: brightness(0.15) saturate(0.3);
            mask-image: linear-gradient(180deg, transparent 0%, black 30%);
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%);
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
        }

        
        .hero-content {
            position: absolute;
            bottom: 38%;
            
            right: 25%;
            transform: translateX(50%);
            z-index: 2;
            text-align: center;
            padding: 0 2rem;
        }

        .hero-eyebrow:empty,
        .hero-subtitle:empty,
        .hero-title:empty {
            display: none;
            margin: 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--copper-bright);
            margin-bottom: 2.5rem;
        }

        .hero-badge::before,
        .hero-badge::after {
            content: '';
            display: block;
            width: 40px;
            height: 1px;
            background: var(--red);
        }

        /* CREST SVG */
        .hero-crest {
            width: 120px;
            height: 140px;
            margin: 0 auto 2rem;
            display: block;
            filter: drop-shadow(0 0 30px rgba(192, 17, 31, 0.6));
            animation: crestFloat 6s ease-in-out infinite;
        }

        @keyframes crestFloat {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        .hero-eyebrow {
            font-size: 13px;
            font-weight: 200;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 1rem;
        }

        
        .hero-title {
            
            font-family: 'Georama', sans-serif;
            
            font-size: clamp(20px, 5vw, 40px);
            font-weight: 600;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--off-white);
            margin-bottom: 0.5rem;
        }

        .hero-title .red {
            color: #fff;
            display: block;
            text-shadow: 0 0 40px rgba(232, 23, 42, 0.5);
        }

        
        .hero-subtitle {
            
            font-family: 'Georama', sans-serif;
            font-size: clamp(14px, 2.5vw, 20px);
            text-transform: uppercase;
            font-weight: 600;
            color: #fff;
            margin: 1.5rem 0 2.5rem;
            letter-spacing: 0.05em;
        }

        .hero-actions {
            display: flex;
            gap: 1.25rem;
            
            justify-content: center;
            flex-wrap: wrap;
            padding-right: 5.5%;
            transform: translateY(-1.5rem);
        }

        .btn-red {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1rem 2.5rem;
            background: var(--copper);
            color: var(--off-white);
            border: none;
            font-family: 'Kanit';
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
        }

        .btn-red:hover {
            background: var(--copper-bright);
        }

        .btn-ghost {
            padding: 1rem 2.5rem;
            background: solid white;
            border-color: #fff;
            color: var(--copper-bright);
            font-family: 'Kanit';
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-ghost:hover {
            background: var(--copper-bright);
            color: #fff;
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            z-index: 2;
        }

        .hero-scroll span {
            font-size: 8px;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {

            0%,
            100% {
                opacity: 0.3
            }

            50% {
                opacity: 1
            }
        }

        /* TICKER */
        .ticker {
            background: #fff;
            padding: 0.65rem 0;
            overflow: hidden;
            position: relative;
        }

        .ticker-track {
            display: flex;
            gap: 0;
            white-space: nowrap;
            animation: ticker 20s linear infinite;
        }

        .ticker-item {
            font-size: 10px;
            font-weight: 400;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            
            color: var(--copper);
            padding: 0 3rem;
            border-right: 1px solid rgb(145 91 66 / 20%);
        }

        @keyframes ticker {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        /* SECTION COMMON */
        section {
            position: relative;
        }

        .pad {
            padding: 7rem 3.5rem;
        }

        .pad-sm {
            padding: 5rem 3.5rem;
        }

        .mw {
            max-width: 1200px;
            margin: 0 auto;
        }

        .label {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.55em;
            text-transform: uppercase;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            margin-left: 3rem;
        }

        .title {
            font-family: 'Georama', sans-serif;
            font-size: clamp(28px, 5vw, 40px);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #fff;
            line-height: 1;
            margin-bottom: 1.25rem;
        }

        .title em {
            font-family: 'Georama', sans-serif;
            font-style: italic;
            font-weight: 500;
            color: #fff;
            text-transform: none;
            letter-spacing: 0.02em;
            display: block;
            font-size: 0.9em;
        }

        .body-text {
            font-family: 'Kanit';
            font-size: 15px !important;
            line-height: 1.8;
            color: #fff;
            font-weight: 300;
            max-width: 560px;
        }

        .red-rule {
            width: 50px;
            height: 3px;
            background: #fff;
            margin: 1.5rem 0;
        }

        .location,
        .amenities,
        .residences,
        .lifestyle,
        .developer {
            background: transparent;
        }

        .heritage-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .heritage-visual {
            position: relative;
        }

        .heritage-img {
            width: 100%;
            aspect-ratio: 3/4;
            background: url('Images/TL-PHOTO-WEB.webp') center/cover;
            position: relative;
        }

        
        .heritage-img::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(7, 6, 8, 0.85) 100%);
        }

        .heritage-crest-sm {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            z-index: 2;
        }

        .heritage-crest-sm svg {
            width: 60px;
            filter: drop-shadow(0 0 12px rgba(192, 17, 31, 0.8));
        }

        .heritage-quote {
            margin-top: 1.5rem;
            padding: 1.5rem;
            border-left: 3px solid #fff;
            background: rgba(161, 101, 73, 0.85);
        }

        .heritage-quote p {
            font-family: 'Kanit';
            font-size: 19px;
            font-style: italic;
            font-weight: 300;
            color: #fff;
            line-height: 1.5;
        }

        .heritage-quote cite {
            display: block;
            margin-top: 0.6rem;
            font-family: 'Georama', sans-serif;
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #fff;
            font-style: normal;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 3rem;
            border: 1px solid #fff;
        }

        .stat {
            padding: 1.5rem;
            border-right: 1px solid rgba(192, 17, 31, 0.15);
            text-align: center;
        }

        .stat:last-child {
            border-right: none;
        }

        .stat-n {
            font-family: 'Kanit';
            font-size: 38px;
            font-weight: 500;
            color: var(--copper-bright);
            line-height: 1;
        }

        .stat-l {
            font-size: 9px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--text-dim);
            margin-top: 0.4rem;
        }

        /* LOCATION */
        section#location {
            padding-bottom: 0;
        }

        .location {
            background: transparent;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
            position: relative;
        }

        .location-grid>div {
            min-width: 0;
        }

        .location .body-text {
            max-width: 100%;
            overflow-wrap: anywhere;
        }

        .location-map-wrap {
            position: relative;
            width: 100%;
            max-width: 720px;
            margin-inline: auto;
        }

        .location-map {
            width: 100%;
            aspect-ratio: 4 / 3;
            min-height: 340px;
            background: var(--copper);
            border: 1px solid rgba(192, 17, 31, 0.2);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .map-img {
            width: 100%;
            height: 100%;
            background: url('Images/Bull-Map.webp') center/cover no-repeat;
        }

        .map-grid-overlay {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(192, 17, 31, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(192, 17, 31, 0.06) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .map-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .map-dot {
            width: 16px;
            height: 16px;
            background: var(--copper-bright);
            border-radius: 50%;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 0 20px rgba(232, 23, 42, 0.8);
        }

        .map-dot::before {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 1px solid rgba(232, 23, 42, 0.3);
            animation: ripple1 2s ease-out infinite;
        }

        .map-dot::after {
            content: '';
            position: absolute;
            inset: -16px;
            border-radius: 50%;
            border: 1px solid rgba(232, 23, 42, 0.15);
            animation: ripple1 2s ease-out 0.5s infinite;
        }

        @keyframes ripple1 {
            0% {
                opacity: 1;
                transform: scale(1)
            }

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

        .map-label {
            margin-top: 10px;
            font-size: 9px;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--copper-bright);
            white-space: nowrap;
        }

        .loc-corner {
            position: absolute;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #fff;
            padding: 0.5rem;
            z-index: 2;
        }

        .loc-corner.tl {
            bottom: 0.75rem;
            left: 0.75rem;
            top: auto;
        }

        .loc-corner.br {
            bottom: 0.75rem;
            right: 0.75rem;
            text-align: right;
        }

        .lp-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 3rem;
            row-gap: 0;
            margin-top: 1rem;
            margin-bottom: 5rem;
        }

        .lp-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 0;
            transition: background 0.2s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            min-width: 0;
        }

        .lp-icon {
            width: 35px;
            height: 35px;
            color: var(--red);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lp-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .lp-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
        }

        .lp-name {
            font-size: 13px;
            font-weight: 300;
            color: #fff;
            flex: 1;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            overflow-wrap: anywhere;
        }

        /* AMENITIES */
        .amenities {
            background: transparent;
        }

        .amenities-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .amenities-header .label {
            justify-content: flex-start;
            margin-left: 0;
        }

        .amenities-header .label::before {
            display: block;
            /* Restored line for left alignment */
        }

        .amenities-header .title {
            text-align: center;
        }

        .amenity-label {
            font-family: 'Georama', sans-serif;
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: white;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .amenity-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .outside-amenities {
            margin-bottom: 5rem;
        }

        .amenities-grid-outside {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .inside-amenities {
            margin-top: 2rem;
        }

        /* Slider specific */
        .amenities-slider-inside {
            margin-top: 1rem;
        }

        .amenities-slider-inside .slick-track {
            display: flex !important;
        }

        .amenities-slider-inside .slick-slide {
            height: inherit !important;
            display: flex !important;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
        }

        .amenities-slider-inside .slick-list {
            border-left: 1px solid rgba(255, 255, 255, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .amenities-slider-inside .slick-slide>div {
            width: 100%;
            display: flex;
        }

        /* Slick Dots Styling */
        .amenities-slider-inside .slick-dots {
            bottom: -45px;
            display: flex !important;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            position: absolute;
        }

        .amenities-slider-inside .slick-dots li {
            margin: 0 5px;
        }

        .amenities-slider-inside .slick-dots li button {
            font-size: 0;
            width: 8px;
            height: 8px;
            padding: 0;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .amenities-slider-inside .slick-dots li.slick-active button {
            background: var(--copper-bright);
            transform: scale(1.4);
        }

        .amenities-slider-inside .slick-dots li:nth-child(n+6) {
            display: none;
        }

        .am-card {
            background: rgba(161, 101, 73, 0.85);
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
            transition: background 0.3s, transform 0.3s;
            cursor: default;
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 100%;
            min-height: 180px;
        }

        .am-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #fff;
            transform: scaleX(0);
            transition: transform 0.4s;
            transform-origin: left;
        }

        .am-card:hover {
            background: var(--copper);
        }

        .am-card:hover::before {
            transform: scaleX(1);
        }

        .am-num {
            font-family: 'Georama', sans-serif;
            font-size: 11px;
            font-weight: 500;
            color: #fff;
            letter-spacing: 0.2em;
            margin-bottom: 1.5rem;
        }

        .am-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            object-fit: contain;
        }

        .am-name {
            font-family: 'Georama', sans-serif;
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--off-white);
            margin-bottom: 1rem;
        }

        .am-desc {
            font-size: 15px;
            line-height: 1.6;
            color: #fff;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Outside amenities slider (mobile only) */
        .amenities-slider-outside {
            display: none;
            margin-top: 1rem;
        }

        .amenities-slider-outside .slick-track {
            display: flex !important;
        }

        .amenities-slider-outside .slick-slide {
            height: inherit !important;
            display: flex !important;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
        }

        .amenities-slider-outside .slick-list {
            border-left: 1px solid rgba(255, 255, 255, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .amenities-slider-outside .slick-slide>div {
            width: 100%;
            display: flex;
        }

        .amenities-slider-outside .slick-dots {
            bottom: -45px;
            display: flex !important;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            position: absolute;
        }

        .amenities-slider-outside .slick-dots li {
            margin: 0 5px;
        }

        .amenities-slider-outside .slick-dots li button {
            font-size: 0;
            width: 8px;
            height: 8px;
            padding: 0;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .amenities-slider-outside .slick-dots li.slick-active button {
            background: var(--copper-bright);
            transform: scale(1.4);
        }

        @media(max-width: 900px) {
            .amenities-grid-outside {
                display: none;
            }

            .amenities-slider-outside {
                display: block;
            }
        }

        /* RESIDENCES */
        .residences {
            background: transparent;
        }

        .res-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 3.5rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .res-slider-wrap {
            position: relative;
            width: 100%;
        }

        .res-cards {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            gap: 0;
        }

        .res-cards::-webkit-scrollbar {
            display: none;
        }

        .res-card {
            position: relative;
            flex: 0 0 33.3333%;
            overflow: hidden;
            cursor: pointer;
            scroll-snap-align: start;
        }

        .res-img {
            aspect-ratio: 2/3;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s, filter 0.4s;
            filter: brightness(1) saturate(1);
        }

        .res-card:hover .res-img {
            transform: scale(1.06);
            filter: brightness(1) saturate(1);
        }

        .res-c1 .res-img {
            background-image: url('Images/plans/3bhk-small.webp');
        }

        .res-c2 .res-img {
            background-image: url('Images/plans/4bhk-type-1-small.webp');
        }

        .res-c3 .res-img {
            background-image: url('Images/plans/4bhk+utility-small.webp');
        }

        .res-c4 .res-img {
            background-image: url('Images/plans/4bhk-type-2-small.webp');
        }

        .res-c5 .res-img {
            background-image: url('Images/plans/site-plan-thumb.webp');
        }

        .res-controls {
            display: flex;
            justify-content: flex-end;
            gap: 1px;
            margin-top: 2rem;
            z-index: 20;
        }

        .res-arrow {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--copper);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(192, 17, 31, 0.2);
            outline: none;
        }

        .res-arrow:hover {
            background: var(--copper-bright);
            color: var(--off-white);
            border-color: #fff;
        }

        .res-arrow svg {
            width: 24px;
            height: 24px;
            fill: var(--copper);
        }

        .res-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(7, 6, 8, 0.95) 0%, rgba(7, 6, 8, 0.3) 50%, transparent 100%);
        }

        .res-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 1.75rem;
        }

        .res-tag {
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--copper-bright);
            margin-bottom: 0.5rem;
        }

        .res-name {
            font-family: 'Georama', sans-serif;
            font-size: 20px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--off-white);
            margin-bottom: 0.3rem;
        }

        .res-size {
            font-size: 12px;
            color: var(--text-dim);
            font-weight: 200;
        }

        .res-hover-cta {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .res-card:hover .res-hover-cta {
            opacity: 1;
        }

        .res-hover-btn {
            padding: 0.75rem 2rem;
            border: 1px solid var(--red);
            color: var(--copper-bright);
            background: rgba(7, 6, 8, 0.8);
            font-family: 'Kanit';
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
        }

        .res-hover-btn:hover {
            background: var(--red);
            color: var(--off-white);
        }

        .res-separator {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            width: 1px;
            background: rgba(192, 17, 31, 0.2);
        }

        /* LIFESTYLE */
        .lifestyle {
            background: transparent;
        }

        .lifestyle-hero-img {
            width: 100%;
            height: 420px;
            position: relative;
            background: url('Images/skyline2.webp') center/cover;
            overflow: hidden;
            margin-bottom: 5rem;
        }

        .lifestyle-hero-img::after {
            content: '';
            position: absolute;
            inset: 0;
        }

        .lifestyle-hero-text {
            position: absolute;
            bottom: 5rem;
            left: 3.5rem;
            z-index: 1;
        }

        .lifestyle-hero-text .label {
            color: #fff;
        }

        .lifestyle-hero-text h2 {
            font-family: 'Georama', sans-serif;
            font-size: clamp(26px, 5vw, 40px);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--off-white);
            line-height: 1.3;
            max-width: 500px;
            margin-left: 3rem;
        }

        .lifestyle-hero-text h2 span {
            color: #fff;
        }

        .lifestyle-pillars {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .ls-pillar {
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.75rem;
            position: relative;
            transition: border-color 0.3s;
        }

        .ls-pillar:hover {
            border-top-color: #fff;
        }

        .ls-num {
            font-family: 'Georama', sans-serif;
            font-size: 31px;
            font-weight: 500;
            color: #fff;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .ls-title {
            font-family: 'Georama', sans-serif;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #fff;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .ls-text {
            font-size: 15px;
            line-height: 1.7;
            color: #fff;
        }

        /* GALLERY */
        .gallery-strip {
            display: flex;
            height: 260px;
            overflow: hidden;
        }

        .gs {
            flex: 1;
            background-size: cover;
            background-position: center;
            filter: brightness(0.5) saturate(0.5);
            transition: flex 0.6s cubic-bezier(.4, 0, .2, 1), filter 0.4s;
            cursor: pointer;
            position: relative;
        }

        .gs:hover {
            flex: 2.5;
            filter: brightness(0.75) saturate(0.9);
        }

        .gs::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(7, 6, 8, 0.6) 100%);
        }

        .developer {
            background: transparent;
            border-top: 1px solid rgba(192, 17, 31, 0.15);
        }

        .dev-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 5rem;
            align-items: start;
        }

        .dev-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .sg-badge {
            display: inline-flex;
            flex-direction: column;
            border: 1px solid var(--copper-bright);
            padding: 1.5rem;
            max-width: 280px;
        }

        .sg-badge .sg-label {
            font-size: 8px;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0rem;
        }

        .sg-badge .sg-name {
            font-family: 'Kanit';
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--off-white);
        }

        .sg-badge .sg-tag {
            font-size: 9px;
            letter-spacing: 0.3em;
            color: var(--red);
            text-transform: uppercase;
            margin-top: 4px;
        }

        .dev-bullets {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-top: 0.5rem;
        }

        .dev-bullet {
            font-size: 11px;
            font-weight: 300;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-dim);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .dev-bullet::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--red);
            flex-shrink: 0;
        }

        .dev-details p {
            font-size: 16px;
            line-height: 1.85;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .dev-details>.label {
            color: #fff;
        }

        .dev-feats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .dev-feat {
            padding: 1.25rem;
            border: 1px solid rgba(192, 17, 31, 0.1);
            background: rgba(161, 101, 73, 0.85);
            transition: background 0.3s;
            text-align: center;
        }

        .dev-feat:hover {
            border-color: var(--copper);
            background: var(--copper)
        }

        .dev-feat h4 {
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .dev-feat p {
            font-size: 15px;
            line-height: 1.6;
            color: #fff;
        }

        /* CONTACT */
        .contact {
            position: relative;
            background: url('Images/contact_bg.webp') center/cover no-repeat;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(127, 83, 68, 0.85);
        }

        .contact-grid {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info h3 {
            font-family: 'Georama', sans-serif;
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            line-height: 1.4;
            margin-top: 1.5rem;
            max-width: 400px;
        }

        .contact-details {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cd {
            border-left: 2px solid #fff;
            padding-left: 1rem;
        }

        .cd h4 {
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 0.4rem;
        }

        .cd p {
            font-size: 14px;
            line-height: 1.7;
            color: #fff;
        }

        .cd p a {
            color: #fff;
        }

        .cf {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .fg {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .fg label {
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: #fff;
        }

        .fg input,
        .fg select,
        .fg textarea {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgb(255 255 255 / 20%);
            color: var(--off-white);
            padding: 0.85rem 1rem;
            font-size: 14px;
            font-family: 'Kanit';
            font-weight: 200;
            outline: none;
            resize: none;
            transition: border-color 0.3s;
            -webkit-appearance: none;
        }

        .fg input:focus,
        .fg select:focus,
        .fg textarea:focus {
            border-color: #fff;
        }

        .fg input::placeholder,
        .fg select::placeholder,
        .fg textarea::placeholder {
            color: #fff;
        }

        .fg select option {
            
            background: var(--copper);
        }

        .submit {
            padding: 1.1rem 0;
            background: var(--copper);
            color: var(--off-white);
            border: none;
            font-family: 'Kanit';
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
        }

        .submit:hover {
            background: var(--copper-bright);
        }

        .form-note {
            font-size: 10px;
            color: #fff;
            letter-spacing: 0.1em;
            text-align: center;
        }

        /* FOOTER */
        footer {
            background: transparent;
            border-top: 1px solid rgba(192, 17, 31, 0.12);
            padding: 2.5rem 3.5rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .footer-brand .fb-name {
            font-family: 'Georama', sans-serif;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3em;
            color: var(--off-white);
            text-transform: uppercase;
        }

        .footer-brand .fb-dev {
            font-size: 9px;
            letter-spacing: 0.35em;
            color: #fff;
            text-transform: uppercase;
        }

        .footer-brand .fb-dev span {
            color: #fff;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            font-size: 10px;
            font-weight: 300;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            cursor: pointer;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--copper-brightt);
        }

        .footer-copy {
            font-size: 10px;
            color: #fff;
            letter-spacing: 0.08em;
        }

        .gallery_slider.pad-sm {
            padding-left: 0;
            padding-right: 0;
        }

        .gallery-display {
            display: flex;
            flex-wrap: nowrap;
            align-items: stretch;
            justify-content: center;
            gap: 0;
            width: fit-content;
            max-width: 95%;
            margin: 0 auto 2rem auto;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
        }

        .gallery-main-image {
            flex: 0 0 auto;
            width: auto;
            line-height: 0;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-right: none;
            position: relative;
        }

        .gallery-main-image img {
            width: auto;
            max-width: 100%;
            height: 70vh;
            max-height: 70vh;
            display: block;
        }

        .gallery-content-box {
            flex: 0 0 360px;
            width: 370px;
            max-width: 370px;
            min-height: 70vh;
            background: #915b42;
            padding: 1.75rem 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow-y: auto;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gallery-slide-title {
            font-family: 'Georama', sans-serif;
            font-size: 1.9rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .gallery-slide-desc {
            font-family: 'Kanit', sans-serif;
            font-size: 0.9rem;
            line-height: 1.75;
            color: #f0eae8;
        }

        .gallery-slider-wrapper {
            max-width: 95%;
            margin: 0 auto;
            position: relative;
        }

        .gallery-dots-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            max-width: 95%;
            margin: 1.5rem auto 0;
            min-height: 12px;
        }

        .gallery-dots-nav button {
            font-size: 0;
            width: 8px;
            height: 8px;
            padding: 0;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .gallery-dots-nav button.active {
            background: var(--copper-bright);
            transform: scale(1.4);
        }

        .gallery-slider-wrapper .slick-slide {
            display: flex !important;
            justify-content: center;
        }

        .gallery-slider-wrapper .slick-slide>div {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .gallery-slider-wrapper .gallery-display {
            margin-bottom: 0;
        }

        @media (max-width: 900px) {
            .gallery-display {
                flex-direction: column;
                flex-wrap: wrap;
                width: 100%;
            }

            .gallery-main-image {
                width: 100%;
                border-right: 1px solid rgba(255, 255, 255, 0.1);
                border-bottom: none;
            }

            .gallery-main-image img {
                width: 100%;
                max-width: 100%;
                max-height: 238px;
                object-fit: cover;
            }

            .gallery-content-box {
                flex: 0 0 auto;
                width: 100%;
                max-width: 100%;
                border-top: none;
                height: 38vh;
                min-height: 38vh;
            }

            .gallery-slide-title {
                font-size: 1.25rem;
            }
        }

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

            
            .hero-content {
                top: 15%;
                
                bottom: auto;
                left: 50%;
                transform: translateX(-50%);
                right: unset;
                min-width: 350px;
            }

            .hero-title {
                font-size: 22px
            }

            .hero-subtitle {
                margin: 1.5rem 0 0.5rem;
            }

            .hero-actions {
                justify-content: center;
                padding-right: 0;
                transform: none;
            }

            .btn-red {
                padding: 0.7rem 1.8rem;
                font-size: 10px;
                clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
            }

            nav {
                padding: 0 1.25rem;
                margin: 0;
                justify-content: space-between;
                column-gap: 0.75rem;
            }

            .nav-brand {
                gap: 0.65rem;
                margin-left: 0;
            }

            .nav-brand .name {
                max-width: min(250px, 45vw);
                height: 50px;
            }

            .nav-brand .dev {
                font-size: 8px;
                letter-spacing: 0.28em;
            }

            .nav-links {
                display: none;
            }

            .nav-cta {
                padding: 0.4rem 1rem;
                font-size: 9px;
                letter-spacing: 0.15em;
                margin-left: 0;
                margin-right: 0;
            }

            .pad,
            .pad-sm {
                padding: 4rem 1.5rem;
            }

            .heritage-grid,
            .location-grid,
            .dev-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .location-map {
                aspect-ratio: 4 / 3;
                min-height: unset;
                border-radius: 0;
            }

            .map-img {
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .amenities-grid,
            .res-cards {
                overflow-x: auto;
            }

            .res-card {
                flex: 0 0 100%;
            }

            .lifestyle-pillars {
                grid-template-columns: 1fr;
            }

            .dev-feats {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .lifestyle-hero-text {
                left: 1.5rem;
            }

            /* 6-may */
            .nav-brand .name {
                transform: unset;
            }

            .label {
                margin-left: 0;
            }

            .label,
            .title {
                width: fit-content;
            }

            .location-grid {
                overflow: visible;
            }

            .location-grid>div:first-child {
                width: 100%;
            }

            .location-map>div:first-child {
                width: 100%;
            }

            .location-map-wrap {
                max-width: none;
                width: 100%;
                position: relative;
                left: 0;
                transform: none;
            }

            .lp-list {
                grid-template-columns: 1fr;
                column-gap: 1rem;
                row-gap: 0.25rem;
                margin-bottom: 2rem;
            }

            .lp-item {
                gap: 0.5rem;
            }

            .lp-name {
                font-size: 12px;
                line-height: 1.35;
            }

            
            .footer-links {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                width: 100%;
            }

            .am-card {
                padding: 20px 5px;
            }

            .am-name {
                font-size: 14px;
            }

            .lifestyle-hero-text {
                top: 50%;
                right: 0.2rem;
            }

            .lifestyle-hero-text h2 {
                margin-left: 0;
            }

            .submit {
                padding: 15px 5px;
                font-size: 12px;
            }

            .amenities-header {
                text-align: left;
            }

            .amenities-header .title {
                text-align: left;
            }

            .amenities-header .body-text {
                text-align: left !important;
                margin: 0 !important;
            }

            footer {
                padding: 4rem 1.5rem;
            }
        }

        @media(max-width: 548px) {}

        /* RESPONSIVE HEADER FOR PREVENTING OVERFLOW */
        @media(min-width: 1025px) and (max-width: 1400px) {
            nav {
                padding: 0.2rem 1.5rem;
            }

            .nav-brand .name {
                max-width: 220px;
                transform: scale(1.1);
            }

            .nav-links {
                gap: 1.2rem;
            }

            .nav-links a {
                font-size: 10px;
                letter-spacing: 0.15em;
            }
        }

        @media(max-width: 1024px) {
            .nav-links {
                display: none;
            }

            nav {
                padding: 0.2rem 1.25rem;
                margin: 0;
                justify-content: space-between;
            }

            .nav-brand {
                gap: 0.65rem;
                margin-left: 0;
            }

            .nav-brand .name {
                max-width: min(320px, 70vw);
                height: 64px;
                transform: unset;
            }

            .nav-brand .dev {
                font-size: 8px;
                letter-spacing: 0.28em;
            }

            .nav-cta {
                /* match desktop button look on mobile */
                padding: 0.5rem 1rem;
                background: #fff;
                color: var(--copper);
                border: none;
                font-family: 'Kanit';
                font-size: 10px;
                font-weight: 400;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                cursor: pointer;
                transition: all 0.3s;
                clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
                margin-left: 0;
                margin-right: 0;
            }
        }

        .amenities-prev,
        .amenities-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border: 1px solid;
            border-radius: 50%;
            
            background: transparent;
            color: #fff;
            cursor: pointer;
            z-index: 999;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .amenities-prev {
            left: 10px;
        }

        .amenities-next {
            right: 10px;
        }

        

        .loc-right {
            position: absolute;
            font-size: 9px;
            
            
            color: #fff;
            padding: 0.5rem;
            z-index: 2;
            bottom: 25%;
            right: -30px;
            text-align: right;
            transform: rotate(270deg);
        }

        p.over-artistic {
            position: absolute;
            
            bottom: 65px;
            right: -20px;
            font-size: 9px;
            transform: rotate(270deg);
        }

        .banner-rera {
            position: absolute;
            
            top: 14.5vh;
            right: 25px;
            font-size: 9px;
            text-align: right;
            font-weight: 300;
        }

        .lp-time {
            position: relative;
            bottom: 70px;
            font-size: 9px;
        }

        .lightbox-link {
            position: absolute;
            inset: 0;
            z-index: 10;
        }

        .fancybox__caption {
            font-size: 16px;
            text-align: center;
            padding: 15px;
        }

        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        section.disclaimer {
            background: transparent;
            padding: 2.5rem 3.5rem;
        }

        .dis-content {
            color: #fff;
        }

        .dis-Container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .privacy-policy {
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .privacy-policy h1 {
            text-align: center;
            margin-bottom: 30px;
        }

        .privacy-policy h2 {
            margin-top: 30px;
        }

        .privacy-policy table {
            width: 100%;
            border-collapse: collapse;
        }

        .privacy-policy table th,
        .privacy-policy table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }

        .privacy-policy ul,
        .privacy-policy ol {
            padding-left: 20px;
        }

        @media(max-width:767px) {
            .banner-rera {
                font-size: 5px;
                
                top: 11vh;
                font-weight: 300;
            }

            .lp-time {
                bottom: 30px;
            }

            .amenities-prev,
            .amenities-next {
                width: 40px;
                height: 40px;
            }

            .loc-right {
                font-size: 9px;
                bottom: 35%;
            }

            p.over-artistic {
                font-size: 9px;
                
            }

            .lifestyle-hero-img {
                background: url(Images/skyline-mob.webp) center / cover;
            }

            section.disclaimer {
                padding: 4rem 1.5rem;
            }
        }
