:root {
  --ink: #161d1d;
  --forest: #123638;
  --forest-2: #0b2527;
  --cream: #eee9e1;
  --paper: #f8f6f1;
  --gold: #b66d4e;
  --gold-light: #d9a07f;
  --sage: #9aa9a4;
  --muted: #626967;
  --line: rgba(22, 29, 29, .13);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --display: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 14px; letter-spacing: -.01em; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.scroll-progress { position: fixed; top: 0; left: 0; z-index: 100; width: 0; height: 2px; background: var(--gold); }
.cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; z-index: 101; border-radius: 50%; pointer-events: none; opacity: 0; transform: translate(-50%, -50%); transition: opacity .2s; }
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(198,161,91,.65); transition: width .2s, height .2s, border-color .2s, opacity .2s; }
body.cursor-active .cursor-dot, body.cursor-active .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: var(--gold); }

.topbar { height: 34px; background: #101817; color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.topbar-inner { height: 100%; display: flex; align-items: center; gap: 16px; }
.topbar-inner a { transition: color .2s; }
.topbar-inner a:hover { color: white; }
.topbar-divider { width: 24px; height: 1px; background: rgba(255,255,255,.3); }
.topbar-phone { margin-left: auto; color: white !important; }

.site-header { height: 86px; position: absolute; top: 34px; z-index: 20; width: 100%; color: white; border-bottom: 1px solid rgba(255,255,255,.2); transition: .35s; }
.site-header.scrolled { position: fixed; top: 0; height: 72px; color: var(--ink); background: rgba(248,246,241,.94); backdrop-filter: blur(20px); box-shadow: 0 12px 34px rgba(15,27,26,.07); }
.nav-wrap { height: 100%; display: flex; align-items: center; }
.brand { width: 174px; height: 82px; display: flex; align-items: center; overflow: hidden; transition: width .3s ease, height .3s ease; }
.brand img { width: 174px; height: auto; flex: 0 0 auto; object-fit: contain; filter: brightness(0) invert(1); transition: width .3s ease, filter .3s ease; }
.scrolled .brand { width: 128px; height: 60px; }
.scrolled .brand img { width: 128px; filter: none; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: .25s; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.desktop-nav a.active { color: var(--gold-light); }
.scrolled .desktop-nav a.active { color: #9d573e; }
.nav-cta { padding: 11px 15px; margin-left: 30px; border: 1px solid rgba(255,255,255,.38); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.scrolled .nav-cta { border-color: var(--line); }
.nav-cta span { margin-left: 8px; }
.menu-toggle, .mobile-nav { display: none; }

.hero { min-height: 880px; height: 100vh; position: relative; overflow: hidden; color: white; background: var(--forest-2); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); animation: heroZoom 14s ease-out both; }
@keyframes heroZoom { to { transform: scale(1.08); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(270deg, rgba(8,20,20,.91) 0%, rgba(9,29,29,.62) 47%, rgba(7,22,22,.2) 78%), linear-gradient(0deg, rgba(7,20,20,.75) 0%, transparent 42%); }
.hero-grain { position: absolute; inset: 0; opacity: .12; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(228,203,148,.17); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 560px; height: 560px; left: -170px; top: 14%; animation: orbitPulse 5s ease-in-out infinite; }
.orbit-two { width: 760px; height: 760px; left: -270px; top: 3%; animation: orbitPulse 5s 1.1s ease-in-out infinite; }
@keyframes orbitPulse { 0%, 100% { transform: scale(.96); opacity: .35; } 50% { transform: scale(1.04); opacity: .8; } }
.hero-layout { height: 100%; padding-top: 160px; display: grid; grid-template-columns: 450px minmax(0, 1fr); align-items: center; gap: 64px; position: relative; z-index: 2; }
.hero-copy { grid-column: 2; grid-row: 1; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: 9px; font-weight: 700; }
.eyebrow span { width: 32px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }
.hero h1 { margin: 22px 0 28px; max-width: 820px; font: 400 clamp(54px, 5.8vw, 88px)/1.06 var(--serif); letter-spacing: -.04em; }
h1 em, h2 em { color: var(--gold-light); font-style: normal; font-weight: 400; }
.hero-lead { max-width: 570px; margin: 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.85; letter-spacing: 0; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 32px; }
.btn { min-height: 56px; padding: 0 24px; border: 0; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: transform .25s, background .25s, color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: #15201f; background: #d9a07f; }
.btn-gold:hover { color: white; background: #a95f42; }
.btn-dark { color: white; background: var(--forest); }
.text-link, .arrow-link { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-link { display: inline-flex; align-items: center; gap: 16px; }
.text-arrow { display: inline-flex; align-items: center; justify-content: center; font-size: 17px; transition: transform .28s ease, color .28s ease; }
.text-link:hover .text-arrow { color: var(--gold-light); transform: translateX(5px); }
.cta-icon { width: 32px; height: 32px; flex: 0 0 32px; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 13px; line-height: 1; transition: transform .28s ease, color .28s ease, background .28s ease; }
a:hover .cta-icon, button:hover .cta-icon { transform: translateX(4px); }
.hero-card { grid-column: 1; grid-row: 1; padding: 0; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: linear-gradient(145deg, rgba(174,73,52,.98), rgba(137,48,35,.97)); backdrop-filter: blur(20px); box-shadow: 0 35px 90px rgba(23,7,4,.34); animation: cardFloat 5s ease-in-out infinite; }
.hero-card::before { content: ""; position: absolute; top: -105px; right: -85px; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.025), 0 0 0 76px rgba(255,255,255,.018); pointer-events: none; }
.hero-card::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, #f1c3a9, rgba(255,255,255,.08)); }
@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.card-topline { padding: 30px 34px 0; position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.card-kicker { margin: 0; color: #f4c2a7; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.launch-badge { padding: 6px 8px; display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.78); background: rgba(255,255,255,.055); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.launch-badge i { width: 5px; height: 5px; border-radius: 50%; background: #ffd1b9; box-shadow: 0 0 0 4px rgba(255,209,185,.14); animation: badgePulse 1.8s ease-in-out infinite; }
@keyframes badgePulse { 50% { box-shadow: 0 0 0 7px rgba(221,138,103,0); } }
.hero-card h2 { margin: 18px 34px 0; position: relative; z-index: 1; color: white; font: 700 35px/1.15 var(--sans); letter-spacing: -.045em; }
.card-location { margin: 11px 34px 20px; color: rgba(255,255,255,.9); font-size: 14px; letter-spacing: .01em; }
.card-location i { margin-right: 8px; color: white; }
.configuration-pill { width: max-content; max-width: calc(100% - 68px); margin: 0 34px 17px; padding: 11px 15px; position: relative; z-index: 1; border-radius: 6px; color: #a43f2e; background: #fffaf7; box-shadow: 0 9px 25px rgba(66,18,10,.13); font-size: 13px; font-weight: 600; }
.configuration-pill i { margin-right: 8px; }
.hero-card .card-highlights { list-style: none; padding: 0 34px; margin: 0 0 18px; position: relative; z-index: 1; }
.hero-card .card-highlights li { padding: 7px 0; display: flex; justify-content: flex-start; gap: 10px; border: 0; color: white; font-size: 13px; }
.hero-card .card-highlights li i { width: 15px; margin-top: 2px; color: #ffd4bd; font-size: 12px; }
.hero-card .card-highlights li span { color: white; }
.hero-card .card-highlights li b { margin: 0 3px; color: #f5b393; }
.price-panel { margin: 0 34px; padding: 6px 7px 6px 16px; position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 4px solid rgba(255,255,255,.94); border-radius: 7px; background: white; }
.price-panel > div { display: flex; align-items: baseline; gap: 10px; }
.price-label { color: #973b2c; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.price-sub { padding: 9px 11px; color: white; border-radius: 4px; background: #a64130; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.price { margin: 0; font: 700 24px/1.2 var(--sans); color: #a64130; }
.price sup { font-size: 14px; }
.card-cta { min-height: 48px; margin: 14px 34px 26px; padding: 0 8px 0 16px; position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,.55); color: white; background: rgba(92,22,14,.22); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 700; transition: color .25s, background .25s; }
.card-cta:hover { color: #963a2b; background: white; }
.card-cta .cta-icon { width: 36px; height: 36px; flex-basis: 36px; }
.hero-bottom { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.2); }
.hero-bottom div { padding: 25px 56px 25px 0; margin-right: 56px; display: flex; align-items: baseline; gap: 10px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-bottom div:last-child { border: 0; }
.hero-bottom strong { font: 500 22px var(--serif); color: var(--gold-light); }
.hero-bottom span { color: rgba(255,255,255,.63); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }

.luxury-marquee { overflow: hidden; padding: 19px 0; color: #f4eee8; background: #a95f42; border-bottom: 1px solid rgba(24,33,30,.12); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 32px; animation: marqueeMove 28s linear infinite; }
.marquee-track span { font: 500 16px var(--sans); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.marquee-track i { color: rgba(255,255,255,.65); font-size: 8px; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

.section-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .18em; }
.intro-grid { display: grid; grid-template-columns: .55fr 1.1fr 1fr; gap: 50px; align-items: start; }
.intro-copy { grid-column: 2 / 4; max-width: 850px; }
.intro h2, .section-head h2, .residence-top h2, .amenities-copy h2, .gallery h2, .location h2, .enquire h2 { margin: 15px 0 28px; font: 400 clamp(42px, 4.7vw, 64px)/1.14 var(--serif); letter-spacing: -.04em; }
.intro h2 em, .residence-top h2 em, .amenities-copy h2 em, .gallery h2 em, .location h2 em { color: #9d573e; }
.intro-copy > p { max-width: 720px; color: var(--muted); font-size: 14px; line-height: 1.95; letter-spacing: 0; }
.arrow-link { width: max-content; margin-top: 22px; padding-bottom: 9px; display: inline-flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--ink); }
.arrow-link .cta-icon { width: 36px; height: 36px; flex-basis: 36px; color: white; background: var(--forest); border-color: var(--forest); font-size: 13px; }
.arrow-link:hover .cta-icon { color: var(--forest); background: var(--gold-light); border-color: var(--gold-light); }
.intro-image { grid-column: 1 / 3; margin: 50px 0 0; position: relative; }
.intro-image { overflow: visible; }
.intro-image img { width: 100%; height: 560px; object-fit: cover; will-change: transform; transform: scale(1.08); }
.intro-image figcaption { position: absolute; right: 28px; bottom: 32px; z-index: 4; width: 210px; padding: 25px; color: white; background: rgba(18,54,56,.96); box-shadow: 0 18px 45px rgba(10,31,25,.22); font: 400 18px/1.5 var(--serif); }
.intro-image figcaption span { display: block; margin-bottom: 6px; color: var(--gold-light); font: 700 9px var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.intro-image::before { content: ""; position: absolute; z-index: 2; inset: -12px 26px 12px -12px; border: 1px solid rgba(138,109,57,.34); pointer-events: none; }
.image-index { position: absolute; left: 24px; bottom: 20px; z-index: 3; color: white; font-size: 10px; letter-spacing: .15em; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.intro-quote { grid-column: 3; align-self: center; padding: 35px 0 35px 35px; position: relative; z-index: 3; }
.quote-mark { color: var(--gold); font: 80px/0.7 var(--serif); }
.intro-quote p { margin: 20px 0; font: 400 22px/1.65 var(--serif); letter-spacing: -.025em; }
.quote-rule { display: block; width: 45px; height: 1px; background: var(--gold); }

.dark-section { color: white; background: #102f31; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 80px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.15); }
.section-head h2 { margin-bottom: 0; }
.section-head > p { max-width: 420px; color: rgba(255,255,255,.6); line-height: 1.75; }
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-card { min-height: 350px; padding: 35px 28px; position: relative; overflow: hidden; border-right: 1px solid rgba(255,255,255,.14); transform-style: preserve-3d; transition: background .35s, transform .15s; }
.feature-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -110px; bottom: -120px; border: 1px solid rgba(228,203,148,.18); border-radius: 50%; transition: .5s; }
.feature-card:hover { background: rgba(255,255,255,.035); }
.feature-card:hover::after { right: -60px; bottom: -70px; transform: scale(1.25); }
.feature-card:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.feature-num { color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .12em; }
.feature-icon { width: 64px; height: 64px; margin: 48px 0 34px; display: grid; place-items: center; border: 1px solid rgba(228,203,148,.3); border-radius: 50%; color: var(--gold-light); font-size: 27px; transition: color .25s, background .25s, transform .25s; }
.feature-card:hover .feature-icon { color: var(--forest); background: var(--gold-light); transform: translateY(-3px); }
.feature-card h3 { font: 400 22px/1.4 var(--serif); letter-spacing: -.025em; }
.feature-card p { color: rgba(255,255,255,.57); line-height: 1.7; font-size: 14px; }

.residences { background: #ede8df; }
.residence-top { display: flex; justify-content: space-between; align-items: end; gap: 70px; }
.residence-top h2 { margin-bottom: 0; }
.residence-top > p { max-width: 390px; color: var(--muted); line-height: 1.7; }
.residence-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.residence-card { min-height: 430px; padding: 38px; display: flex; flex-direction: column; position: relative; overflow: hidden; background: #f8f6f1; border: 1px solid var(--line); box-shadow: 0 14px 45px rgba(20,42,34,.045); transform-style: preserve-3d; transition: box-shadow .3s, transform .15s; }
.residence-card::after { content: ""; position: absolute; right: -85px; top: -85px; width: 190px; height: 190px; border: 1px solid rgba(138,109,57,.22); border-radius: 50%; }
.residence-card:hover { box-shadow: 0 28px 65px rgba(20,42,34,.12); }
.residence-card.featured { color: white; background: var(--forest); }
.residence-tag { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
.residence-number { margin-top: 35px; font: 400 92px/1 var(--serif); color: #a95f42; }
.residence-card h3 { margin: 4px 0 14px; font: 400 22px/1.4 var(--serif); letter-spacing: -.025em; }
.residence-card p { max-width: 400px; color: var(--muted); line-height: 1.7; }
.featured p { color: rgba(255,255,255,.6); }
.residence-meta { margin-top: auto; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.residence-meta a { display: inline-flex; align-items: center; gap: 10px; }
.residence-meta .cta-icon { width: 28px; height: 28px; flex-basis: 28px; font-size: 11px; }
.featured .residence-meta { border-color: rgba(255,255,255,.15); }
.microcopy { color: var(--muted); font-size: 11px; margin-top: 18px; }

.amenities-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.amenities-image { position: relative; overflow: visible; }
.amenities-image img { width: 100%; height: 760px; object-fit: cover; will-change: transform; transform: scale(1.04); }
.image-badge { position: absolute; right: -35px; bottom: 45px; width: 170px; height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; color: white; background: var(--forest); box-shadow: 0 15px 45px rgba(13,40,32,.18); }
.image-badge strong { font: 500 28px var(--serif); color: var(--gold-light); }
.image-badge span { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.floating-note { position: absolute; left: -34px; top: 55px; z-index: 2; padding: 16px 20px; display: flex; align-items: center; gap: 13px; color: var(--forest); background: rgba(251,250,246,.92); backdrop-filter: blur(12px); box-shadow: 0 16px 40px rgba(13,40,32,.16); animation: noteFloat 4s ease-in-out infinite; }
.floating-note i { color: var(--gold); font-size: 18px; }
.floating-note span { font-size: 10px; line-height: 1.45; text-transform: uppercase; letter-spacing: .06em; }
.floating-note strong { font: 600 16px var(--serif); text-transform: none; }
@keyframes noteFloat { 50% { transform: translateY(9px); } }
.amenity-list { margin-top: 45px; border-top: 1px solid var(--line); }
.amenity-list > div { display: grid; grid-template-columns: 35px 1fr; column-gap: 15px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.amenity-list span { grid-row: 1 / 3; color: var(--gold); font-size: 10px; }
.amenity-list h3 { margin: 0 0 8px; font: 500 20px var(--serif); }
.amenity-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.gallery { overflow: hidden; background: #e5dfd5; }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; }
.gallery-heading h2 { margin-bottom: 0; }
.gallery-controls { display: flex; gap: 8px; }
.gallery-controls button { width: 48px; height: 48px; border: 1px solid var(--line); color: var(--ink); background: transparent; cursor: pointer; font-size: 20px; transition: .2s; }
.gallery-controls button:hover { color: white; background: var(--forest); }
.gallery-track { margin-top: 55px; padding-left: max(24px, calc((100vw - 1240px) / 2)); display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track figure { flex: 0 0 min(62vw, 760px); height: 500px; margin: 0; scroll-snap-align: start; overflow: hidden; }
.gallery-track figure:nth-child(even) { flex-basis: min(42vw, 520px); }
.gallery-track img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery-track figure:hover img { transform: scale(1.035); }
.gallery-track figure { box-shadow: 0 22px 50px rgba(30,43,37,.12); }

.location-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.location-copy > p { color: var(--muted); line-height: 1.8; }
.location-list { margin: 38px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.location-list > div { padding: 22px; display: flex; flex-direction: column; gap: 4px; background: var(--paper); }
.location-list strong { font: 400 22px var(--serif); color: #9d573e; }
.location-list span { color: var(--muted); font-size: 12px; }
.map-card { min-height: 600px; padding: 24px; position: relative; display: flex; align-items: center; background: #eee9df; overflow: hidden; }
.map-card img { width: 100%; max-height: 550px; object-fit: contain; mix-blend-mode: multiply; }
.map-pin { position: absolute; left: 46%; top: 43%; padding: 8px 12px; color: white; background: var(--forest); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; box-shadow: 0 10px 20px rgba(0,0,0,.17); }
.map-pin span { position: absolute; left: -9px; top: 9px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(198,161,91,.22); }

.enquire { padding-top: 60px; background: var(--paper); }
.enquire-card { padding: 70px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; color: white; background: #102f31; box-shadow: 0 28px 80px rgba(10,36,37,.12); }
.enquire-copy > img { width: 185px; margin-bottom: 50px; filter: brightness(0) invert(1); }
.enquire h2 { font-size: clamp(40px, 4vw, 60px); }
.enquire-copy > p { max-width: 520px; color: rgba(255,255,255,.6); line-height: 1.75; }
.advisor-contact { display: flex; gap: 12px; margin-top: 35px; font-size: 13px; }
.advisor-contact span { color: rgba(255,255,255,.35); }
.lead-form { padding: 38px; color: var(--ink); background: #f5f1ea; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lead-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; color: #6b756f; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lead-form input:not([type="checkbox"]), .lead-form select { height: 48px; padding: 0; border: 0; border-bottom: 1px solid #c8cec9; border-radius: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; text-transform: none; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--forest); }
.consent { flex-direction: row !important; align-items: flex-start; gap: 10px !important; font-weight: 400 !important; line-height: 1.5; letter-spacing: 0 !important; text-transform: none !important; }
.consent input { accent-color: var(--forest); }
.lead-form .btn { width: 100%; margin-top: 5px; }
.form-status { min-height: 20px; margin: 12px 0 0; color: #285c45; font-size: 12px; }

.footer { padding: 80px 0 24px; color: rgba(255,255,255,.62); background: #0d2021; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1.2fr; gap: 80px; padding-bottom: 60px; }
.footer h3 { margin: 0 0 22px; color: white; font: 500 18px var(--serif); }
.footer-about img { width: 180px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-about p, .footer-address p { font-size: 13px; line-height: 1.8; }
.footer-contact { display: flex; flex-direction: column; align-items: start; }
.footer-contact a { margin-bottom: 10px; font-size: 13px; }
.footer-contact a:nth-of-type(3) { margin-top: 12px; }
.footer-address strong { color: var(--gold-light); font-weight: 500; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }
.disclaimer { max-width: 650px; text-align: right; }
.mobile-actions { display: none; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 15; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; background: #1d9b5f; font-size: 32px; box-shadow: 0 8px 25px rgba(0,0,0,.2); }
.whatsapp-float span { position: absolute; right: 65px; padding: 8px 11px; width: max-content; opacity: 0; visibility: hidden; color: var(--ink); background: white; font-size: 11px; transition: .2s; }
.whatsapp-float:hover span { opacity: 1; visibility: visible; }

.offer-modal { position: fixed; inset: 0; z-index: 200; padding: 24px; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.offer-modal.is-visible { opacity: 1; visibility: visible; }
.offer-backdrop { position: absolute; inset: 0; background: rgba(8,17,17,.78); backdrop-filter: blur(8px); }
.offer-dialog { width: min(900px, 100%); height: min(610px, calc(100vh - 48px)); position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.32); transform: translateY(28px) scale(.97); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.offer-modal.is-visible .offer-dialog { transform: translateY(0) scale(1); }
.offer-close { position: absolute; right: 18px; top: 18px; z-index: 5; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(22,29,29,.16); border-radius: 50%; color: var(--ink); background: rgba(248,246,241,.92); cursor: pointer; font-size: 17px; transition: color .25s, background .25s, transform .25s; }
.offer-close:hover { color: white; background: #a95f42; border-color: #a95f42; transform: rotate(90deg); }
.offer-visual { min-height: 0; height: 100%; position: relative; overflow: hidden; background: var(--forest); }
.offer-visual > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.offer-visual-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,28,28,.9) 0%, rgba(9,27,27,.08) 65%); }
.offer-visual-copy { position: absolute; left: 32px; right: 32px; bottom: 30px; color: white; }
.offer-visual-copy > span { color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.offer-visual-copy h2 { margin: 10px 0 12px; font: 400 29px/1.3 var(--serif); letter-spacing: -.035em; }
.offer-visual-copy p { max-width: 320px; margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.65; }
.offer-content { min-height: 0; padding: 45px 46px 30px; }
.offer-kicker { display: flex; align-items: center; gap: 10px; color: #a95f42; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.offer-kicker span { width: 28px; height: 1px; background: currentColor; }
.offer-content > h2 { margin: 13px 0 14px; font: 400 30px/1.3 var(--serif); letter-spacing: -.04em; }
.offer-content > p { max-width: 430px; margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.popup-lead-form label { height: 48px; margin-bottom: 10px; display: flex; align-items: center; border: 1px solid rgba(22,29,29,.16); background: white; transition: border-color .25s, box-shadow .25s; }
.popup-lead-form label:focus-within { border-color: #a95f42; box-shadow: 0 0 0 3px rgba(169,95,66,.08); }
.popup-field-icon { width: 48px; height: 100%; flex: 0 0 48px; display: grid; place-items: center; color: var(--forest); border-right: 1px solid rgba(22,29,29,.13); font-size: 15px; }
.popup-lead-form input { width: 100%; height: 100%; padding: 0 16px; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 13px; }
.popup-lead-form input::placeholder { color: #8a908d; }
.popup-submit { width: 100%; min-height: 50px; margin-top: 4px; padding: 0 10px 0 18px; display: flex; align-items: center; justify-content: space-between; border: 0; color: white; background: var(--forest); cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; transition: background .25s; }
.popup-submit > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; transition: transform .25s, color .25s, background .25s; }
.popup-submit:hover { background: #a95f42; }
.popup-submit:hover > span { color: var(--forest); background: white; transform: translateX(3px); }
.popup-lead-form small { display: block; margin-top: 9px; color: #858b88; font-size: 8px; line-height: 1.45; }
.popup-form-status { min-height: 16px; margin: 8px 0 0; color: #8d5039; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .nav-cta { margin-left: 18px; }
  .hero-layout { grid-template-columns: 400px minmax(0, 1fr); gap: 38px; }
  .hero-bottom div { padding-right: 30px; margin-right: 30px; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(3) { border-left: 1px solid rgba(255,255,255,.14); border-top: 1px solid rgba(255,255,255,.14); }
  .feature-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
  .amenities-grid, .location-grid { gap: 50px; }
  .enquire-card { gap: 55px; padding: 55px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 36px, 720px); }
  .section { padding: 90px 0; }
  .topbar-inner span:first-child, .topbar-divider, .topbar-inner a:first-of-type { display: none; }
  .topbar-phone { margin-left: 0; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { margin-left: auto; width: 44px; height: 44px; padding: 12px 7px; display: flex; flex-direction: column; justify-content: center; gap: 7px; border: 0; background: transparent; }
  .menu-toggle span { display: block; width: 28px; height: 1px; background: currentColor; transition: .3s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 106px 0 auto; padding: 20px 24px 35px; display: flex; flex-direction: column; opacity: 0; visibility: hidden; color: var(--ink); background: var(--paper); transform: translateY(-15px); transition: .25s; box-shadow: 0 20px 35px rgba(0,0,0,.1); }
  .scrolled .mobile-nav { top: 72px; }
  .menu-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font: 500 23px var(--serif); }
  .mobile-nav a.active { padding-left: 18px; color: #9d573e; border-bottom-color: #9d573e; }
  .mobile-nav a.active::before { content: "—"; margin-left: -18px; margin-right: 8px; color: var(--gold); }
  .hero { height: auto; min-height: 980px; }
  .hero-layout { padding-top: 180px; padding-bottom: 150px; grid-template-columns: 1fr; align-content: center; }
  .hero-copy, .hero-card { grid-column: auto; grid-row: auto; }
  .hero h1 { font-size: clamp(56px, 11vw, 78px); }
  .hero-card { width: 360px; max-width: 100%; }
  .cursor-dot, .cursor-ring { display: none; }
  .hero-bottom div { padding: 18px 18px 18px 0; margin-right: 18px; flex-direction: column; gap: 3px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-copy, .intro-image, .intro-quote { grid-column: auto; }
  .intro-image { margin-top: 20px; }
  .intro-image img { height: 480px; }
  .intro-image figcaption { right: 0; bottom: -35px; }
  .intro-quote { padding: 55px 0 0; }
  .section-head, .residence-top, .gallery-heading { align-items: start; flex-direction: column; gap: 20px; }
  .section-head { padding-bottom: 40px; }
  .residence-cards { grid-template-columns: 1fr; }
  .amenities-grid, .location-grid, .enquire-card { grid-template-columns: 1fr; }
  .amenities-image img { height: 600px; }
  .floating-note { left: 20px; }
  .amenities-copy { padding-top: 25px; }
  .gallery-controls { align-self: end; }
  .gallery-track figure, .gallery-track figure:nth-child(even) { flex-basis: 78vw; height: 430px; }
  .map-card { min-height: 480px; grid-row: 1; }
  .enquire-card { padding: 50px 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-address { grid-column: 1 / 3; }
  .offer-dialog { width: min(690px, 100%); height: min(560px, calc(100vh - 40px)); grid-template-columns: .8fr 1.2fr; }
  .offer-visual { min-height: 0; }
  .offer-visual-copy { left: 24px; right: 24px; bottom: 28px; }
  .offer-visual-copy h2 { font-size: 27px; }
  .offer-content { padding: 42px 30px 26px; }
  .offer-content > h2 { font-size: 29px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .section { padding: 72px 0; }
  .site-header { height: 72px; }
  .brand { width: 150px; height: 68px; }
  .brand img { width: 150px; }
  .scrolled .brand { width: 118px; height: 56px; }
  .scrolled .brand img { width: 118px; }
  .mobile-nav { top: 106px; }
  .hero { min-height: 900px; }
  .hero-layout { padding-top: 130px; padding-bottom: 155px; gap: 35px; }
  .hero-bg { object-position: 58% center; }
  .hero h1 { margin-top: 16px; font-size: 50px; }
  .hero-lead { font-size: 14px; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 28px; }
  .hero-card { padding: 0; }
  .hero-orbit { display: none; }
  .card-topline { padding: 24px 24px 0; }
  .hero-card h2 { margin: 17px 24px 0; font-size: 29px; }
  .card-location { margin: 10px 24px 17px; font-size: 12px; }
  .configuration-pill { max-width: calc(100% - 48px); margin: 0 24px 14px; padding: 10px 12px; font-size: 11px; }
  .hero-card .card-highlights { padding: 0 24px; margin-bottom: 14px; }
  .hero-card .card-highlights li { padding: 6px 0; font-size: 11px; }
  .price-panel { margin: 0 24px; padding-left: 11px; gap: 7px; }
  .price-panel > div { gap: 6px; }
  .price-label { font-size: 9px; }
  .price { font-size: 19px; }
  .price-sub { padding: 8px 7px; font-size: 8px; }
  .card-cta { margin: 12px 24px 22px; }
  .hero-bottom { overflow: hidden; }
  .hero-bottom div { flex: 1; padding: 14px 8px 14px 0; margin-right: 8px; }
  .hero-bottom strong { font-size: 17px; }
  .hero-bottom span { font-size: 8px; line-height: 1.3; }
  .intro h2, .section-head h2, .residence-top h2, .amenities-copy h2, .gallery h2, .location h2, .enquire h2 { font-size: 40px; }
  .intro-image img { height: 370px; }
  .intro-image figcaption { width: 180px; padding: 20px; font-size: 19px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; border-left: 1px solid rgba(255,255,255,.14); border-top: 1px solid rgba(255,255,255,.14); }
  .feature-icon { margin: 35px 0 25px; }
  .residence-card { min-height: 380px; padding: 28px; }
  .residence-number { font-size: 90px; }
  .amenities-image img { height: 450px; }
  .floating-note { left: 12px; top: 24px; padding: 12px 14px; }
  .image-badge { right: -5px; bottom: 22px; width: 135px; height: 135px; }
  .image-badge strong { font-size: 23px; }
  .gallery-track { padding-left: 14px; }
  .gallery-track figure, .gallery-track figure:nth-child(even) { flex-basis: 86vw; height: 330px; }
  .location-list { grid-template-columns: 1fr 1fr; }
  .map-card { min-height: 360px; padding: 12px; }
  .enquire { padding-bottom: 0; }
  .enquire-card { width: 100%; padding: 45px 22px; }
  .enquire-copy > img { width: 160px; margin-bottom: 36px; }
  .advisor-contact { flex-direction: column; }
  .advisor-contact span { display: none; }
  .lead-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer { padding-bottom: 78px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-address { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .disclaimer { text-align: left; }
  .mobile-actions { position: fixed; bottom: 0; left: 0; right: 0; z-index: 30; height: 58px; display: grid; grid-template-columns: 1fr 1.2fr 1fr; color: white; background: var(--forest-2); box-shadow: 0 -5px 25px rgba(0,0,0,.15); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.15); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
  .mobile-actions a:nth-child(2) { color: var(--forest-2); background: var(--gold-light); }
  .whatsapp-float { display: none; }
  .offer-modal { padding: 14px; }
  .offer-dialog { height: auto; max-height: calc(100vh - 28px); display: block; overflow-y: auto; }
  .offer-visual { min-height: 190px; }
  .offer-visual-copy { left: 22px; right: 70px; bottom: 20px; }
  .offer-visual-copy > span, .offer-visual-copy p { display: none; }
  .offer-visual-copy h2 { margin: 0; font-size: 25px; }
  .offer-close { right: 12px; top: 12px; color: white; background: rgba(10,30,30,.5); border-color: rgba(255,255,255,.4); }
  .offer-content { padding: 28px 22px 24px; }
  .offer-content > h2 { margin: 12px 0; font-size: 27px; }
  .offer-content > p { margin-bottom: 20px; font-size: 12px; }
  .popup-lead-form label { height: 50px; }
  .popup-submit { min-height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
