@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
    --cream:        #f5f2ec;
    --cream-mid:    #ede8df;
    --cream-dark:   #ddd6c9;
    --dark:         #181816;
    --dark-mid:     #26251f;
    --dark-warm:    #32302a;
    --gold:         #b09060;
    --gold-light:   #cdb285;
    --gold-pale:    #e8dcc8;
    --forest:       #2e4a32;
    --forest-light: #3d6343;
    --text:         #221f18;
    --text-mid:     #4a4740;
    --text-muted:   #7a756c;
    --light:        #f5f2ec;
    --light-muted:  rgba(245,242,236,0.62);
    --tr: all 0.38s ease;
    --hero-shift: 0px;
}

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

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.72;
    overflow-x: hidden;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(205,178,133,0.45);
    pointer-events: none;
}

a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); }
h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }

em { font-style: italic; color: var(--gold); }
p   { font-weight: 300; color: var(--text-mid); line-height: 1.82; }

.container   { max-width: 1240px; margin: 0 auto; padding: 0 44px; }
.section-padding { padding: 112px 0; }

/* ── UTIL ──────────────────────────────────────────────────── */
.eyebrow {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}
.eyebrow-light { color: var(--gold-light); }
.light       { color: var(--light); }
.light-muted { color: var(--light-muted); }

.section-header { max-width: 660px; margin-bottom: 68px; }
.section-desc { margin-top: 18px; font-size: 1rem; color: var(--text-muted); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.73rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 15px 38px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--tr);
}
.btn::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 9px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.34s ease;
    opacity: 0.38;
}
.btn:hover::after {
    transform: scaleX(1);
}
.btn-primary  { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(176,144,96,0.32); }
.btn-outline  { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-ghost    { background: transparent; border: 1px solid rgba(245,242,236,0.4); color: var(--light); }
.btn-ghost:hover  { border-color: var(--gold-light); color: var(--gold-light); }
.btn-full     { width: 100%; text-align: center; }

/* ── REVEAL ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s ease-out, transform 0.9s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal .eyebrow::after,
.eyebrow.reveal::after {
    content: "";
    display: block;
    width: 52px;
    height: 1px;
    margin-top: 12px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease 0.18s;
}
.reveal.active .eyebrow::after,
.eyebrow.reveal.active::after { transform: scaleX(1); }

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 26px 0;
    transition: padding 0.42s ease, background 0.42s ease, border-color 0.42s ease, backdrop-filter 0.42s ease;
}
.navbar.scrolled {
    background: rgba(24,24,22,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(176,144,96,0.14);
}
.navbar.scrolled .logo-main { font-size: 1.05rem; }
.nav-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    color: var(--light);
    font-weight: 400;
}
.logo-sub {
    font-size: 0.56rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Jost', sans-serif;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.7);
}
.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 22px; }

.lang-switcher {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: rgba(245,242,236,0.4);
    display: flex; gap: 5px; cursor: pointer;
}
.lang-switcher span { transition: var(--tr); }
.lang-switcher span.active { color: var(--gold); }
.lang-switcher span:hover { color: var(--gold-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--light); transition: var(--tr); }

.mobile-menu {
    display: none; background: rgba(24,24,22,0.98); padding: 24px 44px 28px;
    border-top: 1px solid rgba(176,144,96,0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a {
    font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(245,242,236,0.75);
}

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
    height: 100vh; min-height: 760px;
    position: relative; display: flex; align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding-bottom: 160px;
}
#hero::before {
    content: "";
    position: absolute;
    inset: -4%;
    background: url('a-piscina.jpg') center / cover no-repeat;
    transform: translateY(var(--hero-shift)) scale(1.02);
    animation: heroBreath 14s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes heroBreath {
    from { transform: translateY(var(--hero-shift)) scale(1.02); }
    to { transform: translateY(var(--hero-shift)) scale(1.07); }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(to right, rgba(18,18,14,0.72) 0%, rgba(18,18,14,0.3) 70%),
        linear-gradient(to bottom, rgba(18,18,14,0.35) 0%, transparent 40%, rgba(18,18,14,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-content .eyebrow { margin-bottom: 22px; }
.hero-content h1 { color: var(--light); margin-bottom: 26px; }
.hero-sub {
    font-size: 1.08rem; color: rgba(245,242,236,0.72);
    max-width: 540px; margin-bottom: 42px; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns button { appearance: none; }

/* ── HERO FACTS & BUYER SNAPSHOT ───────────────────────────── */
.hero-facts {
    position: absolute; left: 50%; bottom: 38px; z-index: 2;
    transform: translateX(-50%);
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
    background: rgba(245,242,236,0.96);
    border: 1px solid var(--cream-dark);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.hero-fact-item {
    min-width: 0;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px clamp(22px, 2.2vw, 34px);
    border-right: 1px solid var(--cream-dark);
    text-align: center;
    transition: transform 0.36s ease, background 0.36s ease, box-shadow 0.36s ease;
}
.hero-fact-item:hover {
    transform: translateY(-4px);
    background: #fbf8f1;
    box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}
.hero-fact-item:last-child { border-right: none; }
.hero-fact-item h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--dark);
    margin-bottom: 10px;
    white-space: nowrap;
}
.hero-fact-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.16em;
}
.hero-fact-range {
    font-size: clamp(1.85rem, 2.55vw, 2.72rem);
}
.fact-unit {
    font-family: 'Jost', sans-serif;
    font-size: 0.42em;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.fact-unit sup {
    font-size: 0.68em;
    top: -0.35em;
    position: relative;
}
.hero-fact-item p {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}

.buyer-snapshot {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 2.1fr);
    background: var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}
.snapshot-intro,
.snapshot-item {
    background: var(--cream);
    padding: clamp(24px, 3vw, 38px) clamp(24px, 3vw, 42px);
}
.snapshot-intro {
    min-height: 170px;
    border-right: 1px solid var(--cream-dark);
}
.snapshot-intro h2 {
    font-size: clamp(1.85rem, 2.8vw, 2.75rem);
    max-width: 420px;
}
.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--cream-dark);
}
.snapshot-item {
    border-right: 1px solid var(--cream-dark);
    transition: transform 0.36s ease, background 0.36s ease, box-shadow 0.36s ease;
}
.snapshot-item:hover {
    transform: translateY(-3px);
    background: #fbf8f1;
    box-shadow: inset 0 0 0 1px rgba(176,144,96,0.2);
}
.snapshot-item:last-child { border-right: none; }
.snapshot-item .eyebrow { margin-bottom: 18px; }
.snapshot-item h3 {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}
.snapshot-item p:last-child {
    font-size: 0.86rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── PROJECT SECTION ───────────────────────────────────────── */
.project-layout {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 90px; align-items: center;
}
.project-text h2 { margin-bottom: 24px; }
.project-text p { margin-bottom: 18px; }
.project-text .btn { margin-top: 10px; }

.img-stack { position: relative; }
.img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.img-inset {
    position: absolute; bottom: -36px; left: -36px;
    width: 52%; aspect-ratio: 4/3; object-fit: cover;
    border: 6px solid var(--cream);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* ── VIEWS BAND ────────────────────────────────────────────── */
.views-band {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--cream-dark);
}
.view-item { position: relative; overflow: hidden; }
.view-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.7s ease; }
.view-item:hover img { transform: scale(1.05); }
.view-caption {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 28px 24px;
    background: linear-gradient(transparent, rgba(18,18,14,0.8));
}
.view-caption .eyebrow { margin-bottom: 4px; }
.view-caption p { font-size: 0.8rem; color: rgba(245,242,236,0.75); }

/* ── MODELS ────────────────────────────────────────────────── */
.models-section { background: var(--cream-mid); }

.model-showcase {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
    padding: 60px 0;
}
.model-reverse { direction: rtl; }
.model-reverse > * { direction: ltr; }

.model-main-img { overflow: hidden; cursor: zoom-in; }
.model-main-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.75s ease, filter 0.75s ease; }
.model-showcase:hover .model-main-img img { transform: scale(1.035); filter: saturate(1.04); }

.model-thumbs { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.thumb {
    width: calc(16.66% - 7px); aspect-ratio: 1; object-fit: cover;
    cursor: pointer; opacity: 0.6; transition: var(--tr); border: 2px solid transparent;
}
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--gold); transform: translateY(-2px); }

.model-info { padding-top: 12px; }
.model-info .eyebrow { margin-bottom: 14px; }
.model-info h3 { margin-bottom: 20px; }
.model-desc { font-size: 0.97rem; margin-bottom: 30px; }

.model-specs {
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    padding: 20px 0; margin-bottom: 32px;
}
.model-specs li {
    display: flex; justify-content: space-between;
    font-size: 0.82rem; padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.model-specs li:last-child { border: none; }
.model-specs li span:first-child { color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.68rem; }
.model-specs li span:last-child  { color: var(--text); font-weight: 400; text-align: right; }

.model-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.model-actions button { appearance: none; }

.model-showcase {
    transition: transform 0.4s ease;
}
.model-showcase:hover {
    transform: translateY(-2px);
}

.model-divider { height: 1px; background: var(--cream-dark); margin: 10px 0; }

/* ── FLOOR PLAN MODAL ──────────────────────────────────────── */
body.modal-open { overflow: hidden; }
.plan-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}
.plan-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.plan-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(24,24,22,0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.plan-modal-panel {
    position: relative;
    width: min(96vw, 1500px);
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    padding: 26px;
    background: var(--cream);
    border: 1px solid rgba(232,220,200,0.55);
    overflow: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.32);
    transform: translateY(14px) scale(0.985);
    transition: transform 0.34s ease;
}
.plan-modal.open .plan-modal-panel { transform: translateY(0) scale(1); }
.plan-modal-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 24px; margin-bottom: 22px;
}
.plan-modal-header .eyebrow { margin-bottom: 8px; }
.plan-modal-header h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.plan-modal-close {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1px solid var(--cream-dark);
    background: transparent; color: var(--text);
    font-size: 2rem; line-height: 1; cursor: pointer;
    transition: var(--tr);
}
.plan-modal-close:hover { background: var(--dark-warm); color: var(--gold-light); border-color: var(--dark-warm); }
.plan-tabs {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--cream-dark); margin-bottom: 20px;
    position: relative;
}
.plan-tab {
    min-height: 48px;
    background: transparent; border: none; border-right: 1px solid var(--cream-dark);
    color: var(--text-muted); cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    position: relative;
    transition: var(--tr);
}
.plan-tab::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 2px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.32s ease;
}
.plan-tab:last-child { border-right: none; }
.plan-tab:hover, .plan-tab.active { background: var(--dark-warm); color: var(--gold-light); }
.plan-tab.active::after { transform: scaleX(1); }
.plan-viewer {
    background: #fff;
    border: 1px solid var(--cream-dark);
    overflow: hidden;
}
.plan-viewer img {
    width: 100%;
    max-height: calc(100vh - 250px);
    min-height: 420px;
    object-fit: contain;
    background: #fff;
    opacity: 1;
    transition: opacity 0.22s ease;
}
.plan-viewer img.is-switching { opacity: 0; }
.plan-viewer figcaption {
    border-top: 1px solid var(--cream-dark);
    padding: 12px 16px;
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted);
}

/* ── LIFESTYLE ─────────────────────────────────────────────── */
.lifestyle-section { position: relative; overflow: hidden; padding-bottom: 98px; }
.lifestyle-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        linear-gradient(90deg, rgba(20,28,20,0.98) 0%, rgba(20,28,20,0.9) 54%, rgba(20,28,20,0.78) 100%),
        url('b-piscina.jpg') center / cover no-repeat;
}
.lifestyle-section .container { position: relative; z-index: 1; }
.lifestyle-top {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 64px;
    align-items: center;
    margin-bottom: 58px;
}
.lifestyle-header { max-width: 680px; }
.lifestyle-header h2 { color: var(--light); }
.life-intro {
    font-size: 1.05rem;
    margin-top: 18px;
    max-width: 620px;
    color: rgba(245,242,236,0.8);
}
.source-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.source-links a,
.amenity-card a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(205,178,133,0.55);
    padding-bottom: 3px;
}
.source-links a:hover,
.amenity-card a:hover { color: var(--light); border-color: var(--light); }
.lifestyle-video {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(205,178,133,0.35);
    background: rgba(245,242,236,0.08);
    box-shadow: 0 22px 70px rgba(0,0,0,0.32);
    transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.42s ease;
}
.lifestyle-video:hover {
    transform: translateY(-4px);
    border-color: rgba(205,178,133,0.7);
    box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}
.lifestyle-video iframe,
.lifestyle-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    object-fit: cover;
    background: var(--dark);
}
.video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: linear-gradient(rgba(24,24,22,0.08), rgba(24,24,22,0.22));
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-play span {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: block;
    position: relative;
    border: 1px solid rgba(205,178,133,0.85);
    background: rgba(24,24,22,0.56);
    box-shadow: 0 14px 38px rgba(0,0,0,0.32);
}
.video-play span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-42%, -50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--gold-light);
}
.lifestyle-video.playing .video-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.amenity-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    color: var(--text-mid);
    background: rgba(245,242,236,0.94);
    border: 1px solid rgba(221,214,201,0.82);
    padding: 28px;
    transition: transform 0.36s ease, box-shadow 0.36s ease, border-color 0.36s ease, background 0.36s ease;
}
.amenity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(176,144,96,0.55);
    box-shadow: 0 18px 42px rgba(0,0,0,0.16);
    background: #fbf8f1;
}
.amenity-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.amenity-card h4 {
    font-family: 'Jost', sans-serif; font-weight: 500;
    font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--dark); margin-bottom: 10px;
}
.amenity-card p {
    font-size: 0.9rem;
    line-height: 1.78;
    color: var(--text-muted);
    margin-bottom: 22px;
}
.amenity-card a { margin-top: auto; color: var(--gold); border-color: rgba(176,144,96,0.5); }
.amenity-card a:hover { color: var(--dark); border-color: var(--dark); }

/* ── WHY SECTION ───────────────────────────────────────────── */
.why-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 86px; align-items: center; }
.why-imgs { position: relative; }
.why-img-top { width: 78%; aspect-ratio: 3/4; object-fit: cover; margin-left: auto; }
.why-img-bottom {
    position: absolute; bottom: -40px; left: 0;
    width: 52%; aspect-ratio: 4/3; object-fit: cover;
    border: 6px solid var(--cream);
    box-shadow: 0 18px 48px rgba(0,0,0,0.14);
}
.why-text h2 { margin-bottom: 22px; }
.why-desc { font-size: 1rem; margin-bottom: 36px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.check { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.why-point strong {
    display: block; font-family: 'Jost', sans-serif; font-weight: 500;
    font-size: 0.82rem; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--text); margin-bottom: 4px;
}
.why-point p { font-size: 0.88rem; color: var(--text-muted); }

/* ── CLICKABLE IMAGERY ─────────────────────────────────────── */
.view-item img,
.img-main,
.img-inset,
.thumb {
    cursor: zoom-in;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 32px;
    background: rgba(18,18,14,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
.image-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.image-lightbox img {
    max-width: min(1180px, 92vw);
    max-height: 86vh;
    object-fit: contain;
    box-shadow: 0 26px 90px rgba(0,0,0,0.45);
    transform: scale(0.97);
    transition: transform 0.28s ease;
}
.image-lightbox.open img { transform: scale(1); }
.image-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(205,178,133,0.5);
    background: rgba(245,242,236,0.08);
    color: var(--gold-light);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--tr);
}
.image-lightbox-close:hover {
    background: var(--gold-light);
    color: var(--dark);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-section { background: var(--dark-warm); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }

.contact-left .eyebrow { margin-bottom: 16px; }
.contact-left h2 { color: var(--light); margin-bottom: 18px; }
.contact-left > p { color: var(--light-muted); font-size: 0.96rem; line-height: 1.82; margin-bottom: 36px; }

.contact-meta { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; flex-direction: column; gap: 3px; }
.detail-label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,242,236,0.35); }
.detail-value { font-size: 0.9rem; color: var(--gold-light); transition: var(--tr); }
.detail-value:hover { color: var(--light); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
    font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(245,242,236,0.42);
}
.form-group input, .form-group select, .form-group textarea {
    background: rgba(245,242,236,0.04);
    border: 1px solid rgba(176,144,96,0.2);
    color: var(--light);
    font-family: 'Jost', sans-serif; font-size: 0.93rem;
    padding: 14px 18px;
    outline: none; transition: var(--tr); width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(176,144,96,0.06);
}
.form-group select option { background: var(--dark-warm); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-note {
    margin-top: 14px; text-align: center;
    font-size: 0.68rem; color: rgba(245,242,236,0.25); letter-spacing: 0.04em;
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
    background: var(--dark);
    padding: 56px 0 40px;
    border-top: 1px solid rgba(176,144,96,0.1);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.footer-agent { font-size: 0.78rem; color: rgba(245,242,236,0.35); margin-top: 6px; }
.footer-agent strong { color: rgba(245,242,236,0.55); }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,242,236,0.35); }
.footer-links a:hover { color: var(--gold); }
.disclaimer { max-width: 640px; font-size: 0.7rem; color: rgba(245,242,236,0.2); line-height: 1.7; font-style: italic; }
.footer-copy { font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(245,242,236,0.2); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .project-layout { grid-template-columns: 1fr; gap: 60px; }
    .img-inset { display: none; }
    .model-showcase, .model-reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
    .why-layout { grid-template-columns: 1fr; }
    .why-imgs { display: none; }
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .lifestyle-top { grid-template-columns: 1fr; gap: 42px; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .buyer-snapshot { grid-template-columns: 1fr 1fr; }
    .snapshot-intro { grid-column: 1 / -1; min-height: auto; }
    .snapshot-grid { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .snapshot-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section-padding { padding: 72px 0; }
    .nav-links, .nav-right .btn { display: none; }
    .hamburger { display: flex; }
    .views-band { grid-template-columns: 1fr; }
    .views-band .view-item:not(:first-child) { display: none; }
    .amenities-grid { grid-template-columns: 1fr; gap: 28px; }
    #hero { min-height: 860px; padding-bottom: 290px; }
    .hero-facts {
        bottom: 18px;
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 48px);
    }
    .hero-fact-item { min-height: 112px; padding: 18px; }
    .hero-fact-item h3 { font-size: 2.25rem; }
    .hero-fact-range { font-size: 1.9rem; }
    .hero-fact-item:nth-child(2) { border-right: none; }
    .hero-fact-item:nth-child(-n + 2) { border-bottom: 1px solid var(--cream-dark); }
    .buyer-snapshot { grid-template-columns: 1fr; }
    .snapshot-grid { grid-template-columns: 1fr; }
    .snapshot-intro, .snapshot-item { border-right: none; border-bottom: 1px solid var(--cream-dark); }
    .form-row { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-btns .btn { width: 100%; text-align: center; }
    .model-actions { flex-direction: column; align-items: stretch; }
    .model-actions .btn { width: 100%; text-align: center; }
    .plan-modal-panel { width: calc(100vw - 24px); max-height: calc(100vh - 24px); margin: 12px auto; padding: 16px; }
    .plan-modal-header { align-items: flex-start; }
    .plan-modal-close { width: 40px; height: 40px; }
    .plan-tabs { grid-template-columns: 1fr; }
    .plan-tab { border-right: none; border-bottom: 1px solid var(--cream-dark); }
    .plan-tab:last-child { border-bottom: none; }
    .plan-viewer img { min-height: 320px; max-height: 58vh; }
    .footer-links { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    #hero::before {
        transform: none;
    }
}
