:root {
  --ink: #171815;
  --ink-2: #24251f;
  --charcoal: #11120f;
  --cream: #f3efe6;
  --cream-2: #e9e1d2;
  --paper: #fbfaf6;
  --white: #ffffff;
  --gold: #c6a15b;
  --gold-light: #e7cc96;
  --gold-dark: #8d6a2e;
  --sage: #5f695a;
  --muted: #6d7069;
  --line: rgba(23, 24, 21, 0.13);
  --line-light: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 14px 34px rgba(22, 23, 19, 0.08);
  --shadow-lg: 0 28px 80px rgba(15, 16, 13, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }
::selection { background: var(--gold-light); color: var(--ink); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section--light { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--charcoal); color: var(--white); }

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 2000;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.announcement {
  background: var(--charcoal);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .02em;
}
.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement strong { color: var(--gold-light); font-weight: 600; }
.announcement__rera { font-size: 11px; color: rgba(255,255,255,.55); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,250,246,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23,24,21,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(17,18,15,.09); background: rgba(251,250,246,.97); }
.header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--gold-light);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.brand__copy { display: grid; line-height: 1.1; }
.brand__copy strong { font-family: "Manrope", sans-serif; font-size: 17px; letter-spacing: -.03em; }
.brand__copy small { margin-top: 5px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 13px; color: #4f524c; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--gold); transition: right .25s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--ink); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.header__phone svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.button {
  border: 0;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--charcoal); color: var(--white); box-shadow: 0 12px 28px rgba(17,18,15,.14); }
.button--dark:hover { background: #2a2b26; box-shadow: 0 18px 36px rgba(17,18,15,.2); }
.button--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--charcoal); box-shadow: 0 14px 34px rgba(141,106,46,.24); }
.button--gold:hover { box-shadow: 0 20px 42px rgba(141,106,46,.34); }
.button--ghost { color: var(--white); border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button--ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.52); }
.button--full { width: 100%; }

.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 19px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 116px 0 0; z-index: 950; background: rgba(251,250,246,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu nav { min-height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; padding: 40px; }
.mobile-menu a { font-family: "Manrope", sans-serif; font-size: clamp(25px, 8vw, 40px); font-weight: 700; letter-spacing: -.04em; }

.hero { position: relative; min-height: 760px; overflow: hidden; background: var(--charcoal); }
.hero__media { position: absolute; inset: 0; background-image: url("../images/elevation.png"); background-size: cover; background-position: center; transform: scale(1.015); }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,12,10,.92) 0%, rgba(11,12,10,.75) 40%, rgba(11,12,10,.26) 68%, rgba(11,12,10,.48) 100%), linear-gradient(0deg, rgba(11,12,10,.42), transparent 40%); }
.hero__grid { position: relative; z-index: 2; min-height: 760px; display: grid; grid-template-columns: minmax(0,1fr) 390px; align-items: center; gap: 70px; padding-top: 64px; padding-bottom: 64px; }
.hero__content { color: var(--white); max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--gold-light); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }
.eyebrow span { width: 40px; height: 1px; background: var(--gold); }
.hero h1 { margin: 0; max-width: 760px; font-family: "Manrope", sans-serif; font-size: clamp(58px, 6.5vw, 92px); line-height: .96; letter-spacing: -.065em; font-weight: 700; }
.hero h1 em, .section h2 em, .final-cta h2 em { font-style: normal; color: var(--gold-light); }
.hero__content > p { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__assurances { display: flex; flex-wrap: wrap; align-items: center; gap: 0; margin-top: 38px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600; }
.hero__assurances span { display: inline-flex; align-items: center; }
.hero__assurances span:not(:last-child)::after { content: ""; width: 4px; height: 4px; margin: 0 14px; border-radius: 50%; background: var(--gold); }

.hero-form-card {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  padding: 30px;
  background: rgba(251,250,246,.96);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.form-chip { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(198,161,91,.13); color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-form-card h2, .modal__card h2 { margin: 17px 0 8px; font-family: "Manrope", sans-serif; font-size: 28px; line-height: 1.15; letter-spacing: -.045em; }
.hero-form-card__top > p, .modal__card > p { margin: 0; color: var(--muted); font-size: 14px; }
.lead-form { display: grid; gap: 14px; margin-top: 22px; }
.lead-form label { display: grid; gap: 7px; }
.lead-form label > span { color: #4d504a; font-size: 11px; font-weight: 700; letter-spacing: .03em; }
.lead-form label > span em { color: var(--muted); font-style: normal; font-weight: 500; }
.lead-form input, .lead-form select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(23,24,21,.16);
  border-radius: 13px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-size: 14px;
}
.lead-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%); background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px; background-size: 5px 5px; background-repeat: no-repeat; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,161,91,.13); }
.phone-field { display: flex; align-items: center; height: 50px; border: 1px solid rgba(23,24,21,.16); border-radius: 13px; background: var(--white); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.phone-field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,161,91,.13); }
.phone-field b { padding: 0 12px 0 14px; color: #555850; font-size: 13px; border-right: 1px solid var(--line); }
.phone-field input { border: 0; border-radius: 0; box-shadow: none !important; height: 100%; }
.lead-form small { color: #777a73; font-size: 10px; line-height: 1.5; text-align: center; }
.form-status { display: none; margin: 0; padding: 10px 12px; border-radius: 10px; font-size: 12px; font-weight: 600; }
.form-status.is-success { display: block; background: rgba(27,130,78,.1); color: #126a3e; }
.form-status.is-error { display: block; background: rgba(180,55,48,.1); color: #a02d28; }

.proof-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.proof-bar__grid { display: grid; grid-template-columns: repeat(5,1fr); }
.proof-bar__grid > div { min-height: 126px; padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.proof-bar__grid > div:first-child { border-left: 1px solid var(--line); }
.proof-bar strong { font-family: "Manrope", sans-serif; font-size: 28px; line-height: 1; letter-spacing: -.04em; }
.proof-bar span { margin-top: 9px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

.section-tag { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-dark); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-tag::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-tag--gold { color: var(--gold-light); }
.section h2, .final-cta h2 { margin: 16px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.06em; font-weight: 700; }
.section h2 em { color: var(--gold-dark); }
.section-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,440px); align-items: end; gap: 60px; margin-bottom: 48px; }
.section-head > p { margin: 0 0 6px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-head--dark > p { color: rgba(255,255,255,.62); }
.section-head--dark h2 em { color: var(--gold-light); }

.overview-grid { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr); gap: 88px; align-items: center; }
.overview-visual { position: relative; min-height: 610px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.overview-visual img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; }
.overview-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,15,12,.34), transparent 45%); }
.overview-visual__badge { position: absolute; z-index: 2; left: 26px; bottom: 26px; min-width: 150px; padding: 17px 20px; border-radius: 16px; background: rgba(251,250,246,.94); backdrop-filter: blur(12px); }
.overview-visual__badge strong { display: block; font-family: "Manrope", sans-serif; font-size: 21px; letter-spacing: -.03em; }
.overview-visual__badge span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.overview-copy .lead { max-width: 610px; margin: 25px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.overview-list { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.overview-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.overview-list > div > span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--gold-dark); font-size: 10px; font-weight: 800; }
.overview-list p { margin: 0; color: var(--muted); font-size: 14px; }
.overview-list p strong { display: block; margin-bottom: 4px; color: var(--ink); font-family: "Manrope", sans-serif; font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; padding: 0 0 7px; border: 0; border-bottom: 1px solid var(--ink); background: none; cursor: pointer; font-weight: 700; }
.text-link span { color: var(--gold-dark); }

.bento-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.bento-card { min-height: 250px; padding: 28px; border: 1px solid rgba(23,24,21,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.64); transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease; }
.bento-card:hover { transform: translateY(-6px); border-color: rgba(141,106,46,.38); box-shadow: var(--shadow-sm); }
.bento-card--feature { grid-column: span 2; grid-row: span 2; min-height: 516px; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; color: var(--white); background: linear-gradient(145deg, rgba(17,18,15,.74), rgba(17,18,15,.9)), url("../images/elevation.png") center/cover; border-color: transparent; }
.bento-card__icon { width: 58px; height: 58px; margin-bottom: auto; border-radius: 50%; display: grid; place-items: center; color: var(--charcoal); background: var(--gold-light); font-size: 23px; }
.bento-card--feature > span { color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.bento-card h3 { margin: 22px 0 10px; font-family: "Manrope", sans-serif; font-size: 23px; line-height: 1.18; letter-spacing: -.04em; }
.bento-card--feature h3 { max-width: 530px; font-size: clamp(32px,4vw,50px); }
.bento-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.bento-card--feature p { max-width: 520px; color: rgba(255,255,255,.7); }
.bento-number { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--gold-dark); font-size: 10px; font-weight: 800; }

.gallery-controls { display: flex; gap: 10px; justify-self: end; }
.gallery-controls button { width: 50px; height: 50px; border: 1px solid var(--line-light); border-radius: 50%; background: rgba(255,255,255,.05); color: var(--white); cursor: pointer; font-size: 20px; transition: .2s ease; }
.gallery-controls button:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.gallery-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(330px, 34vw); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card { position: relative; min-height: 480px; border-radius: 24px; overflow: hidden; scroll-snap-align: start; cursor: zoom-in; border: 0; padding: 0; background: #292a25; color: var(--white); text-align: left; }
.gallery-card img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,11,9,.82), transparent 52%); }
.gallery-card__caption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.gallery-card__caption span { display: block; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gallery-card__caption strong { display: block; margin-top: 8px; font-family: "Manrope", sans-serif; font-size: 24px; letter-spacing: -.04em; }

.configuration-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 26px; }
.configuration-card { position: relative; min-height: 172px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); text-align: left; cursor: pointer; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease; }
.configuration-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -45px; bottom: -60px; border: 1px solid rgba(141,106,46,.22); border-radius: 50%; box-shadow: 0 0 0 18px rgba(141,106,46,.06); }
.configuration-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.configuration-card--active { color: var(--white); background: var(--charcoal); border-color: var(--charcoal); }
.configuration-card span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.configuration-card--active span { color: rgba(255,255,255,.58); }
.configuration-card strong { display: block; margin-top: 12px; font-family: "Manrope", sans-serif; font-size: 42px; line-height: 1; letter-spacing: -.06em; }
.configuration-card small { position: absolute; left: 26px; bottom: 24px; color: var(--gold-dark); font-size: 11px; font-weight: 700; }
.configuration-card--active small { color: var(--gold-light); }
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.plan-card { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--white); transition: transform .28s var(--ease), box-shadow .28s ease; }
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.plan-card__image { position: relative; aspect-ratio: 1.15/1; padding: 16px; background: #f3f2ed; overflow: hidden; cursor: zoom-in; }
.plan-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s var(--ease); }
.plan-card:hover .plan-card__image img { transform: scale(1.025); }
.plan-card__badge { position: absolute; left: 14px; top: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(17,18,15,.86); color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.plan-card__body { padding: 22px; }
.plan-card__body span { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.plan-card__body h3 { margin: 9px 0 5px; font-family: "Manrope", sans-serif; font-size: 22px; letter-spacing: -.04em; }
.plan-card__body p { margin: 0; color: var(--muted); font-size: 13px; }
.plan-card__actions { display: flex; gap: 10px; margin-top: 18px; }
.plan-card__actions button { flex: 1; min-height: 42px; border-radius: 999px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: .2s ease; }
.plan-card__actions button:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.amenities-shell { display: grid; grid-template-columns: .74fr 1.26fr; gap: 52px; padding: 52px; border-radius: 30px; background: var(--charcoal); color: var(--white); box-shadow: var(--shadow-lg); }
.amenities-intro { align-self: start; position: sticky; top: 120px; }
.amenities-intro h2 { font-size: clamp(40px,4.5vw,61px); }
.amenities-intro h2 em { color: var(--gold-light); }
.amenities-intro > p { margin: 24px 0 0; color: rgba(255,255,255,.62); line-height: 1.75; }
.amenity-tabs { display: flex; gap: 8px; margin-top: 28px; padding: 5px; width: fit-content; border: 1px solid var(--line-light); border-radius: 999px; }
.amenity-tab { min-height: 42px; padding: 0 17px; border: 0; border-radius: 999px; background: transparent; color: rgba(255,255,255,.6); cursor: pointer; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.amenity-tab.is-active { background: var(--gold-light); color: var(--charcoal); }
.amenity-panel { display: none; grid-template-columns: repeat(2,1fr); gap: 12px; }
.amenity-panel.is-active { display: grid; }
.amenity-item { min-height: 128px; padding: 20px; border: 1px solid var(--line-light); border-radius: 17px; background: rgba(255,255,255,.035); transition: border-color .2s ease, background .2s ease, transform .25s var(--ease); }
.amenity-item:hover { transform: translateY(-3px); border-color: rgba(231,204,150,.45); background: rgba(255,255,255,.07); }
.amenity-item__icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(198,161,91,.14); color: var(--gold-light); font-size: 11px; font-weight: 800; }
.amenity-item strong { display: block; margin-top: 14px; font-family: "Manrope", sans-serif; font-size: 15px; }
.amenity-item span { display: block; margin-top: 5px; color: rgba(255,255,255,.53); font-size: 12px; }

.location-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 22px; align-items: stretch; }
.map-card { position: relative; min-height: 600px; border-radius: 26px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-card iframe { width: 100%; height: 100%; min-height: 600px; border: 0; filter: grayscale(.25) contrast(.96); }
.map-card__link { position: absolute; left: 18px; bottom: 18px; padding: 12px 16px; border-radius: 999px; background: var(--charcoal); color: var(--white); font-size: 11px; font-weight: 700; box-shadow: var(--shadow-sm); }
.nearby-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.nearby-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 21px; background: var(--white); }
.nearby-grid article > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--gold-dark); font-size: 10px; font-weight: 800; }
.nearby-grid h3 { margin: 18px 0 12px; font-family: "Manrope", sans-serif; font-size: 19px; letter-spacing: -.035em; }
.nearby-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.nearby-grid li { position: relative; padding-left: 14px; color: var(--muted); font-size: 13px; }
.nearby-grid li::before { content: ""; position: absolute; left: 0; top: .68em; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.final-cta { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.final-cta__media { position: absolute; inset: 0; background: url("../images/elevation.png") center/cover; }
.final-cta__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,12,10,.92) 0%, rgba(11,12,10,.72) 55%, rgba(11,12,10,.38)); }
.final-cta__content { position: relative; z-index: 2; color: var(--white); display: flex; align-items: end; justify-content: space-between; gap: 50px; padding-top: 90px; padding-bottom: 90px; }
.final-cta__content > div { max-width: 760px; }
.final-cta h2 { font-size: clamp(46px,5.6vw,76px); }
.final-cta p { max-width: 620px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.7; }

.footer { padding: 66px 0 28px; background: var(--charcoal); color: var(--white); }
.footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; align-items: start; padding-bottom: 44px; }
.brand--footer .brand__mark { background: var(--gold-light); color: var(--charcoal); }
.brand--footer .brand__copy small { color: rgba(255,255,255,.46); }
.footer__contact { display: grid; gap: 8px; color: rgba(255,255,255,.68); font-size: 13px; }
.footer__contact a:first-child { color: var(--gold-light); font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 700; }
.footer__links { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 24px; justify-self: end; color: rgba(255,255,255,.65); font-size: 13px; }
.footer__links a:hover, .footer__contact a:hover { color: var(--white); }
.footer__bottom { padding-top: 24px; border-top: 1px solid var(--line-light); display: grid; grid-template-columns: .55fr 1.45fr; gap: 40px; color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.65; }
.footer__bottom p { margin: 0; }

.modal, .lightbox { position: fixed; inset: 0; z-index: 1500; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.modal.is-open, .lightbox.is-open { opacity: 1; visibility: visible; }
.modal__backdrop, .lightbox__backdrop { position: absolute; inset: 0; border: 0; background: rgba(8,9,7,.72); backdrop-filter: blur(8px); cursor: default; }
.modal__card { position: relative; width: min(470px,100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 34px; border-radius: 26px; background: var(--paper); box-shadow: 0 32px 100px rgba(0,0,0,.34); transform: translateY(16px) scale(.98); transition: transform .3s var(--ease); }
.modal.is-open .modal__card { transform: none; }
.modal__close, .lightbox__close { position: absolute; z-index: 3; top: 14px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: 50%; display: grid; place-items: center; cursor: pointer; font-size: 24px; background: rgba(23,24,21,.08); }
.lightbox__content { position: relative; z-index: 2; width: min(1000px,100%); max-height: calc(100vh - 40px); border-radius: 22px; overflow: hidden; background: var(--paper); box-shadow: 0 32px 100px rgba(0,0,0,.4); }
.lightbox__content img { width: 100%; max-height: calc(100vh - 130px); object-fit: contain; background: #e9e8e3; }
.lightbox__content > div { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lightbox__content strong { font-family: "Manrope", sans-serif; }
.lightbox__content span { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: #1f9d59; color: var(--white); font-size: 11px; font-weight: 800; box-shadow: 0 18px 40px rgba(22,105,59,.32); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.mobile-actions { display: none; position: fixed; inset: auto 0 0; z-index: 1000; min-height: 62px; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 -10px 28px rgba(17,18,15,.11); }
.mobile-actions a, .mobile-actions button { flex: 1; border: 0; display: grid; place-items: center; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.mobile-actions a { background: var(--paper); }
.mobile-actions button { background: var(--gold); color: var(--charcoal); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero__grid { grid-template-columns: minmax(0,1fr) 360px; gap: 34px; }
  .hero h1 { font-size: clamp(54px,7vw,76px); }
  .overview-grid { gap: 50px; }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-card--feature { grid-row: span 1; min-height: 400px; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .plan-card:last-child { grid-column: span 2; }
  .amenities-shell { grid-template-columns: 1fr; }
  .amenities-intro { position: static; }
  .location-grid { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 500px; }
}

@media (max-width: 820px) {
  .announcement__rera { display: none; }
  .announcement__inner { justify-content: center; text-align: center; }
  .header__phone, .header__cta { display: none; }
  .mobile-menu { inset: 116px 0 0; }
  .hero { min-height: auto; }
  .hero__shade { background: linear-gradient(0deg, rgba(11,12,10,.92) 0%, rgba(11,12,10,.62) 70%, rgba(11,12,10,.42)); }
  .hero__media { background-position: 60% center; }
  .hero__grid { min-height: 760px; grid-template-columns: 1fr; align-items: end; padding-top: 110px; padding-bottom: 58px; }
  .hero-form-card { display: none; }
  .hero__content { max-width: 690px; }
  .hero h1 { font-size: clamp(50px,12vw,76px); }
  .proof-bar__grid { grid-template-columns: repeat(2,1fr); }
  .proof-bar__grid > div, .proof-bar__grid > div:first-child { border-left: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .proof-bar__grid > div:last-child { grid-column: span 2; }
  .section { padding: 84px 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-visual, .overview-visual img { min-height: 500px; }
  .configuration-grid { grid-template-columns: 1fr; }
  .configuration-card { min-height: 150px; }
  .gallery-track { grid-auto-columns: 72vw; }
  .final-cta__content { align-items: flex-start; flex-direction: column; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__links { justify-self: start; }
  .footer__bottom { grid-template-columns: 1fr; gap: 12px; }
  .whatsapp-float { bottom: 78px; }
  .mobile-actions { display: flex; }
  body { padding-bottom: 62px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, var(--container)); }
  .announcement { font-size: 10px; }
  .announcement__inner { min-height: 34px; }
  .header__inner { min-height: 72px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__copy strong { font-size: 15px; }
  .mobile-menu { inset: 106px 0 0; }
  .hero__grid { min-height: 710px; padding-top: 90px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(44px,14vw,62px); }
  .hero__content > p { font-size: 15px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__assurances { line-height: 2; }
  .hero__assurances span:not(:last-child)::after { margin: 0 9px; }
  .proof-bar__grid > div { min-height: 104px; padding: 18px; }
  .proof-bar strong { font-size: 23px; }
  .proof-bar span { font-size: 9px; }
  .section { padding: 70px 0; }
  .section h2, .final-cta h2 { font-size: clamp(38px,12vw,52px); }
  .section-head { margin-bottom: 34px; }
  .overview-visual, .overview-visual img { min-height: 390px; }
  .overview-list > div { grid-template-columns: 40px 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--feature { grid-column: span 1; min-height: 420px; padding: 30px; }
  .bento-card { min-height: 220px; }
  .gallery-controls { justify-self: start; }
  .gallery-track { grid-auto-columns: 88vw; }
  .gallery-card, .gallery-card img { min-height: 410px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card:last-child { grid-column: auto; }
  .amenities-shell { padding: 28px 20px; border-radius: 24px; }
  .amenity-panel { grid-template-columns: 1fr; }
  .amenity-item { min-height: 112px; }
  .nearby-grid { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 420px; }
  .final-cta { min-height: 560px; }
  .final-cta__content { padding-top: 70px; padding-bottom: 70px; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .modal__card { padding: 28px 20px 22px; border-radius: 22px; }
  .lightbox { padding: 10px; }
  .lightbox__content > div { align-items: flex-start; flex-direction: column; gap: 4px; }
}

@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; }
}
