:root {
  --ink: #0f1d19;
  --green: #13231f;
  --ivory: #f7f3ec;
  --stone: #eee8dd;
  --paper: #fffdf9;
  --line: #e3dbcd;
  --text: #1b2622;
  --muted: #62706b;
  --gold: #a88452;
  --gold-soft: #d8c29c;
  --wa: #25d366;
  --radius: 20px;
  --shadow: 0 1px 2px rgba(15,29,25,.05), 0 18px 40px -22px rgba(15,29,25,.28);
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wide: "Michroma", "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; font: 16px/1.65 var(--sans); color: var(--text); background: var(--ivory); -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; line-height: 1.05; margin: 0; }
h1 em, h2 em { font-style: italic; font-weight: 400; }
p { margin: 0; }
.wrap { width: min(1280px, 100% - 48px); margin-inline: auto; }
.narrow { width: min(820px, 100% - 48px); margin-inline: auto; }
[hidden] { display: none !important; }

.label { font-family: var(--wide); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.label.light { color: var(--gold-soft); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; padding: 14px 26px; font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none; transition: background .25s, color .25s, border-color .25s, transform .2s; white-space: nowrap; }
.btn:active { transform: scale(.98); }
.btn-dark { background: var(--green); color: var(--ivory); }
.btn-dark:hover { background: var(--ink); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #94733f; }
.btn-line { border-color: currentColor; background: transparent; }
.btn-line:hover { background: var(--green); color: var(--ivory); border-color: var(--green); }
.btn-light { background: var(--ivory); color: var(--green); }
.btn-light:hover { background: #fff; }
.btn-wa { background: var(--wa); color: #073b1c; }
.btn-wa:hover { background: #1fbe5a; }
.btn.full { width: 100%; }
.arrow-link { font-weight: 600; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; }
.arrow-link::after { content: "→"; transition: transform .25s; }
.arrow-link:hover::after, .card:hover .arrow-link::after { transform: translateX(4px); }

/* Nav */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; color: var(--ivory); transition: background .35s, color .35s, box-shadow .35s; }
.nav.solid { background: rgba(247,243,236,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: var(--green); box-shadow: 0 1px 0 var(--line); }
.nav-inner { display: flex; align-items: center; gap: 40px; height: 80px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--wide); font-size: 16px; letter-spacing: .1em; line-height: 1; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 14.5px; font-weight: 500; opacity: .85; position: relative; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav .btn { padding: 11px 20px; font-size: 14px; }
.nav:not(.solid) .btn-line:hover { background: var(--ivory); color: var(--green); border-color: var(--ivory); }
.menu-btn { display: none; background: none; border: 0; width: 44px; height: 44px; margin-left: auto; cursor: pointer; padding: 0; }
.menu-btn span { display: block; height: 1.5px; background: currentColor; margin: 7px 8px; }

/* Hero */
.hero { position: relative; min-height: min(100svh, 940px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--green); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,17,.55) 0%, rgba(10,20,17,.1) 28%, rgba(10,20,17,.35) 55%, rgba(10,20,17,.9) 100%), linear-gradient(90deg, rgba(10,20,17,.55), rgba(10,20,17,0) 65%); }
.hero-inner { position: relative; z-index: 1; padding: 170px 0 48px; }
.hero h1 { font-size: clamp(52px, 7.2vw, 108px); max-width: 13ch; font-weight: 400; line-height: .96; margin-top: 18px; }
.hero .lede { font-size: 19px; max-width: 50ch; margin-top: 26px; color: rgba(255,255,255,.86); }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-top: 52px; flex-wrap: wrap; }
.search { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: 22px; padding: 8px; width: min(880px, 100%); }
.search label { display: grid; gap: 2px; padding: 8px 16px; }
.search label + label { border-left: 1px solid rgba(255,255,255,.18); }
.search span { font-family: var(--wide); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.search select { background: transparent; border: 0; color: #fff; font-weight: 600; padding: 2px 0; outline: none; appearance: none; -webkit-appearance: none; cursor: pointer; }
.search select option { color: var(--text); }
.search .btn { border-radius: 16px; }
.hero-credit { font-size: 12px; color: rgba(255,255,255,.55); }

/* Sections */
section { padding: 128px 0; }
.head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }
.head h2 { font-size: clamp(42px, 5vw, 70px); margin-top: 16px; max-width: 15ch; }
.head .note { max-width: 44ch; color: var(--muted); font-size: 17px; }
.dark { background: var(--green); color: var(--ivory); }
.dark .head .note { color: rgba(247,243,236,.7); }

/* Pillars */
.intro-text { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 46px); line-height: 1.22; max-width: 26ch; margin-bottom: 80px; }
.intro-text em { color: var(--gold); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.pillar { padding: 40px 40px 0 0; }
.pillar + .pillar { padding-left: 40px; border-left: 1px solid var(--line); }
.pillar .num { font-family: var(--serif); font-size: 22px; color: var(--gold); font-style: italic; }
.pillar h3 { font-size: 32px; margin: 10px 0 12px; }
.pillar p { color: var(--muted); }

/* Filter bar */
.filterbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.pill { border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 12px 24px; font-weight: 600; font-size: 14.5px; cursor: pointer; transition: all .25s; }
.pill:hover { border-color: var(--green); }
.pill.on { background: var(--green); color: var(--ivory); border-color: var(--green); }
.filterbar select { margin-left: auto; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 12px 18px; font-weight: 600; font-size: 14.5px; }
.count { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

/* Listing cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 28px; }
.card { background: var(--paper); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 1px 2px rgba(15,29,25,.05), 0 36px 64px -30px rgba(15,29,25,.42); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--stone); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-media img { transform: scale(1.06); }
.tags { position: absolute; top: 16px; left: 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag { background: rgba(255,253,249,.92); backdrop-filter: blur(6px); color: var(--green); font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }
.tag.dark { background: rgba(15,29,25,.82); color: var(--ivory); }
.tag.gold { background: var(--gold); color: #fff; }
.card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-loc { font-family: var(--wide); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.card h3 { font-size: 29px; line-height: 1.08; }
.card-facts { display: flex; gap: 18px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.prices { display: flex; flex-wrap: wrap; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--stone); }
.prices .from { width: 100%; font-size: 12.5px; color: var(--muted); margin-bottom: 4px; }
.prices div { padding-right: 16px; margin-right: 16px; border-right: 1px solid var(--stone); }
.prices div:last-of-type { border: 0; margin: 0; padding: 0; }
.prices small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; color: var(--muted); }
.prices strong { font-size: 19px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.card .arrow-link { margin-top: 10px; }

/* Coming soon */
.soon { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--paper); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.soon-media { position: relative; min-height: 500px; }
.soon-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.soon-body { padding: 56px; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.soon-body h3 { font-size: 46px; }
.soon-body > p { color: var(--muted); }

/* Forms */
.form { display: grid; gap: 14px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field span { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); background: var(--ivory); border-radius: 12px; padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,132,82,.15); }
.form-hint { font-size: 13px; color: var(--muted); }

/* Regions */
.regions-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 72px; border-top: 1px solid rgba(247,243,236,.14); }
.region-row { display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center; padding: 26px 0; border-bottom: 1px solid rgba(247,243,236,.14); text-decoration: none; transition: padding .35s; }
.region-row:hover { padding-left: 10px; }
.region-row .n { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 20px; }
.region-row strong { font-family: var(--serif); font-weight: 500; font-size: 32px; line-height: 1.1; display: block; }
.region-row small { display: block; color: rgba(247,243,236,.6); font-size: 14px; margin-top: 4px; }
.region-row .go { font-size: 22px; color: var(--gold-soft); transition: transform .3s; }
.region-row:hover .go { transform: translateX(6px); }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.split-media { border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(42px, 4.6vw, 66px); margin: 16px 0 24px; }
.split .body { color: var(--muted); font-size: 17px; }
.news { display: grid; margin: 32px 0; border-top: 1px solid var(--line); }
.news a { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.news a:hover strong { color: var(--gold); }
.news small { font-family: var(--wide); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); padding-top: 8px; }
.news strong { font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.15; transition: color .2s; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: s; }
.steps li { counter-increment: s; border-top: 1px solid rgba(247,243,236,.2); padding-top: 24px; }
.steps li::before { content: counter(s, decimal-leading-zero); font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold-soft); display: block; margin-bottom: 10px; }
.steps strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 29px; line-height: 1.1; margin-bottom: 8px; }
.steps span { color: rgba(247,243,236,.7); font-size: 15px; }
.structures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 72px; }
.structures article { border: 1px solid rgba(247,243,236,.14); border-radius: 22px; padding: 34px; transition: background .3s; }
.structures article:hover { background: rgba(247,243,236,.04); }
.structures h3 { font-size: 32px; margin: 12px 0 12px; }
.structures p { color: rgba(247,243,236,.72); }

/* Journal */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post { text-decoration: none; display: grid; gap: 16px; align-content: start; }
.post-media { border-radius: 18px; overflow: hidden; aspect-ratio: 3/2; background: var(--stone); }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.post:hover .post-media img { transform: scale(1.05); }
.post small { font-family: var(--wide); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.post h3 { font-size: 29px; line-height: 1.1; }
.post p { color: var(--muted); font-size: 15px; }

/* FAQ */
.faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 88px; align-items: start; }
.faq h2 { font-size: clamp(42px, 4.6vw, 62px); margin-top: 16px; }
.faq details { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: 27px; line-height: 1.2; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 28px; line-height: 1; color: var(--gold); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: var(--muted); max-width: 62ch; }

/* CTA band */
.cta-band { position: relative; color: #fff; overflow: hidden; border-radius: 32px; padding: 110px 72px; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,17,.88), rgba(10,20,17,.3)); }
.cta-band > div { position: relative; z-index: 1; max-width: 620px; display: grid; gap: 22px; }
.cta-band h2 { font-size: clamp(42px, 5vw, 68px); }
.cta-band p { color: rgba(255,255,255,.82); font-size: 17px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--ink); color: rgba(247,243,236,.66); padding: 100px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 2fr; gap: 64px; }
.footer .logo { color: var(--ivory); }
.footer-tag { font-family: var(--serif); font-size: 32px; line-height: 1.15; color: var(--ivory); margin-top: 26px; max-width: 15ch; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols div { display: grid; gap: 10px; align-content: start; }
.footer-cols strong { font-family: var(--wide); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 400; margin-bottom: 6px; }
.footer-cols a { text-decoration: none; font-size: 15px; }
.footer-cols a:hover { color: var(--ivory); }
.footer-base { margin-top: 80px; padding-top: 24px; border-top: 1px solid rgba(247,243,236,.1); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; }
.footer-base a { text-decoration: none; }
.footer-base a:hover { color: var(--ivory); }

/* WhatsApp float */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .25s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Page hero */
.page-hero { position: relative; color: #fff; padding: 210px 0 88px; overflow: hidden; background: var(--green); }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,17,.62), rgba(10,20,17,.42) 50%, rgba(10,20,17,.86)); }
.page-hero .wrap, .page-hero .narrow { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(46px, 6.4vw, 94px); max-width: 16ch; margin-top: 18px; font-weight: 400; }
.page-hero .lede { font-size: 19px; max-width: 58ch; margin-top: 22px; color: rgba(255,255,255,.86); }
.crumbs { font-size: 13.5px; color: rgba(255,255,255,.72); display: flex; gap: 10px; flex-wrap: wrap; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; }
.meta-line { margin-top: 28px; font-size: 14px; color: rgba(255,255,255,.75); }
.photo-credit { position: absolute; right: 24px; bottom: 16px; z-index: 1; font-size: 11.5px; color: rgba(255,255,255,.55); }

/* Article */
.article { padding: 88px 0 128px; }
.prose { font-size: 18px; line-height: 1.8; }
.prose .intro { font-family: var(--serif); font-size: 29px; line-height: 1.4; color: var(--text); margin-bottom: 36px; }
.prose h2 { font-size: 46px; margin: 68px 0 18px; }
.prose h3 { font-size: 31px; margin: 42px 0 10px; }
.prose p, .prose ul, .prose ol { margin: 0 0 22px; color: #34423d; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--green); text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.prose a:hover { color: var(--gold); }
.prose .callout { background: var(--paper); border-left: 2px solid var(--gold); padding: 22px 26px; border-radius: 0 16px 16px 0; margin: 34px 0; box-shadow: var(--shadow); font-size: 16.5px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15.5px; margin: 24px 0 34px; background: var(--paper); border-radius: 16px; overflow: hidden; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--stone); vertical-align: top; }
.prose th { background: var(--green); color: var(--ivory); font-weight: 600; }
.prose .sources { font-size: 15px; }
.share-cta { margin-top: 80px; background: var(--green); color: var(--ivory); border-radius: 26px; padding: 44px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.share-cta h2 { font-size: 40px; margin-top: 10px; }

/* Listing detail */
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: min(70vh, 660px); margin-top: 100px; }
.gallery button { border: 0; padding: 0; border-radius: 20px; overflow: hidden; cursor: zoom-in; position: relative; background: var(--stone); }
.gallery button:first-child { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.gallery button:hover img { transform: scale(1.04); }
.gallery .more { position: absolute; right: 14px; bottom: 14px; background: rgba(255,253,249,.94); color: var(--green); padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 13.5px; }
.listing-head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: end; padding: 48px 0 44px; border-bottom: 1px solid var(--line); }
.listing-head .crumbs { color: var(--muted); }
.listing-head .crumbs a:hover { color: var(--text); }
.listing-head h1 { font-size: clamp(42px, 5vw, 72px); margin: 18px 0; }
.loc { display: flex; gap: 8px; align-items: center; color: var(--muted); }
.big-prices .from { font-family: var(--serif); font-size: 28px; font-style: italic; color: var(--muted); }
.big-prices .row { display: flex; margin-top: 10px; flex-wrap: wrap; row-gap: 12px; }
.big-prices .row div { padding-right: 26px; margin-right: 26px; border-right: 1px solid var(--line); }
.big-prices .row div:last-child { border: 0; margin: 0; padding: 0; }
.big-prices small { display: block; font-size: 11.5px; letter-spacing: .12em; font-weight: 700; color: var(--muted); }
.big-prices strong { font-size: clamp(26px, 2.6vw, 38px); font-weight: 600; letter-spacing: -.02em; white-space: nowrap; }
.big-prices .note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.listing-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; padding: 56px 0 128px; align-items: start; }
.panel { background: var(--paper); border-radius: 24px; padding: 38px; box-shadow: var(--shadow); }
.panel + .panel { margin-top: 24px; }
.panel h2 { font-size: 38px; margin-bottom: 24px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 20px; margin: 0; }
.facts div { display: grid; gap: 4px; }
.facts dt { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.facts dd { margin: 0; font-weight: 600; font-size: 16.5px; }
.desc p { color: #34423d; margin-bottom: 16px; font-size: 17px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 14px; font-weight: 500; }
#listingMap { height: 360px; border-radius: 16px; overflow: hidden; }
.aside { position: sticky; top: 104px; }
.agent { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.agent .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: var(--ivory); display: grid; place-items: center; flex: none; }
.agent strong { display: block; font-size: 17px; }
.agent small { color: var(--muted); }
.status { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 600; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #3aa76d; }
.status.reserved::before { background: #d9a13b; }
.status.sold::before { background: #c0564a; }

.gallery.g1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.gallery.g1 button:first-child { grid-row: auto; }
.gallery.g2 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
.gallery.g2 button:first-child { grid-row: auto; }
.gallery.g1 img[src*="perabu"] { object-fit: contain; background: #fff; }
.videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.videos video { width: 100%; max-height: 560px; border-radius: 16px; background: var(--ink); }

/* Lightbox */
.lightbox { border: 0; padding: 0; margin: 0; background: rgba(8,14,12,.96); width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh; }
.lightbox::backdrop { background: rgba(8,14,12,.96); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; padding: 64px; }
.lightbox button { position: absolute; background: rgba(255,255,255,.1); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 22px; cursor: pointer; top: 50%; transform: translateY(-50%); }
.lightbox button:hover { background: rgba(255,255,255,.2); }
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }
.lightbox .lb-close { top: 36px; right: 20px; transform: none; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1040px) {
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--ivory); color: var(--green); padding: 8px 24px 24px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.3); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-links a::after { display: none; }
  .nav .nav-cta { display: none; }
  .menu-btn { display: block; }
  .pillars, .structures, .posts { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar { padding: 32px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .split, .faq-inner, .soon, .listing-head, .listing-body, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .split-media { aspect-ratio: 4/3; }
  .regions-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .aside { position: static; }
  .soon-media { min-height: 300px; }
}
@media (max-width: 720px) {
  section { padding: 84px 0; }
  .wrap, .narrow { width: calc(100% - 32px); }
  .search { grid-template-columns: 1fr; }
  .search label + label { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .two { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; margin-top: 88px; }
  .gallery button { aspect-ratio: 4/3; }
  .gallery button:not(:first-child) { display: none; }
  .soon-body, .panel { padding: 28px; }
  .cta-band { padding: 72px 28px; border-radius: 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .filterbar select { margin-left: 0; }
  .prose .intro { font-size: 24px; }
  .prose h2 { font-size: 36px; }
  .lightbox img { padding: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
