:root {
  --ink: #171713;
  --ink-soft: #24241f;
  --ivory: #f5f1e8;
  --paper: #fbfaf6;
  --sand: #ded2bd;
  --gold: #b18a4a;
  --gold-light: #d8bd87;
  --line: rgba(23, 23, 19, .16);
  --white-line: rgba(255, 255, 255, .18);
  --serif: "Poppins", Arial, sans-serif;
  --sans: "Poppins", Arial, sans-serif;
  --container: min(1280px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.7; overflow-x: hidden; text-rendering: optimizeLegibility; }
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }

.page-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; color: var(--gold-light); background: var(--ink); transition: opacity .75s var(--ease), visibility .75s; }
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-mark { display: grid; place-items: center; width: 68px; height: 68px; border: 1px solid var(--gold); border-radius: 50%; font: 42px var(--serif); animation: loaderPulse 1.5s infinite; }
@keyframes loaderPulse { 50% { transform: scale(.9); opacity: .55; } }
.progress-bar { position: fixed; z-index: 1000; top: 0; left: 0; width: 0; height: 2px; background: var(--gold-light); }

.site-header { position: fixed; z-index: 900; top: 18px; left: 50%; display: grid; grid-template-columns: 105px minmax(0, 1fr) auto; align-items: center; width: min(1370px, calc(100% - 36px)); height: 84px; padding: 0 18px 0 25px; color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(16,16,13,.28); box-shadow: 0 12px 45px rgba(0,0,0,.12); backdrop-filter: blur(12px); transform: translateX(-50%); transition: top .45s var(--ease), height .45s var(--ease), color .45s, background .45s, box-shadow .45s; }
.site-header.scrolled { top: 10px; height: 72px; color: var(--ink); border-color: rgba(23,23,19,.11); background: rgba(251,250,246,.96); box-shadow: 0 12px 38px rgba(23,23,19,.09); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; width: 112px; height: 76px; }
.brand img { width: 104px; height: 70px; object-fit: contain; filter: brightness(0) invert(1); transition: filter .45s, transform .45s var(--ease); }
.site-header.scrolled .brand img { filter: none; }
.brand:hover img { transform: scale(.94); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(13px, 1.35vw, 25px); margin-inline: auto; }
.desktop-nav a { position: relative; white-space: nowrap; font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a.active { color: var(--gold-light); }
.site-header.scrolled .desktop-nav a.active { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 18px; padding-left: 20px; border-left: 1px solid rgba(255,255,255,.18); }
.site-header.scrolled .header-actions { border-color: var(--line); }
.phone-link { font-size: 16px; letter-spacing: .04em; }
.header-actions .btn-small { min-height: 46px; padding-inline: 22px; font-size: 14px; border-radius:5px;}
.menu-toggle { display: none; width: 42px; height: 42px; padding: 12px 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 1px; margin: 6px 0; background: currentColor; transition: transform .3s, width .3s; }
.menu-toggle[aria-expanded=true] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded=true] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { position: fixed; z-index: 850; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 100px 10vw; color: #fff; background: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-20px); transition: .4s var(--ease); }
.mobile-nav.open { visibility: visible; opacity: 1; transform: none; }
.mobile-nav a { padding: 10px 0; font: clamp(32px, 8vw, 55px) var(--serif); border-bottom: 1px solid var(--white-line); }
.mobile-nav a:last-child { margin-top: 25px; font: 13px var(--sans); letter-spacing: .1em; text-transform: uppercase; border: 0; color: var(--gold-light); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 56px; padding: 0 26px; color: var(--ink); border: 1px solid var(--gold-light); background: var(--gold-light); font-size: 13px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; cursor: pointer; transition: color .3s, background .3s, transform .3s; }
.btn:hover { color: var(--gold-light); background: transparent; transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 19px; }
.btn-dark { color: #fff; border-color: var(--ink); background: var(--ink); }
.btn-dark:hover { color: var(--ink); border-color: var(--ink); }
.btn-light { color: var(--ink); border-color: #fff; background: #fff; }
.btn-light:hover { color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 38px; padding: 8px 0; color: #fff; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); background: transparent; font-size: 13px; letter-spacing: .11em; text-transform: uppercase; cursor: pointer; }
.text-link span { transition: transform .3s; }
.text-link:hover span { transform: translate(4px, -3px); }
.text-link.dark { color: var(--ink); border-color: var(--line); }

.hero { position: relative; min-height: 100svh; color: #fff; background: #101610; overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center center; filter: none; opacity: 0; transform: none; image-rendering: auto; transition: opacity 1s var(--ease); }
.hero-media img.active { opacity: 1; transform: none; }
@keyframes heroScale { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero-shade { background: repeating-linear-gradient(90deg, transparent 0, transparent calc(7.14% - 1px), rgba(255,255,255,.055) calc(7.14% - 1px), rgba(255,255,255,.055) 7.14%), linear-gradient(90deg, rgba(8,16,10,.7) 0%, rgba(8,16,10,.28) 52%, rgba(8,16,10,.34) 100%), linear-gradient(0deg, rgba(8,14,9,.45), transparent 58%); }
.hero-content { position: relative; z-index: 2; width: min(580px, 46vw); padding: clamp(190px, 23vh, 235px) 0 115px 6.7vw; }
.eyebrow { margin: 0 0 23px; color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1, .section-heading h2, .residence-heading h2, .gallery-heading h2, .location h2, .cta-content h2, .modal-content h2 { margin: 0; font: 400 clamp(58px, 7.2vw, 114px)/.94 var(--serif); letter-spacing: -.02em; }
.hero h1 { max-width: 570px; font-size: clamp(46px, 4.2vw, 66px); line-height: 1.02; text-shadow: 0 3px 22px rgba(0,0,0,.22); }
h1 em, h2 em { color: var(--gold-light); font-style: normal; }
.hero h1 em { font-family: var(--sans); font-style: italic; font-weight: 400; }
.hero-copy { max-width: 520px; margin: 22px 0; color: rgba(255,255,255,.86); font-size: clamp(16px, 1.1vw, 18px); font-weight: 400; line-height: 1.65; text-shadow: 0 2px 14px rgba(0,0,0,.3); }
.hero-buttons { display: flex; align-items: center; gap: 26px; margin-top: 28px; }
.hero-buttons .btn { min-height: 49px; padding-inline: 25px; border-color: #f5f1e8; border-radius: 999px; background: #f5f1e8; font-size: 12px; }
.hero-buttons .text-link { font-size: 14px; }
.hero-buttons .btn:hover { color: #fff; background: transparent; }
.hero-reveal { opacity: 0; transform: translateY(35px); animation: heroReveal 1.1s var(--ease) forwards; }
.hero-reveal:nth-child(2) { animation-delay: .12s; }.hero-reveal:nth-child(3) { animation-delay: .24s; }.hero-reveal:nth-child(4) { animation-delay: .36s; }
@keyframes heroReveal { to { opacity: 1; transform: none; } }
.hero-project-lockup { position: absolute; z-index: 2; top: 31%; left: 55%; display: flex; align-items: center; flex-direction: column; color: rgba(255,255,255,.76); transform: translateX(-50%); }
.hero-project-lockup span { color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.hero-project-lockup strong { margin-top: 18px; font: clamp(48px, 5vw, 76px)/1 var(--serif); letter-spacing: .02em; }
.hero-project-lockup i { width: 72px; height: 1px; margin-top: 30px; background: var(--gold-light); }
.hero-card { position: absolute; z-index: 2; right: 6.7vw; bottom: 8%; display: flex; flex-direction: column; width: min(365px, 27vw); padding: 31px 34px; color: #fff; border: 1px solid rgba(255,255,255,.25); background: rgba(12,22,14,.52); backdrop-filter: blur(12px); }
.hero-card span, .hero-card small { color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.hero-card strong { margin: 10px 0 14px; padding-bottom: 17px; color: var(--gold-light); border-bottom: 1px solid rgba(255,255,255,.18); font: 34px var(--serif); }
.hero-dots { position: absolute; z-index: 3; top: 125px; right: 6.7vw; display: flex; align-items: center; gap: 9px; }
.hero-dots button { width: 24px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.38); cursor: pointer; transition: width .35s var(--ease), background .35s; }
.hero-dots button.active { width: 42px; background: var(--gold-light); }
.scroll-cue { position: absolute; z-index: 2; bottom: 28px; left: 6.7vw; display: flex; align-items: center; gap: 12px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue span { position: relative; width: 36px; height: 1px; background: rgba(255,255,255,.5); overflow: hidden; }
.scroll-cue span::after { content:""; position: absolute; width: 50%; height: 100%; background: #fff; animation: scrollLine 1.8s infinite; }
@keyframes scrollLine { from { transform: translateX(-100%); } to { transform: translateX(200%); } }

.facts { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; width: min(1320px, calc(100% - 70px)); margin: -44px auto 0; padding: 12px; color: var(--ink); border: 1px solid rgba(23,23,19,.1); background: var(--ivory); box-shadow: 0 24px 70px rgba(25,29,21,.13); }
.fact { position: relative; display: flex; align-items: flex-start; gap: 18px; min-height: 138px; padding: 29px 25px; border: 1px solid rgba(23,23,19,.1); background: rgba(255,255,255,.58); transition: transform .35s var(--ease), background .35s; }
.fact::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.fact:hover { background: #fff; transform: translateY(-4px); }
.fact:hover::after { transform: scaleX(1); }
.fact:last-child { border: 1px solid rgba(23,23,19,.1); }
.fact > span { display: grid; flex: 0 0 auto; place-items: center; width: 31px; height: 31px; color: var(--gold); border: 1px solid rgba(177,138,74,.45); border-radius: 50%; font: italic 500 12px var(--sans); }
.fact p { margin: 2px 0 0; color: #77746c; font-size: 14px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.fact strong { display: block; max-width: 275px; margin-top: 11px; color: var(--ink); font: 500 18px/1.45 var(--sans); letter-spacing: 0; overflow-wrap: anywhere; text-transform: none; }
.fact:last-child strong { font-size: 14px; line-height: 1.45; }

.section { padding: clamp(68px, 6vw, 92px) 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.section-heading h2, .residence-heading h2, .gallery-heading h2, .location h2, .cta-content h2 { font-size: clamp(40px, 4vw, 58px); line-height: 1.08; }
.section-heading h2 em, .residence-heading h2 em, .gallery-heading h2 em, .location h2 em { color: var(--gold); }
.overview { position: relative; padding: clamp(65px, 5.5vw, 82px) 0; background: linear-gradient(90deg, #f7f4ed 0 34%, var(--paper) 34% 100%); overflow: hidden; }
.overview::after { display: none; }
.overview-index { display: none; }
.overview .split { position: relative; z-index: 1; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 7vw, 105px); align-items: start; }
.overview .section-heading { position: relative; padding: 27px 0 0 31px; }
.overview .section-heading::before { content: ""; position: absolute; top: 0; left: 0; width: 72px; height: 72px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.overview .section-heading h2 { font-size: clamp(40px, 4vw, 58px); line-height: 1.05; }
.overview-copy { padding: 3px 0 0 clamp(25px, 3vw, 48px); border-left: 1px solid var(--line); }
.overview-copy p { max-width: 660px; color: #5a5a52; font-size: 18px; }
.overview-copy .lead { margin-top: 0; color: var(--ink); font: 500 clamp(20px, 1.5vw, 25px)/1.45 var(--serif); }
.overview-actions { display: flex; align-items: center; gap: 30px; margin-top: 24px; }
.overview-copy .text-link { flex: 0 0 auto; }
.overview-note { color: #8b887e; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.editorial-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .55fr 1.3fr; grid-template-rows: 145px 235px; gap: 14px; margin-top: 62px; }
.editorial-grid::before { content: ""; position: absolute; z-index: 2; top: -28px; right: 18%; width: 1px; height: 56px; background: var(--gold); }
.editorial-grid figure { position: relative; margin: 0; overflow: hidden; background: #ddd; }
.editorial-grid img { height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.editorial-grid figure:hover img { transform: scale(1.04); }
.image-tall { grid-row: 1 / 3; }
.image-wide { grid-column: 2 / 4; }
.editorial-grid figcaption { position: absolute; right: 0; bottom: 0; padding: 13px 18px; color: #fff; background: rgba(18,18,15,.82); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; backdrop-filter: blur(8px); }
.quote-card { display: flex; flex-direction: column; justify-content: center; padding: 22px; color: var(--ink); background: var(--gold-light); }
.quote-card .quote-mark { height: 26px; font: 42px var(--serif); opacity: .65; }
.quote-card p { margin: 0; font: 21px/1.25 var(--serif); }
.gold-line { width: 36px; height: 1px; margin-top: 16px; background: var(--ink); }

.dark-section { color: #fff; background: var(--ink); }
.highlights { padding: clamp(62px, 5.5vw, 82px) 0; }
.highlights .container { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(65px, 9vw, 140px); }
.section-heading.light .eyebrow { color: var(--gold-light); }
.section-heading.light h2 em { color: var(--gold-light); }
.highlights .section-heading { position: sticky; top: 120px; padding-top: 8px; }
.highlights .section-heading h2 { font-size: clamp(40px, 4vw, 58px); line-height: 1.08; }
.highlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 38px 60px; margin-top: 0; border: 0; }
.highlight-item { min-height: 145px; padding: 0; border: 0; transition: transform .4s var(--ease); }
.highlight-item:hover { color: inherit; background: transparent; transform: translateY(-5px); }
.highlight-item > span { position: relative; display: block; padding-bottom: 21px; color: var(--gold-light); font: italic 500 28px var(--sans); }
.highlight-item > span::after { content: ""; position: absolute; bottom: 9px; left: 0; width: 34px; height: 1px; background: var(--gold-light); opacity: .65; }
.highlight-item:hover > span { color: var(--gold-light); }
.highlight-item h3 { margin: 0 0 11px; font: 25px var(--serif); }
.highlight-item p { margin: 0; color: rgba(255,255,255,.57); font-size: 17px; }
.highlight-item:hover p { color: rgba(255,255,255,.72); }

.amenities { position: relative; background: #eee8dc; overflow: hidden; }
.amenities .section-heading.center { max-width: 900px; margin: 0 auto; text-align: center; }
.amenities .section-intro { max-width: 700px; margin: 30px auto 0; padding: 0; color: #6a695f; border: 0; font-size: 18px; }
.amenity-showcase { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 260px 205px; gap: 14px; margin-top: 42px; }
.amenity-card { position: relative; min-height: 0; padding: 0; overflow: hidden; color: #fff; border: 0; background: #222; text-align: left; cursor: pointer; }
.amenity-card:nth-child(1) { grid-column: 1 / 7; }
.amenity-card:nth-child(2) { grid-column: 7 / 13; }
.amenity-card:nth-child(3) { grid-column: 1 / 4; }
.amenity-card:nth-child(4) { grid-column: 4 / 7; }
.amenity-card:nth-child(5) { grid-column: 7 / 10; }
.amenity-card:nth-child(6) { grid-column: 10 / 13; }
.amenity-card::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.04) 75%); }
.amenity-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; image-rendering: auto; transform: scale(1.05); transition: transform .7s var(--ease), filter .7s; }
.amenity-card:hover img { transform: scale(1.14); filter: brightness(1.12); }
.amenity-card span, .amenity-card h3, .amenity-card p { position: absolute; z-index: 2; left: 24px; }
.amenity-card span { top: 22px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font: 12px var(--serif); }
.amenity-card h3 { bottom: 39px; margin: 0; font: 25px var(--serif); }
.amenity-card p { right: 18px; bottom: 15px; margin: 0; overflow: hidden; color: rgba(255,255,255,.72); font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.amenity-card:nth-child(-n+2) h3 { bottom: 43px; font-size: 31px; }
.amenity-card:nth-child(-n+2) p { bottom: 17px; font-size: 15px; }

.muted-section { background: var(--ivory); }
.residences { position: relative; padding: clamp(65px, 5.5vw, 85px) 0; overflow: hidden; }
.residences::before { display: none; }
.residence-heading, .gallery-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; }
.residence-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(50px, 7vw, 100px); padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.residence-heading > p { max-width: 500px; margin: 0; padding-left: 30px; color: #626157; border-left: 1px solid var(--gold); font-size: 18px; }
.residence-heading h2 { font-size: clamp(40px, 4vw, 58px); }
.plan-tabs { position: relative; z-index: 2; display: inline-flex; gap: 7px; margin-top: 34px; padding: 6px; border: 1px solid var(--line); background: rgba(255,255,255,.42); }
.plan-tab { min-width: 160px; padding: 14px 24px; color: #65635b; border: 0; background: transparent; font-size: 17px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: color .3s, background .3s; }
.plan-tab:hover { color: var(--ink); }
.plan-tab.active { color: #fff; background: var(--ink); }
.plan-display { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; min-height: 470px; margin-top: 18px; border: 1px solid var(--line); background: #fff; box-shadow: 0 24px 60px rgba(38,34,25,.08); }
.plan-image { position: relative; display: grid; place-items: center; padding: 46px; overflow: hidden; background: linear-gradient(135deg, #fff 0%, #f7f5ef 100%); }
.plan-image::before { content: "Floor plan"; position: absolute; top: 24px; left: 27px; color: #8d897f; font-size: 17px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.plan-image-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; width: 100%; }
.plan-image-item { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; min-width: 0; height: 350px; padding: 12px; overflow: hidden; border: 1px solid var(--line); background: #fff; cursor: zoom-in; }
.plan-image-item img { width: 100%; height: 100%; max-width: 100%; max-height: 275px; object-fit: contain; transition: opacity .25s, transform .5s var(--ease); }
.plan-image-item:hover img { transform: scale(1.025); }
.plan-variant { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; padding: 12px 4px 2px; border-top: 1px solid var(--line); text-align: left; }
.plan-variant strong { color: var(--ink); font-size: 18px; font-weight: 600; }
.plan-variant small { color: #6c695f; font-size: 16px; text-align: right; }
.plan-image.changing img { opacity: 0; transform: translateY(15px); }
.zoom-button { position: absolute; right: 25px; bottom: 25px; display: grid; place-items: center; width: 52px; height: 52px; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 25px; cursor: pointer; box-shadow: 0 8px 25px rgba(23,23,19,.08); transition: transform .3s, color .3s, background .3s; }
.zoom-button:hover { transform: rotate(90deg); }
.zoom-button:hover { color: #fff; background: var(--ink); }
.plan-details { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 4vw, 58px); color: var(--ink); background: var(--gold-light); overflow: hidden; }
.plan-details::after { content: ""; position: absolute; right: -85px; bottom: -85px; width: 210px; height: 210px; border: 1px solid rgba(23,23,19,.16); border-radius: 50%; box-shadow: 0 0 0 45px rgba(23,23,19,.025); pointer-events: none; }
.plan-details .eyebrow { color: rgba(23,23,19,.66); }
.plan-details h3 { margin: 0 0 28px; font: 52px var(--serif); }
.plan-details dl { margin: 0 0 38px; }
.plan-details dl div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(23,23,19,.17); }
.plan-details dt { color: rgba(23,23,19,.58); font-size: 15px; }
.plan-details dd { margin: 0; font-size: 16px; text-align: right; }
.plan-details .btn { position: relative; z-index: 1; align-self: flex-start; color: #fff; border-color: var(--ink); background: var(--ink); }
.plan-details .btn:hover { color: var(--ink); background: transparent; }

.master-plan { position: relative; padding: clamp(78px, 7vw, 112px) 0; color: #fff; background: var(--ink); overflow: hidden; }
.master-plan::before { content: "ONEWORLD"; position: absolute; top: 20px; right: -20px; color: rgba(255,255,255,.035); font: 250px/.8 var(--serif); letter-spacing: -.08em; pointer-events: none; }
.master-plan-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: clamp(50px, 8vw, 120px); padding-bottom: 32px; border-bottom: 1px solid var(--white-line); }
.master-plan-heading .eyebrow { color: var(--gold-light); }
.master-plan-heading h2 { margin: 0; font: 400 clamp(42px, 4.5vw, 66px)/.98 var(--serif); letter-spacing: -.03em; }
.master-plan-heading > p { max-width: 470px; margin: 0; padding-left: 28px; color: rgba(255,255,255,.68); border-left: 1px solid var(--gold); font-size: 17px; }
.master-plan-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr); gap: 18px; margin-top: 28px; }
.master-plan-frame { min-width: 0; padding: 20px; background: #f5f1e8; }
.master-plan-label { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; color: #777267; font-size: 10px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.master-plan-label span { display: grid; place-items: center; width: 29px; height: 29px; color: var(--ink); border: 1px solid var(--gold); border-radius: 50%; font: 12px var(--serif); letter-spacing: 0; }
.master-plan-image { position: relative; display: block; width: 100%; min-height: 480px; padding: 24px; border: 1px solid rgba(23,23,19,.12); background: #fff; cursor: zoom-in; }
.master-plan-image img { width: 100%; height: 100%; max-height: 570px; object-fit: contain; transition: transform .7s var(--ease); }
.master-plan-image:hover img { transform: scale(1.025); }
.master-plan-zoom { position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 48px; height: 48px; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.94); font-size: 23px; transition: color .3s, background .3s, transform .3s; }
.master-plan-image:hover .master-plan-zoom { color: #fff; background: var(--ink); transform: rotate(90deg); }
.master-plan-aside { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 4vw, 58px); background: var(--gold-light); color: var(--ink); }
.master-plan-kicker { margin: 0 0 25px; color: rgba(23,23,19,.62); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.master-plan-aside h3 { margin: 0 0 22px; font: 400 clamp(38px, 3.4vw, 54px)/.98 var(--serif); letter-spacing: -.03em; }
.master-plan-copy { margin: 0 0 29px; color: rgba(23,23,19,.72); font-size: 15px; line-height: 1.75; }
.master-plan-facts { margin-bottom: 32px; border-top: 1px solid rgba(23,23,19,.2); }
.master-plan-facts div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(23,23,19,.2); }
.master-plan-facts strong { font: 25px var(--serif); }
.master-plan-facts span { color: rgba(23,23,19,.62); font-size: 12px; text-align: right; }
.master-plan-aside .btn { align-self: flex-start; }
.master-plan-aside .btn:hover { color: var(--ink); background: transparent; }

.gallery { padding: 48px 0 54px; overflow: hidden; }
.gallery-heading h2 { font-size: clamp(38px, 3.6vw, 52px); line-height: 1.05; }
.gallery-heading .eyebrow { margin-bottom: 14px; }
.gallery-controls { display: flex; gap: 10px; }
.gallery-controls button { width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; font-size: 18px; cursor: pointer; transition: background .3s, color .3s; }
.gallery-controls button:hover { color: #fff; background: var(--ink); }
.gallery-track-wrap { width: var(--container); margin: 30px auto 0; overflow: visible; }
.gallery-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; transform: none !important; transition: none; }
.gallery-slide { position: relative; width: 100%; height: 310px; padding: 0; overflow: hidden; border: 0; background: #ddd; cursor: zoom-in; }
.gallery-slide img { height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-slide span { position: absolute; right: 0; bottom: 0; padding: 17px 26px; color: #fff; background: rgba(23,23,19,.84); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

.location { padding: 60px 0; background: #f0ece3; }
.location-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 9vw; }
.location h2 { font-size: clamp(38px, 3.7vw, 54px); line-height: 1.05; }
.location-copy .eyebrow { margin-bottom: 15px; }
.location-copy > p:not(.eyebrow) { max-width: 590px; margin: 20px 0; color: #5f5e55; font-size: 18px; }
.distance-list { margin: 24px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.distance-list li { display: flex; justify-content: space-between; gap: 30px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.distance-list strong { color: var(--gold); font-weight: 500; }
.map-card { position: relative; min-height: 430px; height: 430px; padding: 0; overflow: hidden; border: 0; background: #ddd; cursor: zoom-in; }
.map-card img { height: 100%; min-height: 0; object-fit: cover; transition: transform .7s var(--ease); }
.map-card:hover img { transform: scale(1.03); }
.map-card small { position: absolute; right: 18px; bottom: 18px; padding: 9px 13px; color: #fff; background: var(--ink); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.map-pin { position: absolute; top: 47%; left: 47%; display: flex; align-items: center; gap: 8px; padding: 11px 15px; color: #fff; background: var(--ink); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.map-pin i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 6px rgba(216,189,135,.22); }

.cta-section { position: relative; display: grid; place-items: center; min-height: 470px; padding: 58px 20px; color: #fff; text-align: center; overflow: hidden; }
.cta-image, .cta-overlay { position: absolute; inset: 0; }
.cta-image img { height: 100%; object-fit: cover; }
.cta-overlay { background: rgba(12,12,9,.65); }
.cta-content { position: relative; z-index: 2; max-width: 850px; }
.cta-content .eyebrow { color: var(--gold-light); }
.cta-content h2 { font-size: clamp(40px, 4vw, 58px); line-height: 1.05; }
.cta-content p:not(.eyebrow) { max-width: 620px; margin: 22px auto; color: rgba(255,255,255,.72); font-size: 18px; }

.faq { padding: 58px 0 64px; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; }
.faq .section-heading h2 { font-size: clamp(38px, 3.7vw, 54px); line-height: 1.05; }
.faq .section-heading .eyebrow { margin-bottom: 15px; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; justify-content: space-between; width: 100%; padding: 19px 0; border: 0; background: transparent; font-size: 18px; text-align: left; cursor: pointer; }
.faq-item button span { color: var(--gold); font-size: 22px; }
.faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item > div p { min-height: 0; margin: 0; overflow: hidden; color: #66655d; font-size: 18px; }
.faq-item.open > div { grid-template-rows: 1fr; }
.faq-item.open > div p { padding: 0 50px 18px 0; }

.live-location, .contact-section { color: #fff; background: #0d0e13; }
.live-location { padding: clamp(44px, 4.5vw, 62px) 0 48px; }
.live-location-heading, .contact-heading { max-width: 850px; margin: 0 auto; text-align: center; }
.live-location-heading .eyebrow, .contact-heading .eyebrow { margin-bottom: 15px; color: var(--gold-light); letter-spacing: .3em; }
.live-location-heading h2, .contact-heading h2 { margin: 0; font: 500 clamp(42px, 4.5vw, 66px)/1.1 var(--serif); letter-spacing: -.025em; }
.live-location-heading h2 em, .contact-heading h2 em, .contact-details h3 em, .contact-form-card h3 em { color: var(--gold-light); font-style: normal; }
.live-location-heading > p:last-child, .contact-heading > p:last-child { max-width: 760px; margin: 14px auto 0; color: rgba(255,255,255,.7); font-size: 17px; }
.live-map { height: clamp(300px, 30vw, 390px); margin-top: 34px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: #202229; }
.live-map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(.92); }

.contact-section { padding: 8px 0 clamp(48px, 5vw, 66px); color: var(--ink); background: #f3eee4; }
.contact-heading { padding-top: 12px; }
.contact-section .contact-heading .eyebrow { color: var(--gold); }
.contact-section .contact-heading h2 em,
.contact-section .contact-details h3 em,
.contact-section .contact-form-card h3 em { color: var(--gold); }
.contact-section .contact-heading > p:last-child { color: #66635b; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(45px, 6vw, 82px); margin-top: 36px; }
.contact-details h3, .contact-form-card h3 { margin: 0; font: 500 clamp(31px, 2.8vw, 42px)/1.2 var(--serif); }
.contact-details > p { max-width: 620px; margin: 14px 0 0; color: #5f5c55; font-size: 16px; }
.visit-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.visit-benefits li { position: relative; min-height: 78px; padding: 15px 14px 15px 43px; color: #292720; border: 1px solid rgba(177,138,74,.32); border-radius: 12px; background: linear-gradient(135deg, rgba(216,189,135,.24), rgba(255,255,255,.74)); box-shadow: 0 8px 24px rgba(70,54,27,.08); font-size: 14px; font-weight: 700; line-height: 1.4; }
.visit-benefits li::before { content: "✓"; position: absolute; top: 15px; left: 14px; display: grid; place-items: center; width: 21px; height: 21px; color: #fff; border-radius: 50%; background: var(--gold); font-size: 12px; font-weight: 800; }
.contact-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin: 22px 0 0; padding: 0; list-style: none; }
.contact-facts li { display: flex; align-items: center; gap: 13px; min-height: 86px; padding: 13px; border: 1px solid rgba(177,138,74,.26); border-radius: 13px; background: rgba(255,255,255,.72); box-shadow: 0 8px 24px rgba(70,54,27,.07); }
.contact-icon { display: grid; flex: 0 0 auto; place-items: center; width: 56px; height: 56px; color: var(--gold); border-radius: 50%; background: rgba(177,138,74,.14); }
.contact-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.contact-facts strong { display: block; color: #2d2a24; font-size: 15px; }
.contact-facts p { margin: 2px 0 0; color: #66635b; font-size: 15px; }
.contact-facts a { color: #8b641f; font-weight: 800; text-decoration: none; }
.contact-form-card { position: relative; padding: clamp(25px, 2.5vw, 34px); border: 2px solid rgba(177,138,74,.34); border-radius: 18px; background: linear-gradient(145deg, #fff, #fbf5e9); box-shadow: 0 24px 65px rgba(53,43,25,.16); }
.contact-form-card h3 { font-size: 27px; }
.site-visit-badge { display: inline-flex; margin-bottom: 12px; padding: 7px 12px; color: #fff; border-radius: 999px; background: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-visit-note { margin: 8px 0 0; color: #66635b; font-size: 14px; line-height: 1.55; }
.contact-form-card form { display: grid; gap: 13px; margin-top: 16px; }
.contact-form-card label { display: grid; gap: 8px; }
.contact-form-card label > span:first-child { color: #6d6a63; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.contact-form-card input { width: 100%; min-width: 0; height: 50px; padding: 0 18px; color: var(--ink); border: 1px solid rgba(23,23,19,.15); border-radius: 11px; outline: 0; background: #f7f5f0; font-size: 15px; transition: border-color .25s, box-shadow .25s; }
.contact-form-card input::placeholder { color: #9a968e; }
.contact-form-card input:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(216,189,135,.1); }
.contact-phone-field { display: grid; grid-template-columns: auto 1fr; gap: 9px; }
.contact-phone-field .country-code { display: grid; place-items: center; height: 50px; padding: 0 18px; border: 1px solid rgba(23,23,19,.15); border-radius: 11px; background: #f7f5f0; font-size: 14px; white-space: nowrap; }
.contact-form-card button { height: 54px; margin-top: 5px; color: #fff; border: 1px solid var(--gold); border-radius: 999px; background: var(--gold); box-shadow: 0 10px 24px rgba(177,138,74,.28); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: color .3s, background .3s, transform .3s; }
.contact-form-card button:hover { color: var(--gold-light); background: transparent; transform: translateY(-2px); }

.site-footer { padding: 0 0 24px; color: #fff; background: #12120f; }
.site-footer::before { display: none; }
.footer-main { display: grid; grid-template-columns: 1fr .9fr 1fr 1.15fr; gap: clamp(45px, 7vw, 110px); padding-top: 72px; padding-bottom: 68px; }
.footer-main::before { display: none; }
.footer-brand img { width: 130px; height: auto; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 23px; color: var(--gold-light); font: italic 400 21px var(--sans); }
.social-links { display: flex; gap: 9px; margin-top: 23px; }
.footer-main .social-links a { display: grid; place-items: center; width: 38px; height: 38px; margin: 0; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: color .25s, border-color .25s, background .25s, transform .25s; }
.footer-main .social-links a:hover { color: var(--ink); border-color: var(--gold-light); background: var(--gold-light); transform: translateY(-3px); }
.social-links svg { width: 16px; height: 16px; fill: currentColor; }
.footer-main h3 { margin: 5px 0 22px; color: rgba(255,255,255,.88); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.footer-main a, .footer-main > div > p, .footer-button { display: block; width: fit-content; margin: 9px 0; color: rgba(255,255,255,.62); border: 0; background: transparent; font-size: 16px; line-height: 1.65; text-align: left; transition: color .25s, transform .25s; }
.footer-main a:hover, .footer-button:hover { color: #fff; transform: translateX(3px); }
.footer-button { padding: 0; cursor: pointer; }
.footer-bottom { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(340px, .8fr); align-items: center; gap: 48px; min-height: 112px; padding-top: 0; border-top: 1px solid rgba(255,255,255,.16); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.65; letter-spacing: .01em; text-transform: none; }
.footer-copyright { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 10px; }
.developer-credit { color: var(--gold-light); }
.footer-rera { display: flex; align-items: flex-end; flex-direction: column; text-align: right; }
.footer-rera span { color: var(--gold-light); font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.footer-rera strong { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500; overflow-wrap: anywhere; }
.mobile-bar { display: none; }
.floating-contact { position: fixed; z-index: 790; right: 24px; bottom: 28px; display: grid; gap: 13px; }
.floating-contact a { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; box-shadow: 0 10px 28px rgba(0,0,0,.28); transition: transform .3s var(--ease), box-shadow .3s; }
.floating-contact a:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 34px rgba(0,0,0,.36); }
.floating-contact svg { display: block; width: 28px; height: 28px; fill: currentColor; }
.floating-contact-call { color: #171713; background: #e5c98f; }
.floating-contact-whatsapp { color: #fff; background: #25d366; }

dialog { max-width: none; max-height: none; padding: 0; border: 0; }
dialog::backdrop { background: rgba(10,10,8,.83); backdrop-filter: blur(5px); }
.enquiry-modal { width: min(960px, calc(100vw - 40px)); color: var(--ink); background: var(--paper); }
.enquiry-modal[open] { display: grid; grid-template-columns: .8fr 1.2fr; animation: modalIn .45s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(25px) scale(.98); } }
.modal-close, .lightbox-close { position: absolute; z-index: 5; top: 15px; right: 18px; width: 40px; height: 40px; color: var(--ink); border: 0; border-radius: 50%; background: rgba(255,255,255,.9); font-size: 26px; cursor: pointer; }
.modal-visual { display: grid; place-items: center; padding: 55px; background: var(--ink); }
.modal-visual img { width: min(190px, 75%); height: auto; object-fit: contain; filter: brightness(0) invert(1); }
.modal-content { padding: 55px; }
.modal-content h2 { font-size: 48px; }
.modal-content > p:not(.eyebrow) { margin: 16px 0 28px; color: #66655d; }
.modal-content form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.modal-content label span { display: block; margin-bottom: 6px; color: #77756c; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.modal-content input, .modal-content select { width: 100%; height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: #fff; }
.modal-content input:focus, .modal-content select:focus { border-color: var(--gold); }
.modal-content .form-submit { align-self: end; height: 48px; min-height: 48px; }
.modal-content small { grid-column: 1 / -1; color: #8a887e; font-size: 9px; }
.botcheck { position: absolute; left: -9999px; }
.lightbox { width: min(1200px, calc(100vw - 40px)); background: transparent; overflow: visible; }
.lightbox[open] { animation: modalIn .35s var(--ease); }
.lightbox img { max-height: 82vh; object-fit: contain; }
.lightbox p { margin: 10px 0 0; color: #fff; font-size: 11px; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.lightbox-close { position: fixed; color: #fff; background: rgba(0,0,0,.55); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.highlight-grid .reveal:nth-child(2), .amenity-showcase .reveal:nth-child(2) { transition-delay: .08s; }
.highlight-grid .reveal:nth-child(3), .amenity-showcase .reveal:nth-child(3) { transition-delay: .16s; }
.highlight-grid .reveal:nth-child(4), .amenity-showcase .reveal:nth-child(4) { transition-delay: .24s; }
.amenity-showcase .reveal:nth-child(5) { transition-delay: .32s; }
.amenity-showcase .reveal:nth-child(6) { transition-delay: .4s; }

.thank-page { padding: 0; color: #fff; background: var(--ink); }
.thank-header { position: absolute; z-index: 4; top: 0; left: 0; display: flex; align-items: center; justify-content: space-between; width: 100%; height: 98px; padding: 0 5vw; border-bottom: 1px solid var(--white-line); }
.thank-header .brand img { filter: brightness(0) invert(1); }
.thank-main { position: relative; display: grid; min-height: 100svh; place-items: center; padding: 140px 20px 70px; overflow: hidden; }
.thank-image, .thank-shade { position: absolute; inset: 0; }
.thank-image img { height: 100%; object-fit: cover; }
.thank-shade { background: linear-gradient(90deg, rgba(10,10,7,.88), rgba(10,10,7,.45)), rgba(10,10,7,.25); }
.thank-card { position: relative; z-index: 2; width: min(780px, 90vw); padding: 65px; border: 1px solid var(--white-line); background: rgba(23,23,19,.74); backdrop-filter: blur(12px); }
.success-mark { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 30px; color: var(--ink); border-radius: 50%; background: var(--gold-light); font-size: 22px; }
.thank-card .eyebrow { color: var(--gold-light); }
.thank-card h1 { margin: 0; font: clamp(50px, 6.4vw, 88px)/.96 var(--serif); }
.thank-card h1 em { color: var(--gold-light); font-style: normal; }
.thank-card > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 36px; color: rgba(255,255,255,.72); }
.thank-actions { display: flex; align-items: center; gap: 28px; }

@media (max-width: 1100px) {
  :root { --container: calc(100vw - 48px); }
  .desktop-nav, .phone-link { display: none; }
  .menu-toggle { display: block; }
  .highlights .container { grid-template-columns: .8fr 1.2fr; gap: 55px; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 35px; }
  .amenity-showcase { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 300px); }
  .amenity-card:nth-child(n) { grid-column: auto; }
  .plan-display { grid-template-columns: 1.1fr .9fr; }
  .master-plan-layout { grid-template-columns: 1.1fr .9fr; }
  .master-plan-image { min-height: 390px; padding: 18px; }
  .location-grid { gap: 5vw; }
  .site-header { grid-template-columns: 95px 1fr; }
  .header-actions { justify-self: end; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .site-header { width: calc(100% - 24px); padding-inline: 18px; }
  .phone-link { display: none; }
  .desktop-nav { gap: 11px; }
  .desktop-nav a { font-size: 10px; letter-spacing: .05em; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 36px); }
  body { padding-bottom: 58px; }
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section-heading h2, .residence-heading h2, .gallery-heading h2, .location h2, .cta-content h2 { max-width: 100%; }
  .btn, .text-link { max-width: 100%; }
  .site-header { top: 10px; grid-template-columns: 1fr auto; width: calc(100% - 20px); height: 68px; padding: 0 12px 0 17px; }
  .site-header.scrolled { top: 7px; height: 64px; }
  .brand img { width: 92px; height: 60px; }
  .brand { height: 62px; }
  .header-actions { gap: 7px; padding-left: 10px; }
  .header-actions .btn { display: none; }
  .mobile-nav { justify-content: flex-start; width: 100%; padding: 92px 24px 82px; overflow-y: auto; overscroll-behavior: contain; }
  .mobile-nav a { flex: 0 0 auto; padding: 12px 0; font: 500 clamp(20px, 6vw, 27px)/1.25 var(--sans); letter-spacing: -.02em; }
  .mobile-nav a:last-child { margin-top: 18px; padding-bottom: 18px; font-size: 12px; line-height: 1.4; letter-spacing: .08em; }
  .hero-content { width: 100%; padding: 145px 22px 175px; }
  .hero h1 { max-width: 100%; font-size: clamp(36px, 10.5vw, 46px); }
  .hero-copy { max-width: 92%; }
  .hero-buttons { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-project-lockup { display: none; }
  .hero-card { right: 0; bottom: 0; width: 76%; padding: 20px 24px; }
  .hero-dots { top: 92px; right: 18px; bottom: auto; }
  .hero-card strong { font-size: 27px; }
  .scroll-cue { display: none; }
  .facts { grid-template-columns: 1fr 1fr; gap: 8px; width: calc(100% - 24px); margin-top: 0; padding: 8px; }
  .fact { min-height: 125px; padding: 22px 15px; }
  .fact strong { font-size: 17px; }
  .fact:last-child strong { font-size: 12px; }
  .section { padding: 58px 0; }
  .split, .faq-grid, .location-grid { grid-template-columns: 1fr; gap: 50px; }
  .section-heading h2, .residence-heading h2, .gallery-heading h2, .location h2, .cta-content h2 { font-size: clamp(32px, 9vw, 42px); overflow-wrap: anywhere; }
  .overview { padding: 72px 0; background: linear-gradient(180deg, #f7f4ed 0 42%, var(--paper) 42% 100%); }
  .overview::after, .overview-index { display: none; }
  .overview .split { grid-template-columns: 1fr; gap: 35px; }
  .overview .section-heading { padding: 27px 0 0 22px; }
  .overview .section-heading::before { width: 52px; height: 52px; }
  .overview-copy { padding: 0; border-left: 0; }
  .overview-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 20px; }
  .editorial-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 145px; margin-top: 45px; }
  .editorial-grid::before { display: none; }
  .image-tall { grid-row: auto; }
  .image-wide { grid-column: 1 / 3; }
  .quote-card { padding: 20px; }
  .quote-card p { font-size: 19px; }
  .highlights { padding: 65px 0; }
  .highlights .container { grid-template-columns: 1fr; gap: 48px; }
  .highlights .section-heading { position: static; padding: 0; }
  .highlight-grid { grid-template-columns: 1fr; gap: 38px; margin-top: 0; }
  .highlight-item { min-height: 0; padding: 0; }
  .amenity-showcase { grid-template-columns: 1fr; grid-template-rows: none; margin-top: 32px; }
  .amenity-card, .amenity-card:nth-child(n) { grid-column: auto; min-height: 235px; }
  .amenity-card:nth-child(-n+2) { min-height: 270px; }
  .residences { padding: 72px 0; }
  .residences::before { display: none; }
  .residence-heading, .gallery-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
  .residence-heading { display: flex; padding-bottom: 30px; }
  .residence-heading > p { padding-left: 20px; }
  .plan-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; width: 100%; margin-top: 28px; overflow: hidden; }
  .plan-tab { min-width: 0; width: 100%; padding: 13px 5px; font-size: clamp(9px, 2.7vw, 11px); letter-spacing: .06em; white-space: nowrap; }
  .plan-display { grid-template-columns: 1fr; min-height: auto; }
  .plan-image { min-height: 0; padding: 52px 12px 16px; }
  .plan-image-grid { grid-template-columns: 1fr; }
  .plan-image-item { height: auto; min-height: 245px; padding: 10px; }
  .plan-image-item img { height: 190px; max-height: none; }
  .plan-variant { min-width: 0; }
  .plan-variant strong, .plan-variant small { max-width: 100%; overflow-wrap: anywhere; }
  .plan-details { padding: 34px 20px; }
  .plan-details h3 { font-size: clamp(36px, 11vw, 48px); }
  .master-plan { padding: 70px 0; }
  .master-plan::before { top: 55px; right: -45px; font-size: 135px; }
  .master-plan-heading { display: flex; align-items: flex-start; flex-direction: column; gap: 25px; }
  .master-plan-heading > p { padding-left: 20px; }
  .master-plan-layout { grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
  .master-plan-frame { padding: 14px; }
  .master-plan-image { min-height: 330px; padding: 10px; }
  .master-plan-aside { padding: 38px 28px; }
  .gallery-track-wrap { width: var(--container); margin: 24px auto 0; }
  .gallery { padding: 48px 0 52px; }
  .gallery-heading { gap: 18px; }
  .gallery-track-wrap { margin-top: 24px; }
  .gallery-track { grid-template-columns: 1fr; gap: 14px; }
  .gallery-slide { height: 250px; min-height: 0; max-height: none; }
  .location { padding: 52px 0; }
  .map-card, .map-card img { min-height: 0; }
  .map-card { height: 340px; }
  .cta-section { min-height: 410px; padding: 48px 18px; }
  .cta-content { width: 100%; }
  .cta-content > p:not(.eyebrow) { font-size: 15px; }
  .faq-grid { gap: 45px; }
  .faq { padding: 50px 0 55px; }
  .live-location { padding: 42px 0 40px; }
  .live-location-heading > p:last-child, .contact-heading > p:last-child { font-size: 15px; }
  .live-map { height: 280px; margin-top: 26px; border-radius: 12px; }
  .contact-section { padding: 10px 0 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 30px; margin-top: 30px; }
  .contact-details > p { font-size: 15px; }
  .contact-form-card { padding: 24px 20px; border-radius: 14px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 20px; padding-top: 58px; padding-bottom: 48px; }
  .footer-main a, .footer-main > div > p, .footer-button { max-width: 100%; font-size: 14px; overflow-wrap: anywhere; }
  .footer-main > div:last-child { grid-column: 1 / 3; }
  .footer-bottom { grid-template-columns: 1fr; gap: 9px; }
  .footer-bottom p:nth-child(n) { text-align: left; }
  .footer-bottom p:first-child { white-space: normal; }
  .footer-bottom { gap: 18px; min-height: 0; padding: 26px 0 18px; }
  .footer-rera { align-items: flex-start; }
  .mobile-bar { position: fixed; z-index: 800; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1.35fr; height: 58px; color: #fff; background: var(--ink); box-shadow: 0 -4px 20px rgba(0,0,0,.2); }
  .mobile-bar a, .mobile-bar button { display: grid; place-items: center; border: 0; background: transparent; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-bar button { color: var(--ink); background: var(--gold-light); }
  .floating-contact { right: 14px; bottom: 72px; gap: 10px; }
  .floating-contact a { width: 56px; height: 56px; }
  .floating-contact svg { width: 25px; height: 25px; }
  .enquiry-modal[open] { display: block; max-height: 90vh; overflow-y: auto; }
  .modal-visual { display: none; }
  .modal-content { padding: 52px 24px 30px; }
  .modal-content h2 { font-size: 39px; }
  .modal-content form { grid-template-columns: 1fr; }
  .modal-content small { grid-column: auto; }
  .thank-header { height: 78px; padding-inline: 18px; }
  .thank-header .phone-link { display: block; font-size: 11px; }
  .thank-card { padding: 40px 24px; }
  .thank-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (max-width: 480px) {
  :root { --container: calc(100vw - 28px); }
  body { font-size: 15px; line-height: 1.65; }
  .visit-benefits { grid-template-columns: 1fr; }
  .visit-benefits li { min-height: 0; }
  .contact-facts { grid-template-columns: 1fr; }
  .site-header { width: calc(100% - 14px); }
  .mobile-nav { padding: 84px 20px 76px; }
  .mobile-nav a { padding: 10px 0; font-size: 21px; }
  .hero { min-height: 100svh; }
  .hero-content { display: flex; flex-direction: column; justify-content: center; min-height: 100svh; padding: 105px 17px 135px; }
  .hero .eyebrow { margin-bottom: 15px; font-size: 10px; }
  .hero h1 { max-width: 100%; font-size: clamp(34px, 10vw, 43px); line-height: 1.02; }
  .hero-copy { max-width: 100%; margin: 14px 0; font-size: 14px; line-height: 1.55; }
  .hero-buttons { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 10px 20px; margin-top: 12px; }
  .hero-buttons .btn { width: auto; min-height: 45px; padding-inline: 20px; }
  .hero-buttons .text-link { font-size: 16px; }
  .hero-card { right: 14px; bottom: 14px; left: 14px; width: auto; padding: 10px 16px; }
  .hero-card span, .hero-card small { font-size: 8px; }
  .hero-card strong { margin: 4px 0 6px; padding-bottom: 6px; font-size: 21px; }
  .hero-dots { top: 88px; }
  .facts { grid-template-columns: 1fr; }
  .fact { min-height: 0; padding: 18px 15px; }
  .section { padding: 48px 0; }
  .eyebrow { margin-bottom: 15px; font-size: 10px; }
  .overview { padding: 52px 0; }
  .overview-copy p, .amenities .section-intro, .residence-heading > p, .location-copy > p:not(.eyebrow) { font-size: 15px; }
  .overview-copy .lead { font-size: 18px; }
  .highlights { padding: 52px 0; }
  .highlight-grid { gap: 30px; }
  .highlight-item > span { font-size: 22px; }
  .highlight-item h3 { font-size: 21px; }
  .highlight-item p { font-size: 15px; }
  .amenity-card, .amenity-card:nth-child(n), .amenity-card:nth-child(-n+2) { min-height: 225px; }
  .amenity-card h3, .amenity-card:nth-child(-n+2) h3 { right: 18px; bottom: 42px; font-size: 20px; }
  .amenity-card p, .amenity-card:nth-child(-n+2) p { font-size: 12px; }
  .residences { padding: 52px 0; }
  .residence-heading > p { padding-left: 14px; }
  .plan-image { padding-inline: 10px; }
  .plan-image-item { min-height: 230px; }
  .plan-image-item img { height: 175px; }
  .plan-variant { align-items: flex-start; flex-direction: column; gap: 2px; }
  .plan-variant small { text-align: left; }
  .plan-details dl div { grid-template-columns: 1fr; gap: 3px; }
  .gallery-slide { height: 220px; }
  .map-card { height: 280px; }
  .distance-list li { align-items: flex-start; gap: 8px; }
  .distance-list strong { flex: 0 0 auto; }
  .cta-section { min-height: 430px; }
  .cta-content .btn { width: 100%; padding-inline: 12px; font-size: 11px; }
  .faq-item button { gap: 12px; padding: 20px 0; font-size: 16px; text-align: left; }
  .faq-item.open > div p { padding-right: 0; font-size: 14px; }
  .live-map { height: 245px; }
  .contact-heading h2 { font-size: 37px; }
  .contact-phone-field { grid-template-columns: 105px minmax(0, 1fr); }
  .contact-phone-field .country-code { padding-inline: 10px; font-size: 12px; }
  .contact-form-card input { padding-inline: 13px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom p { font-size: 11px; overflow-wrap: anywhere; }
  .enquiry-modal { width: calc(100vw - 20px); }
  .modal-content { padding: 48px 18px 24px; }
  .modal-content h2 { font-size: 32px; }
  .thank-card { width: 100%; }
}

@media (max-width: 480px) and (max-height: 680px) {
  .site-header, .site-header.scrolled { top: 6px; height: 58px; }
  .brand, .brand img { height: 52px; }
  .brand img { width: 84px; }
  .menu-toggle { width: 38px; height: 38px; }
  .hero-content { justify-content: flex-start; padding-top: 92px; padding-bottom: 118px; }
  .hero .eyebrow { margin-bottom: 10px; font-size: 9px; }
  .hero h1 { font-size: clamp(31px, 9.4vw, 38px); }
  .hero-copy { margin: 11px 0; font-size: 13px; }
  .hero-buttons { margin-top: 8px; }
  .hero-buttons .btn { min-height: 42px; }
  .hero-dots { top: 73px; }
  .hero-card { bottom: 10px; padding-block: 8px; }
  .mobile-nav { padding-top: 72px; }
  .mobile-nav a { padding: 7px 0; font-size: 18px; }
  .mobile-nav a:last-child { margin-top: 10px; }
}

/* Simplified master-plan presentation */
.master-plan { padding: 58px 0 68px; color: var(--ink); background: #f2f2f2; }
.master-plan::before { display: none; }
.master-plan .master-plan-heading { display: block; margin-bottom: 34px; padding: 0; border: 0; text-align: center; }
.master-plan .master-plan-heading h2 { margin: 0; font: 600 clamp(36px, 3.3vw, 50px)/1.1 var(--sans); letter-spacing: -.025em; text-transform: uppercase; }
.master-plan .master-plan-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 0; }
.master-plan .master-plan-image { position: relative; display: block; width: 100%; height: 430px; min-height: 0; padding: 0; overflow: hidden; border: 0; background: #0b2d3a; cursor: zoom-in; }
.master-plan .master-plan-image img { width: 100%; max-width: none; height: 100%; max-height: none; object-fit: cover; object-position: center; transition: transform .7s var(--ease); }
.master-plan .master-plan-image:hover img { transform: scale(1.03); }
.master-plan .master-plan-detail img { width: 100%; object-position: center; }

@media (max-width: 760px) {
  .master-plan { padding: 48px 0 52px; }
  .master-plan .master-plan-heading { margin-bottom: 24px; }
  .master-plan .master-plan-layout { grid-template-columns: 1fr; gap: 16px; }
  .master-plan .master-plan-image { height: 280px; min-height: 0; padding: 0; }
}

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

.eyebrow { font-size: 16px !important; }
