:root {
  --green: #06231d;
  --green-2: #0a332a;
  --ivory: #f4efe4;
  --paper: #fbf6ec;
  --gold: #c8a96a;
  --gold-2: #d9c08a;
  --muted-gold: #b58a45;
  --ink: #102820;
  --muted: #6f756f;
  --line: rgba(15, 51, 43, 0.16);
  --shadow: 0 22px 70px rgba(15, 51, 43, 0.14);
  --shadow-soft: 0 34px 90px rgba(15, 51, 43, 0.12);
  --cream-deep: #efe5d5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 18px clamp(18px, 3.4vw, 52px);
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 18, 16, 0.62), rgba(3, 18, 16, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(6, 31, 26, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 112px;
  color: var(--gold-2);
  text-decoration: none;
}

.site-footer img {
  width: 100%;
  border-radius: 2px;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: rgba(248, 244, 236, 0.9);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-text strong {
  font-weight: 800;
}

.brand-text small {
  color: var(--gold-2);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 25px);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 13px 19px;
  color: var(--gold-2);
  background: rgba(224, 207, 170, 0.08);
  border: 1px solid rgba(224, 207, 170, 0.62);
  border-radius: 2px;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 90vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.hero picture,
.hero picture img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: 43% 16%;
  transform: scale(1.06);
  transform-origin: center center;
  filter: brightness(1.08) contrast(1.05);
  animation: heroKenBurns 20s ease-out forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 18, 16, 0.7) 0%, rgba(3, 18, 16, 0.62) 24%, rgba(3, 18, 16, 0.4) 50%, rgba(3, 18, 16, 0.1) 76%, rgba(3, 18, 16, 0.02) 100%),
    linear-gradient(0deg, rgba(3, 18, 16, 0.28), rgba(3, 18, 16, 0.02) 48%);
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.06) translate3d(-1%, -0.6%, 0);
  }

  to {
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero picture img {
    animation: none;
    transform: scale(1.015);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 5.6vw, 88px);
  padding-top: 42px;
}

.project-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  padding-bottom: 0;
  color: var(--gold-2);
  border-bottom: 0;
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.8rem, 5.3vw, 6rem);
  letter-spacing: 0;
}

.hero h1 {
  display: grid;
  gap: 8px;
  max-width: 680px;
  color: #fff;
  font-size: clamp(4.2rem, 6.8vw, 7.3rem);
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  font-size: 0.78em;
}

h2 {
  max-width: 860px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 4.05rem);
}

h3 {
  color: var(--green);
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 520px;
  margin: 18px 0 0;
  padding-top: 0;
  color: rgba(248, 244, 236, 0.78);
  border-top: 0;
  font-size: clamp(1.08rem, 1.25vw, 1.22rem);
  line-height: 1.45;
  white-space: nowrap;
}

.hero-value-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 760px;
  margin-top: 22px;
}

.hero-value-stack span {
  padding: 8px 11px;
  color: rgba(255, 248, 236, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 207, 170, 0.42);
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--green);
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.button.secondary {
  color: var(--gold-2);
  border-color: rgba(224, 207, 170, 0.56);
  background: rgba(255, 255, 255, 0.04);
}

.hero .button {
  min-width: 182px;
  color: #fff;
  background: transparent;
  border-color: rgba(200, 169, 106, 0.66);
  backdrop-filter: blur(10px);
}

.hero .button.primary {
  min-width: 228px;
  border-color: rgba(224, 207, 170, 0.72);
}

.hero .button.secondary {
  min-width: 128px;
  color: rgba(255, 248, 236, 0.82);
  border-color: rgba(224, 207, 170, 0.28);
  background: rgba(6, 31, 26, 0.08);
}

.hero .button.primary:hover,
.hero .button.primary:focus-visible {
  color: var(--green);
  background: var(--gold-2);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  color: var(--gold-2);
  border-color: rgba(224, 207, 170, 0.68);
  background: rgba(6, 31, 26, 0.22);
}

.facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 5;
  width: min(1320px, calc(100% - 72px));
  margin: -70px auto 0;
  padding: 0;
  background: rgba(6, 31, 26, 0.9);
  backdrop-filter: blur(16px);
  color: #fff;
  border: 1px solid rgba(200, 169, 106, 0.36);
  box-shadow: 0 28px 80px rgba(3, 18, 16, 0.28);
}

.facts div {
  position: relative;
  min-height: 118px;
  padding: 24px clamp(16px, 2vw, 28px) 24px clamp(54px, 4.2vw, 76px);
  border-right: 1px solid rgba(200, 169, 106, 0.28);
}

.facts div:last-child {
  border-right: 0;
}

.fact-icon {
  position: absolute;
  left: clamp(18px, 1.7vw, 28px);
  top: 29px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(200, 169, 106, 0.58);
  font-size: 0.88rem;
  line-height: 1;
}

.facts strong,
.facts span {
  display: block;
}

.facts strong {
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  color: var(--gold-2);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts span {
  margin-top: 8px;
  color: rgba(248, 244, 236, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.facts .fact-icon {
  margin-top: 0;
  display: grid;
}

.section {
  padding: clamp(54px, 6.8vw, 96px) clamp(18px, 5vw, 82px);
  scroll-margin-top: 96px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
  margin-bottom: clamp(24px, 3.8vw, 48px);
}

.section-heading.narrow {
  display: block;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow p:not(.eyebrow) {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 2.6vw, 30px);
}

.button.compact {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.76rem;
}

.button.dark-text {
  color: var(--green);
  border-color: rgba(200, 169, 106, 0.72);
  background: rgba(200, 169, 106, 0.1);
}

.why-clouthaus {
  background: var(--paper);
  padding-top: clamp(88px, 8vw, 118px);
  border-bottom: 1px solid rgba(184, 154, 94, 0.16);
}

.why-shortlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 38px);
  max-width: 1240px;
  margin: 0 auto;
}

.why-shortlist-grid article {
  padding-top: 20px;
  border-top: 1px solid rgba(200, 169, 106, 0.58);
}

.why-shortlist-grid h3 {
  font-size: clamp(1.22rem, 1.6vw, 1.58rem);
}

.why-shortlist-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.virtual-tour {
  color: #fff;
  background: #061f1a;
}

.virtual-tour-panel {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 58px) clamp(18px, 3.2vw, 42px);
  background:
    linear-gradient(180deg, rgba(3, 18, 16, 0.92), rgba(3, 18, 16, 0.78)),
    url("images/clouthaus-sky-lounge-deck-web.jpg") center / cover;
}

.virtual-tour-intro {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.virtual-tour-intro h2 {
  color: #fff;
}

.virtual-tour-intro p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(248, 244, 236, 0.78);
  line-height: 1.62;
}

.virtual-tour-frame {
  position: relative;
  z-index: 1;
  min-height: 680px;
  max-height: 820px;
  overflow: hidden;
  background: #071612;
  border: 1px solid rgba(200, 169, 106, 0.58);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.virtual-tour-frame iframe {
  display: block;
  width: 100%;
  height: 80vh;
  min-height: 680px;
  max-height: 820px;
  background: #071612;
  border: 0;
}

.why-address {
  background: var(--paper);
  border-bottom: 1px solid rgba(184, 154, 94, 0.18);
}

.why-address .section-heading.narrow {
  max-width: 680px;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
  background: transparent;
  border: 0;
}

.why-grid article {
  min-height: 0;
  padding: 22px 0 0;
  background: transparent;
  border-top: 1px solid rgba(200, 169, 106, 0.58);
}

.why-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.why-grid h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
}

.why-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro-editorial {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(210px, 0.42fr) minmax(340px, 1fr);
  gap: clamp(28px, 4.8vw, 72px);
  align-items: center;
}

.intro-copy {
  max-width: 680px;
}

.intro-copy h2 {
  margin-bottom: 24px;
}

.stat-list {
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(200, 169, 106, 0.46);
}

.stat-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid rgba(16, 40, 32, 0.14);
}

.stat-list div:last-child {
  border-bottom: 0;
}

.stat-list strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
}

.stat-list span {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-image img {
  aspect-ratio: 16 / 10;
}

.intro-copy p,
.split p,
.note-band p,
.lead-copy p,
.faq p {
  color: var(--muted);
}

.intro-copy p,
.split p,
.lead-copy p {
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.7;
}

.buyer-value-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 22px;
}

.buyer-value-list span {
  padding: 11px 12px;
  color: var(--green);
  background: rgba(184, 154, 94, 0.12);
  border: 1px solid rgba(184, 154, 94, 0.24);
  font-size: 0.86rem;
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-list dd {
  margin: 0;
  font-weight: 800;
}

.image-panel {
  margin: 0;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}

.layout-grid article {
  min-height: 260px;
  padding: 26px;
  background: var(--paper);
}

.layout-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.layout-grid p {
  min-height: 76px;
  color: var(--muted);
}

.layout-grid a {
  color: var(--green);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.layouts {
  padding-top: clamp(34px, 4.6vw, 58px);
  padding-bottom: clamp(34px, 4.6vw, 60px);
  overflow: hidden;
  background: var(--paper);
}

.layouts .section-heading.narrow {
  margin-bottom: clamp(12px, 1.5vw, 18px);
}

.layouts .section-heading.narrow h2 {
  font-size: clamp(1.95rem, 3vw, 2.85rem);
}

.layouts .section-heading.narrow p:not(.eyebrow) {
  margin-top: 8px;
}

.layout-fit {
  max-width: 1240px;
  margin: 0 auto;
}

.layout-fit .section-heading.narrow {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: end;
  margin-bottom: 14px;
}

.layout-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(184, 154, 94, 0.28);
  border: 1px solid rgba(184, 154, 94, 0.28);
}

.layout-fit-grid article {
  min-height: 126px;
  padding: clamp(14px, 1.55vw, 18px);
  background: rgba(255, 250, 241, 0.9);
}

.layout-fit-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.layout-fit-grid h3 {
  font-size: clamp(1.04rem, 1.18vw, 1.22rem);
}

.layout-fit-grid p {
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.92rem;
}

.floor-plan-module {
  max-width: 1500px;
  margin: 0 auto;
  color: var(--ink);
}

.floor-tabs {
  display: grid;
  grid-template-columns: repeat(11, minmax(74px, 1fr));
  gap: 10px;
  align-items: end;
  margin-bottom: clamp(12px, 1.6vw, 20px);
  border-bottom: 1px solid rgba(15, 51, 43, 0.12);
}

.floor-tabs button {
  min-height: 46px;
  padding: 5px 6px 9px;
  color: rgba(26, 34, 31, 0.48);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floor-tabs strong {
  display: block;
  margin-top: 4px;
  color: inherit;
  font-size: 1.08rem;
  font-weight: 500;
}

.floor-tabs button[aria-selected="true"] {
  color: var(--green);
  border-bottom-color: var(--gold);
}

.floor-plan-hint {
  display: none;
}

.floor-plan-stage {
  position: relative;
  display: grid;
  min-height: 0;
  padding: clamp(14px, 1.6vw, 22px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(247, 241, 231, 0.72)),
    var(--paper);
  border: 1px solid rgba(184, 154, 94, 0.26);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.floor-plan-info {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 1.8vw, 24px);
  left: clamp(16px, 1.8vw, 24px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: min(460px, calc(100% - 48px));
  padding: 7px 8px;
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid rgba(184, 154, 94, 0.2);
  box-shadow: 0 10px 28px rgba(15, 51, 43, 0.08);
  backdrop-filter: blur(8px);
}

.plan-type {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floor-plan-info span {
  padding: 5px 7px;
  color: var(--green);
  background: rgba(184, 154, 94, 0.13);
  border: 1px solid rgba(184, 154, 94, 0.24);
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 800;
}

.floor-plan-viewer {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: min(62vh, 660px);
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.floor-plan-viewer img {
  width: 100%;
  max-width: 100%;
  max-height: min(62vh, 660px);
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(15, 51, 43, 0.12));
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 34px);
}

.plan-modal.is-open {
  display: flex;
}

.plan-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 18, 0.78);
}

.plan-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1180px, 94vw);
  height: min(820px, 90vh);
  padding: clamp(14px, 2vw, 24px);
  background: var(--paper);
  border: 1px solid rgba(224, 207, 170, 0.45);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.plan-modal-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 46px 14px 0;
}

.plan-modal-header h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.plan-modal-header .eyebrow {
  margin: 0;
}

.plan-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  color: var(--green);
  background: var(--gold-2);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 900;
}

.plan-modal-dialog img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

body.plan-modal-open {
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 1.02fr) minmax(280px, 0.98fr);
  gap: clamp(22px, 3.8vw, 52px);
  align-items: center;
  background: var(--cream-deep);
}

.image-panel.flush {
  box-shadow: none;
}

.image-panel.flush img {
  aspect-ratio: 6 / 5;
}

.interior-slider {
  overflow: hidden;
  color: var(--ivory);
  background: var(--green);
  box-shadow: var(--shadow-soft);
  touch-action: pan-y;
  user-select: none;
}

.interior-slides {
  position: relative;
  min-height: clamp(300px, 30vw, 430px);
}

.interior-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 1.2s ease;
}

.interior-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.interior-slide img,
.image-panel.flush .interior-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.interior-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(15, 51, 43, 0), rgba(15, 51, 43, 0.78));
  pointer-events: none;
}

.interior-slide figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 0;
  color: rgba(255, 248, 236, 0.94);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.interior-slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px 15px;
  border-top: 1px solid rgba(255, 248, 236, 0.12);
}

.image-note {
  color: rgba(255, 248, 236, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interior-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.interior-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  color: var(--gold-2);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.interior-dots button.is-active {
  width: 24px;
  background: currentColor;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) repeat(2, minmax(0, 0.7fr));
  grid-auto-rows: minmax(210px, 23vw);
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--green);
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 18, 16, 0.04), rgba(3, 18, 16, 0.58));
  pointer-events: none;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-feature {
  grid-row: span 2;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.spec-grid span,
.search-strip span {
  padding: 9px 11px;
  color: var(--green);
  background: rgba(184, 154, 94, 0.13);
  border: 1px solid rgba(184, 154, 94, 0.28);
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 750;
}

.wide-image {
  margin: 0;
  overflow: hidden;
  background: var(--green);
}

.wide-image img {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.facilities {
  color: #fff;
  background: #061f1a;
}

.layouts,
.layout-fit-section,
.facilities,
.location,
.fit-guide,
.split,
.note-band,
.faq,
.lead {
  padding-block: clamp(34px, 4.6vw, 64px);
}

.layouts .section-cta-row,
.location .section-cta-row {
  margin-top: clamp(14px, 1.8vw, 20px);
}

.facility-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.85fr);
  gap: clamp(22px, 3.4vw, 48px);
  align-items: stretch;
  max-width: 1380px;
  margin: 0 auto;
}

.facility-copy {
  display: grid;
  align-content: center;
}

.facilities h2,
.facilities h3 {
  color: #fff;
}

.facilities .eyebrow {
  color: var(--gold-2);
}

.facility-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(248, 244, 236, 0.7);
  line-height: 1.55;
}

.facilities .wide-image {
  border: 1px solid rgba(200, 169, 106, 0.32);
}

.facilities .facility-slider {
  min-width: 0;
  border-color: rgba(200, 169, 106, 0.38);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.facilities .facility-slider .interior-slides {
  min-height: clamp(380px, 42vw, 500px);
}

.facilities .wide-image img {
  height: clamp(380px, 42vw, 480px);
  max-height: 480px;
  aspect-ratio: auto;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 22px;
  background: rgba(200, 169, 106, 0.28);
  border: 1px solid rgba(200, 169, 106, 0.28);
}

.facility-grid article {
  min-height: 118px;
  padding: 18px;
  color: #fff;
  background: rgba(6, 31, 26, 0.88);
  border-left: 0;
}

.facility-grid h3 {
  color: var(--gold-2);
  font-size: 1.18rem;
}

.facility-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  font-size: 0.9rem;
}

.location {
  background: var(--ivory);
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.location-copy {
  display: grid;
  align-content: center;
}

.location-copy h2 {
  margin-bottom: 12px;
}

.location-copy h3 {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 154, 94, 0.32);
  color: var(--green);
  font-size: clamp(1.3rem, 1.8vw, 1.76rem);
}

.location-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.62;
}

.location-copy .button {
  justify-self: start;
  margin-top: 18px;
}

.map-panel {
  margin: 0;
  padding: clamp(8px, 1vw, 14px);
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid rgba(184, 154, 94, 0.2);
  box-shadow: 0 22px 60px rgba(15, 51, 43, 0.08);
  cursor: zoom-in;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.map-panel:hover,
.map-panel:focus-visible {
  border-color: rgba(184, 154, 94, 0.52);
  box-shadow: 0 26px 70px rgba(15, 51, 43, 0.14);
  transform: translateY(-2px);
}

.map-panel img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  pointer-events: none;
}

.location-moments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(184, 154, 94, 0.28);
  border: 1px solid rgba(184, 154, 94, 0.28);
}

.location-moments span {
  min-height: 54px;
  display: grid;
  align-items: center;
  padding: 11px 13px;
  color: var(--green);
  background: rgba(255, 250, 241, 0.86);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.38;
  text-transform: uppercase;
}

.location-moments span:last-child {
  grid-column: span 2;
}

.note-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 37, 31, 0.96), rgba(9, 37, 31, 0.86)),
    var(--green);
  border-top: 1px solid rgba(224, 207, 170, 0.2);
  border-bottom: 1px solid rgba(224, 207, 170, 0.2);
}

.note-band h2 {
  color: #fff;
}

.note-band p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.52;
}

.note-band .button {
  margin-top: 12px;
}

.fit-guide {
  background: var(--cream-deep);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(184, 154, 94, 0.28);
  border: 1px solid rgba(184, 154, 94, 0.28);
}

.fit-grid article {
  padding: clamp(20px, 2.2vw, 28px);
  background: rgba(255, 250, 241, 0.88);
}

.fit-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.24rem, 1.55vw, 1.56rem);
}

.fit-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.42;
}

.fit-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.faq {
  background: var(--paper);
}

.faq .section-heading.narrow {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(184, 154, 94, 0.28);
}

details {
  border-bottom: 1px solid rgba(184, 154, 94, 0.28);
  background: transparent;
}

summary {
  cursor: pointer;
  padding: 14px 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.42vw, 1.34rem);
}

details p {
  max-width: 760px;
  margin: 0 0 16px;
  line-height: 1.52;
}

.lead {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(300px, 0.92fr);
  gap: clamp(24px, 3.8vw, 56px);
  align-items: start;
  background: #0a231e;
}

.lead h2 {
  color: #fff;
}

.lead .eyebrow {
  color: var(--gold-2);
}

.lead-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: rgba(224, 207, 170, 0.22);
  border: 1px solid rgba(224, 207, 170, 0.22);
}

.lead-advisory-grid > div {
  padding: clamp(16px, 1.8vw, 22px);
  background: rgba(5, 26, 22, 0.58);
}

.lead-advisory-grid h3 {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
}

.lead-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-checklist li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(224, 207, 170, 0.18);
  font-weight: 750;
}

.lead-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 13px;
  height: 1px;
  background: var(--gold-2);
}

.lead-form {
  display: grid;
  gap: 9px;
  padding: clamp(20px, 2.3vw, 28px);
  color: var(--green);
  background: #fff;
  border: 1px solid rgba(224, 207, 170, 0.34);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.lead-iframe {
  height: 535px;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.lead-iframe iframe {
  display: block;
  background: #ece7dd;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(15, 51, 43, 0.22);
  border-radius: 3px;
  background: #fffdfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
  border: 1px solid var(--gold-2);
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.search-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 34px clamp(18px, 5vw, 76px);
  background: #eadfce;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(180px, 0.38fr) minmax(220px, 0.5fr);
  gap: clamp(24px, 4vw, 58px);
  padding: 38px clamp(18px, 5vw, 82px) 54px;
  color: rgba(255, 255, 255, 0.68);
  background: #071612;
}

.site-footer img {
  max-width: 150px;
  margin-bottom: 14px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold-2);
}

.sticky-cta {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 12px 18px;
  color: var(--green);
  background: var(--gold-2);
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  z-index: 36;
  right: 24px;
  bottom: 96px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #fff;
  background: #0a231e;
  border: 1px solid rgba(224, 207, 170, 0.72);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(224, 207, 170, 0.2);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.92);
  animation: whatsappPulse 4.8s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  display: grid;
  gap: 2px;
  width: max-content;
  max-width: 220px;
  padding: 12px 16px;
  color: #fff;
  background: #0a231e;
  border: 1px solid rgba(224, 207, 170, 0.72);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: normal;
}

.whatsapp-tooltip strong,
.whatsapp-tooltip small {
  display: block;
  line-height: 1.25;
  white-space: nowrap;
}

.whatsapp-tooltip strong {
  font-size: 15px;
  font-weight: 650;
}

.whatsapp-tooltip small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  border-color: rgba(224, 207, 170, 0.92);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  transform: scale(1.05);
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

@keyframes whatsappPulse {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  32% {
    opacity: 0.58;
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::before,
  .whatsapp-tooltip {
    animation: none;
    transition: none;
  }
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 72px;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(6, 31, 26, 0.98);
    border: 1px solid rgba(200, 169, 106, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    bottom: 8px;
    right: auto;
    width: 48px;
  }
}

@media (max-width: 1100px) {
  .facts,
  .facility-grid,
  .why-grid,
  .why-shortlist-grid,
  .layout-fit-grid,
  .lead-advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts div:last-child {
    grid-column: span 2;
  }

  .facts {
    width: min(900px, calc(100% - 36px));
  }

  .why-grid article:last-child {
    grid-column: span 2;
  }

  .floor-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .floor-tabs button {
    min-width: 92px;
  }

  .floor-plan-stage {
    min-height: 0;
  }

  .floor-plan-viewer {
    min-height: 50vh;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    height: 82vh;
    min-height: 660px;
  }

  .hero picture img {
    object-position: 48% 18%;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
    padding-top: 54px;
  }

  .hero-value-stack {
    gap: 7px;
    margin-top: 16px;
  }

  .hero-value-stack span {
    padding: 7px 9px;
    font-size: 0.66rem;
  }

  .project-kicker {
    margin-bottom: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .hero h1 {
    gap: 6px;
    font-size: clamp(3rem, 13vw, 4.5rem);
    line-height: 1;
  }

  .hero-copy {
    margin-top: 16px;
    padding-top: 0;
    font-size: 1rem;
    line-height: 1.55;
    white-space: normal;
  }

  .section-heading,
  .intro-grid,
  .intro-editorial,
  .virtual-tour-panel,
  .facility-panel,
  .split,
  .note-band,
  .lead,
  .site-footer,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 12px;
  }

  .section {
    padding-block: clamp(44px, 10vw, 68px);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-shortlist-grid,
  .layout-fit-grid,
  .lead-advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-panel,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .layout-fit .section-heading.narrow {
    grid-template-columns: 1fr;
  }

  .facility-copy {
    align-content: start;
  }

  .facilities .wide-image img {
    height: clamp(280px, 52vw, 390px);
  }

  .facilities .facility-slider .interior-slides {
    min-height: clamp(280px, 52vw, 390px);
  }

  .virtual-tour-frame,
  .virtual-tour-frame iframe {
    height: 65vh;
    min-height: 520px;
    max-height: none;
  }

  .why-grid article,
  .why-grid article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .location-copy {
    align-content: start;
  }

  .map-panel img {
    max-height: none;
  }

  .buyer-value-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-list {
    border-left: 0;
    border-top: 1px solid rgba(200, 169, 106, 0.46);
  }

  .stat-list div {
    padding-left: 0;
  }

  .image-panel img,
  .image-panel.flush img {
    aspect-ratio: 4 / 3;
  }

  .interior-slides {
    min-height: 270px;
  }

  .interior-slide figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 0.68rem;
  }

  .interior-slider-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .wide-image img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(190px, 36vw);
  }

  .gallery-feature {
    grid-column: span 2;
  }

  .map-panel {
    margin-inline: -18px;
    border-left: 0;
    border-right: 0;
  }

  .sticky-cta {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    z-index: 55;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1px;
    padding: 8px;
    background: rgba(6, 31, 26, 0.96);
    border-top: 1px solid rgba(200, 169, 106, 0.42);
    backdrop-filter: blur(14px);
  }

  .whatsapp-float {
    z-index: 56;
    right: 18px;
    bottom: 92px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .mobile-cta-bar a {
    width: min(360px, 100%);
    min-height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold-2);
    border: 1px solid rgba(200, 169, 106, 0.58);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }

  body {
    padding-bottom: 62px;
  }
}

@media (max-width: 767px) {
  .lead-iframe {
    height: 760px;
  }
}

@media (max-width: 560px) {
  .facility-grid,
  .spec-grid,
  .buyer-value-list,
  .why-shortlist-grid,
  .layout-fit-grid,
  .location-moments,
  .lead-advisory-grid {
    grid-template-columns: 1fr;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts div:last-child {
    grid-column: span 2;
  }

  .location-moments span:last-child {
    grid-column: auto;
  }

  .virtual-tour-panel {
    padding: 28px 20px;
  }

  .virtual-tour-frame,
  .virtual-tour-frame iframe {
    height: 60vh;
    min-height: 380px;
  }

  .virtual-tour-frame,
  .virtual-tour-frame iframe {
    min-height: 420px;
  }

  .facts {
    width: calc(100% - 28px);
    margin-top: -42px;
  }

  .facts div {
    min-height: 0;
    padding: 17px 12px 17px 48px;
  }

  .fact-icon {
    top: 19px;
    left: 15px;
  }

  .facts strong {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .facts span {
    font-size: 0.78rem;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero {
    min-height: 700px;
  }

  .hero .button {
    min-width: 0;
  }

  .why-address {
    padding-top: 72px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .floor-plan-module {
    margin-top: 0;
  }

  .floor-tabs {
    margin-inline: 0;
    padding-inline: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .floor-plan-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: 0;
    padding: 14px;
  }

  .floor-plan-viewer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 410px;
    overflow: hidden;
  }

  .floor-plan-viewer img {
    width: 100%;
    max-height: 410px;
  }

  .layouts .section-heading.narrow {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 18px;
  }

  .layouts .section-heading.narrow h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.75rem);
    overflow-wrap: break-word;
  }

  .layouts .section-heading.narrow p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.94rem;
  }

  .floor-plan-info {
    top: 4px;
    left: 6px;
    max-width: calc(100% - 24px);
    padding: 4px 6px;
  }

  .floor-plan-info span {
    width: auto;
    padding: 4px 6px;
    font-size: 0.62rem;
  }

  .plan-modal {
    padding: 10px;
  }

  .plan-modal-dialog {
    width: 96vw;
    height: 82vh;
  }

  .plan-modal-header {
    align-items: start;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .floor-plan-hint {
    display: none;
  }

  .floor-plan-stage {
    padding: 42px 4px 4px;
  }

  .floor-plan-viewer {
    justify-content: center;
    width: 126%;
    min-height: 0;
    margin-left: -4%;
    margin-right: -22%;
    padding: 2px 0;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .floor-plan-viewer img {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    max-height: none;
  }

  .plan-modal {
    padding: 8px;
  }

  .plan-modal-dialog {
    width: 96vw;
    height: auto;
    max-height: 90vh;
    overflow: auto;
  }

  .plan-modal-dialog img {
    width: auto;
    max-width: 96vw;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    place-self: center;
  }
}
