﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: #0A0A0A;
    color: white;
    overflow-x: hidden
}

img {
    width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1440px, 92%);
    margin: auto
}

section {
    padding: 140px 0;
    position: relative
}

.gold {
    color: #B68D40
}

.section-tag {
    color: #B68D40;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 14px;
    margin-bottom: 30px
}

.section-title {
    font-size: clamp(3rem, 6vw, 3rem);
    line-height: .95;
    letter-spacing: -4px;
    margin-bottom: 35px
}

.section-desc {
    color: #8A8A8A;
    font-size: 18px;
    line-height: 2;
    max-width: 760px
}

header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 999
}

.navbar {
    width: min(1500px, 96%);
    margin: auto;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px
}

.logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px
}

.logo h2 {
    font-size: 20px;
    font-weight: 700
}

.logo p {
    font-size: 11px;
    letter-spacing: 4px;
    color: #999;
    margin-top: 3px
}

nav {
    display: flex;
    gap: 42px
}

nav a {
    color: #DDD;
    font-size: 15px;
    transition: .4s
}

nav a:hover {
    color: #B68D40
}

.nav-btn {
    background: white;
    color: black;
    padding: 14px 22px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
    white-space: nowrap
}

.nav-btn:hover {
    transform: translateY(-3px)
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 130px;
    background: radial-gradient(circle at 84% 18%, rgba(182, 141, 64, .18), transparent 30rem), #0A0A0A
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.hero-tag {
    color: #B68D40;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 14px
}

.hero h1 {
    font-size: clamp(4rem, 9vw, 7rem);
    line-height: .95;
    letter-spacing: -5px;
    margin-bottom: 40px;
    max-width: 840px
}

.hero p {
    color: #9A9A9A;
    line-height: 2;
    font-size: 18px;
    max-width: 650px;
    margin-bottom: 50px
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px
}

.primary-btn,
.secondary-btn,
.property-search button,
.strip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s
}

.primary-btn,
.property-search button {
    background: #B68D40;
    color: black;
    border: none;
    padding: 18px 34px
}

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .15);
    color: white;
    padding: 18px 34px
}

.primary-btn:hover,
.secondary-btn:hover,
.property-search button:hover,
.strip-btn:hover {
    transform: translateY(-4px)
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap
}

.hero-stats h3 {
    font-size: 4rem;
    margin-bottom: 10px
}

.hero-stats p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999
}

.hero-image {
    position: relative
}

.hero-image img {
    height: 850px;
    object-fit: cover;
    border-radius: 40px
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, .68);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 35px;
    border-radius: 30px;
    max-width: 340px
}

.floating-card p {
    margin: 0
}

.floating-card .small {
    color: #B68D40;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 15px
}

.floating-card h3 {
    font-size: 3.6rem;
    margin-bottom: 10px
}

.search-panel {
    padding: 0;
    background: #050505
}

.property-search {
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, .94);
    border-radius: 34px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
    color: #111
}

.property-search label {
    display: grid;
    gap: 8px
}

.property-search span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #777;
    font-weight: 800
}

.property-search select {
    min-height: 48px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 999px;
    padding: 0 14px;
    background: #F7F4EE;
    font: inherit;
    color: #111
}

.property-search button {
    padding: 0 26px;
    min-height: 48px;
    align-self: end
}

.featured {
    background: radial-gradient(circle at 12% 10%, rgba(182, 141, 64, .18), transparent 28rem), linear-gradient(180deg, #0A0A0A, #050505);
    color: white;
    padding: 100px 0
}

.featured-top {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 920px
}

.featured-top h2 {
    font-size: 2.55rem;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 14px;
    color: white
}

.featured-desc {
    max-width: 760px;
    margin: 0 auto;
    color: #A8A8A8;
    line-height: 1.8;
    font-size: 15px
}

.popular-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 70px
}

.popular-desc {
    max-width: 480px;
    color: #8A8A8A;
    line-height: 2;
    font-size: 17px
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px
}

.property-card {
    display: grid;
    grid-template-columns: minmax(220px, .92fr) minmax(240px, 1fr);
    overflow: hidden;
    border-radius: 18px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
    transition: .35s
}

.property-card:hover {
    transform: translateY(-7px);
    border-color: rgba(182, 141, 64, .48);
    box-shadow: 0 26px 84px rgba(0, 0, 0, .42)
}

.property-image {
    position: relative;
    min-height: 238px;
    height: 100%;
    overflow: hidden;
    background: #071B2A
}

.property-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 24px;
    background: #071B2A
}

.property-image img {
    height: 100%;
    object-fit: cover;
    transition: 1s
}

.property-card:hover .property-image img {
    transform: scale(1.05)
}

.featured-badges {
    position: absolute;
    left: 20px;
    top: 20px;
    display: flex;
    gap: 10px;
    z-index: 2
}

.featured-badges span {
    background: #B68D40;
    color: #111;
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .28)
}

.featured-badges span+span {
    background: rgba(0, 0, 0, .72);
    border: 1px solid rgba(182, 141, 64, .5);
    color: #F3D28B;
    backdrop-filter: blur(12px)
}

.property-body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    padding: 24px 24px 0;
    min-width: 0
}

.property-body h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: 0;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.property-location {
    display: flex;
    gap: 7px;
    align-items: center;
    color: #A8A8A8;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 18px
}

.property-location i,
.property-facts i {
    color: #B68D40;
    width: 15px
}

.property-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
    color: #B9B9B9;
    font-size: 13px;
    padding-bottom: 22px
}

.property-facts span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.property-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 -24px;
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    color: white
}

.property-bottom strong {
    font-size: 14px;
    color: #F3D28B
}

.property-bottom div {
    display: flex;
    gap: 13px;
    align-items: center
}

.property-bottom a,
.property-bottom button {
    border: 0;
    background: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0
}

.property-bottom a:hover,
.property-bottom button:hover {
    color: #B68D40
}

.property-meta {
    display: none
}

.about {
    background: #050505
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
    margin-top: 90px
}

.about-image {
    position: relative;
    margin-bottom: 25px
}

.about-image img {
    height: 520px;
    object-fit: cover;
    border-radius: 35px
}

.image-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.stat-card {
    padding: 35px;
    border-radius: 28px
}

.stat-dark {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08)
}

.stat-gold {
    background: #B68D40;
    color: black
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 12px
}

.stat-card .mini {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 20px
}

.stat-card p {
    line-height: 1.9;
    color: #8A8A8A
}

.stat-gold p {
    color: rgba(0, 0, 0, .7)
}

.about-right h3 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 35px
}

.about-right p {
    color: #8A8A8A;
    line-height: 2;
    font-size: 18px;
    margin-bottom: 45px
}

.explore-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600
}

.explore-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s
}

.explore-btn:hover .explore-circle {
    transform: rotate(45deg)
}

.amenities {
    background: #F6F3EE;
    color: black
}

.amenity-layout {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 120px
}

.amenity-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.amenity-row.reverse .amenity-image {
    order: 2
}

.amenity-image img {
    height: 520px;
    object-fit: cover;
    border-radius: 35px
}

.amenity-icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: #111;
    color: #B68D40;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 35px
}

.amenity-content h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 30px
}

.amenity-content p {
    color: #666;
    line-height: 2;
    font-size: 18px;
    margin-bottom: 35px
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px
}

.feature-tags span {
    padding: 12px 20px;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .08);
    font-size: 14px;
    font-weight: 600
}

.popular {
    background: #F6F3EE;
    color: #111
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 44px
}

.popular-grid article {
    min-height: 240px;
    padding: 30px;
    border-radius: 30px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .4s
}

.popular-grid article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .12)
}

.popular-grid span {
    color: #B68D40;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px
}

.popular-grid h3 {
    font-size: 1.75rem;
    line-height: 1.05;
    letter-spacing: -1px
}

.popular-grid p {
    color: #666;
    line-height: 1.8
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.category-pills span {
    padding: 13px 18px;
    border-radius: 999px;
    background: #111;
    color: white;
    font-size: 14px;
    font-weight: 700
}

.why-us {
    background: #050505
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 65px
}

.why-grid article {
    padding: 30px;
    border-radius: 30px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08)
}

.why-grid i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #B68D40;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 26px
}

.why-grid h3 {
    font-size: 1.5rem;
    margin-bottom: 14px
}

.why-grid p {
    color: #9A9A9A;
    line-height: 1.8
}

.marketplace {
    background: radial-gradient(circle at 92% 8%, rgba(182, 141, 64, .16), transparent 32rem), #0A0A0A;
    color: white
}

.marketplace-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 44px
}

.marketplace-desc {
    max-width: 500px;
    color: #8A8A8A;
    line-height: 2;
    font-size: 17px
}

.market-toolbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(18px)
}

.result-count {
    display: flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap
}

.result-count strong {
    font-size: 2rem;
    color: #B68D40
}

.result-count span {
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px
}

.market-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap
}

.market-tabs button,
.sort-btn {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: white;
    border-radius: 999px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 700;
    cursor: pointer
}

.market-tabs button.active {
    background: #B68D40;
    color: #111;
    border-color: #B68D40
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap
}

.market-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 24px;
    align-items: start
}

.filter-panel {
    position: sticky;
    top: 120px;
    padding: 26px;
    border-radius: 32px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28)
}

.filter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px
}

.filter-head h3 {
    font-size: 1.6rem
}

.filter-head button {
    border: 0;
    background: none;
    color: #B68D40;
    font-weight: 800;
    cursor: pointer
}

.filter-block {
    display: grid;
    gap: 14px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.filter-block span,
.filter-range>span {
    color: #B68D40;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800
}

.filter-block label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D8D8D8;
    font-size: 15px
}

.filter-block input {
    accent-color: #B68D40
}

.filter-range {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.filter-range div {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    color: #EEE
}

.range-track {
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    overflow: hidden
}

.range-track span {
    display: block;
    width: 68%;
    height: 100%;
    background: #B68D40;
    border-radius: 999px
}

.market-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

.market-card {
    overflow: hidden;
    border-radius: 32px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .45s
}

.market-card.premium {
    border-color: rgba(182, 141, 64, .42);
    box-shadow: 0 24px 90px rgba(182, 141, 64, .08)
}

.market-card:hover {
    transform: translateY(-8px);
    border-color: rgba(182, 141, 64, .5);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .34)
}

.market-image {
    position: relative;
    height: 260px;
    overflow: hidden
}

.market-image img {
    height: 100%;
    object-fit: cover;
    transition: 1.2s
}

.market-card:hover .market-image img {
    transform: scale(1.08)
}

.card-badges {
    position: absolute;
    left: 18px;
    top: 18px;
    right: 72px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.card-badges span {
    padding: 9px 11px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .72);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    color: #D7B36A;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.6px
}

.save-btn {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(0, 0, 0, .58);
    color: white;
    cursor: pointer
}

.market-body {
    padding: 26px
}

.market-title-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
    margin-bottom: 18px
}

.market-title-row p {
    display: flex;
    gap: 8px;
    color: #B68D40;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.market-title-row h3 {
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: -1px
}

.market-title-row>strong {
    color: white;
    font-size: 1.25rem;
    white-space: nowrap
}

.market-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px
}

.market-specs span {
    padding: 9px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #E8E8E8;
    font-size: 13px
}

.market-copy {
    color: #9A9A9A;
    line-height: 1.75;
    margin-bottom: 24px
}

.market-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px
}

.source-profile {
    display: flex;
    align-items: center;
    gap: 12px
}

.source-profile>span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #B68D40;
    color: #111;
    font-weight: 900
}

.source-profile div {
    display: grid;
    gap: 3px
}

.source-profile small {
    color: #999
}

.market-footer a {
    background: white;
    color: #111;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900
}

.floorplans {
    background: #0A0A0A;
    color: white
}

.floorplans-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 80px
}

.floorplans-desc {
    max-width: 470px;
    color: #8A8A8A;
    line-height: 2;
    font-size: 17px
}

.plan-switcher {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap
}

.plan-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .1);
    color: white;
    padding: 16px 28px;
    border-radius: 999px;
    cursor: pointer;
    transition: .4s;
    font-size: 15px
}

.plan-btn.active {
    background: #B68D40;
    color: black;
    border: none
}

.plans-wrapper {
    position: relative
}

.plan-card {
    display: none;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center
}

.plan-card.active {
    display: grid
}

.plan-image {
    overflow: hidden;
    border-radius: 40px
}

.plan-image img {
    height: 700px;
    object-fit: cover;
    transition: 1.5s
}

.plan-card:hover img {
    transform: scale(1.05)
}

.plan-content {
    max-width: 560px
}

.plan-number {
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .08);
    margin-bottom: 10px
}

.plan-content h3 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 30px
}

.plan-content p {
    color: #8A8A8A;
    line-height: 2;
    font-size: 18px;
    margin-bottom: 45px
}

.plan-specs {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap
}

.plan-specs span {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    display: block;
    margin-bottom: 10px
}

.plan-specs h4 {
    font-size: 2rem
}

.explore-plan {
    background: white;
    color: black;
    border: none;
    padding: 18px 36px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s
}

.explore-plan:hover {
    transform: translateY(-4px)
}

.gallery {
    background: #F6F3EE;
    color: black
}

.gallery-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 90px
}

.gallery-desc {
    max-width: 460px;
    color: #666;
    line-height: 2;
    font-size: 17px
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    min-height: 420px;
    cursor: pointer;
    transition: transform .2s ease
}

.gallery-item.large {
    grid-row: span 2;
    min-height: 900px
}

.gallery-item.wide {
    grid-column: span 2;
    min-height: 420px
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s
}

.gallery-item:hover img {
    transform: scale(1.08)
}

.gallery-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
    color: white
}

.gallery-overlay span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #D7B36A;
    display: block;
    margin-bottom: 12px
}

.gallery-overlay h3 {
    font-size: 2.7rem;
    line-height: 1;
    letter-spacing: -2px
}

.gallery-strip {
    margin-top: 90px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 40px;
    padding: 45px 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center
}

.gallery-strip h3 {
    font-size: 3.3rem;
    margin-bottom: 10px
}

.gallery-strip p {
    color: #666
}

.strip-btn {
    justify-self: end;
    background: #111;
    color: white;
    border: none;
    padding: 18px 34px;
    font-weight: 700
}

.developers {
    background: #0A0A0A;
    color: white;
    padding: 100px 0
}

.developers-top {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px
}

.developers-top h2 {
    font-size: 2.45rem;
    margin-bottom: 14px
}

.developers-top p {
    color: #A8A8A8;
    line-height: 1.8
}

.developer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.developer-grid article {
    min-height: 320px;
    padding: 34px 28px;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
    transition: .35s
}

.developer-grid article:hover {
    transform: translateY(-8px);
    border-color: rgba(182, 141, 64, .48)
}

.developer-logo {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 18px;
    background: #F7F4EE;
    color: #111;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: .08em
}

.developer-grid h3 {
    font-size: 1.3rem;
    margin-bottom: 12px
}

.developer-grid p {
    color: #A8A8A8;
    line-height: 1.75
}

.developer-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px
}

.developer-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(182, 141, 64, .35)
}

.developer-dots .active {
    background: #B68D40
}

.site-footer {
    background: #111;
    color: white
}

.footer-directory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 54px;
    padding: 58px min(5vw, 64px);
    background: linear-gradient(180deg, #111, #0A0A0A);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-column h3,
.footer-main h3 {
    color: #B68D40;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 20px
}

.footer-column a,
.footer-quick a {
    display: block;
    color: #E6E6E6;
    margin-bottom: 14px;
    font-size: 14px
}

.footer-column a:hover,
.footer-quick a:hover,
.footer-brand-block a,
.footer-association a {
    color: #B68D40
}

.footer-rera {
    text-align: center;
    padding: 20px;
    display: grid;
    gap: 7px;
    background: #070707;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-rera p {
    font-size: 17px
}

.footer-rera a {
    color: #B68D40
}

.footer-rera small {
    color: #C8C8C8
}

.footer-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
    gap: 54px;
    padding: 60px min(5vw, 64px) 54px;
    background: radial-gradient(circle at 85% 10%, rgba(182, 141, 64, .16), transparent 28rem), #0A0A0A
}

.footer-brand-block p {
    color: #CFCFCF;
    line-height: 1.8;
    margin-bottom: 18px
}

.footer-mark {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px
}

.footer-mark span {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    background: white;
    color: #111;
    font-weight: 900;
    font-size: 1.4rem
}

.footer-mark strong {
    font-size: 1.35rem;
    color: #B68D40
}

.footer-quick div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 26px
}

.association-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px
}

.association-row span {
    min-width: 112px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    background: white;
    color: #111;
    font-weight: 900
}

.footer-subscribe label {
    position: relative;
    display: block;
    margin-bottom: 18px
}

.footer-subscribe label span {
    display: block;
    margin-bottom: 10px;
    color: #B68D40;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px
}

.footer-subscribe input {
    width: 100%;
    height: 46px;
    padding: 0 44px 0 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: #070707;
    color: white
}

.footer-subscribe label i {
    position: absolute;
    right: 14px;
    bottom: 14px;
    color: #B68D40
}

.socials {
    display: flex;
    gap: 10px;
    margin-bottom: 24px
}

.socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: white
}

.socials a:hover {
    background: #B68D40;
    color: #111
}

.footer-subscribe p {
    color: #CFCFCF;
    line-height: 1.7
}

@media(max-width:1100px) {

    .hero-grid,
    .about-grid,
    .amenity-row,
    .plan-card,
    .market-layout {
        grid-template-columns: 1fr
    }

    .property-search {
        grid-template-columns: 1fr 1fr;
        transform: none;
        margin: 30px 0
    }

    .floorplans-top,
    .gallery-top,
    .popular-top,
    .marketplace-top {
        flex-direction: column;
        align-items: flex-start
    }

    .featured-grid,
    .popular-grid,
    .why-grid,
    .market-results,
    .developer-grid,
    .footer-directory,
    .footer-main {
        grid-template-columns: 1fr 1fr
    }

    .property-card {
        grid-template-columns: 1fr
    }

    .property-image {
        height: 260px
    }

    .filter-panel {
        position: static
    }

    .market-toolbar {
        grid-template-columns: 1fr
    }

    .market-tabs {
        justify-content: flex-start
    }

    .amenity-row.reverse .amenity-image {
        order: 0
    }

    nav {
        display: none
    }

    .hero-image img {
        height: 650px
    }

    .plan-image img {
        height: 500px
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 500px
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr
    }

    .strip-btn {
        justify-self: start
    }
}

@media(max-width:768px) {
    section {
        padding: 90px 0
    }

    .navbar {
        padding: 16px 20px
    }

    .logo p {
        display: none
    }

    .nav-btn {
        padding: 12px 16px
    }

    .hero {
        padding-top: 110px
    }

    .hero h1 {
        letter-spacing: -3px
    }

    .section-title {
        letter-spacing: -2px
    }

    .property-search {
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 16px
    }

    .stats-grid,
    .featured-grid,
    .popular-grid,
    .why-grid,
    .market-results,
    .developer-grid,
    .footer-directory,
    .footer-main {
        grid-template-columns: 1fr
    }

    .hero-image img,
    .about-image img,
    .amenity-image img {
        height: 450px
    }

    .property-image,
    .market-image {
        height: 260px
    }

    .property-facts {
        grid-template-columns: 1fr
    }

    .property-bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .market-title-row,
    .market-footer {
        flex-direction: column;
        align-items: flex-start
    }

    .market-title-row>strong {
        white-space: normal
    }

    .hero-stats {
        gap: 26px
    }

    .hero-stats h3 {
        font-size: 3rem
    }

    .floating-card {
        position: static;
        margin-top: 18px
    }

    .gallery-strip {
        grid-template-columns: 1fr;
        padding: 35px
    }

    .gallery-overlay h3 {
        font-size: 2rem
    }

    .footer-quick div {
        grid-template-columns: 1fr
    }
}
.market-card{
    background: #fff;
    border-radius: 28px;
    padding: 20px;
    overflow: hidden;
    transition: 0.3s ease;
}

.market-card:hover{
    transform: translateY(-6px);
}

.card-image{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
}