﻿/* 1. Variables */
:root {
  --ivory: #faf8f2;
  --paper: #fffdf8;
  --white: #fff;
  --ink: #171610;
  --body: #545148;
  --muted: #7b766b;
  --gold: #b48a42;
  --gold-dark: #916a2c;
  --gold-light: #d9c294;
  --border: #ded8ca;
  --soft: #eee9df;
  --error: #a83232;
  --success: #2f6b4f;
  --shadow: 0 12px 40px rgb(38 31 19/0.08);
  --modal-shadow: 0 24px 80px rgb(17 14 8/0.24);
  --heading: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font: "Manrope", "Inter", Arial, sans-serif;
  --container: 1320px;
  --narrow: 1080px;
  --header: 84px;
  --space: clamp(72px, 8vw, 128px);
  --gap: clamp(32px, 5vw, 80px);
  --section-title-size: clamp(2.55rem, 3.65vw, 4.3rem);
  --section-title-mobile-size: clamp(2.2rem, 9.4vw, 2.9rem);
  --section-title-leading: 0.88;
  --section-copy-size: clamp(0.88rem, 0.96vw, 1rem);
  --section-copy-mobile-size: 0.88rem;
  --section-copy-color: #2f2b24;
  --section-copy-leading: 1.55;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
/* 2. Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body,
h1,
h2,
h3,
p,
figure,
ul {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
ul {
  padding: 0;
}
body {
  overflow-x: hidden;
}
/* 3. Base */
body {
  background: var(--paper);
  color: var(--ink);
  font: 400 clamp(1rem, 1.1vw, 1.125rem)/1.75 var(--font);
  text-rendering: optimizeLegibility;
}
body.is-locked {
  overflow: hidden;
}
main {
  display: grid;
  gap: 10px;
}
.section {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--space) clamp(20px, 4vw, 56px);
}
section[id] {
  scroll-margin-top: 78px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
}
.skip-link:focus {
  top: 12px;
}
.noscript {
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: #fff3cd;
}
/* 4. Typography */
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}
h2 {
  font-size: var(--section-title-size);
}
h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.eyebrow {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(42px, 6vw, 72px);
}
.section-heading > p:last-child {
  color: var(--section-copy-color);
  max-width: 600px;
  margin: 14px auto 0;
  font-size: var(--section-copy-size);
  font-weight: 600;
  line-height: var(--section-copy-leading);
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 5px;
}
/* 5. Layout & common components */
.button {
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button--gold {
  background: var(--gold);
  color: #fff;
}
.button--gold:hover {
  background: var(--gold-dark);
}
.button--price {
  gap: 6px;
  border-color: #aa761f;
  border-radius: 1px;
  background: linear-gradient(135deg, #d9a640 0%, #b98224 48%, #976114 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgb(111 73 18/0.16);
  letter-spacing: 0.04em;
}
.button--price strong {
  font-size: 1.45em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.025em;
}
.button--price span {
  font-size: 0.82em;
  font-weight: 700;
}
.button--price:hover {
  border-color: #aa761f;
  background: linear-gradient(135deg, #c89434 0%, #a8721c 52%, #84520f 100%);
  box-shadow: 0 12px 24px rgb(111 73 18/0.22);
}
.button--outline:hover {
  background: var(--gold);
  color: #fff;
}
.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="tab"]:focus-visible {
  outline: 3px solid #2764d8;
  outline-offset: 3px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1;
}
.brand--image {
  flex: 0 0 auto;
}
.brand--image img {
  width: clamp(108px, 10vw, 142px);
  height: auto;
  object-fit: contain;
}
.brand__mark {
  width: 38px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font: 600 2rem/1 var(--heading);
}
.brand strong {
  display: block;
  font: 600 1.55rem/1 var(--heading);
}
.brand small {
  display: block;
  margin-top: 5px;
  font-size: 0.54rem;
  letter-spacing: 0.18em;
}
.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
.loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: var(--ivory);
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__mark {
  width: clamp(156px, 16vw, 190px);
  height: auto;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 18px rgb(60 43 17 / 0.12));
}
.loader__mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.loader span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}
.loader i {
  width: 150px;
  height: 1px;
  overflow: hidden;
  background: var(--border);
}
.loader i::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--gold);
  animation: loading 1s ease-in-out infinite;
}
/* Header */
.site-header {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  padding: 0 clamp(24px, 4vw, 64px);
  background: #fff;
  border-bottom: 1px solid #efe9dc;
  transition:
    height 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.site-header.is-scrolled {
  height: 70px;
  border-color: var(--soft);
  box-shadow: 0 5px 24px rgb(20 17 11/0.06);
  background: rgb(255 255 255/0.98);
}
.site-header__brand img {
  width: clamp(136px, 10vw, 150px);
  transition: width 0.3s ease;
}
.site-header.is-scrolled .site-header__brand img {
  width: 124px;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.7vw, 30px);
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: 28px 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}
.header-cta,
.mobile-drawer .button--gold {
  min-width: 194px;
  border-color: #aa761f;
  border-radius: 6px;
  background: linear-gradient(135deg, #d9a640 0%, #b98224 48%, #976114 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgb(111 73 18/0.16);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 0;
  white-space: nowrap;
}
.header-cta:hover,
.header-cta:focus-visible,
.mobile-drawer .button--gold:hover,
.mobile-drawer .button--gold:focus-visible {
  background: linear-gradient(135deg, #c89434 0%, #a8721c 52%, #84520f 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgb(111 73 18/0.22);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  padding: 12px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgb(15 12 8/0.58);
}
.mobile-drawer {
  position: fixed;
  z-index: 190;
  inset: 0 0 0 auto;
  width: min(390px, 90vw);
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: var(--modal-shadow);
  transform: translateX(102%);
  transition: transform 0.35s var(--ease);
}
.mobile-drawer.is-open {
  transform: none;
}
.mobile-drawer .brand--image img {
  width: 86px;
  max-height: 108px;
}
.mobile-drawer nav {
  display: grid;
  margin: 40px 0 28px;
}
.mobile-drawer nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--soft);
  text-decoration: none;
}
.drawer-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  font-size: 2rem;
}
.drawer-contact {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.82rem;
}
/* 6. Hero */
.hero {
  min-height: max(650px, calc(100svh - var(--header)));
  display: grid;
  grid-template-columns: minmax(430px, 43%) minmax(0, 57%);
  background: #fffdf8;
  isolation: isolate;
}
.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(48px, 6vw, 94px) clamp(24px, 5vw, 84px) clamp(42px, 5vw, 76px)
    clamp(34px, 8vw, 112px);
}
.hero .eyebrow {
  max-width: 460px;
  margin-bottom: 16px;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}
.hero h1 {
  font-size: clamp(4.6rem, 7.1vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}
.hero__location {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0 28px;
  color: var(--gold-dark);
  font-size: clamp(1.2rem, 1.85vw, 2rem);
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.hero__location::before,
.hero__location::after {
  content: "";
  width: 58px;
  height: 1px;
  background: var(--gold-light);
}
.hero h2 {
  max-width: 560px;
  font-size: clamp(1.55rem, 1.9vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: 0;
}
.hero__description {
  max-width: 520px;
  margin-top: 18px;
  color: #4f4a40;
  font-size: 0.98rem;
  line-height: 1.72;
}
.hero .actions {
  gap: 14px;
  margin-top: 30px;
}
.hero .button {
  min-width: 190px;
}
.hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 560px;
}
.hero__features span {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  min-height: 88px;
  padding: 0 8px;
}
.feature-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__features b {
  margin-top: 9px;
  color: #211e18;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e7ddc9;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  z-index: 1;
  width: 38%;
  background: linear-gradient(
    90deg,
    #fffdf8 0%,
    rgb(255 253 248/0.94) 20%,
    rgb(255 253 248/0.72) 45%,
    transparent 100%
  );
  pointer-events: none;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 28%;
  background: linear-gradient(0deg, rgb(32 25 15/0.18), transparent);
  pointer-events: none;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroZoom 18s ease-out both;
}
.hero__scroll {
  display: none;
}
/* Hero compact image override */
.hero__visual {
  display: grid;
  place-items: center end;
  padding: 28px 24px 28px 0;
  background: linear-gradient(90deg, #fffdf8, #efe4d0);
}
.hero__visual::before {
  width: 30%;
  background: linear-gradient(
    90deg,
    #fffdf8 0%,
    rgb(255 253 248/0.88) 30%,
    transparent 100%
  );
}
.hero__visual::after {
  height: 22%;
  background: linear-gradient(0deg, rgb(32 25 15/0.12), transparent);
}
.hero__visual img {
  position: relative;
  z-index: 0;
  width: min(88%, 920px);
  height: auto;
  max-height: min(540px, calc(100svh - var(--header) - 70px));
  object-fit: contain;
}
@media (max-width: 900px) {
  .hero__visual {
    place-items: center;
    padding: 18px 18px 0;
    min-height: 300px;
    aspect-ratio: 16/9;
  }
  .hero__visual img {
    width: min(92%, 720px);
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .hero__visual {
    min-height: 0;
    aspect-ratio: 16/9;
    padding: 10px 10px 0;
  }
  .hero__visual img {
    width: 92%;
    max-height: 210px;
  }
  .hero__content {
    padding-top: 24px;
  }
  .hero__features {
    margin-top: 22px;
  }
}
/* Stats */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px max(4vw, calc((100% - var(--container)) / 2));
  background: #fff;
  border-block: 1px solid var(--border);
}
.stats > div {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid var(--border);
}
.stats > div:nth-child(4) {
  border: 0;
}
.stats i {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.stats strong {
  display: block;
  color: var(--gold-dark);
  font: 600 clamp(1.9rem, 3vw, 2.8rem)/1.1 var(--heading);
}
.stats strong small {
  font-size: 0.92rem;
  text-transform: uppercase;
}
.stats p {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stats__note {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.55rem;
  white-space: nowrap;
}
/* Editorial */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--gap);
  align-items: center;
}
.framed-image {
  position: relative;
}
.framed-image::after {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  z-index: -1;
  border: 1px solid var(--gold-light);
}
.framed-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.section-copy {
  padding: 20px;
}
.section-copy > p:not(.eyebrow) {
  color: var(--body);
  margin: 0 0 15px;
}
.highlights {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  list-style: none;
}
.highlights li::before {
  content: "â—‡";
  margin-right: 10px;
  color: var(--gold);
}
.why {
  max-width: none;
  background: var(--ivory);
}
.benefit-grid {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.benefit-grid article {
  position: relative;
  padding: 10px 26px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.benefit-grid article:last-child {
  border: 0;
}
.benefit-grid i {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-size: 1.9rem;
  transition: transform 0.25s;
}
.benefit-grid h3 {
  margin: 12px 0 10px;
  font-size: 1.3rem;
}
.benefit-grid h3::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--gold);
  transition: width 0.25s;
}
.benefit-grid p {
  color: var(--body);
  font-size: 0.77rem;
  line-height: 1.6;
}
.benefit-grid article:hover i {
  transform: translateY(-3px);
}
.benefit-grid article:hover h3::after {
  width: 56px;
}
/* Residences */
.residences {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #fff;
}
.residences__content {
  padding: var(--space) clamp(24px, 6vw, 96px);
}
.residences__content > p:not(.eyebrow) {
  color: var(--body);
  margin-top: 22px;
}
.residences__visual {
  position: relative;
  margin: clamp(36px, 5vw, 72px) clamp(20px, 4vw, 60px) clamp(36px, 5vw, 72px) 0;
}
.residences__visual::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  z-index: 0;
  border: 1px solid var(--gold);
}
.residences__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.residences__visual:hover img {
  transform: scale(1.015);
}
.tabs {
  display: flex;
  gap: 6px;
  margin: 32px 0 18px;
}
.tabs button {
  min-width: 74px;
  min-height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.76rem;
}
.tabs button[aria-selected="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.residence-panel {
  display: grid;
  gap: 2px;
  padding: 16px;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
}
.residence-panel strong {
  font-family: var(--heading);
  font-size: 1.45rem;
}
.residence-panel span,
.residence-panel small {
  color: var(--body);
  font-size: 0.78rem;
}
.feature-list,
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: 24px 0 28px;
  list-style: none;
}
.feature-list li,
.check-list li {
  font-size: 0.76rem;
}
.feature-list li::before,
.check-list li::before {
  content: "âœ“";
  margin-right: 8px;
  color: var(--gold);
}
/* Amenities */
.amenities {
  max-width: none;
  background: var(--ivory);
}
.amenity-grid {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--border);
}
.amenity-grid button {
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 14px;
  border: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-size: 0.72rem;
}
.amenity-grid button:nth-child(7n) {
  border-right: 0;
}
.amenity-grid button:nth-last-child(-n + 7) {
  border-bottom: 0;
}
.amenity-grid i {
  color: var(--gold);
  font: normal 1.7rem var(--heading);
  transition: transform 0.25s;
}
.amenity-grid button:hover,
.amenity-grid button[aria-pressed="true"] {
  background: #fff;
}
.amenity-grid button:hover i {
  transform: translateY(-3px);
}
.amenity-note {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--body);
  font-size: 0.82rem;
}
/* Location */
.location-points {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  list-style: none;
}
.location-points li {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--soft);
  font-size: 0.76rem;
}
.location-explorer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap);
  align-items: center;
}
.map-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(30deg, #f1ecdf, #fbfaf5);
  border: 1px solid var(--border);
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      transparent 49%,
      rgb(180 138 66/0.1) 50%,
      transparent 51%
    ),
    linear-gradient(
      0deg,
      transparent 49%,
      rgb(180 138 66/0.1) 50%,
      transparent 51%
    );
  background-size: 90px 90px;
}
.map-road {
  position: absolute;
  width: 130%;
  height: 28px;
  background: #fff;
  border: 1px solid var(--border);
  transform: rotate(-24deg);
  left: -15%;
  top: 43%;
}
.map-road--two {
  transform: rotate(52deg);
  top: 35%;
}
.map-pin {
  position: absolute;
  left: 52%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  text-align: center;
  font: 600 1.25rem var(--heading);
  box-shadow: 0 0 0 12px rgb(180 138 66/0.18);
}
.map-pin small {
  font: 500 0.55rem var(--font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.map-label {
  position: absolute;
  padding: 4px 8px;
  background: var(--paper);
  font-size: 0.62rem;
}
.map-label--one {
  left: 8%;
  top: 35%;
  transform: rotate(-24deg);
}
.map-label--two {
  right: 12%;
  top: 23%;
  transform: rotate(52deg);
}
.location-explorer__content {
  padding: 30px;
}
.destination-list {
  min-height: 220px;
  display: grid;
  gap: 8px;
  margin: 22px 0;
  list-style: none;
}
.destination-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--soft);
}
.destination-list small {
  display: block;
  color: var(--muted);
}
.directions:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Growth, gallery, FAQ */
.growth {
  display: grid;
  grid-template-columns: 32% 30% 38%;
  background: var(--ivory);
}
.growth figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.growth__copy {
  padding: var(--space) clamp(24px, 4vw, 64px);
}
.growth__copy h2 {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
}
.growth__copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--body);
  font-size: 0.88rem;
}
.legacy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
.legacy-stats strong {
  color: var(--gold-dark);
  font: 600 2rem var(--heading);
}
.legacy-stats small {
  display: block;
  color: var(--body);
  font: 600 0.6rem var(--font);
  text-transform: uppercase;
}
.legacy .button {
  margin-top: 24px;
}
.gallery {
  max-width: none;
}
.gallery-grid {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--ivory);
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item span {
  position: absolute;
  inset: auto 16px 14px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgb(0 0 0/0.58));
  opacity: 0;
  transition: 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item:hover::after,
.gallery-item:hover span {
  opacity: 1;
}
.gallery-item span {
  z-index: 2;
}
.faq {
  max-width: var(--narrow);
  padding-block: clamp(28px, 3.4vw, 44px);
}
.faq .section-heading {
  margin-bottom: clamp(22px, 2.5vw, 32px);
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-button {
  width: 100%;
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: none;
  padding: 18px 2px;
  text-align: left;
  font-weight: 600;
}
.accordion-button span:last-child {
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.accordion-button[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}
.accordion-panel {
  overflow: hidden;
  height: 0;
  transition: height 0.35s var(--ease);
}
.accordion-panel p {
  padding: 0 48px 22px 2px;
  color: var(--body);
}
@media (max-width: 767px) {
  .faq {
    padding-block: 30px;
  }
  .faq .section-heading {
    margin-bottom: 20px;
  }
}
/* CTA and footer */
.final-cta {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 40%;
  align-items: center;
  padding: var(--space) max(6vw, calc((100% - var(--container)) / 2));
  background-color: #f4efe2;
  background-image:
    linear-gradient(rgb(180 138 66/0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(180 138 66/0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
.final-cta > div {
  z-index: 2;
}
.final-cta h2 {
  max-width: 760px;
}
.final-cta__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
  font-size: 0.78rem;
}
.final-cta img {
  position: absolute;
  right: 0;
  bottom: -10%;
  width: 46%;
  height: 120%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.footer {
  padding: 42px max(5vw, calc((100% - var(--container)) / 2)) 16px;
  border-top: 1px solid rgb(180 138 66/0.18);
  background:
    linear-gradient(180deg, rgb(255 253 248/0.96), rgb(247 241 230/0.96)),
    var(--paper);
}
.footer__main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.85fr 1.1fr;
  gap: clamp(26px, 3.2vw, 42px);
  align-items: start;
}
.footer__main h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font: 800 0.68rem var(--font);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer__main p {
  max-width: 360px;
  color: var(--section-copy-color);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.65;
  margin-top: 14px;
}
.footer__brand {
  display: inline-flex;
  width: 138px;
  transition:
    opacity 0.22s,
    transform 0.22s;
}
.footer__brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer__brand:hover,
.footer__brand:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}
.footer__brand:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
.footer__brand:hover {
  outline: 0;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}
.footer nav h3 {
  flex: 0 0 100%;
}
.footer nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgb(180 138 66/0.24);
  border-radius: 999px;
  color: var(--ink);
  background: rgb(255 255 255/0.42);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    color 0.22s,
    border-color 0.22s,
    background 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
}
.footer nav a:hover,
.footer nav a:focus-visible {
  border-color: rgb(180 138 66/0.72);
  background: linear-gradient(135deg, #d9a640 0%, #a86f17 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgb(111 73 18/0.16);
  transform: translateY(-2px);
  outline: 0;
}
.footer-contact {
  display: grid;
  gap: 8px;
  margin: 0;
  font-style: normal;
}
.footer-contact a {
  width: fit-content;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.22s, transform 0.22s;
}
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-dark);
  transform: translateX(3px);
  outline: 0;
}
.footer-whatsapp p {
  max-width: 300px;
  margin: 0 0 14px;
}
.footer-whatsapp > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 300px);
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid #128c4a;
  border-radius: 7px;
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgb(18 140 74/0.2);
  transition: background 0.22s, box-shadow 0.22s, transform 0.22s;
}
.footer-whatsapp > a:hover,
.footer-whatsapp > a:focus-visible {
  background: linear-gradient(135deg, #20bd5a 0%, #0f7a40 100%);
  box-shadow: 0 14px 26px rgb(18 140 74/0.28);
  transform: translateY(-2px);
  outline: 0;
}
.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  flex: 0 0 auto;
}
.whatsapp-float .whatsapp-icon {
  font-size: 1.45rem;
}
.newsletter label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}
.newsletter > div {
  display: flex;
  overflow: hidden;
  border: 1px solid rgb(180 138 66/0.28);
  border-radius: 7px;
  background: rgb(255 255 255/0.68);
}
.newsletter input {
  width: 100%;
  border: 0;
  background: none;
  padding: 11px 13px;
  outline: 0;
  color: var(--ink);
  font-size: 0.78rem;
}
.newsletter button {
  display: grid;
  place-items: center;
  width: 44px;
  border: 0;
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
}
.newsletter button:hover,
.newsletter button:focus-visible {
  background: var(--gold-dark);
  transform: translateX(1px);
  outline: 0;
}
.form-error {
  min-height: 18px;
  display: block;
  color: var(--error);
  font-size: 0.68rem;
}
.footer__disclaimer {
  max-width: 1100px;
  margin: 26px 0 14px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.55;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.62rem;
}
/* 7. Overlays, forms and utilities */
.whatsapp-float {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #128c4a;
  border-radius: 7px;
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgb(18 140 74/0.22);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
}
.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: linear-gradient(135deg, #20bd5a 0%, #0f7a40 100%);
  box-shadow: 0 14px 26px rgb(18 140 74/0.3);
  text-decoration: none;
  transform: translateY(-2px);
  outline: 0;
}
.mobile-cta {
  display: none;
}
.toast {
  position: fixed;
  z-index: 500;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.modal,
.lightbox {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}
.modal[hidden],
.lightbox[hidden] {
  display: none;
}
.modal__overlay,
.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgb(15 12 8/0.78);
  backdrop-filter: blur(4px);
}
.modal__card {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100dvh - 36px);
  overflow: auto;
  padding: clamp(26px, 5vw, 52px);
  background: var(--paper);
  box-shadow: var(--modal-shadow);
}
.modal__card--preview {
  width: min(360px, calc(100vw - 34px));
  max-height: calc(100dvh - 20px);
  padding: 0;
  overflow: visible;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}
.modal__card--preview .modal__close {
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  color: var(--gold-dark);
  font-size: 0;
}
.modal__card--preview .modal__close .lucide {
  width: 18px;
  height: 18px;
}
.modal .modal-preview-form {
  width: 100%;
  height: auto;
  min-height: min(480px, calc(100dvh - 20px));
  margin-top: 0;
  padding: 28px 24px 24px;
  overflow: hidden;
}
.modal-preview-form h2 {
  margin: 0;
  color: var(--gold-dark);
  font-family: var(--heading);
  font-size: clamp(1.32rem, 1.45vw, 1.52rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.modal-preview-form .preview-form__field input {
  height: 46px;
}
.modal-preview-form .preview-form__field--message,
.modal-preview-form .preview-form__field textarea {
  min-height: 108px;
}
.modal-preview-form .preview-form__submit {
  margin-top: 28px;
}
.modal__close,
.lightbox__close {
  position: absolute;
  z-index: 4;
  right: 12px;
  top: 8px;
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  font-size: 2rem;
}
.modal__card > div > p {
  color: var(--body);
}
.modal form {
  margin-top: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.modal label {
  display: grid;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.modal input,
.modal select,
.modal textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  padding: 11px 12px;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
}
.modal input[aria-invalid="true"],
.modal select[aria-invalid="true"] {
  border-color: var(--error);
}
.modal textarea {
  resize: vertical;
}
.modal > label {
  margin-top: 14px;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.consent {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  margin: 14px 0;
}
.consent input {
  width: 18px;
  height: 18px;
  padding: 0;
}
.consent span {
  font-size: 0.66rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}
.form-status {
  min-height: 20px;
  color: var(--error);
  font-size: 0.75rem;
}
.submit-button {
  width: 100%;
  margin-top: 8px;
}
.submit-button.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.modal__success {
  text-align: center;
  padding: 30px;
}
.modal__success > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border: 1px solid var(--success);
  border-radius: 50%;
  color: var(--success);
  font-size: 2rem;
}
.modal__success h2 {
  font-size: 2.8rem;
}
.modal__success p {
  margin: 18px 0;
}
.lightbox__dialog {
  position: relative;
  width: min(1180px, 96vw);
  height: min(820px, 90vh);
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  background: #111;
}
.lightbox__dialog figure {
  height: 100%;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  overflow: hidden;
}
.lightbox__dialog img {
  width: 100%;
  height: 100%;
  max-height: calc(90vh - 70px);
  object-fit: contain;
  transition: transform 0.25s;
}
.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  padding: 12px 6px;
  color: #fff;
  font-size: 0.8rem;
}
.lightbox__prev,
.lightbox__next {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff55;
  background: none;
  color: #fff;
  font-size: 1.4rem;
}
.lightbox__close {
  color: #fff;
}
/* 8. Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
[data-reveal="fade-left"] {
  transform: translateX(24px);
}
[data-reveal="fade-right"] {
  transform: translateX(-24px);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
@keyframes loading {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(330%);
  }
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* 9. Responsive */
@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .benefit-grid article:nth-child(3n) {
    border: 0;
  }
  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .amenity-grid button:nth-child(7n) {
    border-right: 1px solid var(--border);
  }
  .amenity-grid button:nth-child(4n) {
    border-right: 0;
  }
  .amenity-grid button:nth-last-child(-n + 7) {
    border-bottom: 1px solid var(--border);
  }
  .amenity-grid button:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .growth {
    grid-template-columns: 1fr 1fr;
  }
  .growth .legacy {
    grid-column: 1/-1;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item:first-child {
    grid-row: auto;
  }
  .gallery-item:nth-child(4) {
    grid-column: auto;
  }
}
@media (max-width: 900px) {
  :root {
    --header: 70px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #fff;
  }
  .hero__content {
    order: 2;
    padding: 46px 7vw 56px;
  }
  .hero__visual {
    order: 1;
    min-height: 430px;
    aspect-ratio: 16/10;
  }
  .hero__visual::before {
    width: 100%;
    height: 42%;
    inset: auto 0 0;
    background: linear-gradient(
      0deg,
      #fff 0%,
      rgb(255 255 255/0.86) 42%,
      transparent 100%
    );
  }
  .hero__visual::after {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .stats > div:nth-child(2) {
    border: 0;
  }
  .split,
  .residences,
  .location-explorer {
    grid-template-columns: 1fr;
  }
  .residences__visual {
    min-height: 520px;
    margin: 0 24px 70px;
  }
  .growth {
    grid-template-columns: 1fr;
  }
  .growth figure {
    min-height: 500px;
  }
  .growth .legacy {
    grid-column: auto;
  }
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 30px 34px;
  }
  .final-cta {
    grid-template-columns: 1fr;
  }
  .final-cta img {
    opacity: 0.12;
    width: 70%;
  }
}
@media (max-width: 767px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }
  .site-header {
    height: 70px;
    padding-inline: 18px;
  }
  .site-header .site-header__brand img,
  .site-header.is-scrolled .site-header__brand img {
    width: 118px;
  }
  .header-cta {
    display: none;
  }
  .hero__content {
    padding: 34px 20px 42px;
  }
  .hero .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }
  .hero__location {
    gap: 12px;
    margin: 14px 0 20px;
    font-size: clamp(1.04rem, 7vw, 1.55rem);
    letter-spacing: 0.26em;
  }
  .hero__location::before,
  .hero__location::after {
    width: 36px;
  }
  .hero h2 {
    font-size: clamp(1.38rem, 6vw, 1.82rem);
  }
  .hero__description {
    font-size: 0.92rem;
  }
  .hero__features {
    grid-template-columns: 1fr 1fr;
    gap: 18px 8px;
    margin-top: 28px;
  }
  .hero__features span {
    min-height: 78px;
    padding: 0 4px;
  }
  .hero__features b {
    font-size: 0.62rem;
  }
  .hero__visual {
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .hero__visual img {
    animation: none;
  }
  .actions {
    flex-direction: column;
  }
  .actions .button {
    width: 100%;
  }
  .stats {
    padding: 28px 10px 40px;
  }
  .stats > div {
    padding: 0 5px;
  }
  .stats strong {
    font-size: 1.6rem;
  }
  .stats__note {
    white-space: normal;
    width: 90%;
    text-align: center;
  }
  .section {
    padding: 72px 20px;
  }
  .split {
    gap: 50px;
  }
  .section-copy {
    padding: 0;
  }
  .framed-image::after {
    inset: 14px -8px -8px 14px;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }
  .benefit-grid article {
    padding: 8px 16px;
  }
  .benefit-grid article:nth-child(even) {
    border: 0;
  }
  .residences__content {
    padding: 72px 20px;
  }
  .residences__visual {
    min-height: 0;
    aspect-ratio: 4/3;
    margin: 0 20px 72px;
  }
  .amenity-grid {
    grid-template-columns: 1fr 1fr;
  }
  .amenity-grid button:nth-child(4n) {
    border-right: 1px solid var(--border);
  }
  .amenity-grid button:nth-child(2n) {
    border-right: 0;
  }
  .amenity-grid button:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .map-card {
    min-height: 420px;
  }
  .location-explorer__content {
    padding: 0;
  }
  .growth__copy {
    padding: 72px 20px;
  }
  .growth figure {
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .gallery {
    overflow: hidden;
  }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-right: 34px;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .gallery-item {
    flex: 0 0 88%;
    height: auto;
    aspect-ratio: 4/3;
    scroll-snap-align: start;
  }
  .final-cta {
    padding: 72px 20px;
  }
  .final-cta__benefits {
    display: grid;
  }
  .footer {
    padding: 38px 20px 82px;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer__main > div:first-child {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }
  .footer__main > div:first-child p {
    margin: 0;
    max-width: none;
    font-size: 0.76rem;
    line-height: 1.55;
  }
  .footer__brand {
    width: 124px;
    align-self: center;
  }
  .footer-whatsapp {
    text-align: center;
  }
  .footer-whatsapp p {
    margin-inline: auto;
  }
  .footer-whatsapp > a {
    margin-inline: auto;
  }
  .footer nav {
    gap: 7px;
  }
  .footer nav a {
    min-height: 28px;
    padding: 7px 10px;
    font-size: 0.62rem;
  }
  .footer__disclaimer {
    margin-top: 24px;
  }
  .footer__bottom {
    display: grid;
  }
  .mobile-cta {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--border);
    transform: translateY(120%);
    transition: 0.3s;
  }
  .mobile-cta.is-visible {
    transform: none;
  }
  .mobile-cta.is-hidden {
    display: none;
  }
  .mobile-cta a,
  .mobile-cta button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    background: #fff;
    color: var(--ink);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-cta button:last-child {
    background: var(--gold);
    color: #fff;
  }
  .whatsapp-float {
    bottom: 78px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .lightbox__dialog {
    grid-template-columns: 44px 1fr 44px;
  }
  .lightbox__prev,
  .lightbox__next {
    width: 40px;
  }
  .modal__card {
    padding: 32px 20px;
  }
  .modal__success {
    padding: 20px 0;
  }
}
@media (max-width: 430px) {
  body {
    font-size: 1rem;
  }
  .brand small {
    font-size: 0.48rem;
  }
  .hero__features b {
    font-size: 0.62rem;
  }
  .stats strong {
    font-size: 1.45rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 22px 12px;
  }
  .amenity-grid button {
    min-height: 104px;
  }
  .feature-list,
  .check-list {
    grid-template-columns: 1fr;
  }
  .tabs button {
    flex: 1;
    min-width: 0;
  }
  .legacy-stats {
    grid-template-columns: 1fr 1fr;
  }
  .map-card {
    min-height: 340px;
  }
  .lightbox {
    padding: 0;
  }
  .lightbox__dialog {
    width: 100vw;
    height: 100dvh;
  }
  .lightbox__dialog img {
    max-height: calc(100dvh - 70px);
  }
}
/* Final hero image sizing overrides */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 max(4vw, calc((100% - var(--container)) / 2));
  background: #fff;
  border-top: 1px solid rgb(180 138 66/0.22);
  border-bottom: 1px solid rgb(180 138 66/0.18);
  box-shadow: 0 6px 24px rgb(31 25 14/0.04);
}
.stats > div {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 2px;
  min-height: 148px;
  padding: 18px 22px 17px;
  text-align: center;
  border-right: 1px solid rgb(180 138 66/0.18);
}
.stats > div:nth-child(4) {
  border-right: 0;
}
.stats > div::before,
.stats > div::after {
  display: none;
}
.stats > div:hover {
  transform: none;
  box-shadow: none;
}
.stats i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0;
  line-height: 1;
}
.stats i::before {
  content: none;
}
.stats svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  stroke-width: 1.45;
}
.stats strong {
  display: block;
  color: var(--gold-dark);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.85rem, 2.45vw, 2.75rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.01em;
}
.stats strong small {
  display: block;
  margin-top: 8px;
  color: var(--gold-dark);
  font-family: "Marcellus", Georgia, serif;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stats p {
  max-width: 200px;
  margin-top: 7px;
  color: #16130f;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}
.stats__note {
  display: none;
}
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 20px;
  }
  .stats > div {
    min-height: 132px;
    padding: 18px 12px;
    border-right: 1px solid rgb(180 138 66/0.18);
  }
  .stats > div:nth-child(2) {
    border-right: 0;
  }
  .stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(180 138 66/0.18);
  }
}
@media (max-width: 767px) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 4px;
  }
  .stats > div {
    min-height: 88px;
    padding: 9px 3px 8px;
    border-right: 1px solid rgb(180 138 66/0.18);
    border-bottom: 0;
  }
  .stats > div:nth-child(2) {
    border-right: 1px solid rgb(180 138 66/0.18);
  }
  .stats > div:nth-child(4) {
    border-right: 0;
  }
  .stats i {
    width: 24px;
    height: 22px;
    margin-bottom: 2px;
    font-size: 0;
  }
  .stats i::before {
    font-size: 1.15rem;
  }
  .stats svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.55;
  }
  .stats strong {
    font-size: clamp(0.9rem, 3.5vw, 1.08rem);
    line-height: 0.9;
  }
  .stats strong small {
    margin-top: 3px;
    font-size: 0.42rem;
    letter-spacing: 0.03em;
  }
  .stats p {
    max-width: 76px;
    margin-top: 4px;
    font-size: 0.42rem;
    line-height: 1.15;
    letter-spacing: 0.025em;
  }
}
@media (max-width: 380px) {
  .stats > div {
    min-height: 82px;
    padding-inline: 2px;
  }
  .stats svg {
    width: 16px;
    height: 16px;
  }
  .stats strong {
    font-size: 0.82rem;
  }
  .stats strong small,
  .stats p {
    font-size: 0.38rem;
  }
}
.hero {
  min-height: calc(100svh - var(--header));
  grid-template-columns: minmax(500px, 42%) 1fr;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgb(255 255 255/0.94) 0%,
      rgb(255 255 255/0.86) 28%,
      rgb(255 255 255/0.58) 44%,
      rgb(255 255 255/0) 64%
    ),
    url("assets/images/hero/4s-sector-88b-hero.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero__content {
  padding: clamp(20px, 3.2vw, 42px) clamp(18px, 3vw, 46px)
    clamp(18px, 2.8vw, 38px) clamp(24px, 5.4vw, 76px);
}
.hero__visual {
  display: none;
}
.hero h1 {
  --hero-heading-size: clamp(3.5rem, 5.4vw, 6.1rem);
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
}
.hero h1::before,
.hero h1::after {
  display: inline-block;
  line-height: 0.96;
}
.hero h1::before {
  content: "";
  width: calc(var(--hero-heading-size) * 1.5);
  height: calc(var(--hero-heading-size) * 0.78);
  background-image: url("assets/images/brand/4s%20logo.webp");
  background-position: 85.51% 12%;
  background-repeat: no-repeat;
  background-size: 181.18% 173.86%;
  vertical-align: calc(var(--hero-heading-size) * -0.02);
}
.hero h1::after {
  content: "Sector 88B";
  margin-left: 0.14em;
  color: var(--ink);
  font-family: var(--heading);
  font-size: var(--hero-heading-size);
  font-weight: 600;
}
.hero h2 {
  max-width: none;
  font-size: clamp(1.22rem, 1.35vw, 1.6rem);
  white-space: nowrap;
}
.hero__location {
  margin: 10px 0 16px;
}
.hero__description {
  margin-top: 12px;
  line-height: 1.55;
}
.hero .actions {
  margin-top: 18px;
}
.hero__features {
  margin-top: 20px;
}
@media (max-width: 900px) {
  .hero__visual {
    place-items: center;
    padding: 18px 18px 0;
    min-height: 300px;
    aspect-ratio: 16/9;
  }
  .hero__visual img {
    width: min(92%, 720px);
    max-height: 300px;
    object-fit: contain;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - var(--header));
    background-position: center top;
  }
  .hero h2 {
    white-space: normal;
  }
  .hero__content {
    padding: 28px 7vw 36px;
  }
}
@media (max-width: 767px) {
  .hero {
    background-image:
      linear-gradient(90deg, rgb(255 255 255/0.94), rgb(255 255 255/0.72)),
      url("assets/images/hero/4s-sector-88b-hero.webp");
    background-position: 62% top;
  }
  .hero h1 {
    --hero-heading-size: clamp(2.1rem, 9.8vw, 4.15rem);
  }
  .hero__visual {
    display: none;
  }
  .hero__content {
    padding-top: 20px;
    padding-bottom: 28px;
  }
  .hero__features {
    margin-top: 18px;
  }
}
@media (max-width: 430px) {
  .hero h1 {
    --hero-heading-size: clamp(2.05rem, 9.8vw, 2.6rem);
  }
}
/* Overview single-view section */
#overview {
  max-width: none;
  min-height: clamp(520px, calc(100svh - var(--header)), 700px);
  display: grid;
  grid-template-columns: minmax(0, 51.5%) minmax(430px, 48.5%);
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: #fff;
  overflow: hidden;
  border-top: 1px solid rgb(180 138 66/0.18);
}
#overview .framed-image {
  position: relative;
  height: 100%;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  background: #efe6d5;
}
#overview .framed-image::after,
#overview .framed-image::before {
  display: none;
}
#overview .framed-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
#overview .section-copy {
  align-self: center;
  max-width: 650px;
  margin-inline: auto;
  padding: clamp(34px, 4vw, 58px) clamp(34px, 5.2vw, 72px);
}
#overview .section-copy::before {
  display: none;
}
#overview .section-copy > * {
  position: relative;
  z-index: 1;
}
#overview .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 7px 12px 7px 0;
  color: var(--gold-dark);
  background: linear-gradient(90deg, rgb(180 138 66/0.12), transparent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
#overview .eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
#overview h2 {
  max-width: 500px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-leading);
}
#overview .section-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--section-copy-color);
  font-size: var(--section-copy-size);
  font-weight: 600;
  line-height: var(--section-copy-leading);
}
@media (max-width: 900px) {
  #overview {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  #overview .framed-image {
    min-height: 320px;
    height: 38svh;
  }
  #overview .section-copy {
    max-width: none;
    padding: 38px 7vw 44px;
  }
  #overview h2 {
    font-size: clamp(2.4rem, 7.2vw, 3.8rem);
  }
}
@media (max-width: 767px) {
  #overview .framed-image {
    min-height: 220px;
    height: 30svh;
  }
  #overview .section-copy {
    padding: 30px 20px 34px;
  }
  #overview .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }
  #overview .eyebrow::before {
    width: 26px;
  }
  #overview h2 {
    font-size: var(--section-title-mobile-size);
  }
  #overview .section-copy > p:not(.eyebrow) {
    margin-top: 13px;
    font-size: var(--section-copy-mobile-size);
    line-height: 1.5;
  }
}
/* Why Prestige compact strip */
.why {
  max-width: none;
  min-height: 0;
  padding: 22px max(4vw, calc((100% - var(--container)) / 2)) 26px;
  background: #fff;
  border-block: 1px solid rgb(180 138 66/0.18);
}
.why .section-heading {
  max-width: none;
  margin: 0 auto 18px;
  text-align: center;
}
.why .section-heading .eyebrow,
.why .section-heading > p:last-child {
  display: none;
}
.why .section-heading h2 {
  font-family: "Marcellus", Georgia, serif;
  color: var(--gold-dark);
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.benefit-grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 0 auto;
}
.benefit-grid article {
  min-height: 158px;
  padding: 14px clamp(16px, 1.9vw, 30px) 0;
  text-align: center;
  border-right: 1px solid rgb(180 138 66/0.18);
}
.benefit-grid article:last-child {
  border-right: 0;
}
.benefit-grid svg {
  width: 30px;
  height: 30px;
  margin: 0 auto 14px;
  color: var(--gold);
  stroke-width: 1.55;
}
.benefit-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  margin: 0 auto 10px;
  color: var(--gold);
  font-size: 0;
}
.benefit-grid i::before {
  content: none;
}
.benefit-grid h3 {
  margin: 0 0 13px;
  color: #0f0d09;
  font-family: var(--font);
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.benefit-grid h3::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin: 9px auto 0;
  background: var(--gold);
}
.benefit-grid p {
  max-width: 190px;
  margin: 0 auto;
  color: #2f2b24;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.38;
}
@media (max-width: 1180px) {
  .why {
    padding-inline: 24px;
  }
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }
  .benefit-grid article {
    min-height: 158px;
    border-bottom: 1px solid rgb(180 138 66/0.16);
  }
  .benefit-grid article:nth-child(3n) {
    border-right: 0;
  }
  .benefit-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .why {
    padding: 22px 12px;
  }
  .why .section-heading {
    margin-bottom: 14px;
  }
  .why .section-heading h2 {
    font-size: 1rem;
  }
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .benefit-grid article {
    min-height: 124px;
    padding: 12px 6px 10px;
    border-right: 1px solid rgb(180 138 66/0.18);
    border-bottom: 1px solid rgb(180 138 66/0.16);
  }
  .benefit-grid svg,
  .benefit-grid .lucide {
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
  }
  .benefit-grid i {
    width: 30px;
    height: 26px;
    margin-bottom: 7px;
  }
  .benefit-grid article:nth-child(3n) {
    border-right: 0;
  }
  .benefit-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
  .benefit-grid h3 {
    font-size: 0.64rem;
    margin-bottom: 7px;
    line-height: 1.12;
    letter-spacing: 0;
  }
  .benefit-grid h3::after {
    width: 18px;
    height: 1px;
    margin-top: 6px;
  }
  .benefit-grid p {
    max-width: 96px;
    font-size: 0.58rem;
    line-height: 1.28;
  }
  .benefit-grid i::before {
    font-size: 1.35rem;
  }
}
@media (max-width: 430px) {
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .benefit-grid article {
    min-height: 118px;
    padding-inline: 4px;
    border-right: 1px solid rgb(180 138 66/0.18) !important;
  }
  .benefit-grid article:nth-child(3n) {
    border-right: 0 !important;
  }
  .benefit-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
  .benefit-grid h3 {
    font-size: 0.58rem;
  }
  .benefit-grid p {
    max-width: 88px;
    font-size: 0.54rem;
  }
}
/* Residences reference layout */
.residences {
  display: grid;
  grid-template-columns: minmax(390px, 36%) minmax(0, 64%);
  min-height: clamp(390px, 35vw, 460px);
  background: #fff;
  border-block: 1px solid rgb(180 138 66/0.18);
}
.residences__content {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: clamp(34px, 4vw, 62px) clamp(34px, 4.8vw, 72px);
}
.residences__content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  margin-bottom: 12px;
  padding: 7px 12px 7px 0;
  color: var(--gold-dark);
  background: linear-gradient(90deg, rgb(180 138 66/0.12), transparent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.residences__content .eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.residences__content h2 {
  max-width: 520px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-leading);
}
.residences__content > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 18px;
  color: #2f2b24;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
}
.residences .tabs,
.residences .residence-panel,
.residences__content > .button {
  display: none;
}
.residences .feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  width: 100%;
  max-width: 560px;
  margin: 36px 0 0;
  list-style: none;
}
.residences .feature-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 42px;
  color: #171610;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.18;
}
.residences .feature-list li::before {
  content: none;
}
.residences .feature-list li span {
  display: block;
  padding-top: 4px;
}
.residences__visual {
  position: relative;
  min-height: inherit;
  max-height: 460px;
  margin: 0;
  overflow: hidden;
  background: #efe6d5;
}
.residences__visual::before {
  display: none;
}
.residences__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: none;
}
.residences__visual:hover img {
  transform: none;
}
@media (max-width: 900px) {
  .residences {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .residences__content {
    padding: 42px 7vw;
  }
  .residences__visual {
    min-height: 380px;
    max-height: none;
    margin: 0;
  }
  .residences__content h2 {
    max-width: 680px;
  }
  .residences .feature-list {
    max-width: 680px;
  }
}
@media (max-width: 767px) {
  .residences__content {
    padding: 34px 20px;
  }
  .residences__content .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  .residences__content .eyebrow::before {
    width: 26px;
  }
  .residences__content h2 {
    font-size: var(--section-title-mobile-size);
  }
  .residences__content > p:not(.eyebrow) {
    font-size: 0.94rem;
  }
  .residences .feature-list {
    gap: 20px 16px;
    margin-top: 30px;
  }
  .residences .feature-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    font-size: 0.78rem;
  }
  .residences .feature-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.75rem;
  }
  .residences__visual {
    min-height: 260px;
  }
}
/* Lucide icon refinements */
.hero__features svg.feature-icon,
.feature-list--icons svg,
.final-cta__benefits svg {
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__features .feature-icon {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.hero__features span {
  gap: 6px;
  min-height: 72px;
}
.hero__features b {
  margin-top: 4px;
  color: #171610;
  font-size: 0.64rem;
  line-height: 1.28;
  letter-spacing: 0;
}
.feature-list--icons li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 9px;
}
.feature-list--icons li::before {
  display: none;
}
.feature-list--icons svg {
  width: 22px;
  height: 22px;
}
.final-cta__benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.final-cta__benefits svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.amenity-grid svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke-width: 1.55;
}
/* Amenities premium redesign */
.amenities {
  max-width: none;
  padding: clamp(58px, 6vw, 92px) max(24px, calc((100% - var(--container)) / 2));
  background: #fff;
}
.amenities .section-heading {
  max-width: 860px;
  margin-bottom: clamp(34px, 4vw, 52px);
}
.amenities .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 7px 12px 7px 0;
  background: linear-gradient(90deg, rgb(180 138 66/0.12), transparent);
  font-weight: 800;
}
.amenities .section-heading .eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.amenities .section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}
.amenity-grid {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgb(180 138 66/0.18);
  border-left: 1px solid rgb(180 138 66/0.18);
  background: #fff;
}
.amenity-grid article {
  min-width: 0;
  border-right: 1px solid rgb(180 138 66/0.18);
  border-bottom: 1px solid rgb(180 138 66/0.18);
  background: var(--paper);
}
.amenity-grid button {
  position: relative;
  width: 100%;
  min-height: 158px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  padding: 22px 18px;
  border: 0;
  background: transparent;
  text-align: center;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.amenity-grid button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(180 138 66/0.08), transparent 58%);
  opacity: 0;
  transition: opacity 0.25s;
}
.amenity-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 0;
  line-height: 1;
  transition: transform 0.25s;
}
.amenity-grid svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity-title {
  position: relative;
  display: block;
  max-width: 140px;
  color: #111;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.amenity-title::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 10px auto 0;
  background: var(--gold);
  transition: width 0.25s;
}
.amenity-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.amenity-grid button:hover,
.amenity-grid button[aria-pressed="true"] {
  z-index: 1;
  background: #fff;
  box-shadow: 0 18px 38px rgb(39 31 17/0.08);
}
.amenity-grid button:hover::before,
.amenity-grid button[aria-pressed="true"]::before {
  opacity: 1;
}
.amenity-grid button:hover i,
.amenity-grid button[aria-pressed="true"] i {
  transform: translateY(-3px);
}
.amenity-grid button:hover .amenity-title::after,
.amenity-grid button[aria-pressed="true"] .amenity-title::after {
  width: 48px;
}
.amenity-note {
  max-width: var(--container);
  min-height: 112px;
  margin: 0 auto;
  padding: 26px clamp(22px, 4vw, 46px);
  display: grid;
  grid-template-columns: 180px minmax(170px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-right: 1px solid rgb(180 138 66/0.18);
  border-bottom: 1px solid rgb(180 138 66/0.18);
  border-left: 1px solid rgb(180 138 66/0.18);
  background: linear-gradient(90deg, var(--ivory), #fff);
  text-align: left;
  color: var(--body);
}
.amenity-note span {
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.amenity-note strong {
  color: var(--ink);
  font: 600 clamp(1.55rem, 2vw, 2.1rem)/1 var(--heading);
}
.amenity-note p {
  max-width: 680px;
  color: #3d382f;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}
@media (max-width: 1180px) {
  .amenity-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .amenity-note {
    grid-template-columns: 150px 220px 1fr;
  }
}
@media (max-width: 767px) {
  .amenities {
    padding: 56px 20px;
  }
  .amenities .section-heading {
    margin-bottom: 30px;
  }
  .amenities .section-heading .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  .amenities .section-heading .eyebrow::before {
    width: 26px;
  }
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .amenity-grid button {
    min-height: 136px;
    padding: 18px 12px;
  }
  .amenity-grid svg {
    width: 30px;
    height: 30px;
  }
  .amenity-title {
    font-size: 0.62rem;
  }
  .amenity-grid small {
    font-size: 0.52rem;
  }
  .amenity-note {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 18px;
  }
  .amenity-note strong {
    font-size: 1.7rem;
  }
  .amenity-note p {
    font-size: 0.86rem;
  }
}
@media (max-width: 430px) {
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .amenity-grid button {
    min-height: 126px;
  }
  .amenity-title {
    max-width: none;
  }
}
/* Amenities compact strip */
.amenities {
  max-width: none;
  min-height: 0;
  padding: 22px max(4vw, calc((100% - var(--container)) / 2)) 26px;
  background: #fff;
  border-block: 1px solid rgb(180 138 66/0.18);
}
.amenities .section-heading {
  max-width: none;
  margin: 0 auto 18px;
  text-align: center;
}
.amenities .section-heading h2 {
  font-family: "Marcellus", Georgia, serif;
  color: var(--gold-dark);
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.amenities .section-heading > p,
.amenity-note {
  display: none;
}
.amenity-grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 0;
  margin: 0 auto;
  border: 0;
  background: transparent;
}
.amenity-grid article {
  min-height: 168px;
  padding: 8px clamp(14px, 1.9vw, 30px) 0;
  text-align: center;
  border: 0;
  border-right: 1px solid rgb(180 138 66/0.18);
  background: transparent;
}
.amenity-grid article:nth-child(5n) {
  border-right: 0;
}
.amenity-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  margin: 0 auto 10px;
  color: var(--gold);
  font-size: 0;
  line-height: 1;
}
.amenity-grid i::before {
  content: none;
}
.amenity-grid svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity-grid h3 {
  margin: 0 0 11px;
  color: #0f0d09;
  font-family: var(--font);
  font-size: clamp(0.78rem, 0.86vw, 0.94rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.amenity-grid h3::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin: 8px auto 0;
  background: var(--gold);
}
.amenity-grid p {
  max-width: 190px;
  margin: 0 auto;
  color: #2f2b24;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.36;
}
@media (max-width: 1180px) {
  .amenities {
    padding-inline: 24px;
  }
  .amenity-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .amenity-grid article {
    padding-inline: 14px;
  }
}
@media (max-width: 900px) {
  .amenity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0;
  }
  .amenity-grid article {
    min-height: 126px;
    padding: 12px 7px 10px;
    border-right: 1px solid rgb(180 138 66/0.18);
    border-bottom: 1px solid rgb(180 138 66/0.16);
  }
  .amenity-grid article:nth-child(n + 10) {
    display: none;
  }
  .amenity-grid article:nth-child(3n) {
    border-right: 0;
  }
  .amenity-grid article:nth-child(n + 7):nth-child(-n + 9) {
    border-bottom: 0;
  }
  .amenity-grid svg {
    width: 20px;
    height: 20px;
    margin-bottom: 7px;
  }
  .amenity-grid i {
    width: 28px;
    height: 24px;
    margin-bottom: 7px;
  }
  .amenity-grid h3 {
    font-size: 0.62rem;
    margin-bottom: 7px;
    line-height: 1.12;
    letter-spacing: 0;
  }
  .amenity-grid h3::after {
    width: 18px;
    height: 1px;
    margin-top: 6px;
  }
  .amenity-grid p {
    max-width: 96px;
    font-size: 0.56rem;
    line-height: 1.25;
  }
  .amenity-grid i::before {
    font-size: 1.25rem;
  }
}
@media (max-width: 430px) {
  .amenity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .amenity-grid article {
    min-height: 118px;
    padding-inline: 4px;
    border-right: 1px solid rgb(180 138 66/0.18) !important;
  }
  .amenity-grid article:nth-child(3n) {
    border-right: 0 !important;
  }
  .amenity-grid article:nth-child(n + 7):nth-child(-n + 9) {
    border-bottom: 0;
  }
  .amenity-grid h3 {
    font-size: 0.56rem;
  }
  .amenity-grid p {
    max-width: 86px;
    font-size: 0.52rem;
  }
}
/* Location connectivity */
.location-connectivity {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(420px, 48%);
  min-height: clamp(340px, 31vw, 440px);
  overflow: hidden;
  background: #fff;
  border-block: 1px solid rgb(180 138 66/0.18);
}
.location-map {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: linear-gradient(135deg, #efe8d8, #fbf8ef);
  isolation: isolate;
}
.location-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(255 255 255/0.25), transparent 46%),
    url("assets/images/location/location-road.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(0.8);
}
.location-map:has(iframe)::before {
  display: none;
}
.location-map iframe {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(0.96);
}
.location-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgb(145 106 44/0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgb(145 106 44/0.12) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.65;
}
.location-map__road {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 36px;
  padding: 0 28px;
  background: #fffdf8;
  border: 1px solid rgb(180 138 66/0.3);
  box-shadow: 0 14px 40px rgb(40 31 15/0.08);
  color: #15120d;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.location-map__road--expressway {
  left: -8%;
  right: 17%;
  top: 44%;
  transform: rotate(-18deg);
}
.location-map__road--nh {
  left: 24%;
  right: -9%;
  top: 58%;
  transform: rotate(24deg);
}
.location-map__pin {
  position: absolute;
  z-index: 3;
  left: 53%;
  top: 47%;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  align-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  text-align: center;
  font: 600 1.18rem/1.05 var(--heading);
  box-shadow:
    0 0 0 12px rgb(180 138 66/0.18),
    0 24px 70px rgb(31 24 11/0.18);
}
.location-map__pin small {
  display: block;
  margin-top: 6px;
  font: 800 0.54rem/1 var(--font);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.location-map__label {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  background: rgb(255 253 248/0.92);
  border: 1px solid rgb(180 138 66/0.18);
  color: #2f2b24;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.location-map__label--airport {
  left: 11%;
  bottom: 20%;
}
.location-map__label--cyber {
  right: 12%;
  top: 22%;
}
.location-connectivity__content {
  align-self: center;
  height: max-content;
  max-width: 680px;
  padding: 24px clamp(28px, 4.5vw, 66px);
}
.location-connectivity .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 7px 12px 7px 0;
  background: linear-gradient(90deg, rgb(180 138 66/0.12), transparent);
  color: var(--gold-dark);
  font-weight: 800;
}
.location-connectivity .eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.location-connectivity h2 {
  max-width: 560px;
  font-size: clamp(2.25rem, 3vw, 3.45rem);
  line-height: 0.94;
}
.location-connectivity__content > p {
  max-width: 560px;
  margin-top: 14px;
  color: #2f2b24;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}
.connectivity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 16px 0 0;
  list-style: none;
}
.connectivity-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border-bottom: 1px solid rgb(180 138 66/0.18);
}
.connectivity-list i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--gold);
}
.connectivity-list svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.connectivity-list span {
  color: #111;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.connectivity-list strong {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}
.location-connectivity__content small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}
/* Floor plan card section */
.floor-plans {
  max-width: none;
  padding: clamp(20px, 2.5vw, 36px)
         clamp(28px, 5vw, 76px)
         clamp(46px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid rgb(180 138 66/0.18);
}
.floor-plans .section-heading {
  max-width: 760px;
  margin: 0 auto clamp(28px, 3vw, 40px);
  text-align: center;
}
.floor-plans .section-heading h2 {
  color: #0e1726;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.85rem, 2.5vw, 2.65rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.floor-plans .section-heading p {
  max-width: 690px;
  margin: 14px auto 0;
  color: #2f2b24;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.65;
}
.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.floor-plan-card {
  min-width: 0;
}
.floor-plan-card button {
  position: relative;
  width: 100%;
  min-height: 460px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 72px;
  align-content: stretch;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #ede7dc;
  box-shadow: 0 20px 44px rgb(27 22 13/0.14);
  color: #fff;
  text-align: center;
  isolation: isolate;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}
.floor-plan-card button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--plan-bg) center / cover no-repeat;
  filter: blur(3px);
  transform: scale(1.035);
}
.floor-plan-card button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(20 19 17/0.46);
  pointer-events: none;
}
.floor-plan-card button:hover,
.floor-plan-card button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgb(27 22 13/0.18);
}
.floor-plan-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 0;
  padding: 48px 32px 36px;
}
.floor-plan-card__content .lucide {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: #d7ac57;
  stroke-width: 1.35;
}
.floor-plan-card__content strong {
  color: #fff;
  font-family: var(--font);
  font-size: clamp(1.28rem, 1.6vw, 1.65rem);
  font-weight: 500;
  line-height: 1.1;
}
.floor-plan-card__content span {
  max-width: 280px;
  margin-top: 18px;
  color: rgb(255 255 255/0.92);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.55;
}
.floor-plan-card__cta {
  position: relative;
  z-index: 2;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #d9ad58, #bd8830);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.floor-plan-card__cta .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}
.floorplan-modal {
  position: fixed;
  z-index: 430;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.floorplan-modal[hidden] {
  display: none;
}
.floorplan-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgb(14 13 10/0.42);
  backdrop-filter: blur(5px);
}
.floorplan-modal__card {
  position: relative;
  width: min(360px, 100%);
  padding: 30px 30px 22px;
  border: 1px solid rgb(255 255 255/0.88);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgb(255 255 255/0.98), rgb(255 255 255/0.95)),
    var(--white);
  box-shadow:
    0 24px 70px rgb(17 14 8/0.22),
    0 2px 10px rgb(17 14 8/0.08);
  text-align: center;
  transform: translateY(0);
}
.floorplan-modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #1f2937;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.floorplan-modal__close:hover,
.floorplan-modal__close:focus-visible {
  background: rgb(14 39 68/0.07);
  color: #0e2744;
  transform: rotate(90deg);
}
.floorplan-modal__close .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}
.floorplan-modal__card h2 {
  margin-top: 2px;
  color: #101827;
  font-family: var(--font);
  font-size: clamp(1.28rem, 2vw, 1.42rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.floorplan-modal__intro {
  max-width: 255px;
  margin: 8px auto 0;
  color: #71717a;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.38;
}
.floorplan-modal form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  text-align: left;
}
.floorplan-modal label {
  display: grid;
  gap: 5px;
  color: #111827;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}
.floorplan-label-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.floorplan-modal label em {
  color: #7b766b;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}
.floorplan-field {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 44px;
  border: 1px solid #d8d3ca;
  border-radius: 2px;
  background: #fffefe;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.floorplan-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(180 138 66/0.13);
}
.floorplan-modal label .lucide {
  width: 17px;
  height: 17px;
  margin: 0 auto;
  color: #8a857d;
  stroke-width: 1.8;
}
.floorplan-modal input:not([type="hidden"]) {
  width: 100%;
  min-height: 44px;
  border: 0;
  padding: 10px 14px 10px 0;
  background: transparent;
  color: #171610;
  font-size: 0.86rem;
  font-weight: 500;
  outline: none;
}
.floorplan-modal input::placeholder {
  color: #8b8f98;
}
.floorplan-modal input[aria-invalid="true"] {
  outline: none;
}
.floorplan-modal .form-error,
.floorplan-modal .form-status {
  color: var(--error);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}
.floorplan-modal .honeypot,
.floorplan-modal .form-error:empty,
.floorplan-modal .form-status:empty {
  display: none;
}
.floorplan-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  justify-content: center;
  border-color: #0e2744;
  background: #0e2744;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 24px rgb(14 39 68/0.16);
}
.floorplan-submit:hover,
.floorplan-submit:focus-visible {
  border-color: #102f52;
  background: #102f52;
  transform: translateY(-1px);
}
.floorplan-submit .lucide {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  stroke-width: 1.9;
}
.floorplan-submit.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@media (max-width: 900px) {
  .location-connectivity {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .location-map {
    order: 2;
    min-height: 300px;
  }
  .location-connectivity__content {
    order: 1;
    max-width: none;
    padding: 28px 7vw;
  }
  .connectivity-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 720px;
    gap: 0;
  }
  .floor-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    max-width: 820px;
  }
  .floor-plan-card button {
    min-height: 420px;
  }
}
@media (max-width: 767px) {
  .location-map {
    min-height: 190px;
  }
  .location-map__pin {
    width: 96px;
    height: 96px;
    font-size: 1rem;
  }
  .location-map__road {
    height: 30px;
    padding-inline: 16px;
    font-size: 0.54rem;
  }
  .location-map__label {
    font-size: 0.54rem;
  }
  .location-connectivity__content {
    padding: 22px 12px 18px;
  }
  .location-connectivity .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  .location-connectivity .eyebrow::before {
    width: 26px;
  }
  .location-connectivity h2 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }
  .connectivity-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 14px;
  }
  .connectivity-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 5px;
    min-height: 104px;
    padding: 12px 4px 10px;
    border-right: 1px solid rgb(180 138 66/0.18);
    text-align: center;
  }
  .connectivity-list li:nth-child(4n) {
    border-right: 0;
  }
  .connectivity-list li:nth-child(n + 5) {
    border-bottom: 0;
  }
  .connectivity-list svg {
    width: 20px;
    height: 20px;
  }
  .connectivity-list i {
    width: 24px;
    height: 22px;
  }
  .connectivity-list span {
    font-size: 0.56rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
  }
  .connectivity-list strong {
    font-size: 0.6rem;
  }
  .floor-plans {
    padding: 34px 24px 40px;
  }
  .floor-plans .section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }
  .floor-plans .section-heading p {
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .floor-plan-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .floor-plan-card button {
    min-height: 400px;
  }
  .floor-plan-card__content {
    min-height: 0;
    padding: 40px 24px 28px;
  }
  .floorplan-modal__card {
    width: min(360px, calc(100vw - 32px));
    padding: 28px 22px 20px;
  }
}
/* Premium compact gallery: full section fits comfortably in one view. */
.gallery {
  max-width: none;
  width: 100vw;
  min-height: min(720px, calc(100svh - var(--header)));
  display: grid;
  align-content: center;
  gap: clamp(22px, 2.8vw, 32px);
  margin-inline: calc(50% - 50vw);
  padding: clamp(34px, 4.2vw, 50px) 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffdf8, #fbf7ef),
    var(--paper);
}
.gallery .section-heading {
  max-width: 760px;
  padding-inline: 20px;
  margin-bottom: 0;
}
.gallery .section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
}
.gallery-grid {
  width: 100vw;
  height: clamp(410px, 56svh, 580px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: clamp(8px, 0.75vw, 12px);
  margin: 0;
}
.gallery-item {
  min-width: 0;
  min-height: 0;
  border: 1px solid rgb(180 138 66/0.14);
  border-radius: 0;
  background: #efe8dc;
  box-shadow: none;
}
.gallery-item:first-child {
  grid-column: 1 / 6;
  grid-row: 1 / 6;
}
.gallery-item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1 / 4;
}
.gallery-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
}
.gallery-item:nth-child(4) {
  grid-column: 6 / 10;
  grid-row: 4 / 7;
}
.gallery-item:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 4 / 7;
}
.gallery-item:nth-child(6) {
  grid-column: 1 / 4;
  grid-row: 6 / 9;
}
.gallery-item:nth-child(7) {
  grid-column: 4 / 13;
  grid-row: 7 / 9;
}
.gallery-item img {
  transform: scale(1.001);
}
.gallery-item::after {
  background:
    linear-gradient(180deg, rgb(0 0 0/0.02), transparent 38%),
    linear-gradient(0deg, rgb(10 8 5/0.64), transparent 52%);
  opacity: 1;
}
.gallery-item span {
  z-index: 2;
  inset: auto 18px 16px;
  max-width: calc(100% - 36px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.08em;
  opacity: 0;
  text-align: left;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}
.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
}
@media (max-width: 900px) {
  .gallery {
    min-height: 0;
    padding: 42px 0 46px;
  }
  .gallery .section-heading {
    padding-inline: 20px;
  }
  .gallery-grid {
    width: 100%;
    height: auto;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 34px 2px 20px;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    flex: 0 0 min(82vw, 520px);
    height: auto;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }
  .gallery-item span {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .gallery {
    padding: 36px 0 42px;
    gap: 22px;
  }
  .gallery-grid {
    padding-right: 20px;
  }
  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    flex-basis: 86%;
  }
}
/* Featured gallery carousel: one hero image with thumbnail navigation. */
.gallery {
  width: 100vw;
  max-width: none;
  min-height: min(760px, calc(100svh - var(--header)));
  display: grid;
  align-content: center;
  gap: clamp(16px, 2vw, 24px);
  margin-inline: calc(50% - 50vw);
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 3vw, 48px);
  overflow: hidden;
  border-block: 1px solid rgb(180 138 66/0.18);
  background: var(--paper);
  color: var(--ink);
}
.gallery .section-heading {
  max-width: none;
  margin: 0;
  padding: 0;
}
.gallery .section-heading h2 {
  max-width: none;
  color: var(--ink);
  text-align: center;
}
.gallery-grid {
  width: 100%;
  max-width: 1220px;
  height: clamp(430px, 61svh, 590px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(136px, 11vw, 160px);
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(10px, 1vw, 14px);
  margin: 0 auto;
}
.gallery-feature {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(180 138 66/0.42);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 18px 44px rgb(38 31 19/0.12);
}
.gallery-feature__image {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
}
.gallery-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.45s var(--ease);
}
.gallery-feature__image:hover img,
.gallery-feature__image:focus-visible img {
  transform: scale(1.025);
}
.gallery-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0/0.24), transparent 26%, transparent 74%, rgb(0 0 0/0.2)),
    linear-gradient(0deg, rgb(0 0 0/0.52), transparent 38%);
  pointer-events: none;
}
.gallery-feature figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 38px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 2;
  max-width: min(460px, 72vw);
  color: #fff;
  font-size: clamp(0.8rem, 1vw, 0.96rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: clamp(42px, 4vw, 56px);
  height: clamp(42px, 4vw, 56px);
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255/0.42);
  border-radius: 50%;
  background: rgb(2 13 9/0.38);
  color: #fff;
  backdrop-filter: blur(6px);
  transform: translateY(-50%);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: var(--gold-light);
  background: rgb(180 138 66/0.82);
  transform: translateY(-50%) scale(1.04);
}
.gallery-arrow--prev {
  left: clamp(14px, 2.8vw, 42px);
}
.gallery-arrow--next {
  right: clamp(14px, 2.8vw, 42px);
}
.gallery-arrow .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}
.gallery-thumbs {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--gallery-count, 6), minmax(0, 1fr));
  align-content: stretch;
  gap: 7px;
  padding-block: 1px;
}
.gallery-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgb(180 138 66/0.3);
  border-radius: 5px;
  padding: 0;
  background: var(--ivory);
  opacity: 0.72;
  transition:
    opacity 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateX(-3px);
}
.gallery-thumb.is-active {
  box-shadow: 0 0 0 2px rgb(180 138 66/0.3);
}
@media (max-width: 900px) {
  .gallery {
    min-height: 0;
    padding: 34px 14px 38px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    gap: 12px;
    padding: 0;
    overflow: visible;
  }
  .gallery-feature {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .gallery-thumbs {
    display: flex;
    width: 100%;
    height: auto;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }
  .gallery-thumb {
    flex: 0 0 min(34vw, 160px);
    height: auto;
    aspect-ratio: 16 / 9;
    scroll-snap-align: start;
  }
  .gallery-thumb:hover,
  .gallery-thumb:focus-visible,
  .gallery-thumb.is-active {
    transform: translateY(-2px);
  }
}
@media (max-width: 767px) {
  .gallery {
    padding: 30px 12px 34px;
  }
  .gallery-feature {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }
  .gallery-feature figcaption {
    max-width: calc(100% - 96px);
    font-size: 0.72rem;
  }
  .gallery-arrow {
    width: 40px;
    height: 40px;
  }
  .gallery-thumb {
    flex-basis: 38vw;
  }
}
/* Lucide icon system */
.lucide {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
button .lucide {
  pointer-events: none;
}
.drawer-close,
.modal__close,
.lightbox__close {
  display: grid;
  place-items: center;
  font-size: 0;
}
.drawer-close .lucide,
.modal__close .lucide,
.lightbox__close .lucide {
  width: 24px;
  height: 24px;
}
.whatsapp-float .lucide,
.lightbox__prev .lucide,
.lightbox__next .lucide,
.newsletter button .lucide {
  width: 20px;
  height: 20px;
}
.stats .lucide,
.benefit-grid .lucide {
  display: block;
  width: 30px;
  height: 30px;
  margin-inline: auto;
  color: var(--gold);
}
@media (max-width: 767px) {
  .stats .lucide {
    width: 15px;
    height: 15px;
    margin-bottom: 2px;
  }
  .benefit-grid .lucide {
    width: 18px;
    height: 18px;
    margin-bottom: 7px;
  }
}
@media (max-width: 380px) {
  .stats .lucide {
    width: 14px;
    height: 14px;
  }
  .benefit-grid .lucide {
    width: 16px;
    height: 16px;
  }
}
.feature-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
}
.residences .feature-list li::before,
.feature-list li::before,
.check-list li::before {
  content: none !important;
  display: none !important;
}
.feature-list .lucide,
.check-list .lucide {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--gold);
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.residences .feature-list li .lucide {
  width: 22px;
  height: 22px;
  margin-top: 0;
  color: var(--gold);
  stroke-width: 1.75;
}
.amenity-grid .lucide {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  color: var(--gold);
}
@media (max-width: 900px) {
  .amenity-grid .lucide {
    width: 18px;
    height: 18px;
    margin-bottom: 7px;
  }
}
@media (max-width: 430px) {
  .amenity-grid .lucide {
    width: 16px;
    height: 16px;
  }
}
.connectivity-list .lucide {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
@media (max-width: 767px) {
  .connectivity-list .lucide {
    width: 19px;
    height: 19px;
  }
}
.final-cta__benefits .lucide {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.modal__success .lucide {
  width: 28px;
  height: 28px;
}
.accordion-button .accordion-icon,
.accordion-button > .lucide {
  width: 22px;
  height: 22px;
  color: var(--gold);
  transition: transform 0.3s;
}
.accordion-button[aria-expanded="true"] .accordion-icon,
.accordion-button[aria-expanded="true"] > .lucide {
  transform: rotate(45deg);
}
/* Prestige Group legacy banner */
.prestige-legacy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(38%, 1fr) minmax(620px, 760px);
  align-items: center;
  min-height: min(690px, calc(100vh - 74px));
  padding: clamp(18px, 2vw, 28px) max(16px, calc((100% - 1540px) / 2 + 16px));
  overflow: hidden;
  background:
    #fffaf2
    url("assets/images/gallery/4s-sector-88b-gated-entrance.webp") center / cover no-repeat;
  border-block: 1px solid rgb(180 138 66/0.18);
  isolation: isolate;
}
.prestige-legacy::after {
  content: "";
  position: absolute;
  inset: clamp(12px, 1.45vw, 22px);
  z-index: 1;
  border: 1px solid rgb(180 138 66/0.42);
  pointer-events: none;
}
.prestige-legacy__panel {
  position: relative;
  z-index: 2;
  grid-column: 2;
  width: min(720px, 100%);
  justify-self: center;
  padding: clamp(34px, 4vw, 52px) clamp(22px, 3.4vw, 48px);
  text-align: center;
}
.prestige-legacy__panel::after {
  content: none;
}
.prestige-legacy__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 7px 12px 7px 0;
  background: linear-gradient(90deg, rgb(180 138 66/0.12), transparent);
  color: var(--gold-dark);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.prestige-legacy__kicker::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.prestige-legacy__divider {
  height: 1px;
  background: rgb(180 138 66/0.42);
}
.prestige-legacy h2 {
  max-width: 680px;
  margin-inline: auto;
  color: #0e1726;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.35rem, 3.25vw, 3.85rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.prestige-legacy h2 span,
.prestige-legacy h2 strong {
  display: block;
  font: inherit;
}
.prestige-legacy h2 strong {
  color: var(--gold-dark);
}
.prestige-legacy__divider {
  position: relative;
  width: min(690px, 100%);
  margin: 24px auto 18px;
}
.prestige-legacy__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
}
.prestige-legacy__stats {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.55fr 0.9fr;
  gap: 0;
  max-width: 690px;
  margin: 0 auto;
}
.prestige-legacy__stats article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 132px;
  padding: 4px clamp(12px, 1.35vw, 22px) 0;
  border-right: 1px solid rgb(180 138 66/0.26);
  border-bottom: 0;
}
.prestige-legacy__stats article:last-child {
  border-right: 0;
}
.prestige-legacy__stats .lucide {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: var(--gold);
}
.prestige-legacy__stats strong {
  color: #0e1726;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.9rem, 2.35vw, 2.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}
.prestige-legacy__stats strong small {
  display: block;
  margin-top: 2px;
  font: inherit;
  font-size: 0.54em;
  line-height: 1;
}
.prestige-legacy__stats span {
  margin-top: 8px;
  color: #171610;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.prestige-legacy__copy {
  max-width: 690px;
  margin: 0 auto;
  color: #2f2b24;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .prestige-legacy {
    grid-template-columns: 1fr;
    min-height: min(640px, calc(100vh - 74px));
    padding: 30px 5vw;
    background-position: center;
  }
  .prestige-legacy__panel {
    grid-column: 1;
    width: min(680px, 58vw);
    justify-self: end;
    padding: 34px 0 38px;
  }
}
@media (max-width: 900px) {
  .prestige-legacy {
    display: block;
    min-height: 0;
    padding: 330px 7vw 42px;
    background-color: #fffaf2;
    background-size: auto 360px;
    background-position: left top;
    background-repeat: no-repeat;
  }
  .prestige-legacy::after {
    content: none;
  }
  .prestige-legacy__panel {
    width: 100%;
    padding: 0;
  }
  .prestige-legacy__stats {
    grid-template-columns: 1fr 1fr;
  }
  .prestige-legacy__stats article {
    min-height: 128px;
    padding: 8px 12px 0;
    border-right: 1px solid rgb(180 138 66/0.22);
    border-bottom: 1px solid rgb(180 138 66/0.18);
  }
  .prestige-legacy__stats article:nth-child(even) {
    border-right: 0;
  }
  .prestige-legacy__stats article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .prestige-legacy {
    min-height: 0;
    display: block;
    padding: 250px 20px 34px;
    background-color: #fffaf2;
    background-size: auto 270px;
    background-position: left top;
    background-repeat: no-repeat;
  }
  .prestige-legacy::after {
    content: none;
  }
  .prestige-legacy__panel {
    width: 100%;
    padding: 0;
  }
  .prestige-legacy__kicker {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  .prestige-legacy__kicker::before {
    width: 26px;
  }
  .prestige-legacy h2 {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
    line-height: 1.04;
  }
  .prestige-legacy__divider {
    margin: 20px auto 16px;
  }
  .prestige-legacy__stats {
    grid-template-columns: 1fr 1fr;
  }
  .prestige-legacy__stats article {
    min-height: 128px;
    padding: 8px 10px 0;
    border-right: 1px solid rgb(180 138 66/0.22);
    border-bottom: 1px solid rgb(180 138 66/0.18);
  }
  .prestige-legacy__stats article:nth-child(even) {
    border-right: 0;
  }
  .prestige-legacy__stats article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .prestige-legacy__stats .lucide {
    width: 28px;
    height: 28px;
  }
  .prestige-legacy__stats strong {
    font-size: 2rem;
  }
  .prestige-legacy__stats span {
    font-size: 0.66rem;
  }
  .prestige-legacy__copy {
    font-size: 0.9rem;
  }
}
/* Unified main section headings: match the Residences title treatment. */
main > section#overview h2,
main > section:not(.hero) h2,
main > section:not(.hero) .section-heading h2,
main > section:not(.hero) .section-copy h2,
main > section:not(.hero) [class$="__content"] h2,
main > section:not(.hero) [class$="__copy"] h2 {
  color: var(--ink);
  font-family: var(--heading);
  font-size: var(--section-title-size);
  font-weight: 600;
  line-height: var(--section-title-leading);
  letter-spacing: 0;
  text-transform: none;
}
.heading-brand-4s {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  opacity: 1;
  vertical-align: baseline;
}
.heading-brand-4s__four {
  display: inline-block;
  position: relative;
  top: -0.18em;
}
main > section:not(.hero) .eyebrow,
.prestige-legacy__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 7px 12px 7px 0;
  background: linear-gradient(90deg, rgb(180 138 66/0.12), transparent);
  color: var(--gold-dark);
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
main > section:not(.hero) .eyebrow::before,
.prestige-legacy__kicker::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}
main > section:not(.hero) .section-heading > p:not(.eyebrow),
main > section:not(.hero) .section-copy > p:not(.eyebrow),
main > section:not(.hero) [class$="__content"] > p:not(.eyebrow),
main > section:not(.hero) [class$="__copy"] > p:not(.eyebrow),
.prestige-legacy__copy {
  color: var(--section-copy-color);
  font-family: var(--font);
  font-size: var(--section-copy-size);
  font-weight: 600;
  line-height: var(--section-copy-leading);
}
.residences__content > p:not(.eyebrow),
.location-connectivity__content > p,
.floor-plans .section-heading > p,
.prestige-legacy__copy {
  color: var(--section-copy-color);
  font-family: var(--font);
  font-size: var(--section-copy-size);
  font-style: normal;
  font-weight: 600;
  line-height: var(--section-copy-leading);
  letter-spacing: 0;
  text-transform: none;
}
.residences__content > p:not(.eyebrow) strong,
.location-connectivity__content > p strong,
.floor-plans .section-heading > p strong,
.prestige-legacy__copy strong {
  color: inherit;
  font: inherit;
}
@media (max-width: 767px) {
  main > section#overview h2,
  main > section:not(.hero) h2,
  main > section:not(.hero) .section-heading h2,
  main > section:not(.hero) .section-copy h2,
  main > section:not(.hero) [class$="__content"] h2,
  main > section:not(.hero) [class$="__copy"] h2 {
    font-size: var(--section-title-mobile-size);
  }
  main > section:not(.hero) .eyebrow,
  .prestige-legacy__kicker {
    margin-bottom: 12px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  main > section:not(.hero) .eyebrow::before,
  .prestige-legacy__kicker::before {
    width: 26px;
  }
  main > section:not(.hero) .section-heading > p:not(.eyebrow),
  main > section:not(.hero) .section-copy > p:not(.eyebrow),
  main > section:not(.hero) [class$="__content"] > p:not(.eyebrow),
  main > section:not(.hero) [class$="__copy"] > p:not(.eyebrow),
  .prestige-legacy__copy {
    font-size: var(--section-copy-mobile-size);
    line-height: 1.5;
  }
  .residences__content > p:not(.eyebrow),
  .location-connectivity__content > p,
  .floor-plans .section-heading > p,
  .prestige-legacy__copy {
    font-size: var(--section-copy-mobile-size);
    line-height: 1.5;
  }
}
/* Prestige Group split layout: clear visual + matching content typography. */
.prestige-legacy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center end;
  min-height: min(640px, calc(100vh - 74px));
  padding: clamp(18px, 2vw, 28px) max(18px, calc((100% - 1540px) / 2 + 18px));
  background:
    #fffaf2
    url("assets/images/gallery/4s-sector-88b-gated-entrance.webp") left center / cover no-repeat;
}
.prestige-legacy::after {
  inset: clamp(12px, 1.3vw, 20px);
  z-index: 3;
}
.prestige-legacy__visual {
  display: none;
}
.prestige-legacy__visual img {
  display: none;
}
.prestige-legacy__panel {
  position: relative;
  z-index: 2;
  width: min(760px, 49vw);
  padding: clamp(40px, 4vw, 58px) clamp(30px, 4.6vw, 70px);
  background: transparent;
  text-align: center;
}
.prestige-legacy h2 {
  max-width: 650px;
  margin-inline: auto;
  color: var(--ink);
  font-family: var(--heading);
  font-size: var(--section-title-size);
  font-weight: 600;
  line-height: var(--section-title-leading);
  letter-spacing: 0;
  text-transform: none;
}
.prestige-legacy h2 strong {
  color: var(--gold-dark);
}
.prestige-legacy__divider {
  width: min(620px, 100%);
  margin: 22px auto 18px;
}
.prestige-legacy__stats {
  grid-template-columns: 0.95fr 1fr 1.45fr 0.95fr;
  width: min(620px, 100%);
  max-width: none;
}
.prestige-legacy__stats article {
  min-height: 128px;
  padding: 6px clamp(12px, 1.15vw, 20px) 0;
}
.prestige-legacy__stats .lucide {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  stroke-width: 1.5;
}
.prestige-legacy__stats strong {
  font-family: var(--heading);
  font-size: clamp(2.05rem, 2.5vw, 3rem);
  font-weight: 600;
  line-height: 0.92;
}
.prestige-legacy__stats span {
  margin-top: 10px;
  font-size: clamp(0.64rem, 0.76vw, 0.76rem);
  line-height: 1.28;
}
.prestige-legacy__copy {
  width: min(620px, 100%);
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .prestige-legacy {
    min-height: 620px;
    background-position: 28% center;
  }
  .prestige-legacy__visual {
    display: none;
  }
  .prestige-legacy__panel {
    width: min(680px, 58vw);
    padding: 38px 4.8vw 44px;
  }
}
@media (max-width: 767px) {
  .prestige-legacy {
    min-height: 0;
    padding: 40px 20px 36px;
    background: #fffaf2;
    text-align: center;
  }
  .prestige-legacy__visual {
    display: none;
  }
  .prestige-legacy__panel {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .prestige-legacy__kicker {
    justify-content: center;
    margin-inline: auto;
    padding-inline: 0;
    background: transparent;
  }
  .prestige-legacy__kicker::before {
    display: none;
  }
  .prestige-legacy h2 {
    font-size: var(--section-title-mobile-size);
    line-height: var(--section-title-leading);
    text-align: center;
  }
  .prestige-legacy__stats {
    grid-template-columns: 1fr 1fr;
  }
  .prestige-legacy__stats article {
    min-height: 124px;
    padding: 10px 12px 0;
  }
  .prestige-legacy__copy {
    text-align: center;
  }
}
/* Private preview: single-viewport architectural enquiry section. */
.preview-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: min(720px, calc(100svh - 210px));
  min-height: 520px;
  overflow: hidden;
  background: #fbf8f1 url("assets/images/private-preview/private-preview-background.webp") center / cover no-repeat;
}
.preview-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(255 253 249/0.14) 0 54%, transparent 76%);
  pointer-events: none;
}
.preview-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 690px) 360px;
  align-items: center;
  gap: 96px;
  width: min(calc(100% - 96px), 1230px);
  max-width: 1230px;
  height: 100%;
  margin: 0 auto 0 max(48px, calc((100vw - 1366px) / 2 + 56px));
}
.preview-section__content {
  width: 100%;
  max-width: 690px;
  transform: translateY(-26px);
}
main > section.preview-section .preview-section__content h2 {
  max-width: 690px;
  color: #111a24;
  font-family: var(--heading);
  font-size: var(--section-title-size);
  font-weight: 600;
  line-height: var(--section-title-leading);
  letter-spacing: 0;
  text-wrap: nowrap;
  text-transform: none;
}
.preview-section__content h2 > span {
  display: block;
}
.preview-section__rule {
  width: 84px;
  height: 2px;
  margin: clamp(22px, 3vh, 30px) 0 clamp(22px, 3.2vh, 30px);
  background: var(--gold);
}
.preview-section__content > p {
  max-width: 650px;
  color: var(--section-copy-color);
  font-family: var(--font);
  font-size: var(--section-copy-size);
  font-weight: 600;
  line-height: var(--section-copy-leading);
}
.preview-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  max-width: 620px;
  margin-top: clamp(58px, 8vh, 72px);
}
.preview-benefits article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  min-height: 70px;
  padding: 0;
  text-align: center;
  border-right: 0;
}
.preview-benefits__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  border: 0;
  border-radius: 0;
  color: var(--gold-dark);
  background: transparent;
}
.preview-benefits__icon .lucide {
  width: 30px;
  height: 30px;
  color: currentColor;
  stroke-width: 1.8;
}
.preview-benefits h3 {
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}
.preview-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 360px;
  height: min(500px, calc(100% - 40px));
  padding: 30px 24px 24px;
  border: 1px solid rgb(180 138 66/0.5);
  border-radius: 14px;
  background: linear-gradient(180deg, rgb(255 253 249/0.97), rgb(251 247 239/0.95));
  box-shadow: 0 22px 48px rgb(59 43 20/0.14);
  backdrop-filter: blur(8px);
}
main > section.preview-section .preview-form h2 {
  margin: 0;
  color: var(--gold-dark);
  font-family: var(--heading);
  font-size: clamp(1.32rem, 1.45vw, 1.52rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.preview-form__rule {
  width: 76px;
  height: 2px;
  margin: 15px auto 22px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.preview-form__field {
  position: relative;
  display: block;
  margin-bottom: 11px;
}
.preview-form__field > .lucide {
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 1;
  width: 20px;
  height: 20px;
  color: #b17a21;
  stroke-width: 1.55;
  transform: translateY(-50%);
  pointer-events: none;
}
.preview-form__field--message {
  flex: 0 0 108px;
  min-height: 108px;
}
.preview-form__field--message > .lucide {
  top: 16px;
  transform: none;
}
.preview-form__field input,
.preview-form__field textarea {
  display: block;
  width: 100%;
  border: 1px solid rgb(180 138 66/0.34);
  border-radius: 6px;
  outline: 0;
  background: rgb(255 255 255/0.88);
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.45;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.preview-form__field input {
  height: 46px;
  padding: 11px 14px 11px 54px;
}
.preview-form__field textarea {
  height: 100%;
  min-height: 108px;
  padding: 14px 14px 12px 54px;
  resize: none;
}
.preview-form__field input::placeholder,
.preview-form__field textarea::placeholder {
  color: #7d7d7b;
  opacity: 1;
}
.preview-form__field input:focus,
.preview-form__field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(180 138 66/0.12);
}
.preview-form__field input[aria-invalid="true"] {
  border-color: var(--error);
}
.preview-form .form-error {
  position: absolute;
  left: 4px;
  top: calc(100% + 2px);
  z-index: 2;
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.2;
}
.preview-form .form-error:empty,
.preview-form .form-status:empty {
  display: none;
}
.preview-form .form-status {
  margin: 6px 0 8px;
  color: var(--error);
  font-size: 0.74rem;
  line-height: 1.3;
  text-align: center;
}
.preview-form .form-status.is-success {
  color: var(--success);
}
.preview-form__submit {
  position: relative;
  flex: 0 0 auto;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  border: 1px solid #aa761f;
  border-radius: 6px;
  background: linear-gradient(135deg, #d9a640 0%, #b98224 48%, #976114 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgb(111 73 18/0.2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.preview-form__submit:hover {
  background: linear-gradient(135deg, #c89434 0%, #a8721c 52%, #84520f 100%);
  box-shadow: 0 14px 26px rgb(111 73 18/0.24);
}
.preview-form__submit .lucide {
  position: absolute;
  right: 18px;
  width: 18px;
  height: 18px;
}
.preview-form__submit.is-loading .lucide {
  display: none;
}
.preview-form__submit.is-loading::after {
  content: "";
  position: absolute;
  right: 30px;
  width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@media (max-width: 1240px) {
  .preview-section {
    height: auto;
    min-height: 0;
    background-position: 66% center;
  }
  .preview-section__inner {
    grid-template-columns: 1fr;
    gap: 54px;
    max-width: 860px;
    height: auto;
    margin: 0;
    padding: 88px 52px;
  }
  .preview-section__content {
    max-width: 790px;
    transform: none;
  }
  .preview-form {
    justify-self: center;
    width: min(100%, 360px);
    height: 500px;
  }
}
@media (min-width: 1241px) and (max-height: 1000px) {
  .preview-form {
    height: min(500px, calc(100% - 40px));
    padding-top: clamp(24px, 4vh, 32px);
    transform: none;
  }
}
@media (max-width: 767px) {
  .preview-section {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    background-position: 72% bottom;
  }
  .preview-section::after {
    background: rgb(255 253 249/0.38);
  }
  .preview-section__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 38px;
    padding: 108px 22px 68px;
    justify-items: center;
  }
  .preview-section__content {
    width: min(100%, 440px);
    margin-inline: auto;
    text-align: center;
  }
  main > section.preview-section .preview-section__content h2 {
    font-size: var(--section-title-mobile-size);
    line-height: var(--section-title-leading);
    text-wrap: balance;
    text-align: center;
  }
  .preview-section__content h2 > span {
    display: inline;
  }
  .preview-section__content h2 > span + span::before {
    content: " ";
  }
  .preview-section__rule {
    width: 68px;
    margin: 28px auto 24px;
  }
  .preview-section__content > p {
    margin-inline: auto;
    font-size: var(--section-copy-mobile-size);
    line-height: 1.55;
    text-align: center;
  }
  .preview-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    margin: 34px auto 0;
  }
  .preview-benefits article,
  .preview-benefits article:first-child,
  .preview-benefits article:last-child {
    justify-items: center;
    align-content: start;
    min-height: 0;
    padding: 0;
    text-align: center;
    border-right: 0;
    border-bottom: 0;
  }
  .preview-benefits__icon {
    justify-self: center;
    width: 28px;
    height: 28px;
    margin: 0 0 8px;
  }
  .preview-benefits__icon .lucide {
    width: 28px;
    height: 28px;
  }
  .preview-benefits h3 {
    padding-left: 0;
    font-size: 0.6rem;
    line-height: 1.18;
  }
  .preview-form {
    height: 500px;
    padding: 26px 18px 22px;
    border-radius: 14px;
  }
  main > section.preview-section .preview-form h2 {
    font-size: clamp(1.35rem, 6.4vw, 1.7rem);
    white-space: normal;
  }
  .preview-form__field input {
    padding-left: 60px;
  }
  .preview-form__field textarea {
    padding-left: 60px;
  }
  .preview-form__field > .lucide {
    left: 18px;
    width: 24px;
    height: 24px;
  }
  .preview-form__submit {
    font-size: 0.78rem;
  }
}
/* 10. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .loader {
    display: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero__visual img {
    animation: none;
  }
}


/* JR Real Buildwell shared site branding */
.site-header__brand img {
  width: clamp(190px, 14vw, 220px);
  max-height: 72px;
}
.site-header.is-scrolled .site-header__brand img {
  width: 190px;
}
.mobile-drawer .brand--image img {
  width: 190px;
  max-width: 78%;
}
.footer__brand {
  width: 205px;
}
@media (max-width: 767px) {
  .site-header .site-header__brand img,
  .site-header.is-scrolled .site-header__brand img {
    width: 162px;
  }
  .mobile-drawer .brand--image img {
    width: 172px;
  }
  .footer__brand {
    width: 178px;
  }
}
