:root {
  --ink: #151515;
  --ink-soft: #242424;
  --paper: #f5f1e9;
  --paper-bright: #fffdf8;
  --line: rgba(21, 21, 21, 0.18);
  --red: #d71f26;
  --red-dark: #a50e15;
  --gold: #d3b16d;
  --muted: #706d67;
  --white: #ffffff;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1240px, calc(100vw - 48px));
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 14px; background: var(--white); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 88px; padding: 0 max(24px, calc((100vw - 1400px) / 2)); display: flex; align-items: center; justify-content: space-between; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.18); transition: background .25s ease, color .25s ease, height .25s ease; }
.site-header.scrolled { height: 72px; color: var(--ink); background: rgba(245,241,233,.96); border-bottom-color: var(--line); box-shadow: 0 8px 28px rgba(0,0,0,.08); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.header-logo { width: 64px; height: 64px; object-fit: contain; background: #050505; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: width .25s ease, height .25s ease; }
.site-header.scrolled .header-logo { width: 54px; height: 54px; }
.brand-project { display: grid; line-height: 1; }
.brand-project strong { font-size: .9rem; letter-spacing: .2em; }
.brand-project small { margin-top: 6px; font-size: .6rem; letter-spacing: .17em; opacity: .7; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-decoration: none; }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-cta { padding: 11px 16px; color: var(--white); background: var(--red); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; color: inherit; background: transparent; }
.menu-toggle span:not(.sr-only) { width: 24px; height: 2px; margin: 6px auto; display: block; background: currentColor; transition: transform .25s ease; }

.hero { position: relative; min-height: 760px; height: 100svh; display: grid; align-items: end; color: var(--white); overflow: hidden; background: #080808; }
.hero-image, .hero-shade, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 54% 50%; filter: brightness(1.18) saturate(1.12) contrast(1.04); transform: translate3d(0, var(--parallax-offset, 0), 0) scale(1.08); will-change: transform; }
.hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.42) 42%, rgba(0,0,0,.03) 78%), linear-gradient(0deg, rgba(0,0,0,.55), transparent 48%); }
.hero-grid { opacity: .22; background-image: linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent 63%); }
.hero-content { position: relative; z-index: 2; width: var(--page); margin: 0 auto; padding: 152px 0 62px; }
.eyebrow, .section-kicker { margin: 0 0 24px; color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.eyebrow span::before { content: ""; width: 34px; height: 2px; background: var(--red); }
.availability-pill { width: fit-content; margin: 0 0 16px; padding: 8px 11px; color: var(--white); background: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(215,31,38,.24); }
.hero h1 { max-width: 990px; margin: 0; display: grid; font-family: var(--sans); font-size: clamp(4.3rem, 9.1vw, 9.4rem); font-weight: 950; line-height: .79; letter-spacing: -.075em; text-transform: uppercase; text-wrap: balance; text-shadow: 0 8px 30px rgba(0,0,0,.35); animation: hero-rise .9s cubic-bezier(.2,.8,.2,1) both; }
.hero h1 span { color: var(--gold); font-size: .73em; letter-spacing: -.055em; }
.hero-statement { margin: 22px 0 0; font: 500 clamp(1.5rem, 2.6vw, 2.4rem)/1.1 var(--display); }
.hero-statement em, .enquire h2 em { color: var(--gold); font-weight: 400; }
.hero-lead { max-width: 630px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.4vw, 1.24rem); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; }
.button { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; font-size: .84rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); border-color: var(--red); }
.button-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button-ghost { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.42); backdrop-filter: blur(8px); }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.hero-facts { max-width: 720px; margin: 48px 0 0; padding: 24px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.32); }
.hero-facts div { padding-left: 20px; border-left: 2px solid var(--red); }
.hero-facts dt { color: rgba(255,255,255,.6); font-size: .68rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero-facts dd { margin: 5px 0 0; font: 500 clamp(1rem, 1.6vw, 1.3rem)/1.2 var(--display); }
.scroll-cue { position: absolute; z-index: 2; right: max(24px, calc((100vw - 1400px) / 2)); bottom: 54px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); font-size: .66rem; font-weight: 800; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 54px; display: block; background: linear-gradient(var(--red) 35%, rgba(255,255,255,.3) 35%); }

.trust-strip { padding: 27px max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: repeat(4, 1fr); color: var(--white); background: var(--ink); border-top: 3px solid var(--red); }
.trust-strip p { min-height: 52px; margin: 0; padding: 0 24px; display: grid; align-content: center; border-left: 1px solid rgba(255,255,255,.16); }
.trust-strip p:first-child { border-left: 0; padding-left: 0; }
.trust-strip strong { color: var(--gold); font: 500 1.25rem/1.2 var(--display); }
.trust-strip span { margin-top: 3px; color: rgba(255,255,255,.62); font-size: .72rem; line-height: 1.35; }

.editorial-section, .residences, .location, .trust, .enquire { width: var(--page); margin: 0 auto; padding: 120px 0; }
.overview { overflow: hidden; }
.overview-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10vw; align-items: start; }
.overview h2, .section-heading h2, .amenities h2, .trust h2, .enquire h2 { margin: 0; font: 500 clamp(2.75rem, 5vw, 5.5rem)/.98 var(--display); letter-spacing: -.045em; text-wrap: balance; }
.overview-body { max-width: 550px; padding-top: 8px; }
.overview-body p { margin: 0 0 20px; color: #45433f; font-size: 1.05rem; }
.image-pair { margin-top: 76px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.image-stack { display: grid; gap: 18px; }
.image-card { position: relative; min-height: 300px; margin: 0; overflow: hidden; background: #d9d4ca; }
.image-card-large { min-height: 720px; }
.image-stack .image-card { min-height: 351px; }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.image-card img[data-parallax], .amenities-image img[data-parallax] { height: 112%; margin-top: -6%; transform: translate3d(0, var(--parallax-offset, 0), 0) scale(1.035); will-change: transform; }
.image-card:hover img[data-parallax] { transform: translate3d(0, var(--parallax-offset, 0), 0) scale(1.065); }
.image-card figcaption { position: absolute; left: 18px; bottom: 18px; max-width: calc(100% - 36px); padding: 10px 13px; color: var(--white); background: rgba(17,17,17,.78); font-size: .72rem; letter-spacing: .03em; backdrop-filter: blur(8px); }

.residences { width: 100%; padding-inline: max(24px, calc((100vw - 1240px) / 2)); color: var(--white); background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr .58fr; gap: 8vw; align-items: end; }
.section-heading > p { max-width: 530px; margin: 0; color: #5c5954; }
.residences .section-heading > p { color: rgba(255,255,255,.62); }
.residence-card { margin-top: 76px; display: grid; grid-template-columns: .72fr 1.28fr; background: #1c1c1c; border-top: 1px solid rgba(255,255,255,.18); }
.residence-card-reverse { grid-template-columns: .72fr 1.28fr; }
.residence-card-reverse .residence-copy { order: 2; }
.residence-card-reverse .plan-viewer { order: 1; }
.residence-copy { padding: clamp(32px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.unit-number { margin: 0 0 22px; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.residence-copy h3 { margin: 0; font: 500 clamp(2.3rem, 4vw, 4.6rem)/1 var(--display); letter-spacing: -.04em; }
.unit-summary { margin: 25px 0 0; color: rgba(255,255,255,.62); }
.unit-data { margin: 38px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.unit-data div { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.22); }
.unit-data dt { color: rgba(255,255,255,.5); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.unit-data dd { margin: 5px 0 0; color: var(--gold); font: 500 1.28rem/1.2 var(--display); }
.text-link { width: fit-content; display: inline-flex; gap: 10px; align-items: center; color: var(--white); font-size: .79rem; font-weight: 800; letter-spacing: .06em; text-underline-offset: 7px; }
.text-link span { color: var(--red); font-size: 1.15rem; }
.plan-viewer { min-width: 0; background: var(--paper-bright); }
[data-depth-card] { --depth-shift: 0px; --depth-tilt: 0deg; transform: perspective(1400px) translate3d(0, var(--depth-shift), 0) rotateX(var(--depth-tilt)); transform-origin: center center; will-change: transform; }
.plan-toolbar { padding: 14px; display: flex; gap: 8px; background: #ece7de; }
.plan-toolbar button { min-height: 40px; padding: 0 16px; border: 1px solid #bcb6ab; color: #57534d; background: transparent; font-size: .73rem; font-weight: 800; letter-spacing: .05em; cursor: pointer; }
.plan-toolbar button.active { color: var(--white); background: var(--ink); border-color: var(--ink); }
.plan-image-button { position: relative; width: 100%; min-height: 500px; padding: 0; display: grid; place-items: center; border: 0; background: #f8f5ee; cursor: zoom-in; overflow: hidden; }
.plan-image-button img { width: 100%; height: 100%; max-height: 600px; object-fit: contain; transition: transform .35s ease, opacity .2s ease; }
.plan-image-button:hover img { transform: scale(1.025); }
.plan-image-button span { position: absolute; right: 16px; bottom: 16px; padding: 8px 12px; color: var(--white); background: rgba(0,0,0,.76); font-size: .7rem; }
.disclaimer { max-width: 830px; margin: 28px 0 0; color: rgba(255,255,255,.45); font-size: .76rem; }

.amenities { min-height: 780px; display: grid; grid-template-columns: .9fr 1.1fr; color: var(--white); background: #070707; }
.amenities-image { position: relative; min-height: 820px; overflow: hidden; }
.amenities-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 50%); }
.amenities-image img { width: 100%; height: 100%; object-fit: cover; }
.amenities-image > p { position: absolute; z-index: 1; left: 40px; bottom: 32px; margin: 0; font: 500 2.2rem/1 var(--display); }
.amenities-content { padding: clamp(70px, 9vw, 132px) max(28px, 8vw); align-self: center; }
.amenity-list { margin-top: 50px; }
.amenity-list article { padding: 22px 0; display: grid; grid-template-columns: 54px 1fr; gap: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.amenity-list article > span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.amenity-list h3 { margin: 0; font: 500 1.35rem/1.2 var(--display); }
.amenity-list p { margin: 7px 0 0; color: rgba(255,255,255,.55); font-size: .9rem; }

.location .section-heading { margin-bottom: 64px; }
.location-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.location-grid figure { margin: 0; background: #ded8cc; overflow: hidden; }
.location-map img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.location-aerial { display: grid; grid-template-rows: 1fr auto; }
.location-aerial img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.location-aerial figcaption { padding: 28px; display: grid; color: var(--white); background: var(--red); }
.location-aerial strong { font: 500 1.4rem/1.2 var(--display); }
.location-aerial span { margin-top: 5px; color: rgba(255,255,255,.75); font-size: .83rem; }

.trust { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; border-top: 1px solid var(--line); }
.trust-intro > p:not(.section-kicker) { max-width: 540px; color: #5c5954; }
.credentials { margin-top: 34px; display: grid; gap: 12px; }
.credentials p { margin: 0; padding: 13px 0 13px 16px; display: grid; border-left: 2px solid var(--red); }
.credentials strong { font-size: .76rem; letter-spacing: .07em; text-transform: uppercase; }
.credentials span { margin-top: 3px; color: #69645d; font-size: .78rem; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { padding: 26px 0; display: grid; grid-template-columns: 66px 1fr; gap: 18px; border-top: 1px solid var(--line); }
.process-list li:first-child { border-top: 0; padding-top: 0; }
.process-list li > span { color: var(--red); font-size: .73rem; font-weight: 800; letter-spacing: .14em; }
.process-list h3 { margin: 0; font: 500 1.45rem/1.2 var(--display); }
.process-list p { margin: 7px 0 0; color: #66615a; font-size: .9rem; }

.certificates { width: 100%; padding: 120px 0; background: #e9e1d4; overflow: hidden; }
.certificates-inner { width: var(--page); margin: 0 auto; }
.certificate-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.certificate-card { min-width: 0; }
.certificate-open { position: relative; width: 100%; height: 690px; padding: 26px; display: grid; place-items: center; border: 1px solid rgba(21,21,21,.14); background: #f8f4ec; box-shadow: 0 20px 50px rgba(56,43,24,.1); cursor: zoom-in; overflow: hidden; }
.certificate-open::before { content: ""; position: absolute; inset: 14px; z-index: 1; border: 1px solid rgba(211,177,109,.55); pointer-events: none; }
.certificate-open img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.12)); transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.certificate-open:hover img { transform: scale(1.018); }
.certificate-open > span { position: absolute; z-index: 2; right: 26px; bottom: 26px; padding: 9px 12px; color: var(--white); background: rgba(20,20,20,.88); font-size: .7rem; font-weight: 800; letter-spacing: .06em; }
.certificate-copy { padding: 24px 4px 0; }
.certificate-copy p { margin: 0 0 8px; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.certificate-copy h3 { margin: 0; font: 500 1.5rem/1.2 var(--display); }
.certificate-copy > span { margin-top: 8px; display: block; color: #6a655e; font-size: .82rem; }
.certificate-note { max-width: 780px; margin: 34px 0 0; color: #70695f; font-size: .75rem; }

.enquire { width: 100%; padding-inline: max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: .95fr 1.05fr; gap: 9vw; color: var(--white); background: var(--ink); }
.enquire-copy > p:not(.section-kicker) { max-width: 580px; margin-top: 28px; color: rgba(255,255,255,.6); }
.direct-contact { margin-top: 50px; display: grid; gap: 16px; }
.direct-contact a { width: fit-content; display: grid; text-decoration: none; }
.direct-contact small { color: rgba(255,255,255,.45); font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.direct-contact strong { margin-top: 4px; font: 500 1.15rem/1.2 var(--display); }
.enquiry-form { padding: clamp(28px, 5vw, 56px); color: var(--ink); background: var(--paper-bright); box-shadow: var(--shadow); }
.field { margin-bottom: 24px; }
.field label, .field legend { margin-bottom: 8px; display: block; color: #4e4a44; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input[type="text"], .field input[type="tel"], .field select { width: 100%; min-height: 52px; padding: 0 14px; border: 1px solid #c8c1b6; border-radius: 0; color: var(--ink); background: var(--white); }
.field input:focus, .field select:focus { outline: 2px solid rgba(215,31,38,.25); border-color: var(--red); }
.choice-field { padding: 0; border: 0; }
.choice-field label { margin: 0 0 8px; display: block; cursor: pointer; }
.choice-field input { position: absolute; opacity: 0; }
.choice-field span { min-height: 46px; padding: 0 14px; display: flex; align-items: center; border: 1px solid #c8c1b6; color: #5d5851; background: var(--white); font-size: .78rem; }
.choice-field input:checked + span { color: var(--white); background: var(--ink); border-color: var(--ink); }
.choice-field input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }
.form-submit { width: 100%; }
.form-note { margin: 12px 0 0; color: #777067; font-size: .72rem; text-align: center; }

.site-footer { padding: 54px max(24px, calc((100vw - 1240px) / 2)) 92px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px 8vw; color: rgba(255,255,255,.66); background: #0b0b0b; border-top: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-logo { width: 128px; height: 100px; padding: 6px; object-fit: contain; background: var(--white); }
.footer-brand p { margin: 0; display: grid; }
.footer-brand strong { color: var(--white); font: 500 1.2rem/1.2 var(--display); }
.footer-brand span { margin-top: 6px; font-size: .76rem; }
.footer-links { display: grid; align-content: center; gap: 5px; }
.footer-links a, .footer-links span { width: fit-content; font-size: .82rem; text-underline-offset: 4px; }
.footer-legal { grid-column: 1 / -1; max-width: 900px; margin: 0; color: rgba(255,255,255,.35); font-size: .7rem; }
.mobile-whatsapp { display: none; }
.floating-call { position: fixed; z-index: 79; right: 24px; bottom: 24px; min-height: 58px; padding: 7px 18px 7px 7px; display: flex; align-items: center; gap: 12px; color: var(--white); background: var(--red); box-shadow: 0 18px 38px rgba(0,0,0,.28); text-decoration: none; opacity: 0; transform: translate3d(0, 28px, 0) scale(.94); pointer-events: none; transition: opacity .3s ease, transform .3s ease, background .2s ease; }
.floating-call.visible { opacity: 1; transform: none; pointer-events: auto; }
.floating-call:hover { background: var(--red-dark); }
.call-symbol { position: relative; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--red); background: var(--white); }
.call-symbol::after { content: ""; position: absolute; inset: -4px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; animation: call-ring 1.8s ease-out infinite; }
.call-symbol svg { width: 21px; height: 21px; fill: currentColor; }
.call-label { display: grid; line-height: 1.15; }
.call-label small { color: rgba(255,255,255,.72); font-size: .6rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.call-label strong { margin-top: 3px; font-size: .85rem; letter-spacing: .04em; }

.image-dialog { width: min(1100px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 54px 18px 18px; border: 0; background: var(--paper-bright); box-shadow: var(--shadow); overflow: auto; }
.image-dialog::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(7px); }
.image-dialog img { max-height: calc(100vh - 110px); margin: auto; object-fit: contain; }
.dialog-close { position: absolute; top: 10px; right: 12px; min-height: 34px; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
.image-dialog.certificate-mode img { width: min(860px, 100%); max-height: none; }

@keyframes call-ring { 0% { opacity: .85; transform: scale(.9); } 75%, 100% { opacity: 0; transform: scale(1.35); } }
@keyframes hero-rise { from { opacity: 0; transform: perspective(800px) translate3d(0, 42px, -70px) rotateX(7deg); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --page: min(100% - 40px, 820px); }
  .site-header { padding-inline: 20px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 0; padding: 110px 24px 40px; display: grid; align-content: start; gap: 0; color: var(--white); background: rgba(14,14,14,.98); transform: translateX(100%); transition: transform .3s ease; }
  .site-nav.open { transform: none; }
  .site-nav a { padding: 18px 0; font: 500 2rem/1.15 var(--display); border-bottom: 1px solid rgba(255,255,255,.14); }
  .site-nav .nav-cta { margin-top: 20px; padding: 15px; font: 800 .85rem/1 var(--sans); text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-header.menu-active { color: var(--white); background: #0e0e0e; }
  .hero { min-height: 780px; }
  .hero-image { object-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.15)), linear-gradient(0deg, rgba(0,0,0,.68), transparent 60%); }
  .scroll-cue { display: none; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip p:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust-strip p:nth-child(n+3) { margin-top: 24px; }
  .overview-grid, .section-heading, .trust, .enquire { grid-template-columns: 1fr; gap: 38px; }
  .image-pair { grid-template-columns: 1fr; }
  .image-card-large { min-height: 600px; }
  .image-stack { grid-template-columns: 1fr 1fr; }
  .residence-card, .residence-card-reverse { grid-template-columns: 1fr; }
  .residence-card-reverse .residence-copy { order: 1; }
  .residence-card-reverse .plan-viewer { order: 2; }
  .amenities { grid-template-columns: .85fr 1.15fr; }
  .amenities-content { padding-inline: 42px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-aerial { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .location-aerial img { min-height: 280px; }
  .certificate-open { height: 590px; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 32px); }
  html { scroll-padding-top: 68px; }
  .site-header { height: 72px; }
  .header-logo, .site-header.scrolled .header-logo { width: 50px; height: 50px; }
  .brand-project small { display: none; }
  .hero { min-height: 760px; height: 100svh; }
  .hero-content { padding: 120px 0 32px; }
  .hero h1 { font-size: clamp(4rem, 19vw, 5.5rem); }
  .hero h1 span { font-size: .58em; letter-spacing: -.03em; }
  .hero-statement { font-size: 1.35rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { padding-inline: 13px; font-size: .76rem; }
  .hero-facts { margin-top: 34px; gap: 12px; }
  .hero-facts div { padding-left: 10px; }
  .hero-facts dd { font-size: .92rem; }
  .trust-strip { padding-inline: 16px; gap: 0; }
  .trust-strip p { padding-inline: 12px; }
  .trust-strip p:nth-child(odd) { border-left: 0; padding-left: 0; }
  .editorial-section, .residences, .location, .trust, .enquire { padding-top: 88px; padding-bottom: 88px; }
  .overview h2, .section-heading h2, .amenities h2, .trust h2, .enquire h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .overview-body p { font-size: 1rem; }
  .image-pair { margin-top: 48px; }
  .image-card-large { min-height: 470px; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack .image-card { min-height: 260px; }
  .residence-card { margin-top: 50px; }
  .residence-copy { padding: 32px 22px 38px; }
  .unit-data { gap: 10px; }
  .unit-data dd { font-size: 1.05rem; }
  .plan-image-button { min-height: 330px; }
  .amenities { display: block; }
  .amenities-image { min-height: 620px; }
  .amenities-content { padding: 82px 20px; }
  .location .section-heading { margin-bottom: 44px; }
  .location-map img { min-height: 350px; }
  .location-aerial { grid-template-columns: 1fr; }
  .location-aerial img { min-height: 260px; }
  .certificate-grid { grid-template-columns: 1fr; }
  .certificate-open { height: 520px; padding: 16px; }
  .certificate-open::before { inset: 8px; }
  .enquiry-form { padding: 28px 20px; }
  .site-footer { padding-bottom: 120px; grid-template-columns: 1fr; }
  .mobile-whatsapp { position: fixed; z-index: 80; right: 14px; bottom: 14px; left: 14px; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--white); background: #168c46; box-shadow: 0 12px 30px rgba(0,0,0,.28); font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; }
  .floating-call { right: 14px; bottom: 78px; width: 54px; min-height: 54px; padding: 5px; border-radius: 50%; }
  .call-symbol { width: 44px; height: 44px; }
  .call-label { display: none; }
}

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