:root {
  --bg: #1f2622;
  --bg-panel: rgba(31, 38, 34, .88);
  --text: #f6f2e8;
  --muted: #cabfaf;
  --muted-soft: rgba(202, 191, 175, .65);
  --muted-dark: #414141;
  --gold-a: #d4af37;
  --gold-b: #f9f6ef;
  --gold-c: #d4af37;
  --accent: #CD9C6B;
  --surface: #CABFAF;
  --header-h: 92px;
  --radius: 28px;
  --radius-sm: 18px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg);
  background-image: url("../Image/Background.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--text);
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
main {
  padding-top: 0;
}
main>section+section {
  margin-top: 40px;
}
section {
  padding: 36px 4vw;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
p, li {
  font-size: 16px;
}
strong {
  font-weight: 600;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*header*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: none;
  z-index: 999;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: none;
  transform: translateY(-16px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.site-header.is-solid {
  background: rgba(31, 38, 34, .96);
  backdrop-filter: blur(8px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 12px 4vw;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.header-logo img {
  width: 140px;
}
.header-whatsapp-mobile {
  display: none!important;
}
/*buttons*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: box-shadow .3s ease, transform .3s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(120deg, var(--gold-a)0%, var(--gold-b)60%, var(--gold-c)100%);
  color: var(--muted-dark);
}
.btn-whatsapp:hover {
  box-shadow: 0 0 18px rgba(212, 175, 55, .55);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(249, 246, 239, .7);
  color: #fff;
}
.btn-ghost:hover {
  box-shadow: 0 0 18px rgba(249, 246, 239, .35);
}
/*hero*/
.hero {
  position: relative;
  width: 100%;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-media picture, .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(.85) contrast(1.0); */
}
.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 36px;
  padding: clamp(28px, 6vw, 120px);
  padding-top: clamp(100px, 18vh, 100px);
  background: linear-gradient(180deg, #124B83 0%, rgba(133, 141, 161, 0) 40%);
}
.hero-overlay>* {
  margin: 0;
}
.hero-eyebrow {
  letter-spacing: .22em;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  text-shadow: 0 0 18px rgba(0, 0, 0, .45);
}
.hero-title {
  font-size: clamp(42px, 6vw, 120px);
  text-transform: uppercase;
  color: #f6cf69;
  background: linear-gradient(120deg, #fdd164 0%, #f9f6ef 55%, #fdd164 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(0, 0, 0, .45);
}

.hero-lead {
  font-size: 22px;
  color: var(--muted);
  text-shadow: 0 0 18px rgba(0, 0, 0, .45);
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-secondary {
  background: none;
  border: none;
  color: #f9f6ef;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 6px;
  backdrop-filter: none;
  box-shadow: none;
  transition: color .5s ease, text-shadow .5s ease;
}
.hero-secondary:hover {
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 0 18px rgba(249, 246, 239, .75);
}
@keyframes hero-btn-pulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  30% {
    box-shadow: 0 0 16px rgba(212, 175, 55, .22);
  }
  52% {
    box-shadow: 0 0 32px rgba(212, 175, 55, .42);
  }
}
@keyframes hero-btn-scan {
  0% {
    transform: translateX(-140%);
    opacity: 0;
  }
  4% {
    opacity: .85;
  }
  65% {
    transform: translateX(140%);
    opacity: .9;
  }
  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}
/*section head*/
.section-head {
  max-width: 1600px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floorplans .section-head {
  align-items: center;
  text-align: center;
}
.section-eyebrow {
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-soft);
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
}
.section-lead {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
}
/*about*/
.about-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-copy {
  color: var(--text);
  opacity: .88;
  margin: 10px;
}
/*features*/
.features-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  padding: 22px 20px;
}
.feature-item p {
  margin: 0;
  padding: 0 8px;
  text-align: center;
}
.feature-icon {
  max-width: 80px;
  height: auto;
  filter: invert(1);
}
/*gallery*/
.gallery-carousel {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-track {
  display: flex;
  transition: transform .6s ease;
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}
.gallery-track.is-dragging {
  cursor: grabbing;
}

.gallery-slide {
  flex: 0 0 100%;
  padding: 0;
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #121a16;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #121a16;
}
.gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(31, 38, 34, .6);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gallery-control::before {
  content: "";
}
.gallery-prev {
  left: 16px;
}
.gallery-next {
  right: 16px;
}
.gallery-prev::before, .gallery-next::before {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .55);
}
.gallery-prev::before {
  content: "\2190";
}
.gallery-next::before {
  content: "\2192";
}
.gallery-control:hover {
  background: rgba(212, 175, 55, .7);
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.gallery-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .3s ease;
}
.gallery-dot.is-active {
  background: rgba(140, 140, 140, .95);
}
/*floorplans*/
.floorpill-group {
  max-width: 1600px;
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.floorpill {
  padding: 10px 28px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.floorpill.is-active {
  background: var(--accent);
  color: #fff;
}
.floorplans-display {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 32px;
}
.floorplans-media img {
  border-radius: var(--radius);
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.floorplans-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}
.floorplans-type {
  font-size: clamp(40px, 6vw, 54px);
  font-family: "Playfair Display", serif;
  margin: 0;
  text-align: center;
}
.floorplans-variant {
  font-size: 18px;
  color: rgba(255, 255, 255, .75);
  margin: 0;
  letter-spacing: .08em;
}
.floorplans-meta {
  width: 100%;
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 16px;
  margin: 0 auto;
  color: var(--text);
  position: relative;
  text-align: left;
}
.floorplans-meta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(212, 175, 55, 1.05);
  transform: translateX(-50%);
}
.floorplans-meta li {
  font-size: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: baseline;
}
.floorplans-meta li strong {
  font-weight: 600;
  font-size: 14px;
}
.floorplans-meta li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  text-align: left;
}
.floorplans-meta li:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  text-align: left;
}
.floorplans-meta li:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  text-align: left;
}
.floorplans-meta li:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
  text-align: left;
}
.floorplans-cta {
  margin-top: 20px;
  align-self: center;
}
/*connectivity*/
.connectivity-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
}
.connectivity-media img {
  border-radius: var(--radius-sm);
}
.connectivity-details {
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.connectivity-details .section-title {
  color: #2b2b2b;
  margin-top: 0;
}
.connectivity-group {
  padding-bottom: 20px;
}
.connectivity-group:last-child {
  padding-bottom: 0;
}
.connectivity-group h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(65, 65, 65, .25);
  color: #2b2b2b;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.connectivity-group ul {
  display: grid;
  gap: 10px;
}
.connectivity-group li {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #2b2b2b;
}
/*contact*/
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  border-radius: var(--radius);
}
.contact-card {
  position: relative;
  border-radius: calc(var(--radius) - 16px);
  padding: 40px;
  display: grid;
  gap: 24px;
  background:
    linear-gradient(150deg, rgba(18, 30, 25, .95), rgba(18, 30, 25, .95)) padding-box,
    linear-gradient(120deg, rgba(212, 175, 55, .85), rgba(249, 246, 239, .75)) border-box;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  box-shadow: 0 32px 46px rgba(0, 0, 0, .38);
}
.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.contact-field span {
  font-weight: 500;
  letter-spacing: .04em;
}
.contact-field input, .contact-field select, .contact-field textarea {
  background: rgba(18, 26, 22, .75);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  color: #f8f5eb;
}
.contact-field input::placeholder, .contact-field textarea::placeholder {
  color: rgba(255, 255, 255, .45);
}
.contact-field select {
  appearance: none;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23f9f6ef' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-tnc {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  text-align: center;
}
.contact-submit {
  align-self: center;
}
/*footer*/
.site-footer {
  padding: 28px 4vw 40px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}
/*dialog*/
.dialog, .lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.dialog[hidden], .lightbox[hidden] {
  display: none;
}
.dialog-card {
  background: var(--bg-panel);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  max-width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
}
.dialog-card.is-success {
  border-color: rgba(212, 175, 55, .55);
}
.dialog-card.is-error {
  border-color: rgba(255, 120, 120, .55);
}
.dialog-message {
  font-size: 16px;
}
.dialog-close {
  align-self: center;
}
.lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 80vh;
  border-radius: var(--radius-sm);
}
.lightbox.is-map img {
  background: #CABFAF;
  padding: 24px;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(31, 38, 34, .9);
  cursor: pointer;
}
.lightbox-close::before, .lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  z-index: 1200;
}
.floating-whatsapp-dialog {
  order: -1;
}
.floating-whatsapp.is-open .floating-whatsapp-toggle {
  transform: scale(1.02);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .46);
}
.floating-whatsapp-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .38);
  transition: transform .3s ease, box-shadow .3s ease;
}
.floating-whatsapp-toggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floating-whatsapp-toggle:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .44);
}
.floating-whatsapp-toggle:focus-visible {
  outline: 2px solid var(--gold-a);
  outline-offset: 4px;
}
.floating-whatsapp-dialog {
  position: relative;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: #ffffff;
  color: #000;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 24px 48px rgba(56, 41, 23, .3);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform-origin: bottom right;
  animation: floating-whatsapp-fade .24s ease;
}
.floating-whatsapp-dialog[hidden] {
  display: none;
}
.floating-whatsapp-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  color: rgba(31, 38, 34, .6);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease;
}
.floating-whatsapp-close:hover, .floating-whatsapp-close:focus-visible {
  color: #1f2622;
}
.floating-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.floating-whatsapp-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.floating-whatsapp-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #000;
}
.floating-whatsapp-lead {
  margin: 4px 0 0;
  font-size: 14px;
  color: #000;
}
.floating-whatsapp-copy {
  margin: 0;
  font-size: 15px;
  color: #000;
  padding: 16px 16px;
  border: 1px solid rgba(0, 0, 0, .22);
  border-radius: 14px;
}
.floating-whatsapp-cta {
  background: #25d366;
  color: #0b2c16;
  border: none;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(21, 87, 48, .45);
  padding-inline: 24px;
}
.floating-whatsapp-cta:hover, .floating-whatsapp-cta:focus-visible {
  background: #2fe371;
  color: #05210f;
  box-shadow: 0 14px 28px rgba(21, 87, 48, .5);
}
@keyframes floating-whatsapp-fade {
  from {
    opacity: 0;
    transform: scale(.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*utility*/
.icon-static {
  pointer-events: none;
}
/*responsive*/
@media(max-width:1400px) {
  .header-inner {
    padding-inline: 3vw;
  }
}
@media(max-width:1200px) {
  .about-inner {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media(max-width:1024px) {
  body {
    background-attachment: scroll;
  }
  section {
    padding-inline: 0;
  }
  main>section+section {
    margin-top: 32px;
  }
  .header-inner {
    padding-inline: 16px;
  }
  .header-whatsapp {
    display: none!important;
  }
  .header-whatsapp-mobile {
    display: inline-flex!important;
  }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  .hero-media picture, .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 5%;
    filter: none;
  }
  .hero-overlay {
    position: relative;
    z-index: 1;
    min-height: inherit;
    width: min(1024px, 100%);
    margin: 0 auto;
    padding: calc(32px + env(safe-area-inset-top)) 20px calc(32px + env(safe-area-inset-bottom));
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #124B83 0%, rgba(133, 141, 161, 0) 45%);
  }
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    width: min(420px, 100%);
    margin: 0 auto 8%;
    margin-top: auto;
  }
  .hero-primary {
    display: none;
  }
  .hero-secondary {
    width: 100%;
    background: linear-gradient(140deg, var(--gold-a)0%, var(--gold-b)65%, var(--gold-c)100%);
    background-size: 100% 100%;
    background-position: 0 0;
    color: var(--muted-dark);
    border: none;
    padding: 14px 30px;
    text-decoration: none;
    box-shadow: none;
    animation: hero-btn-pulse 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transform-origin: center;
    will-change: box-shadow;
    backface-visibility: hidden;
  }
  .hero-secondary::after {
    content: "";
    position: absolute;
    inset: -80% -140%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(249, 246, 239, .32) 38%, rgba(255, 255, 255, .82) 50%, rgba(249, 246, 239, .25) 62%, rgba(255, 255, 255, 0) 100%);
    filter: blur(0);
    opacity: 0;
    pointer-events: none;
    animation: hero-btn-scan 5.0s linear infinite;
  }
  .about-inner {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
  .about-media {
    order: 1;
    justify-items: center;
  }
  .about-content {
    order: 2;
    text-align: center;
    align-items: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 0;
  }
  .gallery-carousel {
    border-radius: 0;
  }
  .floorpill-group {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding-inline: 0;
  }
  .floorpill {
    width: 100%;
    padding: 12px 0;
  }
  .floorplans-display {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-inline: 0;
    text-align: center;
  }
  .floorplans-details {
    align-items: center;
    text-align: center;
  }
  .floorplans-cta {
    align-self: center;
  }
  .floorplans-media img {
    border-radius: 0;
    max-width: 100%;
  }
  .connectivity-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 0;
    padding: 24px 12px;
  }
  .connectivity-media {
    order: 1;
  }
  .connectivity-details {
    order: 2;
  }
  .contact-inner {
    border-radius: 0;
  }
  .contact-card {
    padding: 28px 12px;
    border-radius: 24;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-submit {
    align-self: center;
    width: 100%;
  }
  .site-footer {
    padding-inline: 12px;
  }
}
@media(max-width:640px) {
  .header-inner {
    padding-inline: 12px;
  }
  .header-logo img {
    width: 140px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .features-grid {
    gap: 18px;
  }
  .gallery-dots {
    gap: 10px;
  }
  .floorpill-group {
    grid-template-columns: repeat(4, 1fr);
  }
  .section-head {
    padding-inline: 12px;
  }
  .connectivity-inner {
    padding: 20px 12px;
  }
  .contact-card {
    gap: 20px;
  }
  .dialog-card {
    width: 100%;
    padding: 24px;
  }
  .floating-whatsapp {
    right: 16px;
    bottom: 20px;
    gap: 12px;
  }
  .floating-whatsapp-dialog {
    max-width: calc(100vw - 28px);
    padding: 20px;
    gap: 16px;
  }
  .floating-whatsapp-toggle {
    width: 58px;
    height: 58px;
  }
  .floating-whatsapp-avatar {
    width: 46px;
    height: 46px;
  }
}
