@font-face {
  font-family: "Optima";
  src: url("assets/fonts/optima/OPTIMA.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --plum: #542e44;
  --black: #000;
  --white: #fff;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f9f7f0;
  color: var(--black);
  font-family: "Optima", sans-serif;
  letter-spacing: 0.4px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1300px, 100%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-solid {
  background: var(--white);
}

.site-header.has-scrolled {
  box-shadow: 0 4px 18px rgba(42, 25, 35, 0.08);
  animation: slide-down 0.9s;
}

@keyframes slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  display: block;
  width: 164px;
  height: auto;
}

.site-nav {
  margin: auto 0 auto auto;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  padding: 8px 10px;
}

.site-nav a {
  display: inline-block;
  font-family: "Optima", sans-serif;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}

.site-nav a:not(.call-button) {
  position: relative;
}

.site-nav a:not(.call-button)::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: var(--plum);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.call-button {
  padding: 7px 17px;
  border: 2px solid var(--plum);
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.call-button:hover,
.call-button:focus-visible {
  background: var(--plum);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 37px;
  height: 37px;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--plum);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.menu-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  cursor: pointer;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
}

.hero-slide:first-child img {
  object-position: center 47%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 14, 29, 0.55) 0%,
      rgba(3, 14, 29, 0.17) 47%,
      rgba(3, 14, 29, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34) 0%, transparent 42%);
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding-top: clamp(125px, 20vh, 175px);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 80px));
  margin-left: 44px;
  padding: 20px 24px 0 44px;
  border-radius: 20px;
  background: rgba(112, 106, 88, 0.11);
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.hero-content:hover {
  background: rgba(30, 22, 31, 0.2);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.hero-content::before,
.hero-content::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  content: "";
}

.hero-content::before {
  top: -37px;
  bottom: 14px;
  left: 0;
  width: 1px;
}

.hero-content::after {
  top: 0;
  right: 8%;
  left: -44px;
  height: 1px;
}

.hero-content h1 {
  width: fit-content;
  margin: 7px 0 18px;
  padding: 0 3px 7px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  font-family: "Optima", sans-serif;
  font-size: clamp(45px, 3.2vw, 62px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 1.5px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-12px);
  transition:
    letter-spacing 0.35s ease,
    text-shadow 0.35s ease;
}

.hero-content:hover h1 {
  letter-spacing: 2.3px;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.85);
}

.hero-eyebrow {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  transition:
    opacity 0.3s ease,
    letter-spacing 0.35s ease;
}

.hero-content:hover .hero-eyebrow {
  letter-spacing: 2.7px;
  opacity: 0.9;
}

.hero-location {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 21px;
  padding: 9px 24px;
  background: linear-gradient(-45deg, #7700ff, #542e44, #542e44, #542e44);
  background-size: 400% 400%;
  font-size: 24px;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(84, 46, 68, 0.22);
  text-shadow: 0 3px 6px #261b07;
  animation: hero-dynamic-gradient 3s ease infinite;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.hero-location::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 28%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  content: "";
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.hero-location:hover {
  box-shadow: 0 12px 30px rgba(107, 0, 213, 0.32);
  transform: translateY(-2px);
}

.hero-location:hover::after {
  left: 120%;
}

.hero-type {
  margin: 0 0 24px;
  max-width: 735px;
  font-size: clamp(22px, 1.4vw, 26px);
  line-height: 1.42;
}

.hero-highlights {
  margin: 0 0 31px;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 23px;
  font-size: 26px;
  line-height: 1.35;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.hero-highlights li:hover {
  color: #fff4d8;
  transform: translateX(8px);
}

.hero-highlights .bi-stars {
  flex: 0 0 25px;
  width: 25px;
  color: currentColor;
  font-size: 27px;
  line-height: 1;
  text-align: center;
  transition:
    filter 0.3s ease,
    transform 0.35s ease;
}

.hero-highlights li:hover .bi-stars {
  filter: drop-shadow(0 0 7px rgba(255, 244, 216, 0.72));
  transform: rotate(12deg) scale(1.12);
}

.hero-price {
  width: fit-content;
  margin: 0 0 -1px;
  padding: 1px 0 1px 17px;
  background: var(--white);
  color: var(--black);
  font-size: 30px;
  line-height: 1.4;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.hero-price:hover {
  box-shadow: 0 13px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.hero-price strong {
  display: inline-block;
  margin-left: 5px;
  padding: 3px 10px;
  background: linear-gradient(-45deg, #7700ff, #542e44, #542e44, #542e44);
  background-size: 400% 400%;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 3px 6px #261b07;
  animation: hero-dynamic-gradient 3s ease infinite;
}

@keyframes hero-dynamic-gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  bottom: 48%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrow {
  width: 44px;
  height: 68px;
  padding: 0;
  border: 0;
  background: rgba(112, 106, 88, 0.5);
  color: var(--white);
  font:
    400 30px/1 "Optima",
    sans-serif;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(3px);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    width 0.25s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--plum);
  box-shadow: 0 8px 24px rgba(38, 15, 31, 0.34);
  width: 50px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 15px;
  left: 0;
  display: none;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
}

.hero-dots button.is-active {
  background: var(--white);
}

.overview-section {
  position: relative;
  z-index: 0;
  padding: 90px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 72% 35%,
      rgba(84, 46, 68, 0.055),
      transparent 29%
    ),
    #f9f7f0;
}

.overview-shell {
  width: 80%;
  margin-inline: auto;
  padding-inline: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 30px;
}

.overview-copy {
  padding-top: 1px;
}

.overview-copy h2 {
  margin: 0 0 31px;
  color: #202020;
  font-family: "Optima", sans-serif;
  font-size: clamp(35px, 2.35vw, 45px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: center;
}

.overview-copy p {
  margin: 10px 0;
  color: #282828;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 1.1px;
  text-align: justify;
}

.overview-text {
  position: relative;
  width: 100%;
  max-height: 285px;
  overflow: hidden;
  transition: max-height 0.55s ease;
}

.overview-text::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38px;
  background: linear-gradient(transparent, #f9f7f0);
  content: "";
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overview-text.is-expanded {
  max-height: 650px;
}

.overview-text.is-expanded::after {
  opacity: 0;
}

.overview-read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 7px 0 0 auto;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--plum);
  background: transparent;
  color: var(--plum);
  font:
    600 14px/1.2 "Optima",
    sans-serif;
  cursor: pointer;
}

.overview-read-more .bi {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.overview-read-more[aria-expanded="true"] .bi {
  transform: rotate(180deg);
}

.overview-copy strong {
  font-weight: 700;
}

.overview-copy a {
  color: #1500ff;
  font-weight: 700;
}

.read-more {
  padding: 0;
  border: 0;
  border-bottom: 2px solid var(--plum);
  background: transparent;
  color: var(--plum);
  font:
    700 inherit/1.1 "Optima",
    sans-serif;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.read-more:hover,
.read-more:focus-visible {
  border-color: #7700ff;
  color: #7700ff;
}

.overview-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.overview-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  padding: 10px 14px;
  overflow: hidden;
  border: 1px solid rgba(84, 46, 68, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.32);
  color: #1d1d1d;
  font-size: 16px;
  line-height: 1.2;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.overview-feature::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, #542e44, #7700ff, #542e44);
  background-size: 100% 250%;
  content: "";
  animation: feature-accent 3s ease infinite;
}

.overview-feature span {
  display: grid;
  gap: 7px;
}

.overview-feature strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.35px;
}

.overview-feature small {
  color: #555;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.25px;
}

.overview-feature .bi {
  flex: 0 0 32px;
  width: 32px;
  color: var(--plum);
  font-size: 30px;
  line-height: 1;
  text-align: center;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.overview-feature:hover {
  color: var(--plum);
  border-color: rgba(84, 46, 68, 0.5);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-4px);
}

.overview-feature:hover .bi {
  color: #7700ff;
  transform: scale(1.1) rotate(-4deg);
}

@keyframes feature-accent {
  0%,
  100% {
    background-position: 50% 0;
  }
  50% {
    background-position: 50% 100%;
  }
}

.overview-images {
  position: relative;
  min-height: 760px;
  isolation: isolate;
}

.overview-image-main,
.overview-image-overlap {
  display: block;
  border: 15px solid var(--white);
  object-fit: cover;
  box-shadow: 0 0 34px rgba(84, 46, 68, 0.26);
  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease;
}

.overview-image-main {
  width: 100%;
  height: 700px;
  object-position: center;
}

.overview-image-overlap {
  position: absolute;
  right: -24px;
  bottom: 0;
  width: 64%;
  height: 345px;
}

.overview-images:hover .overview-image-main {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(84, 46, 68, 0.22);
}

.overview-images:hover .overview-image-overlap {
  transform: translate(-4px, -4px);
  box-shadow: 0 18px 42px rgba(84, 46, 68, 0.28);
}

.overview-bottom {
  width: min(720px, 100%);
  margin: 42px auto 0;
  text-align: center;
}

.overview-bottom h3 {
  margin: 0 auto 22px;
  color: #202020;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.overview-brochure {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 285px;
  min-height: 52px;
  padding: 12px 24px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(
    115deg,
    #432438 0%,
    #633451 42%,
    #7b3f68 72%,
    #4a283e 100%
  );
  background-size: 220% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(84, 46, 68, 0.2);
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: luxury-button-gradient 6s ease infinite;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.overview-brochure::before,
.gallery-brochure::before {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 32%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.overview-brochure span,
.overview-brochure .bi,
.gallery-brochure span,
.gallery-brochure .bi {
  position: relative;
  z-index: 1;
}

.overview-copy .overview-brochure {
  color: var(--white);
  font-weight: 400;
}

.overview-brochure .bi {
  margin-left: 10px;
  font-size: 21px;
  animation: overview-download 1.5s infinite ease-in-out;
}

.overview-brochure:hover,
.overview-brochure:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(84, 46, 68, 0.3);
  transform: translateY(-4px) scale(1.015);
}

.overview-brochure:hover::before,
.overview-brochure:focus-visible::before,
.gallery-brochure:hover::before,
.gallery-brochure:focus-visible::before {
  left: 115%;
}

@keyframes overview-download {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(0);
  }
}

.gallery-section {
  position: relative;
  z-index: 0;
  padding: 90px 0;
  overflow: hidden;
  background: url("assets/images/hero/hero-facade.png") center / cover no-repeat;
}

.gallery-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(249, 247, 240, 0.91);
  content: "";
}

.gallery-heading {
  width: min(1300px, calc(100% - 30px));
  margin: 0 auto;
  padding-bottom: 48px;
  text-align: center;
}

.gallery-heading h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 18px;
  color: #161616;
  font-size: clamp(22px, 1.55vw, 29px);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.gallery-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 184px;
  height: 7px;
  background: linear-gradient(
    90deg,
    var(--plum) 0 50%,
    rgba(84, 46, 68, 0.14) 50%
  );
  content: "";
  transform: translateX(-50%);
}

.gallery-strip {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding-inline: 2.8%;
}

.gallery-card {
  position: relative;
  width: 17%;
  height: 600px;
  margin: 0;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
  transition:
    width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.4s ease;
}

.gallery-card.is-active {
  width: calc(27% - 15px);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, transparent 60%, rgba(35, 18, 29, 0.18));
  content: "";
  pointer-events: none;
  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.4s ease;
}

.gallery-card:not(.is-active) img {
  filter: saturate(0.82) brightness(0.9);
}

.gallery-card.is-active img {
  filter: none;
  transform: scale(1.035);
}

.gallery-card.is-active::after {
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, transparent 72%, rgba(84, 46, 68, 0.12));
}

.gallery-card:focus-visible {
  outline: 3px solid #7700ff;
  outline-offset: 3px;
}

.gallery-brochure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-width: 430px;
  margin: 70px auto 0;
  padding: 12px 25px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(
    115deg,
    #432438 0%,
    #633451 42%,
    #7b3f68 72%,
    #4a283e 100%
  );
  background-size: 220% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(84, 46, 68, 0.2);
  color: var(--white);
  font-size: 23px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: luxury-button-gradient 6s ease infinite;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.gallery-brochure .bi {
  font-size: 28px;
  animation: overview-download 1.5s infinite ease-in-out;
}

.gallery-brochure:hover,
.gallery-brochure:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(84, 46, 68, 0.3);
  transform: translateY(-4px) scale(1.015);
}

@keyframes luxury-button-gradient {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.price-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 72% 35%,
      rgba(84, 46, 68, 0.055),
      transparent 29%
    ),
    #f9f7f0;
}

.price-shell {
  position: relative;
  z-index: 1;
  width: min(1300px, calc(100% - 30px));
  margin: auto;
}

.price-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(84, 46, 68, 0.08);
  filter: blur(2px);
  pointer-events: none;
  animation: price-orb-float 8s ease-in-out infinite;
}

.price-orb-one {
  top: -130px;
  right: 4%;
  width: 340px;
  height: 340px;
}

.price-orb-two {
  bottom: -180px;
  left: 2%;
  width: 410px;
  height: 410px;
  animation-delay: -4s;
}

.price-heading {
  margin-bottom: 38px;
  text-align: center;
}

.price-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price-kicker .bi {
  color: #8a4773;
  animation: price-star-pulse 2.2s ease-in-out infinite;
}

.price-heading h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 18px;
  color: #161616;
  font-size: clamp(22px, 1.55vw, 29px);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.price-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 184px;
  height: 7px;
  background: linear-gradient(
    90deg,
    var(--plum) 0 50%,
    rgba(84, 46, 68, 0.14) 50%
  );
  content: "";
  transform: translateX(-50%);
}

.price-heading p {
  margin: 0;
  color: #5d565a;
  font-size: 16px;
  letter-spacing: 0.4px;
}

.price-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(84, 46, 68, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 60px rgba(84, 46, 68, 0.1);
  backdrop-filter: blur(8px);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
}

.price-table th {
  padding: 21px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(115deg, #47283c, #653650 55%, #543047);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.price-table th:last-child {
  border-right: 0;
}

.price-table td {
  position: relative;
  padding: 23px 25px;
  border-right: 1px solid rgba(84, 46, 68, 0.1);
  border-bottom: 1px solid rgba(84, 46, 68, 0.1);
  color: #2c282b;
  font-size: 17px;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:last-child {
  border-right: 0;
}

.price-table tbody tr {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.price-table tbody tr:hover {
  position: relative;
  z-index: 1;
  box-shadow:
    inset 4px 0 #7b3f68,
    0 12px 28px rgba(84, 46, 68, 0.12);
  transform: translateY(-2px);
}

.price-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.94);
  color: var(--plum);
}

.price-table td strong,
.price-table td small {
  display: block;
}

.price-table td strong {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.price-table td small {
  margin-top: 5px;
  color: #777075;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.price-value {
  display: block;
  color: var(--plum);
  font-size: 22px;
  font-weight: 700;
}

.price-on-request {
  color: var(--plum);
  font-weight: 600;
}

.price-details-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 145px;
  padding: 10px 18px;
  overflow: hidden;
  border-radius: 5px;
  background: linear-gradient(115deg, #432438, #633451 58%, #794064);
  background-size: 180% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 7px 16px rgba(84, 46, 68, 0.16);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.35px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-position 0.45s ease;
}

.price-details-button::before {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -45%;
  width: 30%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.price-details-button span,
.price-details-button .bi {
  position: relative;
  z-index: 1;
}

.price-details-button .bi {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.price-details-button:hover,
.price-details-button:focus-visible {
  background-position: 100% 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 11px 22px rgba(84, 46, 68, 0.27);
  color: var(--white);
  transform: translateY(-3px);
}

.price-details-button:hover::before,
.price-details-button:focus-visible::before {
  left: 120%;
}

.price-details-button:hover .bi,
.price-details-button:focus-visible .bi {
  transform: translate(2px, -2px);
}

.price-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 42px;
  text-align: center;
}

.price-action p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: #625a5f;
  font-size: 14px;
}

.price-action p .bi {
  color: #7b3f68;
  font-size: 18px;
}

.price-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 330px;
  padding: 15px 27px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(
    115deg,
    #432438 0%,
    #633451 42%,
    #7b3f68 72%,
    #4a283e 100%
  );
  background-size: 220% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(84, 46, 68, 0.2);
  color: var(--white);
  font-size: 17px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  animation: luxury-button-gradient 6s ease infinite;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.price-download::before {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 32%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  content: "";
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.price-download span,
.price-download .bi {
  position: relative;
  z-index: 1;
}

.price-download .bi {
  font-size: 22px;
  animation: overview-download 1.5s infinite ease-in-out;
}

.price-download:hover,
.price-download:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(84, 46, 68, 0.3);
  transform: translateY(-4px) scale(1.015);
}

.price-download:hover::before,
.price-download:focus-visible::before {
  left: 115%;
}

.payment-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  border-top: 1px solid rgba(84, 46, 68, 0.1);
  background: #eeeeee;
  box-shadow: inset 0 12px 24px rgba(84, 46, 68, 0.025);
}

.payment-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 48%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(84, 46, 68, 0.55),
    transparent
  );
  content: "";
  transform: translateX(-50%);
}

.price-section,
.payment-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.payment-shell {
  width: min(1300px, calc(100% - 30px));
  margin: auto;
}

.payment-heading {
  margin-bottom: 38px;
  text-align: center;
}

.payment-heading > span {
  position: relative;
  display: inline-block;
  margin-bottom: 26px;
  color: #9a713d;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.payment-heading > span::after {
  position: absolute;
  bottom: -13px;
  left: 50%;
  width: 64px;
  height: 3px;
  border-radius: 5px;
  background: linear-gradient(90deg, #9a713d, #d2a765);
  content: "";
  transform: translateX(-50%);
}

.payment-heading h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 18px;
  color: #161616;
  font-size: clamp(22px, 1.55vw, 29px);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.payment-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 184px;
  height: 7px;
  background: linear-gradient(
    90deg,
    var(--plum) 0 50%,
    rgba(84, 46, 68, 0.14) 50%
  );
  content: "";
  transform: translateX(-50%);
}

.payment-stage {
  position: relative;
  width: min(700px, 100%);
  min-height: 360px;
  margin: auto;
  perspective: 1200px;
}

.payment-ring-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 230px;
  filter: drop-shadow(0 22px 30px rgba(84, 46, 68, 0.16));
  transform: translate(-50%, -50%);
  z-index: 1;
}

.payment-ring {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.payment-track,
.payment-segment {
  fill: none;
  stroke-width: 42;
}

.payment-track {
  stroke: #eee8e4;
}

.payment-segment {
  cursor: pointer;
  transform-origin: center;
  transition:
    stroke-width 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

.segment-one {
  stroke: #542e44;
  stroke-dasharray: 24 76;
  stroke-dashoffset: 25;
}
.segment-two {
  stroke: #542e44;
  stroke-dasharray: 14 86;
  stroke-dashoffset: 0;
}
.segment-three {
  stroke: #542e44;
  stroke-dasharray: 19 81;
  stroke-dashoffset: -15;
}
.segment-four {
  stroke: #542e44;
  stroke-dasharray: 19 81;
  stroke-dashoffset: -35;
}
.segment-five {
  stroke: #542e44;
  stroke-dasharray: 19 81;
  stroke-dashoffset: -55;
}

.payment-segment.is-active {
  stroke: #c49a59;
  stroke-width: 50;
  opacity: 1;
  filter: drop-shadow(0 0 9px rgba(123, 63, 104, 0.45));
}

.payment-connectors {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.payment-connectors polyline {
  fill: none;
  stroke: rgba(84, 46, 68, 0.3);
  stroke-width: 1.2;
  stroke-dasharray: 4 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    stroke 0.3s ease,
    stroke-width 0.3s ease,
    filter 0.3s ease;
}
.payment-connectors circle {
  fill: var(--plum);
  transition:
    fill 0.3s ease,
    filter 0.3s ease;
}
.payment-connectors polyline.is-active {
  stroke: #c49a59;
  stroke-width: 2;
  filter: drop-shadow(0 0 3px rgba(196, 154, 89, 0.45));
}
.payment-connectors circle.is-active {
  fill: #c49a59;
  filter: drop-shadow(0 0 4px rgba(196, 154, 89, 0.6));
}

.payment-ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(84, 46, 68, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #fff, #faf7f2 72%);
  box-shadow: inset 0 0 28px rgba(84, 46, 68, 0.07);
  color: #211b20;
  text-align: center;
  transform: translate(-50%, -50%);
}

.payment-ring-center .bi {
  margin-bottom: 6px;
  color: #9a713d;
  font-size: 21px;
  animation: payment-calendar-pulse 2.8s ease-in-out infinite;
}

.payment-ring-center strong {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.payment-ring-center span {
  margin-top: 4px;
  color: #655b62;
  font-size: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.payment-option {
  position: absolute;
  z-index: 2;
  width: 145px;
  padding: 9px 11px;
  border: 1px solid rgba(84, 46, 68, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(84, 46, 68, 0.09);
  color: #262126;
  font-family: "Optima", sans-serif;
  text-align: left;
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.payment-option-one {
  top: 45px;
  left: 10px;
}
.payment-option-two {
  top: 45px;
  right: 10px;
}
.payment-option-three {
  right: 0;
  bottom: 48px;
}
.payment-option-four {
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.payment-option-five {
  bottom: 48px;
  left: 0;
}
.payment-option span,
.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option span {
  font-size: 10px;
  font-weight: 600;
}

.payment-option strong {
  margin: 3px 0;
  color: var(--plum);
  font-size: 21px;
  transition: color 0.3s ease;
}

.payment-option small {
  color: #786f74;
  font-size: 8px;
  letter-spacing: 0.3px;
}

.payment-option.is-active {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #4b293f, #6b3955);
  box-shadow: 0 20px 36px rgba(84, 46, 68, 0.25);
  color: var(--white);
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg) scale(1.035);
}

.payment-option-four.is-active {
  transform: translateX(-50%) translateY(-8px) rotateX(4deg) scale(1.035);
}

.payment-option.is-active strong {
  color: #e4bd7e;
}

.payment-option.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes payment-calendar-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.06);
  }
}

.amenities-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: #f9f7f0;
}

.amenities-head {
  display: grid;
  justify-content: center;
  margin-bottom: 45px;
  text-align: center;
}

.amenities-head > span {
  position: relative;
  width: fit-content;
  margin: 0 auto 28px;
  color: #171417;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.amenities-head > span::after {
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0 25%,
    var(--plum) 25% 62%,
    rgba(84, 46, 68, 0.13) 62%
  );
  content: "";
  transform: translateX(-50%);
}

.amenities-head h2 {
  margin: 0;
  color: #282428;
  font-size: clamp(29px, 2vw, 40px);
  font-weight: 400;
  letter-spacing: 0.8px;
}

.amenities-wrapper {
  position: relative;
  z-index: 1;
  width: 95%;
  margin: auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 270px);
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 74%;
  margin: auto;
}

.amenity-card {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: visible;
  background: #ddd;
  isolation: isolate;
}

.amenity-card:first-child {
  grid-area: 1 / 1 / 3 / 2;
}

.amenity-card:nth-child(4) {
  grid-area: 1 / 4 / 3 / 5;
}

.amenity-card:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.amenity-card:nth-child(3) {
  grid-area: 1 / 3 / 2 / 4;
}
.amenity-card:nth-child(5) {
  grid-area: 2 / 2 / 3 / 3;
}
.amenity-card:nth-child(6) {
  grid-area: 2 / 3 / 3 / 4;
}

.amenity-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.45s ease,
    box-shadow 0.45s ease;
}

.amenity-card:first-child img {
  object-position: 58% center;
}
.amenity-card:nth-child(2) img {
  object-position: center 62%;
}
.amenity-card:nth-child(3) img {
  object-position: 52% center;
}
.amenity-card:nth-child(4) img {
  object-position: 62% center;
}
.amenity-card:nth-child(5) img {
  object-position: center 58%;
}
.amenity-card:nth-child(6) img {
  object-position: 44% center;
}

.amenity-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(41, 22, 34, 0.2));
  content: "";
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.amenity-card figcaption {
  position: absolute;
  z-index: 2;
  bottom: 5%;
  left: -8%;
  display: block;
  padding: 7px 14px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 26px rgba(84, 46, 68, 0.15);
  backdrop-filter: blur(5px);
  color: #282428;
  font-size: 15px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.amenity-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 18px 38px rgba(84, 46, 68, 0.2);
  transform: scale(1.035);
}

.amenity-card:hover::after {
  opacity: 0.45;
}

.amenity-card:hover figcaption {
  background: rgba(84, 46, 68, 0.92);
  color: var(--white);
  transform: translate(6px, -5px);
}

@keyframes price-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 22px, 0);
  }
}

@keyframes price-star-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9) rotate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.12) rotate(8deg);
  }
}

@media (max-width: 1329px) and (min-width: 993px) {
  .container {
    padding-inline: 15px;
  }
  .site-nav li {
    padding-inline: 7px;
  }
  .site-nav a {
    font-size: 14px;
  }
  .call-button {
    padding-inline: 11px;
  }
  .hero-content {
    width: 760px;
  }
  .hero-content h1 {
    margin-inline: auto;
    font-size: 50px;
    text-align: center;
    transform: translateX(-110px);
  }
  .hero-eyebrow {
    text-align: center;
    transform: translateX(-110px);
  }
  .hero-location {
    font-size: 22px;
  }
  .hero-type {
    font-size: 24px;
  }
  .hero-highlights li {
    margin-bottom: 17px;
    font-size: 23px;
  }
  .hero-price {
    font-size: 27px;
  }
  .overview-section {
    padding: 60px 0;
  }
  .overview-shell {
    width: calc(100% - 120px);
    gap: 30px;
    padding-inline: 0;
  }
  .overview-copy p {
    font-size: 16px;
    line-height: 27px;
  }
  .overview-copy h2 {
    font-size: 36px;
  }
  .overview-features {
    margin-top: 42px;
    gap: 24px;
  }
  .overview-feature {
    gap: 14px;
    font-size: 15px;
  }
  .overview-feature .bi {
    flex-basis: 30px;
    width: 30px;
    font-size: 28px;
  }
  .overview-images {
    min-height: 650px;
  }
  .overview-image-main {
    height: 590px;
  }
  .overview-image-overlap {
    height: 285px;
  }
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-card {
    height: 400px;
  }
  .gallery-brochure {
    margin-top: 55px;
  }
  .amenities-grid {
    max-width: 95%;
    gap: 31px;
  }
}

@media (max-width: 992px) {
  .site-header {
    padding: 6px 0;
  }
  .container {
    padding-inline: 15px;
  }
  .brand img {
    width: 164px;
  }
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 80%;
    margin: 0;
    overflow-y: auto;
    background: var(--plum);
    transition: left 0.4s ease-in-out;
  }

  .site-nav.is-open {
    left: 0;
  }
  .site-nav ul {
    display: block;
    padding: 18px 0;
  }
  .site-nav li {
    padding: 8px 20px;
  }
  .site-nav a {
    color: var(--white);
    font-size: 14px;
  }
  .site-nav a:not(.call-button)::after {
    background: var(--white);
  }
  .site-nav .call-button {
    margin-top: 5px;
    border-color: var(--white);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  body.menu-open {
    overflow: hidden;
  }

  .overview-section {
    padding: 55px 0 75px;
  }
  .overview-shell {
    display: block;
    width: calc(100% - 30px);
    padding-inline: 0;
  }
  .overview-copy {
    text-align: center;
  }
  .overview-copy h2 {
    margin-bottom: 22px;
    font-size: 32px;
  }
  .overview-copy p {
    margin: 16px 0;
    font-size: 14px;
    line-height: 25px;
  }
  .overview-features {
    margin: 38px auto 45px;
    text-align: left;
  }
  .overview-feature {
    gap: 14px;
    font-size: 15px;
  }
  .overview-feature .bi {
    flex-basis: 30px;
    width: 30px;
    font-size: 28px;
  }
  .overview-images {
    min-height: 610px;
  }
  .overview-image-main {
    height: 550px;
  }
  .overview-image-overlap {
    right: 0;
    width: 62%;
    height: 275px;
  }

  .gallery-section {
    padding: 60px 0;
  }
  .gallery-heading {
    padding-bottom: 30px;
  }
  .gallery-strip {
    flex-wrap: wrap;
    gap: 15px;
    padding-inline: 15px;
  }
  .gallery-card,
  .gallery-card.is-active {
    flex: 1 0 30%;
    width: auto;
    height: 280px;
  }
  .gallery-brochure {
    min-width: 330px;
    margin-top: 45px;
    font-size: 19px;
  }

  .price-section {
    padding: 60px 0;
  }
  .price-heading {
    margin-bottom: 34px;
  }
  .price-table th {
    padding: 17px 15px;
    font-size: 16px;
  }
  .price-table td {
    padding: 19px 14px;
    font-size: 15px;
  }
  .price-table td strong {
    font-size: 16px;
  }
  .price-value {
    font-size: 19px;
  }
  .price-details-button {
    min-width: 108px;
    padding: 9px 11px;
    font-size: 13px;
  }

  .price-section,
  .payment-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .payment-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    min-height: 0;
  }
  .payment-ring-wrap {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    transform: none;
  }
  .payment-option {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }
  .payment-option::after {
    display: none;
  }
  .payment-connectors {
    display: none;
  }
  .payment-option-four {
    left: auto;
    transform: none;
  }
  .payment-option.is-active,
  .payment-option-four.is-active {
    transform: translateY(-5px) rotateX(3deg) scale(1.015);
  }
  .amenities-grid {
    max-width: 95%;
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 0;
  }

  .hero-content-wrap {
    align-items: center;
    padding: 0 15px;
  }
  .hero-content {
    width: min(570px, calc(100% - 30px));
    margin: 0 auto;
    padding: 24px 20px 18px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  .hero-content::before,
  .hero-content::after {
    display: none;
  }
  .hero-eyebrow {
    margin-bottom: 9px;
    font-size: 12px;
    transform: none;
  }
  .hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(25px, 5vw, 32px);
    white-space: normal;
    transform: none;
  }
  .hero-location {
    margin-bottom: 18px;
    padding: 8px 16px;
    font-size: 17px;
  }
  .hero-type {
    margin-bottom: 20px;
    font-size: clamp(21px, 4vw, 27px);
    white-space: normal;
  }
  .hero-highlights {
    width: fit-content;
    margin: 0 auto 24px;
    text-align: left;
  }
  .hero-highlights li {
    gap: 12px;
    margin-bottom: 15px;
    font-size: 17px;
    white-space: normal;
  }
  .hero-price {
    margin-inline: auto;
    font-size: 20px;
  }
  .hero-arrow {
    width: 38px;
    height: 58px;
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    width: calc(100% - 28px);
    padding-inline: 13px;
  }
  .hero-content h1 {
    font-size: 23px;
  }
  .hero-location {
    font-size: 15px;
  }
  .hero-type {
    font-size: 20px;
  }
  .hero-highlights li {
    font-size: 15px;
  }
  .hero-highlights .bi-stars {
    font-size: 22px;
  }
  .hero-price {
    font-size: 18px;
  }
  .hero-arrow {
    display: none;
  }
  .hero-dots {
    display: flex;
  }
  .overview-section {
    padding: 42px 0 55px;
  }
  .overview-copy h2 {
    font-size: 27px;
  }
  .overview-copy p {
    font-size: 14px;
    line-height: 25px;
  }
  .overview-features {
    grid-template-columns: 1fr;
    gap: 22px;
    width: fit-content;
  }
  .overview-images {
    min-height: 410px;
  }
  .overview-image-main {
    height: 370px;
    border-width: 9px;
  }
  .overview-image-overlap {
    width: 68%;
    height: 190px;
    border-width: 9px;
  }
  .overview-feature strong {
    font-size: 14px;
  }
  .overview-feature small {
    font-size: 14px;
  }
  .overview-bottom {
    margin-top: 50px;
  }
  .overview-bottom h3 {
    font-size: 15px;
    white-space: normal;
  }
  .overview-brochure {
    min-width: 0;
    min-height: 0;
    width: 100%;
    padding: 13px 20px;
    font-size: 15px;
  }
  .gallery-section {
    padding: 30px 0;
  }
  .gallery-heading {
    padding-bottom: 24px;
  }
  .gallery-heading h2 {
    font-size: 18px;
    line-height: 1.35;
  }
  .gallery-heading h2::after {
    width: 130px;
    height: 5px;
  }
  .gallery-card {
    flex: 1 0 47%;
    height: 227px;
  }
  .gallery-card.is-active {
    flex: 1 0 100%;
    width: auto;
    height: 227px;
  }
  .gallery-brochure {
    min-width: 0;
    width: calc(100% - 30px);
    margin-top: 35px;
    font-size: 16px;
  }
  .price-section {
    padding: 45px 0;
  }
  .price-heading {
    margin-bottom: 28px;
  }
  .price-heading h2 {
    font-size: 22px;
    line-height: 1.35;
  }
  .price-heading p {
    font-size: 14px;
    line-height: 1.55;
  }
  .price-kicker {
    font-size: 11px;
  }
  .price-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }
  .price-table thead {
    display: none;
  }
  .price-table tbody {
    display: grid;
    gap: 15px;
  }
  .price-table tbody tr {
    overflow: hidden;
    border: 1px solid rgba(84, 46, 68, 0.14);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 26px rgba(84, 46, 68, 0.08);
  }
  .price-table td {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    align-items: center;
    padding: 13px 15px;
    border-right: 0;
    text-align: right;
  }
  .price-table td::before {
    color: #746b70;
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-align: left;
    text-transform: uppercase;
  }
  .price-table td strong,
  .price-table td small,
  .price-value {
    text-align: right;
  }
  .price-table td small {
    grid-column: 2;
  }
  .price-details-button {
    min-width: 130px;
    justify-self: end;
  }
  .price-section,
  .payment-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .payment-heading {
    margin-bottom: 24px;
  }
  .payment-heading h2 {
    font-size: 18px;
    line-height: 1.3;
  }
  .payment-stage {
    grid-template-columns: 1fr;
  }
  .payment-ring-wrap {
    grid-column: auto;
    width: min(210px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 18px;
  }
  .payment-track,
  .payment-segment {
    stroke-width: 40;
  }
  .payment-segment.is-active {
    stroke-width: 48;
  }
  .payment-ring-center {
    width: 108px;
    height: 108px;
  }
  .payment-ring-center .bi {
    margin-bottom: 4px;
    font-size: 19px;
  }
  .payment-ring-center strong {
    font-size: 14px;
  }
  .payment-ring-center span {
    font-size: 8px;
  }
  .payment-option {
    padding: 14px 16px;
  }
  .payment-option strong {
    font-size: 20px;
  }
  .amenities-section {
    padding: 30px 0;
  }
  .amenities-head {
    margin-bottom: 22px;
    padding-inline: 15px;
  }
  .amenities-head > span {
    margin-bottom: 25px;
    font-size: 15px;
  }
  .amenities-head h2 {
    font-size: 24px;
  }
  .amenities-wrapper {
    width: 100%;
    padding-inline: 15px;
  }
  .amenities-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 5px;
  }
  .amenity-card,
  .amenity-card:first-child,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3),
  .amenity-card:nth-child(4),
  .amenity-card:nth-child(5),
  .amenity-card:nth-child(6) {
    grid-area: auto;
    flex: 1 0 49%;
    width: 49%;
    height: 196px;
  }
  .amenity-card figcaption {
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 0;
    background: rgba(84, 46, 68, 0.55);
    color: var(--white);
    font-size: 12px;
    text-align: center;
  }
  .price-action {
    margin-top: 32px;
  }
  .price-action p {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.45;
  }
  .price-download {
    min-width: 0;
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
  }
}

@media (max-height: 700px) and (min-width: 993px) {
  .hero-content {
    padding-top: 13px;
  }
  .hero-content h1 {
    margin-bottom: 12px;
    font-size: clamp(30px, 2.15vw, 40px);
  }
  .hero-eyebrow {
    font-size: 11px;
  }
  .hero-location {
    margin-bottom: 11px;
    padding-block: 6px;
    font-size: 17px;
  }
  .hero-type {
    margin-bottom: 12px;
    font-size: 17px;
  }
  .hero-highlights {
    margin-bottom: 15px;
  }
  .hero-highlights li {
    margin-bottom: 10px;
    font-size: 17px;
  }
  .hero-price {
    font-size: 20px;
  }
}

@media (max-height: 620px) and (max-width: 992px) {
  .hero-content {
    max-height: calc(100% - 22px);
    padding-block: 15px;
    overflow-y: auto;
  }
  .hero-content h1 {
    margin-bottom: 11px;
    font-size: 24px;
  }
  .hero-eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
  }
  .hero-location {
    margin-bottom: 10px;
    padding-block: 6px;
    font-size: 15px;
  }
  .hero-type {
    margin-bottom: 11px;
    font-size: 16px;
  }
  .hero-highlights {
    margin-bottom: 12px;
  }
  .hero-highlights li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .hero-price {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Floor plan showcase */
.floor-plan-section {
  padding: clamp(56px, 6vw, 96px) 24px clamp(72px, 7vw, 112px);
  background: #f7f5ef;
}

.floor-plan-shell {
  width: min(1428px, 100%);
  margin: 0 auto;
}

.floor-plan-heading {
  margin-bottom: clamp(54px, 5vw, 82px);
  text-align: center;
}

.floor-plan-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  color: #171517;
  font-family: "Optima", sans-serif;
  font-size: clamp(20px, 1.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.floor-plan-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 22px;
  width: 98px;
  height: 6px;
  background: #463644;
  content: "";
}

.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.6vw, 40px);
}

.floor-plan-card {
  margin: 0;
  overflow: hidden;
  border: 4px solid #aba6aa;
  background: #8e8e8e;
}

.floor-plan-preview {
  position: relative;
  height: clamp(350px, 31vw, 435px);
  overflow: hidden;
  background: #fff;
}

.floor-plan-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) brightness(1.06);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.floor-plan-preview::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.floor-plan-download {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: 50%;
  display: flex;
  width: min(284px, calc(100% - 50px));
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 21px;
  border-radius: 5px;
  background: linear-gradient(90deg, #4b2549 0%, #8500e8 100%);
  box-shadow: 0 12px 28px rgba(58, 17, 73, 0.2);
  color: #fff;
  font-family: "Optima", sans-serif;
  font-size: clamp(16px, 1.25vw, 19px);
  letter-spacing: 0.15px;
  line-height: 1.2;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.floor-plan-download i {
  font-size: 25px;
  line-height: 1;
}

.floor-plan-card h3 {
  margin: 0;
  padding: 7px 15px 9px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.15;
  text-align: center;
}

.floor-plan-card:hover .floor-plan-preview img {
  filter: saturate(0.85) brightness(1.02);
  transform: scale(1.025);
}

.floor-plan-download:hover {
  box-shadow: 0 16px 34px rgba(58, 17, 73, 0.3);
  color: #fff;
  transform: translate(-50%, calc(-50% - 3px));
}

@media (max-width: 900px) {
  .floor-plan-section {
    padding-inline: 20px;
  }
  .floor-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .floor-plan-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
    justify-self: center;
  }
  .floor-plan-preview {
    height: clamp(330px, 48vw, 420px);
  }
}

@media (max-width: 600px) {
  .floor-plan-section {
    padding: 48px 15px 62px;
  }
  .floor-plan-heading {
    margin-bottom: 42px;
  }
  .floor-plan-heading h2 {
    font-size: 19px;
  }
  .floor-plan-heading h2::after {
    left: 16px;
    width: 82px;
    height: 5px;
  }
  .floor-plan-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .floor-plan-card:last-child {
    grid-column: auto;
    width: 100%;
  }
  .floor-plan-preview {
    height: 330px;
  }
  .floor-plan-download {
    width: min(270px, calc(100% - 38px));
    min-height: 52px;
    gap: 18px;
  }
  .floor-plan-card h3 {
    font-size: 26px;
  }
}

/* Developer and disclaimer footer */
.site-footer {
  padding: 45px 0 0;
  background: #faf6ee;
  color: #000;
  font-family: "Optima", sans-serif;
  font-size: 15px;
  letter-spacing: 0.4px;
}

.footer-shell {
  width: min(1300px, calc(100% - 30px));
  margin: 0 auto;
}

.footer-developer {
  margin: 40px 0;
  padding: 0 0 30px;
  border-bottom: 1px solid #e1d3ac;
  text-align: center;
}

.site-footer h2 {
  margin: 0;
  color: #542e44;
  font-family: "Optima", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-developer > p:first-of-type {
  max-width: none;
  margin: 15px auto 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 27px;
}

.footer-rera-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  margin: 16px auto 0;
}

.footer-rera-row p,
.footer-contact {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.4px;
  line-height: 27px;
}

.footer-rera-row strong,
.footer-contact strong {
  font-weight: 700;
}

.footer-contact {
  margin-top: 7px;
}

.footer-contact a,
.footer-disclaimer a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-disclaimer a:hover {
  color: inherit;
  text-decoration: underline;
}

.footer-disclaimer {
  padding: 0 0 44px;
  text-align: center;
}

.footer-disclaimer > p:first-of-type {
  margin: 15px auto 0;
  font-size: 15px;
  letter-spacing: 0.4px;
  line-height: 27px;
}

@media (max-width: 1600px) {
  .site-footer h2 {
    font-size: 21px;
  }
  .footer-shell {
    max-width: 1250px;
  }
}

@media (max-width: 900px) {
  .footer-shell {
    width: min(100% - 30px, 760px);
  }
  .footer-developer {
    margin: 30px 0;
    padding-bottom: 25px;
  }
  .footer-rera-row {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 34px;
    padding-bottom: 44px;
  }
  .footer-shell {
    width: calc(100% - 30px);
  }
  .footer-developer {
    margin: 24px 0;
    padding: 0 0 24px;
  }
  .site-footer h2 {
    font-size: 21px;
    letter-spacing: 0.4px;
  }
  .footer-developer > p:first-of-type {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .footer-rera-row {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 15px;
  }
  .footer-rera-row p,
  .footer-contact {
    font-size: 14px;
    line-height: 24px;
  }
  .footer-contact {
    margin-top: 10px;
  }
  .footer-disclaimer {
    padding: 0;
  }
  .footer-disclaimer > p:first-of-type {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
  }
}

/* Premium amenities showcase */
.amenities-section {
  padding: clamp(42px, 3.6vw, 58px) 0 0;
  background: #eeeeee;
}
.amenities-head {
  display: block;
  margin: 0 auto clamp(38px, 3vw, 48px);
  padding-inline: 24px;
  text-align: center;
}
.amenities-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  color: #171517;
  font-family: "Optima", sans-serif;
  font-size: clamp(20px, 1.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.15px;
  line-height: 1.2;
  text-transform: uppercase;
}
.amenities-head h2::after {
  position: absolute;
  bottom: 0;
  left: 22px;
  width: 98px;
  height: 6px;
  background: #463644;
  content: "";
}
.amenities-head p {
  margin: 18px 0 0;
  color: #5f595c;
  font-family: "Optima", sans-serif;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 400;
  letter-spacing: 1.7px;
  line-height: 1.4;
  text-transform: uppercase;
}
.amenities-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: clamp(350px, 32vw, 520px) clamp(280px, 25vw, 400px);
  gap: 8px;
  max-width: none;
  margin: 0;
  padding: 0;
}
.amenity-card,
.amenity-card:first-child,
.amenity-card:nth-child(2),
.amenity-card:nth-child(3),
.amenity-card:nth-child(4),
.amenity-card:nth-child(5) {
  position: relative;
  grid-area: auto;
  width: auto;
  height: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #17202a;
  isolation: isolate;
}
.amenity-card:nth-child(1),
.amenity-card:nth-child(2) {
  grid-column: span 3;
}
.amenity-card:nth-child(n + 3) {
  grid-column: span 2;
}
.amenity-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}
.amenity-card:nth-child(1) img {
  object-position: center 58%;
}
.amenity-card:nth-child(2) img {
  object-position: center;
}
.amenity-card:nth-child(3) img {
  object-position: 60% center;
}
.amenity-card:nth-child(4) img {
  object-position: center 55%;
}
.amenity-card:nth-child(5) img {
  object-position: center 62%;
}
.amenity-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 18, 0.58) 0,
    rgba(6, 11, 18, 0.2) 42%,
    rgba(6, 11, 18, 0.08) 72%,
    rgba(6, 11, 18, 0.26) 100%
  );
  content: "";
  pointer-events: none;
  transition: background 0.45s ease;
}
.amenity-card figcaption {
  position: absolute;
  z-index: 2;
  top: clamp(34px, 2.2vw, 43px);
  right: clamp(24px, 2vw, 38px);
  bottom: auto;
  left: clamp(38px, 2.1vw, 42px);
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 1.35vw, 27px);
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  color: #fff;
  font-family: "Optima", sans-serif;
  text-align: left;
  text-transform: none;
  transition: transform 0.4s ease;
}
.amenity-number {
  display: grid;
  flex: 0 0 clamp(68px, 4.75vw, 90px);
  width: clamp(68px, 4.75vw, 90px);
  height: clamp(68px, 4.75vw, 90px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-size: clamp(23px, 1.55vw, 29px);
  font-weight: 400;
  line-height: 1;
}
.amenity-copy {
  padding-top: 8px;
}
.amenity-copy strong {
  display: block;
  margin-bottom: 13px;
  font-size: clamp(20px, 1.52vw, 29px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}
.amenity-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(16px, 1.27vw, 24px);
  font-weight: 400;
  line-height: 1.5;
}
.amenity-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}
.amenity-card:hover::after {
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(4, 9, 16, 0.72),
    rgba(4, 9, 16, 0.05) 62%,
    rgba(4, 9, 16, 0.3)
  );
}
.amenity-card:hover figcaption {
  background: none;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 5px;
  }
  .amenity-card,
  .amenity-card:first-child,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3),
  .amenity-card:nth-child(4),
  .amenity-card:nth-child(5) {
    grid-column: span 1;
    width: auto;
    height: clamp(290px, 52vw, 420px);
  }
  .amenity-card:last-child {
    grid-column: 1/-1;
  }
}

@media (max-width: 600px) {
  .amenities-section {
    padding-top: 38px;
  }
  .amenities-head {
    margin-bottom: 34px;
  }
  .amenities-head h2 {
    font-size: 19px;
    letter-spacing: 0.15px;
  }
  .amenities-head h2::after {
    left: 16px;
    width: 82px;
    height: 5px;
  }
  .amenities-head p {
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 1.4px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .amenity-card,
  .amenity-card:first-child,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3),
  .amenity-card:nth-child(4),
  .amenity-card:nth-child(5),
  .amenity-card:last-child {
    grid-column: 1;
    width: 100%;
    height: 300px;
  }
  .amenity-card figcaption {
    top: 22px;
    right: 18px;
    left: 18px;
    gap: 14px;
  }
  .amenity-number {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    font-size: 19px;
  }
  .amenity-copy strong {
    font-size: 16px;
  }
  .amenity-copy small {
    font-size: 12px;
  }
}

/* Shared horizontal alignment for all content sections */
.overview-shell,
.gallery-heading,
.gallery-strip,
.price-shell,
.payment-shell,
.floor-plan-shell,
.amenities-wrapper,
.footer-shell {
  width: 80%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.floor-plan-preview img {
  object-fit: contain;
  background: #f7f3ec;
  filter: none;
}

@media (max-width: 1329px) and (min-width: 993px) {
  .overview-shell,
  .gallery-heading,
  .gallery-strip,
  .price-shell,
  .payment-shell,
  .floor-plan-shell,
  .amenities-wrapper,
  .footer-shell {
    width: calc(100% - 120px);
  }
}

@media (max-width: 992px) {
  .overview-shell,
  .gallery-heading,
  .gallery-strip,
  .price-shell,
  .payment-shell,
  .floor-plan-shell,
  .amenities-wrapper,
  .footer-shell {
    width: calc(100% - 30px);
  }
}

/* =========================================================
   Compact context-aware enquiry popup
   Single dynamic heading + compact lead form.
   ========================================================= */
body.modal-open {
  overflow: hidden;
}

.enquiry-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.enquiry-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 21, 29, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.enquiry-modal__dialog {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  border: 1px solid rgba(84, 46, 68, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(84, 46, 68, 0.07), transparent 34%),
    linear-gradient(150deg, #fffdf9 0%, #f8f4ee 100%);
  box-shadow:
    0 24px 70px rgba(31, 17, 26, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.enquiry-modal.is-open .enquiry-modal__dialog {
  transform: translateY(0) scale(1);
}

.enquiry-modal__dialog::before {
  position: absolute;
  top: 0;
  right: 68px;
  left: 0;
  height: 3px;
  border-radius: 20px 0 0 0;
  background: linear-gradient(90deg, #432438, #6f3a5d, #542e44);
  content: "";
}

.enquiry-modal__close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(84, 46, 68, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(84, 46, 68, 0.08);
  color: var(--plum);
  cursor: pointer;
  font: inherit;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.enquiry-modal__close i {
  font-size: 17px;
  line-height: 1;
}

.enquiry-modal__close:hover,
.enquiry-modal__close:focus-visible {
  background: var(--plum);
  box-shadow: 0 9px 22px rgba(84, 46, 68, 0.2);
  color: #fff;
  outline: none;
  transform: rotate(6deg) scale(1.04);
}

.enquiry-modal__content {
  padding: 34px 34px 28px;
}

.enquiry-modal__content h2 {
  max-width: calc(100% - 50px);
  margin: 0 0 22px;
  color: #241820;
  font-family: "Optima", sans-serif;
  font-size: clamp(25px, 2.35vw, 32px);
  font-weight: 700;
  letter-spacing: -0.35px;
  line-height: 1.08;
}

.enquiry-form {
  display: grid;
  gap: 13px;
}

.enquiry-form__field {
  display: grid;
  gap: 6px;
}

.enquiry-form__field label {
  color: #33242e;
  font-family: "Optima", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15px;
}

.enquiry-form__field label span {
  color: #8a8085;
  font-size: 11px;
  font-weight: 400;
}

.enquiry-form__control {
  display: flex;
  min-height: 46px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(84, 46, 68, 0.19);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.enquiry-form__control:focus-within {
  border-color: rgba(84, 46, 68, 0.68);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(84, 46, 68, 0.075);
}

.enquiry-form__control > i {
  flex: 0 0 auto;
  margin-left: 14px;
  color: var(--plum);
  font-size: 15px;
}

.enquiry-form__control input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 14px 0 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #21181e;
  font-family: "Optima", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1px;
}

.enquiry-form__control input::placeholder {
  color: #a0979c;
  opacity: 1;
}

.enquiry-form__prefix {
  display: grid;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  margin-left: 13px;
  padding-right: 10px;
  border-right: 1px solid rgba(84, 46, 68, 0.16);
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
}

.enquiry-form__field.has-error .enquiry-form__control {
  border-color: #a54a54;
  box-shadow: 0 0 0 3px rgba(165, 74, 84, 0.065);
}

.enquiry-form__error {
  min-height: 0;
  color: #9c3f4a;
  font-size: 10px;
  line-height: 1.25;
}
.enquiry-form__error:empty {
  display: none;
}

.enquiry-form__submit,
.enquiry-success__close {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 3px;
  padding: 12px 18px;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(
    115deg,
    #432438 0%,
    #633451 46%,
    #7b3f68 74%,
    #4a283e 100%
  );
  background-size: 220% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 10px 22px rgba(84, 46, 68, 0.21);
  color: #fff;
  cursor: pointer;
  font-family: "Optima", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-position 0.4s ease;
}

.enquiry-form__submit::before {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -34%;
  width: 24%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.enquiry-form__submit span,
.enquiry-form__submit i {
  position: relative;
  z-index: 1;
}

.enquiry-form__submit:hover,
.enquiry-form__submit:focus-visible,
.enquiry-success__close:hover,
.enquiry-success__close:focus-visible {
  background-position: 100% 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 14px 28px rgba(84, 46, 68, 0.29);
  outline: none;
  transform: translateY(-2px);
}

.enquiry-form__submit:hover::before,
.enquiry-form__submit:focus-visible::before {
  left: 116%;
}

.enquiry-form__privacy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: -1px 0 0;
  color: #8b8287;
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
}

.enquiry-form__privacy i {
  flex: 0 0 auto;
  color: var(--plum);
  font-size: 11px;
}

.enquiry-success {
  padding: 18px 0 4px;
  text-align: center;
}
.enquiry-success[hidden] {
  display: none;
}
.enquiry-success__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid rgba(84, 46, 68, 0.16);
  border-radius: 50%;
  background: rgba(84, 46, 68, 0.07);
  color: var(--plum);
  font-size: 29px;
}
.enquiry-success h3 {
  margin: 0;
  color: #21181e;
  font-family: "Optima", sans-serif;
  font-size: 27px;
  line-height: 1.2;
}
.enquiry-success p {
  max-width: 390px;
  margin: 8px auto 18px;
  color: #686064;
  font-size: 13px;
  line-height: 1.5;
}
.enquiry-success__close {
  min-width: 190px;
}

@media (max-width: 640px) {
  .enquiry-modal {
    align-items: center;
    padding: 12px;
  }
  .enquiry-modal__dialog {
    width: min(94vw, 460px);
    max-height: calc(100svh - 24px);
    border-radius: 18px;
  }
  .enquiry-modal__dialog::before {
    right: 60px;
    border-radius: 18px 0 0 0;
  }
  .enquiry-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  .enquiry-modal__content {
    padding: 29px 20px 22px;
  }
  .enquiry-modal__content h2 {
    max-width: calc(100% - 40px);
    margin-bottom: 18px;
    font-size: clamp(23px, 7vw, 29px);
  }
  .enquiry-form {
    gap: 11px;
  }
  .enquiry-form__field {
    gap: 5px;
  }
  .enquiry-form__control {
    min-height: 44px;
  }
  .enquiry-form__control input {
    height: 42px;
    font-size: 13px;
  }
  .enquiry-form__submit {
    min-height: 46px;
    padding-inline: 13px;
    font-size: 13px;
  }
  .enquiry-form__privacy {
    font-size: 9.5px;
  }
}

@media (max-height: 620px) and (min-width: 641px) {
  .enquiry-modal__content {
    padding-top: 26px;
    padding-bottom: 22px;
  }
  .enquiry-modal__content h2 {
    margin-bottom: 16px;
    font-size: 27px;
  }
  .enquiry-form {
    gap: 10px;
  }
  .enquiry-form__control {
    min-height: 42px;
  }
  .enquiry-form__control input {
    height: 40px;
  }
  .enquiry-form__submit {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .enquiry-modal,
  .enquiry-modal__dialog,
  .enquiry-modal__close,
  .enquiry-form__submit,
  .enquiry-success__close {
    transition: none;
  }
}

/* =========================================================
   Location Advantage
   ========================================================= */
.location-section {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(54px, 5.4vw, 82px) clamp(22px, 4.5vw, 76px);
  background:
    radial-gradient(circle at 8% 18%, rgba(84, 46, 68, 0.09), transparent 27%),
    radial-gradient(circle at 82% 72%, rgba(84, 46, 68, 0.07), transparent 31%),
    linear-gradient(135deg, #fbf8f6 0%, #fff 48%, #f4eeef 100%);
}

.location-section::before,
.location-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(84, 46, 68, 0.09);
  border-radius: 50%;
}

.location-section::before {
  width: clamp(380px, 42vw, 720px);
  aspect-ratio: 1;
  left: -16%;
  bottom: -54%;
  box-shadow:
    0 0 0 54px rgba(84, 46, 68, 0.018),
    0 0 0 108px rgba(84, 46, 68, 0.014);
}

.location-section::after {
  width: clamp(280px, 34vw, 560px);
  aspect-ratio: 1;
  top: -40%;
  right: 27%;
  opacity: 0.7;
}

.location-shell {
  width: min(100%, 1780px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(34px, 4.8vw, 84px);
  align-items: center;
}

.location-content {
  min-width: 0;
}

.location-kicker {
  margin-bottom: 11px;
  color: rgba(84, 46, 68, 0.72);
  font-family: "Optima", sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-content h2 {
  max-width: 780px;
  margin: 0;
  color: #171216;
  font-family: "Optima", sans-serif;
  font-size: clamp(34px, 3.15vw, 61px);
  font-weight: 700;
  letter-spacing: -0.65px;
  line-height: 1.03;
}

.location-content h2 span {
  display: inline;
  color: var(--plum);
}

.location-intro {
  max-width: 760px;
  margin: clamp(22px, 2vw, 34px) 0 0;
  color: #675e63;
  font-family: "Optima", sans-serif;
  font-size: clamp(15px, 1.03vw, 19px);
  font-weight: 400;
  line-height: 1.75;
}

.location-highlights {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 2.8vw, 42px);
}

.location-highlight-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
  border: 1px solid rgba(84, 46, 68, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 36px rgba(53, 29, 42, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.location-highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(84, 46, 68, 0.34);
  box-shadow: 0 18px 42px rgba(53, 29, 42, 0.1);
}

.location-highlight-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 46, 68, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff, #f1e9ec);
  color: var(--plum);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(84, 46, 68, 0.08);
  font-size: 21px;
}

.location-highlight-card div {
  min-width: 0;
}
.location-highlight-card strong,
.location-highlight-card small {
  display: block;
}
.location-highlight-card strong {
  color: #251b20;
  font-family: "Optima", sans-serif;
  font-size: clamp(14px, 0.94vw, 17px);
  font-weight: 700;
  line-height: 1.28;
}
.location-highlight-card small {
  margin-top: 4px;
  color: #766c72;
  font-family: "Optima", sans-serif;
  font-size: 12.5px;
  line-height: 1.35;
}

.location-cta {
  width: fit-content;
  min-width: 238px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(28px, 3vw, 44px);
  padding: 14px 28px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    #693d56 0%,
    var(--plum) 46%,
    #3f2032 100%
  );
  color: #fff;
  box-shadow:
    0 14px 30px rgba(84, 46, 68, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-family: "Optima", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.location-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(84, 46, 68, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.location-cta i {
  font-size: 19px;
}

.location-map-wrap {
  position: relative;
  min-height: clamp(500px, 58vh, 650px);
  overflow: hidden;
  border: 1px solid rgba(84, 46, 68, 0.18);
  border-radius: 40px 12px 40px 12px;
  background: #eee7ea;
  box-shadow: 0 28px 65px rgba(66, 39, 53, 0.14);
}

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.28) sepia(0.08) saturate(0.75) contrast(0.94)
    brightness(1.06);
}

.location-map-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(84, 46, 68, 0.03) 0 17%,
      rgba(84, 46, 68, 0.09) 18% 31%,
      transparent 32%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(84, 46, 68, 0.045));
}

.location-map-pin {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 51%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 6px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  box-shadow: 0 14px 30px rgba(84, 46, 68, 0.32);
  font-size: 28px;
}

.location-map-ring {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 51%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(84, 46, 68, 0.24);
  border-radius: 50%;
  pointer-events: none;
}
.location-map-ring--one {
  width: 31%;
  background: rgba(84, 46, 68, 0.055);
}
.location-map-ring--two {
  width: 54%;
  border-color: rgba(84, 46, 68, 0.14);
}

.location-map-label {
  position: absolute;
  z-index: 5;
  min-width: 118px;
  padding: 11px 14px 10px;
  border: 1px solid rgba(84, 46, 68, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 10px 24px rgba(58, 35, 47, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: "Optima", sans-serif;
  pointer-events: none;
}
.location-map-label span,
.location-map-label strong {
  display: block;
}
.location-map-label span {
  color: #33252d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}
.location-map-label strong {
  margin-top: 3px;
  color: var(--plum);
  font-size: 14px;
  line-height: 1.1;
}
.location-map-label--lotus {
  top: 14%;
  right: 9%;
}
.location-map-label--mathura {
  top: 18%;
  left: 7%;
}
.location-map-label--dnd {
  right: 8%;
  bottom: 21%;
}
.location-map-label--nehru {
  left: 5%;
  bottom: 18%;
}
.location-map-label--noida {
  right: 21%;
  top: 44%;
}

.location-map-caption {
  position: absolute;
  z-index: 6;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid rgba(84, 46, 68, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 28px rgba(58, 35, 47, 0.11);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: "Optima", sans-serif;
}
.location-map-caption span {
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
}
.location-map-caption small {
  color: #71666d;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .location-section {
    min-height: auto;
  }
  .location-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 34px;
  }
  .location-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .location-highlight-card {
    min-height: 76px;
    padding: 13px 15px;
  }
  .location-highlight-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
  .location-map-wrap {
    min-height: 560px;
  }
}

@media (max-width: 920px) {
  .location-section {
    padding: 58px 24px 64px;
  }
  .location-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .location-content {
    text-align: center;
  }
  .location-content h2,
  .location-intro,
  .location-highlights {
    margin-inline: auto;
  }
  .location-intro {
    max-width: 720px;
  }
  .location-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }
  .location-cta {
    margin-inline: auto;
  }
  .location-map-wrap {
    width: min(100%, 820px);
    min-height: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .location-section {
    padding: 46px 16px 52px;
  }
  .location-content h2 {
    font-size: clamp(31px, 9.3vw, 43px);
    line-height: 1.05;
  }
  .location-kicker {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .location-intro {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }
  .location-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .location-highlight-card {
    min-height: 75px;
    border-radius: 15px;
  }
  .location-highlight-card small {
    font-size: 12px;
  }
  .location-cta {
    width: 100%;
    min-height: 58px;
    margin-top: 26px;
  }
  .location-map-wrap {
    min-height: 430px;
    border-radius: 26px 8px 26px 8px;
  }
  .location-map-pin {
    width: 60px;
    height: 60px;
    border-width: 5px;
    font-size: 23px;
  }
  .location-map-ring--one {
    width: 40%;
  }
  .location-map-ring--two {
    width: 72%;
  }
  .location-map-label {
    min-width: 102px;
    padding: 9px 11px 8px;
    border-radius: 12px;
  }
  .location-map-label span {
    font-size: 11px;
  }
  .location-map-label strong {
    font-size: 12px;
  }
  .location-map-label--lotus {
    top: 12%;
    right: 4%;
  }
  .location-map-label--mathura {
    top: 19%;
    left: 4%;
  }
  .location-map-label--dnd {
    right: 3%;
    bottom: 22%;
  }
  .location-map-label--nehru {
    left: 3%;
    bottom: 18%;
  }
  .location-map-label--noida {
    display: none;
  }
  .location-map-caption {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: space-between;
    padding: 10px 12px;
  }
}

@media (max-width: 420px) {
  .location-section {
    padding-inline: 13px;
  }
  .location-map-wrap {
    min-height: 390px;
  }
  .location-map-label--mathura {
    top: 16%;
  }
  .location-map-label--lotus {
    top: 8%;
  }
  .location-map-caption small {
    display: none;
  }
}

/* =========================================================
   Location refinement — matches Floor Plan heading/button language
   and uses the supplied Kreeva Swaranaya site-location artwork.
   ========================================================= */
.location-section {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: clamp(34px, 3.2vw, 52px);
  padding: clamp(52px, 5vw, 76px) clamp(22px, 4.5vw, 76px);
}

.location-heading {
  width: min(1780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.location-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  color: #171517;
  font-family: "Optima", sans-serif;
  font-size: clamp(20px, 1.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 22px;
  width: 98px;
  height: 6px;
  background: #463644;
  content: "";
}

.location-shell {
  width: min(1780px, 100%);
  grid-template-columns: minmax(0, 0.83fr) minmax(520px, 1.17fr);
  gap: clamp(34px, 4.6vw, 78px);
  align-items: center;
}

.location-intro,
.location-intro--lead {
  max-width: 760px;
  margin: 0;
  color: #675e63;
  font-family: "Optima", sans-serif;
  font-size: clamp(15px, 1.03vw, 19px);
  font-weight: 400;
  line-height: 1.72;
}

.location-intro--lead strong {
  display: block;
  margin-bottom: 10px;
  color: #241920;
  font-size: clamp(20px, 1.55vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}

.location-highlights {
  margin-top: clamp(24px, 2.2vw, 34px);
}

.location-cta {
  position: relative;
  overflow: hidden;
  min-width: 238px;
  min-height: 54px;
  margin-top: clamp(26px, 2.6vw, 38px);
  padding: 12px 22px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(90deg, #4b2549 0%, #8500e8 100%);
  box-shadow: 0 12px 28px rgba(58, 17, 73, 0.2);
  color: #fff;
  font-family: "Optima", sans-serif;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 400;
  letter-spacing: 0.15px;
  line-height: 1.2;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.location-cta::before {
  position: absolute;
  top: -120%;
  left: -35%;
  width: 34%;
  height: 340%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  content: "";
  transform: rotate(18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.location-cta:hover {
  color: #fff;
  filter: saturate(1.06);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(58, 17, 73, 0.3);
}

.location-cta:hover::before {
  left: 110%;
}
.location-cta:focus-visible {
  outline: 3px solid rgba(133, 0, 232, 0.25);
  outline-offset: 4px;
}
.location-cta i {
  font-size: 22px;
}

.location-map-wrap {
  position: relative;
  min-height: 0;
  margin: 0;
  aspect-ratio: 1.397 / 1;
  overflow: hidden;
  border: 1px solid rgba(84, 46, 68, 0.2);
  border-radius: 26px 8px 26px 8px;
  background: #e8e1dc;
  box-shadow: 0 26px 60px rgba(66, 39, 53, 0.15);
}

.location-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.45s ease;
}

.location-map-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(84, 46, 68, 0.02),
    transparent 58%,
    rgba(29, 17, 24, 0.15)
  );
  content: "";
  pointer-events: none;
}

.location-map-wrap:hover .location-map-image {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.location-map-caption {
  right: auto;
  bottom: 16px;
  left: 16px;
  z-index: 4;
}

@media (max-width: 1180px) {
  .location-section {
    min-height: auto;
  }
  .location-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 34px;
  }
}

@media (max-width: 920px) {
  .location-section {
    min-height: auto;
    gap: 34px;
    padding: 58px 24px 64px;
  }
  .location-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .location-content {
    text-align: center;
  }
  .location-intro--lead {
    margin-inline: auto;
  }
  .location-highlights {
    margin-inline: auto;
    text-align: left;
  }
  .location-cta {
    margin-inline: auto;
  }
  .location-map-wrap {
    width: min(100%, 900px);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .location-section {
    gap: 28px;
    padding: 46px 16px 52px;
  }
  .location-heading h2 {
    font-size: 19px;
  }
  .location-heading h2::after {
    left: 16px;
    width: 82px;
    height: 5px;
  }
  .location-intro--lead {
    font-size: 14px;
    line-height: 1.65;
  }
  .location-intro--lead strong {
    margin-bottom: 8px;
    font-size: 21px;
  }
  .location-highlights {
    margin-top: 22px;
  }
  .location-cta {
    width: min(100%, 300px);
    min-height: 52px;
    margin-top: 25px;
  }
  .location-map-wrap {
    border-radius: 20px 7px 20px 7px;
  }
  .location-map-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: space-between;
  }
}

@media (max-width: 420px) {
  .location-section {
    padding-inline: 13px;
  }
  .location-map-wrap {
    aspect-ratio: 1 / 0.86;
  }
  .location-map-image {
    object-position: 52% center;
  }
  .location-map-caption small {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Mobile-only interaction/layout refinements
   Desktop and tablet layouts intentionally remain unchanged.
   -------------------------------------------------------------------------- */
.amenities-mobile-nav {
  display: none;
}
.mobile-gallery-lightbox {
  display: none;
}

@media (max-width: 576px) {
  /* Overview: compact 2 x 2 feature matrix */
  .overview-features {
    width: 100%;
    margin: 30px 0 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .overview-feature {
    align-items: flex-start;
    gap: 9px;
    min-height: 112px;
    padding: 14px 10px 13px 13px;
    border-radius: 8px;
  }
  .overview-feature::before {
    width: 3px;
  }
  .overview-feature .bi {
    flex: 0 0 27px;
    width: 27px;
    margin-top: 1px;
    font-size: 25px;
  }
  .overview-feature span {
    gap: 0;
  }
  .overview-feature strong {
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.05px;
  }
  .overview-feature:hover {
    transform: none;
  }

  /* CTA is moved below the project imagery by JS on mobile. */
  .overview-bottom.mobile-after-images {
    width: 100%;
    margin: 22px 0 0;
    padding-inline: 0;
  }
  .overview-bottom.mobile-after-images h3 {
    margin-bottom: 14px;
    padding-inline: 6px;
    font-size: 14px;
    line-height: 1.45;
  }
  .overview-bottom.mobile-after-images .overview-brochure {
    width: 100%;
    min-height: 52px;
    border-radius: 6px;
  }

  /* Gallery: clean mobile thumbnails. Tap opens full-screen swipe viewer. */
  .gallery-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding-inline: 15px;
  }
  .gallery-card,
  .gallery-card.is-active {
    width: 100%;
    height: 150px;
    flex: none;
    border-radius: 8px;
    box-shadow: 0 7px 18px rgba(84, 46, 68, 0.1);
  }
  .gallery-card:first-child {
    grid-column: 1 / -1;
    height: 205px;
  }
  .gallery-card img,
  .gallery-card.is-active img {
    filter: none;
    transform: none;
  }
  .gallery-card::before {
    position: absolute;
    z-index: 2;
    right: 9px;
    bottom: 9px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    background: rgba(42, 22, 34, 0.64);
    color: #fff;
    content: "↗";
    font: 500 14px/1 sans-serif;
    backdrop-filter: blur(7px);
  }

  .mobile-gallery-lightbox {
    position: fixed;
    z-index: 10020;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: max(18px, env(safe-area-inset-top)) 14px
      max(18px, env(safe-area-inset-bottom));
    background: rgba(21, 13, 18, 0.94);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
  }
  .mobile-gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-gallery-lightbox__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 3px 12px;
    color: #fff;
  }
  .mobile-gallery-lightbox__count {
    font:
      500 12px/1.2 "Optima",
      sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .mobile-gallery-lightbox__close,
  .mobile-gallery-lightbox__arrow {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
  }
  .mobile-gallery-lightbox__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
  }
  .mobile-gallery-lightbox__viewport {
    position: relative;
    display: grid;
    min-height: 0;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
  }
  .mobile-gallery-lightbox__image {
    display: block;
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 10px;
    user-select: none;
    -webkit-user-drag: none;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }
  .mobile-gallery-lightbox__controls {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
  }
  .mobile-gallery-lightbox__arrow {
    width: 48px;
    height: 42px;
    border-radius: 21px;
    font-size: 18px;
  }
  .mobile-gallery-lightbox__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
  }
  .mobile-gallery-lightbox__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
  }
  .mobile-gallery-lightbox__dot.is-active {
    width: 22px;
    border-radius: 8px;
    background: #d2a765;
  }
  body.mobile-lightbox-open {
    overflow: hidden;
  }

  /* Payment plan: 6-cell composition = ring + 5 years (3 rows x 2 columns). */
  .payment-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(132px, auto);
    gap: 12px;
    width: 100%;
    min-height: 0;
    align-items: stretch;
  }
  .payment-connectors {
    display: none;
  }
  .payment-ring-wrap {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: min(145px, 100%);
    height: auto;
    margin: 0;
    aspect-ratio: 1;
    filter: drop-shadow(0 12px 22px rgba(84, 46, 68, 0.14));
    transform: none;
  }
  .payment-track,
  .payment-segment {
    stroke-width: 34;
  }
  .payment-segment.is-active {
    stroke-width: 42;
  }
  .payment-ring-center {
    width: 78px;
    height: 78px;
  }
  .payment-ring-center .bi {
    margin-bottom: 2px;
    font-size: 15px;
  }
  .payment-ring-center strong {
    font-size: 11px;
    letter-spacing: 0.7px;
  }
  .payment-ring-center span {
    margin-top: 2px;
    font-size: 6px;
    letter-spacing: 0.7px;
  }
  .payment-option,
  .payment-option-one,
  .payment-option-two,
  .payment-option-three,
  .payment-option-four,
  .payment-option-five {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 132px;
    padding: 14px 12px;
    transform: none;
  }
  .payment-option-one {
    grid-column: 2;
    grid-row: 1;
  }
  .payment-option-two {
    grid-column: 1;
    grid-row: 2;
  }
  .payment-option-three {
    grid-column: 2;
    grid-row: 2;
  }
  .payment-option-four {
    grid-column: 1;
    grid-row: 3;
  }
  .payment-option-five {
    grid-column: 2;
    grid-row: 3;
  }
  .payment-option span {
    font-size: 11px;
  }
  .payment-option strong {
    margin: 5px 0;
    font-size: 23px;
  }
  .payment-option small {
    font-size: 9px;
    line-height: 1.35;
  }
  .payment-option.is-active,
  .payment-option-four.is-active {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 14px 28px rgba(84, 46, 68, 0.2);
    transform: translateY(-2px);
  }

  /* Amenities: one premium frame at a time with arrows, dots and swipe. */
  .amenities-wrapper {
    padding-inline: 15px;
  }
  .amenities-grid {
    position: relative;
    display: block;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 12px;
    background: #251b21;
    box-shadow: 0 15px 34px rgba(42, 23, 34, 0.16);
  }
  .amenity-card,
  .amenity-card:first-child,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3),
  .amenity-card:nth-child(4),
  .amenity-card:nth-child(5),
  .amenity-card:last-child {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(9%);
    transition:
      opacity 0.42s ease,
      transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1),
      visibility 0.42s ease;
  }
  .amenity-card.is-mobile-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .amenity-card img {
    transform: none !important;
  }
  .amenity-card figcaption {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    background: rgba(50, 27, 42, 0.72);
    color: #fff;
    text-align: left;
    backdrop-filter: blur(10px);
    transform: none !important;
  }
  .amenity-number {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .amenity-copy {
    padding-top: 0;
  }
  .amenity-copy strong {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.2;
  }
  .amenity-copy small {
    font-size: 10px;
    line-height: 1.35;
  }
  .amenities-mobile-nav {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
  }
  .amenities-mobile-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(84, 46, 68, 0.18);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 7px 18px rgba(84, 46, 68, 0.1);
    color: var(--plum);
  }
  .amenities-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
  }
  .amenities-mobile-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(84, 46, 68, 0.22);
    transition:
      width 0.25s ease,
      background 0.25s ease;
  }
  .amenities-mobile-dot.is-active {
    width: 24px;
    border-radius: 8px;
    background: var(--plum);
  }
}

/* Kreeva Swaranaya local brand logo */
.brand {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(84, 46, 68, 0.14);
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 8px 24px rgba(20, 16, 18, 0.1);
}
.brand img {
  display: block;
  width: 240px;
  max-height: 84px;
  object-fit: contain;
}
.site-header.is-solid .brand {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 8px 22px rgba(20, 16, 18, 0.08);
}
@media (max-width: 992px) {
  .brand {
    padding: 8px 14px;
    border-radius: 10px;
  }
  .brand img {
    width: 205px;
    max-height: 72px;
  }
  .site-header.is-solid .brand {
    padding: 8px 14px;
  }
}
@media (max-width: 576px) {
  .brand {
    padding: 7px 12px;
    border-radius: 10px;
  }
  .brand img {
    width: 182px;
    max-height: 64px;
  }
}

/* =========================================================
   Mobile sticky contact bar
   Mobile only: direct call + WhatsApp, themed to Kreeva.
   ========================================================= */
.mobile-contact-bar {
  display: none;
}

@media (max-width: 576px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 9000;
    right: 10px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 6px;
    border: 1px solid rgba(84, 46, 68, 0.15);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.93);
    box-shadow:
      0 14px 38px rgba(45, 25, 36, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
  }

  .mobile-contact-bar__action {
    position: relative;
    isolation: isolate;
    display: flex;
    min-width: 0;
    min-height: 57px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow: hidden;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 11px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      filter 0.18s ease;
  }

  .mobile-contact-bar__action::after {
    position: absolute;
    z-index: -1;
    top: -70%;
    left: -34%;
    width: 36%;
    height: 240%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.26),
      transparent
    );
    content: "";
    transform: rotate(18deg);
    transition: left 0.48s ease;
  }

  .mobile-contact-bar__action:active {
    transform: translateY(1px) scale(0.985);
  }

  .mobile-contact-bar__call {
    border-color: rgba(84, 46, 68, 0.16);
    background: linear-gradient(145deg, #fffdf9 0%, #f2e9ee 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #542e44;
  }

  .mobile-contact-bar__whatsapp {
    background: linear-gradient(145deg, #653a55 0%, #542e44 52%, #422233 100%);
    box-shadow:
      0 8px 18px rgba(84, 46, 68, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    color: #fff;
  }

  .mobile-contact-bar__icon {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    font-size: 15px;
  }

  .mobile-contact-bar__call .mobile-contact-bar__icon {
    background: #542e44;
    color: #fff;
    box-shadow: 0 6px 14px rgba(84, 46, 68, 0.18);
  }

  .mobile-contact-bar__whatsapp .mobile-contact-bar__icon {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .mobile-contact-bar__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1px;
    line-height: 1.05;
    text-align: left;
  }

  .mobile-contact-bar__copy small {
    overflow: hidden;
    max-width: 100%;
    font:
      500 8px/1.15 "Optima",
      sans-serif;
    letter-spacing: 0.35px;
    opacity: 0.72;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-contact-bar__copy strong {
    overflow: hidden;
    max-width: 100%;
    font:
      600 13px/1.15 "Optima",
      sans-serif;
    letter-spacing: 0.1px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-contact-bar__action:focus-visible {
    outline: 2px solid #c49a63;
    outline-offset: 2px;
  }

  @media (hover: hover) {
    .mobile-contact-bar__action:hover {
      transform: translateY(-2px);
      filter: brightness(1.02);
    }
    .mobile-contact-bar__action:hover::after {
      left: 116%;
    }
  }
}

@media (max-width: 370px) {
  .mobile-contact-bar {
    right: 7px;
    left: 7px;
    gap: 5px;
  }
  .mobile-contact-bar__action {
    gap: 6px;
    padding-inline: 7px;
  }
  .mobile-contact-bar__icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
  .mobile-contact-bar__copy small {
    display: none;
  }
  .mobile-contact-bar__copy strong {
    font-size: 12px;
  }
}

/* =========================================================
   FINAL MOBILE UX REFINEMENTS — mobile only
   ========================================================= */
@media (max-width: 576px) {
  /* Hero: clean centered typography with predictable wrapping. */
  .hero-content-wrap {
    align-items: center;
    padding: 8px 10px 74px;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 14px 10px 12px;
    overflow: visible;
    background: rgba(8, 14, 24, 0.28);
    text-align: center;
  }
  .hero-eyebrow {
    margin: 0 0 7px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 2.4px;
    text-align: center;
    white-space: normal;
    transform: none;
  }
  .hero-content h1 {
    width: 100%;
    margin: 0 0 12px;
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.08;
    letter-spacing: 0.8px;
    text-align: center;
    white-space: normal;
    overflow-wrap: normal;
    transform: none;
  }
  .hero-location {
    display: block;
    width: fit-content;
    max-width: 96%;
    margin: 0 auto 13px;
    padding: 8px 12px;
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }
  .hero-type {
    max-width: 96%;
    margin: 0 auto 14px;
    font-size: clamp(14px, 4vw, 17px);
    line-height: 1.42;
    text-align: center;
    white-space: normal;
  }
  .hero-highlights {
    width: min(94%, 390px);
    margin: 0 auto 14px;
  }
  .hero-highlights li {
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 9px;
    font-size: clamp(12px, 3.55vw, 14px);
    line-height: 1.35;
    white-space: normal;
  }
  .hero-highlights .bi-stars {
    flex: 0 0 auto;
    margin-top: 1px;
    font-size: 19px;
  }
  .hero-price {
    width: fit-content;
    max-width: 96%;
    margin: 0 auto;
    padding: 7px 12px;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.2;
    white-space: normal;
  }

  /* Overview cards: true content-height 2x2 matrix. */
  .overview-features {
    align-items: stretch;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 28px;
  }
  .overview-feature {
    min-height: 0;
    height: auto;
    align-items: center;
    gap: 8px;
    padding: 12px 9px 12px 12px;
  }
  .overview-feature .bi {
    flex-basis: 24px;
    width: 24px;
    font-size: 23px;
  }
  .overview-feature strong {
    font-size: 11.5px;
    line-height: 1.28;
  }

  /* Location cards: remove unnecessary empty height on small screens. */
  .location-highlights {
    gap: 9px;
  }
  .location-highlight-card {
    min-height: 0;
    height: auto;
    padding: 11px 12px;
    border-radius: 13px;
  }
  .location-highlight-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }
  .location-highlight-card strong {
    font-size: 13px;
    line-height: 1.25;
  }
  .location-highlight-card small {
    margin-top: 3px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  /* Gallery lightbox: image only. Swipe horizontally; no arrows/count/dots/buttons. */
  .mobile-gallery-lightbox.mobile-gallery-lightbox--minimal {
    z-index: 12000;
    display: grid;
    padding: 0;
    background: #080708;
  }
  .mobile-gallery-lightbox--minimal .mobile-gallery-lightbox__close {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 14px;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(18, 15, 17, 0.72);
    color: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-gallery-lightbox--minimal .mobile-gallery-lightbox__close span {
    display: block;
    margin-top: -2px;
    font-family: Arial, sans-serif;
    font-size: 31px;
    font-weight: 300;
    line-height: 1;
  }
  .mobile-gallery-lightbox--minimal .mobile-gallery-lightbox__close:active {
    transform: scale(0.94);
  }
  .mobile-gallery-lightbox--minimal .mobile-gallery-lightbox__close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }

  .mobile-gallery-lightbox--minimal .mobile-gallery-lightbox__viewport {
    display: grid;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    place-items: center;
    padding: 0;
    touch-action: pan-y;
  }
  .mobile-gallery-lightbox--minimal .mobile-gallery-lightbox__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100vw;
    max-height: 100dvh;
    margin: 0;
    border: 0;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: opacity 0.16s ease;
  }
  .mobile-gallery-lightbox--minimal
    .mobile-gallery-lightbox__image.is-changing {
    opacity: 0.25;
  }

  /* Amenities: back to a simple 2 x 2 visual grid. No captions/details on mobile. */
  .amenities-wrapper {
    padding-inline: 12px;
  }
  .amenities-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, 145px) !important;
    gap: 8px !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .amenity-card,
  .amenity-card:first-child,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3),
  .amenity-card:nth-child(4),
  .amenity-card:last-child {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: 145px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    transform: none !important;
    transition: none !important;
  }
  .amenity-card:nth-child(n + 5) {
    display: none !important;
  }
  .amenity-card::after {
    display: none !important;
  }
  .amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
    filter: none !important;
  }
  .amenity-card figcaption {
    display: none !important;
  }
  .amenities-mobile-nav {
    display: none !important;
  }

  /* Sticky contact actions: flush to viewport bottom, no outer margin. */
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }
  .mobile-contact-bar {
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    gap: 0;
    padding: 0 0 env(safe-area-inset-bottom);
    border: 0;
    border-top: 1px solid rgba(84, 46, 68, 0.13);
    border-radius: 0;
    background: #fffaf6;
    box-shadow: 0 -8px 24px rgba(45, 25, 36, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mobile-contact-bar__action {
    min-height: 64px;
    gap: 8px;
    padding: 8px 10px;
    border: 0;
    border-radius: 0;
  }
  .mobile-contact-bar__call {
    border-right: 1px solid rgba(84, 46, 68, 0.12);
    background: #fffaf6;
    color: #542e44;
    box-shadow: none;
  }
  .mobile-contact-bar__whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: none;
  }
  .mobile-contact-bar__whatsapp .mobile-contact-bar__icon {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.16);
  }
  .mobile-contact-bar__whatsapp .mobile-contact-bar__copy small,
  .mobile-contact-bar__whatsapp .mobile-contact-bar__copy strong {
    color: #fff;
    opacity: 1;
  }
  .mobile-contact-bar__copy small {
    font-size: 8px;
  }
  .mobile-contact-bar__copy strong {
    font-size: 13px;
  }
}

@media (max-width: 370px) {
  .mobile-contact-bar {
    right: 0 !important;
    left: 0 !important;
    gap: 0 !important;
  }
  .mobile-contact-bar__action {
    padding-inline: 6px;
  }
}

/* =========================================================
   Desktop refinement — section navigation, compact location
   cards, and Overview-aligned gallery width.
   Mobile/tablet presentation remains unchanged.
   ========================================================= */
@media (min-width: 921px) {
  /* Keep the desktop navigation limited to sections that exist,
     while giving the remaining labels enough breathing room. */
  .site-nav li {
    padding-inline: 8px;
  }

  .site-nav a {
    font-size: 15.5px;
  }

  /* Gallery now follows the same 80% content width as Overview. */
  .gallery-heading,
  .gallery-strip {
    width: 80%;
    max-width: none;
    margin-inline: auto;
  }

  .gallery-strip {
    padding-inline: 0;
    gap: 14px;
  }

  .gallery-card {
    height: clamp(440px, 31vw, 560px);
  }

  /* Location cards: desktop only — remove secondary copy and
     reduce the oversized card footprint to a concise title row. */
  .location-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
  }

  .location-highlight-card {
    min-height: 68px;
    padding: 11px 14px;
    gap: 13px;
    border-radius: 14px;
  }

  .location-highlight-card small {
    display: none;
  }

  .location-highlight-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 20px;
  }

  .location-highlight-card strong {
    font-size: 14px;
    line-height: 1.25;
  }
}

/* =========================================================
   Desktop gallery full-width refinement + simplified CTAs
   ========================================================= */
@media (min-width: 993px) {
  .gallery-section {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-heading {
    width: min(92%, 1720px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-strip {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(18px, 2vw, 38px);
    padding-right: clamp(18px, 2vw, 38px);
    gap: clamp(10px, 1vw, 18px);
    box-sizing: border-box;
  }

  .gallery-card {
    min-width: 0;
  }
}

.mobile-contact-bar__copy strong {
  line-height: 1.05;
}

@media (max-width: 576px) {
  .mobile-contact-bar__copy small {
    display: none !important;
  }
  .mobile-contact-bar__copy {
    display: flex;
    align-items: center;
  }
}

/* =========================================================
   Final header brand refinement: plain logo, no container box
   ========================================================= */
.brand,
.site-header.is-solid .brand {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.brand img {
  width: 248px;
  max-height: 78px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .brand img {
    width: 210px;
    max-height: 68px;
  }
}
@media (max-width: 576px) {
  .brand img {
    width: 178px;
    max-height: 58px;
  }
}

/* =========================================================
   Desktop gallery viewer
   ========================================================= */
.desktop-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 34px 82px;
  background: rgba(18, 12, 16, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}
.desktop-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.desktop-gallery-lightbox__stage {
  position: relative;
  width: min(1280px, 88vw);
  height: min(800px, 82vh);
  display: grid;
  place-items: center;
}
.desktop-gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  user-select: none;
}
.desktop-gallery-lightbox__image.is-changing {
  opacity: 0.25;
  transform: scale(0.988);
}
.desktop-gallery-lightbox__close,
.desktop-gallery-lightbox__arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
.desktop-gallery-lightbox__close:hover,
.desktop-gallery-lightbox__arrow:hover {
  background: #542e44;
  border-color: #542e44;
}
.desktop-gallery-lightbox__close {
  top: 22px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 29px;
  line-height: 1;
}
.desktop-gallery-lightbox__arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 26px;
}
.desktop-gallery-lightbox__arrow:hover {
  transform: translateY(-50%) scale(1.05);
}
.desktop-gallery-lightbox__arrow--prev {
  left: 24px;
}
.desktop-gallery-lightbox__arrow--next {
  right: 24px;
}
.desktop-gallery-lightbox__counter {
  position: absolute;
  left: 28px;
  top: 28px;
  color: rgba(255, 255, 255, 0.88);
  font:
    600 14px/1 Optima,
    sans-serif;
  letter-spacing: 0.12em;
}
body.desktop-gallery-open {
  overflow: hidden;
}
@media (max-width: 992px) {
  .desktop-gallery-lightbox {
    display: none !important;
  }
}

/* =========================================================
   Compact desktop header
   Keeps the existing visual design while reducing vertical space.
   ========================================================= */
@media (min-width: 993px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 4px 0;
  }

  .header-inner {
    min-height: 58px;
  }

  .brand img {
    width: 210px;
    max-height: 54px;
  }

  .site-nav li {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .site-nav a {
    font-size: 15px;
  }

  .call-button {
    padding: 6px 15px;
  }
}

/* =========================================================
   Mobile amenities refinement
   Applies through common phone / small-device landscape widths.
   Desktop and tablet presentation above 767px remains unchanged.
   ========================================================= */
@media (max-width: 767px) {
  .amenities-section {
    padding: 30px 0 34px !important;
    background: #f4f2f1 !important;
    overflow: hidden;
  }

  .amenities-head {
    width: 100%;
    margin: 0 auto 24px !important;
    padding: 0 18px !important;
    text-align: center;
  }

  .amenities-head h2 {
    max-width: 100%;
    padding-bottom: 13px !important;
    font-size: clamp(18px, 5.3vw, 23px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    white-space: normal;
  }

  .amenities-head h2::after {
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 92px !important;
    height: 4px !important;
    margin: auto;
  }

  .amenities-head p {
    margin: 14px auto 0 !important;
    font-size: clamp(10px, 2.8vw, 12px) !important;
    line-height: 1.45 !important;
    letter-spacing: 1.45px !important;
  }

  .amenities-wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 14px !important;
  }

  .amenities-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 520px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: visible !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .amenity-card,
  .amenity-card:first-child,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3),
  .amenity-card:nth-child(4),
  .amenity-card:nth-child(5),
  .amenity-card:last-child {
    position: relative !important;
    inset: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(84, 46, 68, 0.1) !important;
    border-radius: 14px !important;
    background: #e8e3e5 !important;
    box-shadow: 0 8px 20px rgba(39, 27, 34, 0.08) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease !important;
  }

  /* Keep the mobile presentation intentionally compact: 4 strong visuals = 2 x 2. */
  .amenity-card:nth-child(n + 5) {
    display: none !important;
  }

  .amenity-card::after,
  .amenity-card figcaption {
    display: none !important;
  }

  .amenity-card img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .amenity-card:nth-child(1) img {
    object-position: 58% center !important;
  }
  .amenity-card:nth-child(2) img {
    object-position: center !important;
  }
  .amenity-card:nth-child(3) img {
    object-position: center 40% !important;
  }
  .amenity-card:nth-child(4) img {
    object-position: center !important;
  }

  .amenity-card:active {
    transform: scale(0.985) !important;
  }

  .amenities-mobile-nav {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .amenities-wrapper {
    padding-inline: 10px !important;
  }

  .amenities-grid {
    gap: 8px !important;
  }

  .amenity-card,
  .amenity-card:first-child,
  .amenity-card:nth-child(2),
  .amenity-card:nth-child(3),
  .amenity-card:nth-child(4) {
    border-radius: 11px !important;
  }
}

/* =========================================================
   FINAL PRODUCTION HEADER ALIGNMENT
   The logo asset is physically trimmed; these rules keep the
   brand visually centered without transforms or magic offsets.
   ========================================================= */
@media (min-width: 993px) {
  .site-header {
    padding-block: 4px;
  }

  .header-inner {
    min-height: 58px;
    align-items: center;
  }

  .brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-self: center;
    height: 58px;
    line-height: 0;
  }

  .brand img {
    display: block;
    width: 210px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: center;
  }

  .site-nav,
  .site-nav ul {
    align-items: center;
  }
}

.location-content a,
.location-map-caption a {
  color: inherit;
  text-decoration: none;
}

.location-content a:hover,
.location-map-caption a:hover {
  color: #542e44;
}

/* FAQ section — layout follows the supplied two-column accordion reference
   while typography, spacing and palette stay aligned with the project. */
.faq-section {
  padding: clamp(52px, 5vw, 76px) clamp(22px, 4.5vw, 76px);
  background: #f7f5ef;
}

.faq-shell {
  width: min(1780px, 100%);
  margin: 0 auto;
}

.faq-heading {
  margin-bottom: clamp(34px, 3.2vw, 52px);
  text-align: center;
}

.faq-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  color: #171517;
  font-family: "Optima", sans-serif;
  font-size: clamp(20px, 1.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 22px;
  width: 98px;
  height: 6px;
  background: #463644;
  content: "";
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(84, 46, 68, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(84, 46, 68, 0.36);
  background: #fff;
}

.faq-question {
  margin: 0;
}

.faq-toggle {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 46px;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 98px;
  margin: 0;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: #241920;
  font-family: "Optima", sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.faq-question-text {
  font-size: clamp(16px, 1.08vw, 19px);
  font-weight: 700;
  letter-spacing: 0.15px;
  line-height: 1.35;
}

.faq-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(84, 46, 68, 0.22);
  border-radius: 50%;
  background: #faf6ee;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--plum);
  content: "";
  transition: transform 0.25s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  border-color: var(--plum);
  background: var(--plum);
}

.faq-toggle[aria-expanded="true"] .faq-icon::before,
.faq-toggle[aria-expanded="true"] .faq-icon::after {
  background: #fff;
}

.faq-toggle[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-toggle:focus-visible {
  outline: 3px solid rgba(84, 46, 68, 0.2);
  outline-offset: -3px;
}

.faq-answer-inner {
  padding: 0 92px 28px 98px;
  color: #675e63;
  font-family: "Optima", sans-serif;
  font-size: clamp(15px, 1.03vw, 19px);
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.72;
}

.faq-answer-inner p {
  margin: 0;
}

.faq-answer-inner p + p,
.faq-answer-inner ul + p,
.faq-answer-inner p + ul {
  margin-top: 12px;
}

.faq-answer-inner ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.faq-answer-inner li + li {
  margin-top: 6px;
}

.faq-answer-inner strong {
  color: #241920;
  font-weight: 700;
}

.faq-answer-inner a {
  color: var(--plum);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-note {
  font-size: 0.92em;
}

@media (max-width: 920px) {
  .faq-section {
    padding: 58px 24px 64px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 46px 16px 52px;
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-heading h2 {
    font-size: 19px;
  }

  .faq-heading h2::after {
    left: 16px;
    width: 82px;
    height: 5px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-toggle {
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    gap: 13px;
    min-height: 82px;
    padding: 16px;
  }

  .faq-number {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .faq-question-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .faq-icon {
    width: 38px;
    height: 38px;
  }

  .faq-icon::before,
  .faq-icon::after {
    width: 14px;
  }

  .faq-answer-inner {
    padding: 0 16px 22px 71px;
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 420px) {
  .faq-toggle {
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 14px 13px;
  }

  .faq-number {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
  }

  .faq-answer-inner {
    padding: 0 14px 20px 61px;
  }
}
