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

:root {
    --gold: #A68B67;
    --gold-lt: #d4b98a;
    --cream: #f7f3ed;
    --dark: #131210;
    --ink: #1a1916;
    --white: #ffffff;
    --heavy-metal: #1C1E1A;
    --muted-l: rgba(247, 243, 237, .55);
    --muted-d: rgba(26, 25, 22, .55);
    --nav-h: 72px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Lenis handles scroll — disable browser's own smooth */
html {
    scroll-behavior: auto;
}

body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

/* ===== CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 154, 94, .45);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .35s var(--ease), height .35s var(--ease), border-color .35s;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
}

/* ===== NAV ===== */
nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    z-index: 200;
    transition: background .5s, backdrop-filter .5s, box-shadow .5s;
}

nav.scrolled {
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(184, 154, 94, .18);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nav-logo .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--cream);
    transition: color .4s;
}

nav.scrolled .logo-name {
    color: var(--ink);
}

.nav-logo .logo-sub {
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--heavy-metal);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--heavy-metal);
    text-decoration: none;
    position: relative;
    transition: color .3s;
}

nav.scrolled .nav-links a {
    color: var(--muted-d);
}

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

.nav-links a:hover {
    color: var(--gold) !important;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
    border: none;
    background: none;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--cream);
    transition: all .4s;
}

.map-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

nav.scrolled .nav-burger span {
    background: var(--ink);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(13, 12, 10, .97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: .08em;
    color: var(--cream);
    text-decoration: none;
    transition: color .3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 48px;
    font-size: 32px;
    color: var(--muted-l);
    cursor: none;
    border: none;
    background: none;
    transition: color .3s;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('assets/foto/bird_eye_view/thumbnail.jpg');
    transform: scale(1.08);
    transition: transform 9s var(--ease);
    will-change: transform;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(13, 12, 10, .1) 0%, rgba(13, 12, 10, .03) 35%,
            rgba(13, 12, 10, .5) 72%, rgba(13, 12, 10, .9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 300;
    line-height: .9;
    letter-spacing: -.01em;
    color: var(--cream);
    opacity: 0;
    transform: translateY(28px);
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

.hero-cta {
    margin-top: 8px;
    padding: 17px 44px;
    border: 1px solid rgba(184, 154, 94, .65);
    background: rgba(184, 154, 94, .1);
    color: var(--cream);
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background .4s, border-color .4s, color .4s;
    opacity: 0;
    transform: translateY(16px);
}

.hero-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    z-index: 2;
}

.scroll-hint span {
    font-size: 9px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(1)
    }

    50% {
        opacity: 1;
        transform: scaleY(1.15)
    }
}

/* ===== HERITAGE — full viewport, white ===== */
#heritage {
    background: var(--white);
    height: 100svh;
    min-height: 560px;
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.heritage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 60px;
    overflow: hidden;
}

.heritage-img {
    display: flex;
    overflow: hidden;
}

.heritage-img img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: auto;
    transition: transform 1s var(--ease);
    border-radius: 20px;
}

.heritage-img:hover img {
    transform: scale(1);
}

.heritage-badge {
    position: absolute;
    bottom: 40px;
    right: -1px;
    background: var(--white);
    border: 1px solid rgba(184, 154, 94, .25);
    border-right: none;
    padding: 20px 28px;
}

.heritage-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.heritage-badge .lbl {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted-d);
    margin-top: 4px;
}

.heritage-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 96px) clamp(32px, 5vw, 80px);
    background: var(--white);
}

.heritage-text .h-label {
    font-size: 10px;
    letter-spacing: .38em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
}

.heritage-text .h-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
}

.heritage-text .h-title em {
    font-style: italic;
}

.h-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}

.heritage-text .h-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted-d);
    max-width: 460px;
}

.heritage-pillars {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.pillar-lbl {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted-d);
}

.p-sep {
    width: 1px;
    height: 44px;
    background: rgba(184, 154, 94, .3);
    flex-shrink: 0;
}

/* Heritage responsive */
@media (max-width: 860px) {
    #heritage {
        height: auto;
        min-height: unset;
    }

    .heritage-inner {
        grid-template-columns: 1fr;
    }

    .heritage-img {
        aspect-ratio: 4/3;
    }

    .heritage-badge {
        right: 0;
        bottom: 16px;
    }

    .heritage-text {
        padding: 48px 24px;
    }

    .p-sep {
        display: none;
    }
}

/* ===== SHARED SECTION ===== */
section {
    padding: 120px 56px;
}

.section-label {
    font-size: 10px;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--heavy-metal);
}

.section-title em {
    font-style: italic;
}

.section-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted-l);
    max-width: 520px;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 32px 0;
}

/* ===== COLLECTIONS ===== */
.collections {
    /* background: #0e0d0b; */
    background: white;
    padding: 0;
    height: 100svh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.collections-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 64px 72px 40px;
    flex-shrink: 0;
}

.collections-track-wrap {
    flex: 1;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.collections-track {
    display: flex;
    height: 100%;
    gap: 24px;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.col-card {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.col-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

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

.col-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 12, 10, .90) 0%, rgba(13, 12, 10, .08) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
    transition: background 0.4s;
}

.col-card:hover .col-card-overlay {
    background: linear-gradient(to top, rgba(13, 12, 10, .96) 0%, rgba(13, 12, 10, .18) 50%);
}

.col-card-tag {
    font-size: 9px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.col-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
}

.col-card-body {
    font-size: 13px;
    color: rgba(247, 243, 237, .5);
    line-height: 1.75;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    opacity: 0;
}

.col-card:hover .col-card-body {
    max-height: 80px;
    opacity: 1;
}

.col-card-arrow {
    margin-top: 18px;
    width: 32px;
    height: 1px;
    background: var(--gold);
    position: relative;
    transition: width .45s cubic-bezier(0.16, 1, 0.3, 1);
}

.col-card-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--gold);
}

.col-card:hover .col-card-arrow {
    width: 56px;
}

/* Nav dots + counter */
.collections-footer {
    padding: 20px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.col-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.col-dot {
    height: 1px;
    background: rgba(184, 154, 94, .3);
    border: none;
    padding: 0;
    cursor: none;
    transition: width .4s cubic-bezier(0.16, 1, 0.3, 1), background .4s;
    width: 24px;
}

.col-dot.active {
    background: var(--gold);
    width: 44px;
}

.col-counter {
    font-size: 11px;
    letter-spacing: .22em;
    color: rgba(247, 243, 237, .3);
}

.col-counter em {
    color: var(--gold);
    font-style: normal;
}

/* Nav arrows */
.col-arrows {
    display: flex;
    gap: 12px;
}

.col-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 154, 94, .3);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: border-color .3s, background .3s;
}

.col-btn:hover {
    border-color: var(--gold);
    background: rgba(184, 154, 94, .1);
}

.col-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

/* Mobile */
@media (max-width: 960px) {
    .collections {
        height: auto;
        min-height: unset;
    }

    .collections-header {
        padding: 64px 24px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .collections-track-wrap {
        height: 60svh;
        min-height: 360px;
    }

    .collections-footer {
        padding: 16px 24px;
    }
}

/* Pagination bullets */
.collections-pagination {
    position: absolute;
    bottom: 36px;
    right: 72px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 10;
}

.collections-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 1px;
    border-radius: 0;
    background: rgba(184, 154, 94, .35);
    opacity: 1;
    transition: background .4s, width .4s;
}

.collections-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 48px;
}

/* Slide counter */
.slide-counter {
    position: absolute;
    bottom: 28px;
    left: 72px;
    font-size: 11px;
    letter-spacing: .22em;
    color: rgba(247, 243, 237, .35);
    z-index: 10;
}

.slide-counter span {
    color: var(--gold);
}

/* Mobile — stack vertically */
@media (max-width: 960px) {
    .collections {
        height: auto;
        min-height: unset;
    }

    .collections-header {
        padding: 64px 24px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .swiper-collections {
        height: 70svh;
        min-height: 400px;
    }

    .swiper-collections .card-overlay {
        padding: 28px 28px;
    }

    .collections-pagination {
        right: 24px;
        bottom: 24px;
    }

    .slide-counter {
        left: 24px;
        bottom: 20px;
    }
}

/* ===== LIFESTYLE ===== */
#lifestyle {
    background: var(--white);
    padding: 100px 72px 80px;
}

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

.lifestyle-intro {
    text-align: center;
    margin-bottom: 64px;
}

.lifestyle-intro .section-label {
    color: var(--gold);
    letter-spacing: .38em;
}

.lifestyle-intro .ls-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 20px;
}

.lifestyle-intro .ls-title em {
    font-style: italic;
}

.lifestyle-intro .ls-quote {
    font-size: 13px;
    font-style: italic;
    color: var(--muted-d);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Bento Grid */
.ls-bento {
    display: grid;
    grid-template-columns: 1.72fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.ls-bento-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.ls-bento-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Bento cards */
.ls-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: none;
    background: #e8e6e2;
}

.ls-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ls-card:hover img {
    transform: scale(1.06);
}

.ls-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 12, 10, .72) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 26px;
    transition: background .4s;
    z-index: 1;
}

.ls-card:hover .ls-card-overlay {
    background: linear-gradient(to top, rgba(13, 12, 10, .85) 0%, transparent 55%);
}

/* Featured card (Golf) — taller */
.ls-card-featured {
    aspect-ratio: unset;
    min-height: 360px;
    height: 450px;
}

.ls-card-featured .ls-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.15;
}

.ls-card-featured .ls-card-sub {
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(184, 154, 94, .85);
    margin-top: 6px;
    display: block;
}

.ls-card-sub-sm {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(184, 154, 94, .75);
    margin-top: 4px;
    display: block;
}

.ls-card img,
.ls-dynamic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
}

/* Right small cards */
.ls-card-sm {
    min-height: 160px;
    height: 220px;
}

/* No image — placeholder tone */
.ls-card-placeholder {
    background: #dddbd7;
}

.ls-card-placeholder .ls-card-overlay {
    background: none;
}

/* Bottom row cards */
.ls-card-bottom {
    aspect-ratio: 16/9;
}

.ls-card-title-sm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--cream);
    font-style: italic;
}

/* Mobile */
@media (max-width: 960px) {
    #lifestyle {
        padding: 80px 24px 64px;
    }

    .ls-bento {
        grid-template-columns: 1fr;
    }

    .ls-card-featured {
        min-height: 280px;
    }

    .ls-bento-right {
        grid-template-rows: unset;
        grid-template-columns: 1fr 1fr;
    }

    .ls-card-sm {
        min-height: 140px;
    }

    .ls-bento-bottom {
        grid-template-columns: 1fr;
    }

    .ls-card-bottom {
        aspect-ratio: 16/9;
    }
}

.btn-dark {
    align-self: flex-start;
    margin-top: 16px;
    padding: 14px 36px;
    border: 1px solid var(--dark);
    background: transparent;
    color: var(--dark);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, color .3s;
}

.btn-dark:hover {
    background: var(--dark);
    color: var(--gold);
}

/* ===== STATS ===== */
.stats-wrap {
    padding: 80px 56px;
}

.stats {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(184, 154, 94, .15);
    text-align: center;
}

.stat-item {
    padding: 48px 24px;
    border-right: 1px solid rgba(184, 154, 94, .15);
}

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

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-unit {
    font-size: 20px;
}

.stat-lbl {
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted-l);
    margin-top: 12px;
}

/* ===== ESTATE ===== */
#estate {
    background: #111210;
    padding: 100px 72px 100px;
}

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

.estate-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.estate-head-left .section-label {
    color: var(--gold);
    margin-bottom: 20px;
}

.estate-head-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.08;
}

.estate-head-title em {
    font-style: italic;
}

.estate-head-right {
    display: flex;
    /* align-items: flex-start; */
    justify-content: flex-end;
    padding-top: 8px;
    text-align: right;
}

.estate-head-right p {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(247, 243, 237, .45);
    max-width: 320px;
}

/* Cards */
.estate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.estate-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: background .35s, border-color .35s;
    cursor: none;
}

.estate-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(184, 154, 94, .2);
}

.estate-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.estate-badge {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
}

.badge-maintenance {
    background: rgba(53, 101, 77, .55);
    color: #7ecfa4;
}

.badge-development {
    background: rgba(42, 80, 140, .55);
    color: #7eb3f5;
}

.badge-lifestyle {
    background: rgba(90, 55, 140, .55);
    color: #c49df5;
}

.estate-card-date {
    font-size: 10px;
    letter-spacing: .14em;
    color: rgba(247, 243, 237, .25);
}

.estate-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 14px;
}

.estate-card-body {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(247, 243, 237, .4);
    flex: 1;
    margin-bottom: 28px;
}

.estate-card-link {
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    position: relative;
    align-self: flex-start;
    transition: opacity .3s;
}

.estate-card-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.estate-card:hover .estate-card-link::after {
    width: 100%;
}

/* Mobile */
@media (max-width: 960px) {
    #estate {
        padding: 80px 24px 80px;
    }

    .estate-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }

    .estate-head-right {
        padding-top: 0;
    }

    .estate-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== LOCATION — Updated ===== */

#location {
    background: #FAFAF9;
    min-height: 100svh;
    padding: 128px 192px;
    overflow: hidden;
}

.location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    height: 100%;
}

.loc-left>p:first-child {
    font-size: 14px;
    letter-spacing: .2em;
    color: #1A2E26;
    font-weight: 400;
}

.loc-left .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5em;
    font-weight: 400;
    color: #1A2E26;
    margin: 16px 0 32px;
}

.loc-left .detail {
    color: #4B5563;
    margin: 32px 0;
}

.loc-left .icon-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.loc-left .icon-wrapper {
    background: black;
    padding: 6px 8px;
    border-radius: 8px;
}

.loc-left strong {
    color: #1A2E26;
    font-size: 14px;
    font-weight: 500;
}

.loc-left .container-detail {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: rgba(26, 25, 22, .55);
    font-size: 14px;
}

.loc-left .icon-container:first-of-type {
    margin-bottom: 24px;
}

/* Map container — polished card + tilted */
.loc-right {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 16px;
    transform: rotate(2deg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .10);
    aspect-ratio: 4/3;
}

.loc-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    display: block;
}

/* ── Map Pin ── */
.map-pin-wrap {
    position: absolute;
    /* position over the map image — adjust % to fine-tune where pin sits */
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.map-pin {
    width: 18px;
    height: 18px;
    background: #A68B67;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow:
        0 0 0 5px rgba(166, 139, 103, .35),
        0 0 0 11px rgba(166, 139, 103, .15);
    animation: pin-pulse 2.4s ease-in-out infinite;
}

@keyframes pin-pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(166, 139, 103, .35),
            0 0 0 11px rgba(166, 139, 103, .15);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(166, 139, 103, .28),
            0 0 0 18px rgba(166, 139, 103, .10);
    }
}

.map-pin-label {
    margin-top: 8px;
    background: rgba(255, 255, 255, .93);
    border: 1px solid rgba(166, 139, 103, .3);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    color: #1A2E26;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

/* ===== LOCATION RESPONSIVE ===== */

@media (max-width: 1200px) {
    #location {
        padding: 100px 80px;
    }
}

@media (max-width: 960px) {
    #location {
        min-height: unset;
        padding: 80px 40px;
    }

    .location-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .loc-right {
        transform: rotate(1deg);
        aspect-ratio: 4/3;
    }
}

@media (max-width: 640px) {
    #location {
        padding: 64px 24px;
    }

    .loc-left .title {
        font-size: 2em;
        margin: 12px 0 24px;
    }

    .loc-left .detail {
        margin: 24px 0;
        font-size: 14px;
        line-height: 1.75;
    }

    .loc-right {
        transform: rotate(0deg);
        border-radius: 16px;
        padding: 10px;
    }

    .map-pin-label {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* ===== FOOTER ===== */
footer {
    background: white;
    border-top: 1px solid rgba(184, 154, 94, .12);
}

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

.top-footer {
    padding: 72px 72px 64px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo .f-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--heavy-metal);
}

.footer-logo .f-sub {
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
}

.top-right-footer {
    display: flex;
    gap: 64px;
}

.top-right-footer>div {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.top-right-footer strong {
    font-size: 14px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--heavy-metal);
    font-weight: 400;
    margin-bottom: 2px;
}

.top-right-footer a {
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--muted-d);
    text-decoration: none;
    transition: color .3s;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 16px;
}

.top-right-footer a:hover {
    color: var(--gold);
}

.bottom-footer {
    border-top: 1px solid rgba(184, 154, 94, .1);
    padding: 24px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 11px;
    color: var(--muted-d);
    letter-spacing: .12em;
}

.bottom-footer p:last-child {
    font-size: 11px;
    color: var(--muted-d);
    letter-spacing: .12em;
}

/* Mobile */
@media (max-width: 960px) {
    .top-footer {
        padding: 56px 24px 48px;
        flex-direction: column;
        gap: 40px;
    }

    .top-right-footer {
        gap: 40px;
    }

    .bottom-footer {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    nav {
        padding: 0 24px;
    }

    section {
        padding: 80px 24px;
    }

    .stats-wrap {
        padding: 64px 24px;
    }

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

    .card {
        aspect-ratio: 16/9;
    }

    .collections-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

    .lifestyle-img {
        aspect-ratio: 16/9;
    }

    .lifestyle-text {
        padding: 48px 32px;
    }

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

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(184, 154, 94, .15);
        border-right: 1px solid rgba(184, 154, 94, .15);
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(184, 154, 94, .15);
        border-right: none;
    }

    .estate {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .estate-text {
        order: 1;
    }

    .estate-img {
        order: 2;
    }

    footer {
        padding: 48px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(40px, 11vw, 72px);
    }

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

/* .location-head {
    padding: 64px 72px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 40px;
    flex-shrink: 0;
}

.location-head-left .section-label {
    color: var(--gold);
    margin-bottom: 16px;
}

.location-head-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.08;
}

.location-head-title em {
    font-style: italic;
}

.location-head-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 4px;
}

.location-head-right p {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(247, 243, 237, .45);
    max-width: 380px;
}

.location-distances {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.loc-dist-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.loc-dist-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.loc-dist-lbl {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(247, 243, 237, .35);
}

.loc-dist-sep {
    width: 1px;
    height: 36px;
    background: rgba(184, 154, 94, .2);
    align-self: center;
}

/* Map area */
/* .location-map {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin: 0 72px 48px;
    border-radius: 16px;
    border: 1px solid rgba(184, 154, 94, .12);
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .55;
    transition: opacity .6s;
    display: block;
}

.location-map:hover img {
    opacity: .7;
}

/* Overlay coords + pin */
/* .loc-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            pointer-events: none;
        }

        .loc-pin {
            width: 14px;
            height: 14px;
            background: var(--gold);
            border-radius: 50%;
            position: relative;
            box-shadow: 0 0 0 6px rgba(184, 154, 94, .2), 0 0 0 14px rgba(184, 154, 94, .08);
            animation: ping 2.5s ease-in-out infinite;
        }

        @keyframes ping {

            0%,
            100% {
                box-shadow: 0 0 0 6px rgba(184, 154, 94, .2), 0 0 0 14px rgba(184, 154, 94, .08);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(184, 154, 94, .25), 0 0 0 22px rgba(184, 154, 94, .1);
            }
        }

        .loc-coords-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
        }

        .loc-coords-label span:first-child {
            font-size: 10px;
            letter-spacing: .32em;
            text-transform: uppercase;
            color: var(--gold);
        }

        .loc-coords-label span:last-child {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 300;
            color: var(--cream);
            letter-spacing: .04em;
        }

        /* Bottom bar inside map */
/* .loc-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 32px;
            background: linear-gradient(to top, rgba(13, 12, 10, .85) 0%, transparent 100%);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .loc-bar-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .loc-tag {
            font-size: 10px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(247, 243, 237, .5);
            border: 1px solid rgba(184, 154, 94, .2);
            padding: 6px 14px;
            border-radius: 2px;
        }

        .loc-bar-cta {
            font-size: 10px;
            letter-spacing: .28em;
            text-transform: uppercase;
            color: var(--gold);
            text-decoration: none;
            border-bottom: 1px solid rgba(184, 154, 94, .4);
            padding-bottom: 2px;
            transition: border-color .3s, color .3s;
        }

        .loc-bar-cta:hover {
            color: var(--cream);
            border-color: var(--cream);
        }

        /* Mobile */
/* @media (max-width: 960px) {
            #location {
                height: auto;
                min-height: unset;
            }

            .location-head {
                grid-template-columns: 1fr;
                padding: 64px 24px 32px;
                gap: 24px;
            }

            .location-map {
                margin: 0 24px 36px;
                min-height: 340px;
            }

            .loc-dist-sep {
                display: none;
            }
        }  */