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

:root {
  --trident-blue: #063da8;
  --trident-blue-dark: #02266f;
  --trident-blue-light: #0a58d0;
  --trident-green: #00c83f;
  --trident-green-dark: #009e32;
  --plum: var(--trident-blue);
  --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(10, 22, 45, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.enquiry-modal__dialog {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100svh - 36px);
  overflow: auto;
  border: 1px solid rgba(6, 61, 168, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(7, 26, 61, 0.24);
  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 {
  display: none;
  content: none;
}

.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: 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(90vw, 410px);
    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;
  }
}

/* Trident brand palette: blue leads the interface; green is reserved for accents. */
.site-nav a:not(.call-button)::after, .section-title::after, .overview-feature::before,
.gallery-card.is-active::after, .payment-heading::after, .floor-plan-heading::after,
.amenities-head::after, .location-heading::after, .faq-heading::after { background: var(--trident-green); }
.call-button, .overview-brochure, .gallery-brochure, .price-details-button, .price-download,
.floor-plan-download, .location-cta, .enquiry-form__submit, .enquiry-success__close {
  background: linear-gradient(115deg, var(--trident-blue-dark), var(--trident-blue) 62%, var(--trident-blue-light));
  box-shadow: 0 10px 24px rgba(6, 61, 168, 0.24);
}
.call-button { border-color: var(--trident-blue); }
.call-button:hover, .call-button:focus-visible { background: var(--trident-blue); border-color: var(--trident-green); box-shadow: inset 0 -3px 0 var(--trident-green); }
.hero-content h1, .hero-price strong {
  background: linear-gradient(110deg, var(--trident-blue-light), var(--trident-blue) 78%, var(--trident-green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.read-more:hover, .read-more:focus-visible, .overview-feature:hover .bi, .price-action p .bi,
.site-footer h2, .location-content a:hover, .location-map-caption a:hover { border-color: var(--trident-green); color: var(--trident-green); }
.gallery-card:focus-visible { outline-color: var(--trident-green); }
.price-table th, .payment-option.is-active { background: linear-gradient(115deg, var(--trident-blue-dark), var(--trident-blue) 58%, var(--trident-blue-light)); }
.price-table tbody tr:hover { box-shadow: inset 4px 0 var(--trident-green), 0 12px 28px rgba(6, 61, 168, 0.12); }
.payment-segment.is-active, .payment-connectors polyline.is-active { stroke: var(--trident-green); }
.payment-connectors circle.is-active { fill: var(--trident-green); }
.payment-ring-center .bi, .payment-eyebrow { color: var(--trident-green); }
.floor-plan-card h3, .amenity-card figcaption { background: linear-gradient(115deg, var(--trident-blue-dark), var(--trident-blue) 72%, var(--trident-blue-light)); }
.mobile-gallery-lightbox__dot.is-active { background: var(--trident-green); }
.mobile-contact-bar__call .mobile-contact-bar__icon { background: var(--trident-blue); }
.mobile-contact-bar__whatsapp { background: var(--trident-green); }

/* Optima display font; existing size rules remain unchanged. */
:is(h1, h2, h3, h4, h5, h6) {
  font-family: "Optima", sans-serif;
}

/* Remove the legacy burgundy/gold treatment from every visible UI surface. */
body,
.overview-section,
.gallery-section,
.price-section,
.payment-section,
.floor-plan-section,
.amenities-section,
.location-section,
.faq-section,
.site-footer { background: #fff; }

.site-footer { border-top-color: rgba(6, 61, 168, 0.16); }

.hero-eyebrow,
.hero-type mark,
.payment-heading > span,
.payment-ring-center .bi,
.price-action p .bi { color: var(--trident-green); }

.gallery-heading h2::after,
.price-heading h2::after,
.payment-heading > span::after,
.payment-heading h2::after,
.floor-plan-heading h2::after,
.amenities-head h2::after,
.location-heading h2::after,
.faq-heading h2::after,
.overview-copy h2::after,
.site-footer h2::after { background: var(--trident-green); }

.overview-feature,
.price-table,
.payment-option,
.payment-ring-center,
.floor-plan-card,
.amenity-card,
.faq-item,
.location-highlight,
.enquiry-modal__content {
  border-color: rgba(6, 61, 168, 0.16);
  box-shadow: 0 12px 28px rgba(6, 61, 168, 0.12);
}

.payment-segment,
.payment-connectors polyline { stroke: var(--trident-blue); }

.payment-segment.is-active,
.payment-connectors polyline.is-active { stroke: var(--trident-green); }

.payment-connectors circle { fill: var(--trident-blue); }
.payment-connectors circle.is-active { fill: var(--trident-green); }

.hero-arrow,
.faq-number,
.desktop-gallery-lightbox__close:hover,
.desktop-gallery-lightbox__arrow:hover {
  background: var(--trident-blue);
  border-color: var(--trident-blue);
}

/* Keep hero navigation unobtrusive until the visitor interacts with it. */
.hero-arrow {
  background: transparent;
  border-color: transparent;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--trident-blue);
  border-color: var(--trident-blue);
}

/* =========================================================
   Cinematic editorial gallery
   ========================================================= */
.gallery-section {
  position: relative;
  padding: clamp(90px, 9vw, 150px) 0 clamp(110px, 11vw, 180px);
  overflow: clip;
  background: #f7f7f4 !important;
}

.gallery-section::before {
  z-index: 0;
  width: 1px;
  height: 78%;
  inset: 11% auto auto 5.5%;
  background: rgba(6, 61, 168, 0.16);
}

.gallery-editorial-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  width: min(88%, 1460px);
  margin: 0 auto clamp(54px, 6vw, 88px);
}

.gallery-heading {
  width: auto;
  margin: 0;
  padding: 0;
  text-align: left;
}

.gallery-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(6, 61, 168, 0.58);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-kicker span {
  color: var(--trident-green-dark);
}

.gallery-kicker::before {
  width: 40px;
  height: 1px;
  background: var(--trident-green);
  content: "";
}

.gallery-heading h2,
body .gallery-heading h2 {
  width: auto;
  margin: 0;
  padding: 0;
  color: var(--trident-blue) !important;
  font-size: clamp(38px, 4.5vw, 76px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: none;
}

.gallery-heading h2::after { display: none; }

.gallery-intro {
  max-width: 560px;
  margin: 27px 0 0 52px;
  color: #555b66;
  font-size: 15px;
  line-height: 1.75;
}

.gallery-filters {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 8px;
}

.gallery-filters button {
  position: relative;
  padding: 7px 0 10px;
  border: 0;
  background: transparent;
  color: #777b83;
  font: 600 11px/1 "Optima", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gallery-filters button::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--trident-green);
  content: "";
  transition: width 0.35s ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active { color: var(--trident-blue); }
.gallery-filters button.is-active::after { width: 100%; }

.gallery-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(62px, 5.3vw, 92px);
  gap: clamp(14px, 1.4vw, 24px);
  width: min(88%, 1460px);
  min-height: 680px;
  margin: 0 auto;
  padding: 0;
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.gallery-strip.is-filtering {
  opacity: 0;
  transform: translateY(12px);
}

.gallery-card,
.gallery-card.is-active {
  position: relative;
  width: auto;
  min-width: 0;
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 0;
  background: #dfe3e8;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(35px);
  animation: gallery-reveal 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--gallery-order) * 75ms);
  animation-play-state: paused;
}

.gallery-card.is-revealed { animation-play-state: running; }

.gallery-card:nth-child(1) { grid-area: 1 / 1 / span 6 / span 7; }
.gallery-card:nth-child(2) { grid-area: 2 / 8 / span 3 / span 4; transform: translateY(35px) rotate(1.2deg); }
.gallery-card:nth-child(3) { grid-area: 6 / 2 / span 4 / span 4; }
.gallery-card:nth-child(4) { grid-area: 5 / 7 / span 5 / span 6; }
.gallery-card:nth-child(5) { grid-area: 10 / 1 / span 3 / span 5; }
.gallery-card:nth-child(6) { grid-area: 10 / 7 / span 4 / span 4; transform: translateY(35px) rotate(-1deg); }
.gallery-card:nth-child(7) { grid-area: 14 / 3 / span 4 / span 5; }
.gallery-card:nth-child(8) { grid-area: 14 / 9 / span 3 / span 4; }

.gallery-card::before { content: none; }

.gallery-card:first-child::before {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: auto;
  bottom: auto;
  left: 20px;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,.86);
  font-size: 10px;
  letter-spacing: .2em;
  content: "01 / FEATURED";
}

.gallery-card::after {
  z-index: 1;
  border: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(1, 16, 46, 0.78));
  opacity: 0.62;
  transition: opacity 0.5s ease;
}

.gallery-card img,
.gallery-card.is-active img,
.gallery-card:not(.is-active) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.001);
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  left: clamp(18px, 2vw, 30px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 7px 16px;
  color: #fff;
  pointer-events: none;
}

.gallery-card figcaption span {
  grid-column: 1;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  grid-column: 1;
  font-size: clamp(17px, 1.45vw, 25px);
  font-weight: 400;
  letter-spacing: .01em;
}

.gallery-card figcaption i {
  grid-area: 1 / 2 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-size: 15px;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease, background .35s ease;
}

.gallery-card:hover img { filter: saturate(1.04); transform: scale(1.055); }
.gallery-card:hover::after { opacity: .92; }
.gallery-card:hover figcaption i { opacity: 1; transform: none; background: var(--trident-blue); }
.gallery-card:focus-visible { outline: 3px solid var(--trident-green); outline-offset: 4px; }

@keyframes gallery-reveal {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.gallery-brochure { margin-top: clamp(60px, 7vw, 100px); }

/* Unified cinematic lightbox */
.gallery-lightbox {
  position: fixed;
  z-index: 11000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px 110px 55px;
  background: #020b1c;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.gallery-lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.gallery-lightbox__top { position: absolute; z-index: 2; top: 25px; right: 30px; left: 30px; display: flex; align-items: center; justify-content: space-between; }
.gallery-lightbox__top p { display: flex; gap: 24px; margin: 0; color: #fff; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.gallery-lightbox__category { color: var(--trident-green); font-weight: 400; }
.gallery-lightbox__close,
.gallery-lightbox__arrow { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.gallery-lightbox__close { width: 46px; height: 46px; font-size: 18px; }
.gallery-lightbox__arrow { position: absolute; z-index: 2; top: 50%; width: 52px; height: 52px; font-size: 19px; transform: translateY(-50%); }
.gallery-lightbox__arrow--prev { left: 30px; }
.gallery-lightbox__arrow--next { right: 30px; }
.gallery-lightbox__close:hover { background: var(--trident-blue); border-color: var(--trident-blue); transform: rotate(90deg); }
.gallery-lightbox__arrow:hover { background: var(--trident-blue); border-color: var(--trident-blue); transform: translateY(-50%) scale(1.07); }
.gallery-lightbox__stage { position: relative; display: grid; place-items: center; width: min(1380px, 84vw); height: min(790px, 78vh); }
.gallery-lightbox__image { display: block; max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 32px 90px rgba(0,0,0,.5); transition: opacity .18s ease, transform .18s ease; }
.gallery-lightbox__image.is-changing { opacity: .15; transform: scale(.985); }
.gallery-lightbox__title { position: absolute; right: 0; bottom: -40px; margin: 0; color: #fff !important; font-size: 17px; font-weight: 400 !important; letter-spacing: .04em !important; }
body.gallery-lightbox-open { overflow: hidden; }

@media (max-width: 992px) {
  .gallery-section { padding: 82px 0 110px; }
  .gallery-section::before { display: none; }
  .gallery-editorial-head { display: block; width: calc(100% - 40px); margin-bottom: 42px; }
  .gallery-heading { text-align: left; }
  .gallery-heading h2,
  body .gallery-heading h2 { font-size: clamp(38px, 9vw, 58px); line-height: 1; }
  .gallery-intro { max-width: 600px; margin: 22px 0 0; }
  .gallery-filters { gap: 22px; margin-top: 34px; overflow-x: auto; scrollbar-width: none; }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 210px; gap: 14px; width: calc(100% - 40px); min-height: 0; }
  .gallery-card:nth-child(n) { grid-area: auto; transform: translateY(30px); }
  .gallery-card:nth-child(1) { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-card:nth-child(4n + 2) { grid-row: span 2; }
  .gallery-card:nth-child(5) { grid-column: 1 / -1; }
  .gallery-lightbox { padding: 76px 18px 95px; }
  .gallery-lightbox__stage { width: 100%; height: 72vh; }
  .gallery-lightbox__arrow { top: auto; bottom: 22px; width: 46px; height: 46px; transform: none; }
  .gallery-lightbox__arrow:hover { transform: scale(1.05); }
  .gallery-lightbox__arrow--prev { left: calc(50% - 56px); }
  .gallery-lightbox__arrow--next { right: calc(50% - 56px); }
  .gallery-lightbox__title { right: auto; bottom: -38px; left: 0; font-size: 15px; }
}

@media (max-width: 576px) {
  .gallery-section { padding: 70px 0 92px; }
  .gallery-editorial-head { width: calc(100% - 30px); margin-bottom: 34px; }
  .gallery-kicker { margin-bottom: 18px; font-size: 9px; }
  .gallery-heading h2,
  body .gallery-heading h2 { font-size: 40px; }
  .gallery-intro { font-size: 14px; line-height: 1.65; }
  .gallery-filters { width: calc(100% + 15px); gap: 20px; margin-top: 28px; padding-right: 15px; }
  .gallery-filters button { flex: 0 0 auto; font-size: 10px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 145px; gap: 9px; width: calc(100% - 18px); }
  .gallery-card:nth-child(1) { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-card:nth-child(2) { grid-row: span 2; }
  .gallery-card:nth-child(3) { margin-top: 28px; }
  .gallery-card:nth-child(4) { grid-row: span 2; }
  .gallery-card:nth-child(5) { grid-column: auto; }
  .gallery-card:nth-child(6) { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-card figcaption { right: 13px; bottom: 13px; left: 13px; }
  .gallery-card figcaption strong { font-size: 15px; line-height: 1.15; }
  .gallery-card figcaption i { display: none; }
  .gallery-card:first-child::before { top: 13px; left: 13px; }
  .gallery-brochure { width: calc(100% - 30px); min-width: 0; font-size: 16px; }
  .gallery-lightbox__top { top: 18px; right: 18px; left: 18px; }
  .gallery-lightbox__top p { gap: 12px; font-size: 9px; }
  .gallery-lightbox__close { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card { opacity: 1; transform: none; animation: none; }
  .gallery-card img, .gallery-strip, .gallery-lightbox, .gallery-lightbox__image { transition: none; }
}

/* =========================================================
   Simple gallery layout
   ========================================================= */
.gallery-section {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(32px, 4vh, 48px) 0;
  flex-direction: column;
  justify-content: center;
  background: #fff !important;
}

.gallery-section::before { display: none; }

.gallery-editorial-head {
  display: block;
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto clamp(20px, 2.8vh, 28px);
}

.gallery-heading {
  width: 100%;
  text-align: center;
}

.gallery-heading h2,
body .gallery-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0 24px;
  color: var(--trident-blue) !important;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .065em;
  text-transform: none;
}

.gallery-heading h2::after {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 50%;
  display: block;
  width: 132px;
  height: 4px;
  border-radius: 4px;
  background: var(--trident-green) !important;
  content: "";
  transform: translateX(-50%);
}

.gallery-filters {
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  margin-top: 26px;
  padding: 0;
}

.gallery-filters button {
  padding: 7px 0 12px;
  color: #777;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .13em;
}

.gallery-filters button::after {
  height: 2px;
  background: var(--trident-green);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(225px, 30vh, 285px);
  gap: 12px;
  width: min(1300px, calc(100% - 40px));
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

.gallery-card,
.gallery-card.is-active,
.gallery-card:nth-child(n) {
  grid-area: auto;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(22px);
}

.gallery-card.is-revealed { animation-play-state: running; }

.gallery-card:first-child::before { content: none; }

.gallery-card::after {
  background: linear-gradient(180deg, transparent 48%, rgba(0, 16, 49, .78));
  opacity: .42;
}

.gallery-card figcaption i {
  width: 38px;
  height: 38px;
}

.gallery-card:hover img { transform: scale(1.045); }

@media (max-width: 900px) {
  .gallery-section { min-height: auto; padding: 46px 0 56px; }
  .gallery-editorial-head { width: calc(100% - 30px); margin-bottom: 34px; }
  .gallery-heading h2,
  body .gallery-heading h2 { font-size: clamp(23px, 4vw, 31px); }
  .gallery-filters { justify-content: flex-start; gap: 34px; margin-top: 30px; padding-bottom: 2px; overflow-x: auto; }
  .gallery-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 280px; gap: 12px; width: calc(100% - 30px); }
  .gallery-card:nth-child(n) { grid-column: auto; grid-row: auto; margin: 0; }
}

@media (max-width: 576px) {
  .gallery-section { padding: 48px 0 58px; }
  .gallery-heading h2,
  body .gallery-heading h2 { font-size: 32px; line-height: 1.25; letter-spacing: .045em; }
  .gallery-heading h2::after { width: 112px; }
  .gallery-filters { gap: 27px; margin-top: 27px; }
  .gallery-filters button { font-size: 12px; }
  .gallery-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 185px; gap: 9px; }
  .gallery-card:nth-child(n) { height: 185px; }
  .gallery-card figcaption { right: 10px; bottom: 10px; left: 10px; }
  .gallery-card figcaption span { font-size: 8px; }
  .gallery-card figcaption strong { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card,
  .gallery-card:nth-child(n) { opacity: 1; transform: none; animation: none; }
}

.faq-icon,
.gallery-card.is-active,
.overview-feature:hover,
.price-table tbody tr:hover { border-color: var(--trident-green); }

/* Optima styling for headings and header navigation. */
body :is(h1, h2, h3, h4, h5, h6) {
  color: var(--trident-blue);
  font-family: "Optima", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-content h1 {
  background: none;
  color: var(--trident-blue);
}

.site-nav a:not(.call-button) {
  color: var(--trident-blue);
  font-family: "Optima", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
}

.call-button {
  font-family: "Optima", sans-serif;
}

/* Header navigation: apply Optima to every visible menu link on all breakpoints. */
.site-header .site-nav a {
  font-family: "Optima", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
}

/* Preserve contrast where a heading sits on a blue surface. */
.floor-plan-card h3 {
  color: var(--white);
}

/* Hero detail card treatment — blue and white with a restrained green accent. */
.hero-content-wrap {
  align-items: center;
  padding-top: clamp(96px, 12vh, 132px);
  padding-bottom: 32px;
}

.hero-content {
  width: min(760px, calc(100% - 48px));
  margin-left: 0;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 55px rgba(2, 38, 111, 0.28);
  color: var(--trident-blue-dark);
  backdrop-filter: blur(9px);
}

.hero-content:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 60px rgba(2, 38, 111, 0.34);
}

.hero-content::before,
.hero-content::after { display: none; }

.hero-eyebrow {
  margin-bottom: 10px;
  color: var(--trident-green);
  font-family: "Optima", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 0 0 17px;
  padding: 0 0 16px;
  border-bottom: 2px solid var(--trident-blue);
  color: var(--trident-blue);
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: 3px;
  text-shadow: none;
  transform: none;
  white-space: normal;
}

.hero-content:hover h1 { letter-spacing: 3px; text-shadow: none; }

.hero-location {
  display: block;
  margin: 0 0 11px;
  padding: 0;
  background: none;
  box-shadow: none;
  color: var(--trident-blue-dark);
  font-family: "Optima", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-shadow: none;
  animation: none;
}

.hero-location::after { display: none; }
.hero-location:hover { box-shadow: none; transform: none; }

.hero-type {
  margin: 0 0 20px;
  color: #17417f;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
}

.hero-highlights li {
  min-height: 108px;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 15px 13px;
  border: 1px solid rgba(6, 61, 168, 0.2);
  border-radius: 10px;
  background: #fff;
  color: var(--trident-blue-dark);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.4;
  white-space: normal;
  box-shadow: 0 8px 18px rgba(6, 61, 168, 0.09);
}

.hero-highlights li:hover { color: var(--trident-blue-dark); transform: translateY(-3px); }
.hero-highlights .bi-stars { color: var(--trident-green); font-size: 23px; }
.hero-highlights li:hover .bi-stars { filter: none; transform: none; }

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(6, 61, 168, 0.28);
  border-radius: 8px;
  background: #fff;
  color: var(--trident-blue-dark);
  font-family: "Optima", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-price strong {
  margin: 0;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--trident-blue);
  color: var(--white);
  font-family: "Optima", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  text-shadow: none;
  animation: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--trident-blue);
  border-radius: 6px;
  font-family: "Optima", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.hero-action:hover,
.hero-action:focus-visible { transform: translateY(-2px); }
.hero-action--primary { background: var(--trident-blue); color: var(--white); }
.hero-action--primary:hover,
.hero-action--primary:focus-visible { background: var(--trident-blue-dark); }
.hero-action--secondary { background: #fff; color: var(--trident-blue); }
.hero-action--secondary:hover,
.hero-action--secondary:focus-visible { border-color: var(--trident-green); color: var(--trident-green-dark); }

@media (max-width: 640px) {
  .hero-content-wrap { padding-top: 96px; }
  .hero-content { width: min(100% - 28px, 620px); padding: 22px 18px; }
  .hero-highlights { grid-template-columns: 1fr; }
  .hero-highlights li { min-height: 0; flex-direction: row; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-action { width: 100%; }
}

/* Transparent header over the hero, switching to white after scrolling. */
.site-header {
  position: fixed;
  background: transparent;
  box-shadow: none;
}

.site-header.has-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 18px rgba(2, 38, 111, 0.14);
}

/* Glass hero card: preserves the image while keeping white text readable. */
.hero-content {
  border-color: rgba(116, 175, 255, 0.6);
  background: rgba(2, 22, 61, 0.7);
  box-shadow: 0 22px 55px rgba(0, 14, 43, 0.42);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.hero-content:hover {
  background: rgba(2, 22, 61, 0.76);
  box-shadow: 0 26px 60px rgba(0, 14, 43, 0.5);
}

.hero-content h1 {
  border-bottom-color: #75a8ff;
  color: var(--white);
}

.hero-location,
.hero-type { color: var(--white); }

.hero-highlights li {
  border-color: rgba(124, 177, 255, 0.5);
  background: rgba(6, 61, 168, 0.34);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 12, 40, 0.18);
  backdrop-filter: blur(4px);
}

.hero-highlights li:hover { color: var(--white); background: rgba(6, 61, 168, 0.5); }

.hero-price {
  border-color: rgba(124, 177, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 12, 40, 0.22);
}

.hero-price strong {
  background: var(--trident-blue);
  color: var(--white);
}

.hero-action--secondary {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-action--secondary:hover,
.hero-action--secondary:focus-visible {
  border-color: var(--trident-green);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Compact, lighter glass layout for the hero details. */
.hero-content {
  width: min(650px, calc(100% - 40px));
  padding: clamp(20px, 2.3vw, 28px);
  border-radius: 14px;
  background: rgba(2, 22, 61, 0.46);
  box-shadow: 0 16px 40px rgba(0, 14, 43, 0.28);
  backdrop-filter: blur(4px);
}

.hero-content:hover { background: rgba(2, 22, 61, 0.52); }
.hero-eyebrow { margin-bottom: 6px; font-size: 11px; }

.hero-content h1 {
  margin-bottom: 12px;
  padding-bottom: 11px;
  font-size: clamp(30px, 3.25vw, 46px);
  letter-spacing: 2px;
}

.hero-content:hover h1 { letter-spacing: 2px; }
.hero-location { margin-bottom: 7px; font-size: clamp(16px, 1.65vw, 20px); }
.hero-type { margin-bottom: 14px; font-size: clamp(14px, 1.05vw, 17px); }

.hero-highlights { gap: 8px; margin-bottom: 14px; }
.hero-highlights li {
  min-height: 82px;
  gap: 5px;
  padding: 11px;
  border-radius: 8px;
  background: rgba(6, 61, 168, 0.2);
  font-size: clamp(12px, 0.9vw, 14px);
  box-shadow: none;
}
.hero-highlights li:hover { background: rgba(6, 61, 168, 0.3); }
.hero-highlights .bi-stars { font-size: 19px; }

.hero-price { padding: 7px 9px 7px 12px; font-size: 12px; }
.hero-price strong { padding: 3px 6px; font-size: clamp(17px, 1.65vw, 22px); }
.hero-actions { gap: 8px; margin-top: 13px; }
.hero-action { min-height: 40px; padding: 8px 13px; font-size: 10px; }

/* White text over the transparent hero header; blue returns on a white header. */
.site-header:not(.has-scrolled) .site-nav a:not(.call-button) {
  color: var(--white);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
}

.site-header:not(.has-scrolled) .menu-toggle span { background: var(--white); }

.site-header:not(.has-scrolled) .call-button {
  border-color: var(--white);
  color: var(--white);
}

.site-header.has-scrolled .call-button {
  border-color: var(--trident-blue);
  color: var(--trident-blue);
}

@media (max-width: 640px) {
  .hero-content { width: min(100% - 28px, 620px); padding: 18px 16px; }
  .hero-highlights li { min-height: 0; }
}

/* Fixed header no longer consumes hero height; keep the hero exactly viewport-sized. */
.hero { height: 100svh; }

.hero-content-wrap {
  padding-left: clamp(32px, 5vw, 88px);
  padding-right: clamp(20px, 3vw, 48px);
}

/* Lighter glass so the hero photography is clearly visible through the cards. */
.hero-content {
  background: rgba(2, 22, 61, 0.28);
  backdrop-filter: blur(2px);
}

.hero-content:hover { background: rgba(2, 22, 61, 0.34); }

.hero-highlights li {
  background: rgba(6, 61, 168, 0.12);
  backdrop-filter: blur(2px);
}

.hero-highlights li:hover { background: rgba(6, 61, 168, 0.2); }

.hero-price,
.hero-action--secondary { background: rgba(255, 255, 255, 0.06); }

.hero-action--secondary:hover,
.hero-action--secondary:focus-visible {
  border-color: var(--trident-green);
  background: var(--trident-green);
  color: var(--white);
}

/* Section-heading system: logo blue text with the Trident green underline. */
body h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  color: var(--trident-blue) !important;
}

body h2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 88px;
  height: 3px;
  margin: auto;
  border-radius: 99px;
  background: var(--trident-green) !important;
  content: "";
}

@media (max-width: 640px) {
  .hero-content-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* =========================================================
   Trident amenities icon grid
   ========================================================= */
.amenities-section {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 7vw, 110px) clamp(20px, 3vw, 52px);
  overflow: hidden;
  background: #f7faff !important;
}

.amenities-section::before,
.amenities-section::after {
  position: absolute;
  z-index: -1;
  border: clamp(28px, 4vw, 65px) solid rgba(6, 61, 168, 0.035);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.amenities-section::before {
  top: -42%;
  left: 47%;
  width: 760px;
  height: 760px;
}

.amenities-section::after {
  right: -13%;
  bottom: -68%;
  width: 900px;
  height: 900px;
}

.amenities-head {
  position: relative;
  z-index: 1;
  width: min(1800px, 100%);
  margin: 0 auto clamp(40px, 4vw, 62px);
  padding: 0;
  text-align: left;
}

.amenities-head::after { display: none; }

.amenities-head h2,
body .amenities-head h2 {
  display: block;
  margin: 0;
  padding: 0;
  color: #080b12 !important;
  font-size: clamp(34px, 3.25vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.018em;
  text-transform: none;
}

.amenities-head h2::after { display: none; }
.amenities-head h2 span { color: var(--trident-blue); }
.amenities-head h2 em { color: var(--trident-green-dark); font-style: normal; }

.amenities-wrapper {
  position: relative;
  z-index: 1;
  width: min(1800px, 100%);
  margin: 0 auto;
  padding: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 50px);
  width: 100%;
  height: auto;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.amenity-card,
.amenity-card:nth-child(n),
.amenity-card:first-child,
.amenity-card:last-child {
  position: relative;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  height: clamp(210px, 16vw, 240px);
  min-height: 0;
  margin: 0;
  padding: 26px 20px;
  overflow: hidden;
  border: 1px solid rgba(6, 61, 168, .15);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 34px rgba(7, 43, 101, .07);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.amenity-card::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--trident-green);
  content: "";
  transform: translateX(-50%);
  transition: width .35s ease;
}

.amenity-icon {
  position: relative;
  display: grid;
  flex: 0 0 86px;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(10, 88, 208, .2);
  border-radius: 50%;
  background: #edf6ff;
  box-shadow: inset 0 0 0 10px rgba(10, 88, 208, .025);
  color: var(--trident-blue-light);
  font-size: 35px;
  transition: color .35s ease, background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.amenity-card h3,
body .amenity-card h3 {
  max-width: 230px;
  margin: 0;
  color: #0b1d3b !important;
  font-size: clamp(16px, 1.15vw, 21px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.amenity-card:hover {
  border-color: rgba(6, 61, 168, .42);
  background: #fff;
  box-shadow: 0 22px 48px rgba(6, 61, 168, .16);
  transform: translateY(-9px);
}

.amenity-card:hover::before { width: 100%; }
.amenity-card:hover .amenity-icon {
  background: var(--trident-blue);
  box-shadow: 0 12px 26px rgba(6, 61, 168, .25);
  color: #fff;
  transform: translateY(-3px) scale(1.06);
}

.amenity-card:focus-within { outline: 3px solid var(--trident-green); outline-offset: 3px; }
.amenities-mobile-nav { display: none !important; }

@media (max-width: 1200px) {
  .amenities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .amenity-card,
  .amenity-card:nth-child(n) { height: 220px; }
}

@media (max-width: 700px) {
  .amenities-section { padding: 62px 15px 72px; }
  .amenities-head { margin-bottom: 34px; }
  .amenities-head h2,
  body .amenities-head h2 { font-size: clamp(32px, 9vw, 42px); line-height: 1.12; }
  .amenities-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; grid-template-rows: none !important; gap: 10px !important; height: auto !important; overflow: visible !important; }
  .amenity-card,
  .amenity-card:nth-child(n),
  .amenity-card:first-child,
  .amenity-card:last-child {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    aspect-ratio: auto !important;
    width: 100% !important;
    height: 170px !important;
    margin: 0 !important;
    padding: 18px 10px !important;
    gap: 15px !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    background: rgba(255,255,255,.92) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  .amenity-icon { flex-basis: 64px; width: 64px; height: 64px; font-size: 26px; }
  .amenity-card h3,
  body .amenity-card h3 { font-size: 14px; line-height: 1.25; }
  .amenity-card:hover { transform: translateY(-4px) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .amenity-card,
  .amenity-icon,
  .amenity-card::before { transition: none; }
}

/* Final compact amenities layout: aligned with the site's section-heading system. */
.amenities-section {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(34px, 4vh, 48px) clamp(18px, 3vw, 44px);
  flex-direction: column;
  justify-content: center;
  background: #f7faff !important;
}

.amenities-section::before,
.amenities-section::after { display: none; }

.amenities-head {
  width: min(1300px, 100%);
  margin: 0 auto clamp(26px, 3.5vh, 36px);
  text-align: center;
}

.amenities-head h2,
body .amenities-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0 16px;
  color: var(--trident-blue) !important;
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: none;
}

.amenities-head h2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 88px;
  height: 3px;
  margin: auto;
  border-radius: 99px;
  background: var(--trident-green) !important;
  content: "";
}

.amenities-wrapper { width: min(1300px, 100%); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.amenity-card,
.amenity-card:nth-child(n),
.amenity-card:first-child,
.amenity-card:last-child {
  gap: 13px;
  height: clamp(145px, 18vh, 170px);
  padding: 16px 12px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(6, 61, 168, .07);
}

.amenity-icon {
  flex-basis: 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: none;
  font-size: 25px;
}

.amenity-card h3,
body .amenity-card h3 {
  max-width: 190px;
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.25;
}

.amenity-card:hover {
  box-shadow: 0 13px 28px rgba(6, 61, 168, .14);
  transform: translateY(-4px);
}

.amenity-card:hover .amenity-icon {
  box-shadow: 0 7px 16px rgba(6, 61, 168, .2);
  transform: scale(1.04);
}

@media (max-width: 1000px) {
  .amenities-section { min-height: auto; padding: 54px 20px 64px; }
  .amenities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .amenity-card,
  .amenity-card:nth-child(n) { height: 155px; }
}

@media (max-width: 700px) {
  .amenities-section { padding: 48px 12px 56px; }
  .amenities-head { margin-bottom: 28px; }
  .amenities-head h2,
  body .amenities-head h2 { font-size: 24px; line-height: 1.3; letter-spacing: 1.5px; }
  .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 9px !important; }
  .amenity-card,
  .amenity-card:nth-child(n),
  .amenity-card:first-child,
  .amenity-card:last-child {
    height: 138px !important;
    padding: 13px 8px !important;
    gap: 10px !important;
    border-radius: 12px !important;
  }
  .amenity-icon { flex-basis: 52px; width: 52px; height: 52px; font-size: 22px; }
  .amenity-card h3,
  body .amenity-card h3 { font-size: 12.5px; }
}

/* Reference-matched amenities composition. */
.amenities-section {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(28px, 4vh, 44px) clamp(22px, 2.2vw, 36px);
  background: #f7faff !important;
}

.amenities-section::before,
.amenities-section::after {
  position: absolute;
  z-index: -1;
  display: block;
  border: 44px solid rgba(12, 91, 196, .035);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.amenities-section::before { top: -390px; left: 48%; width: 820px; height: 820px; }
.amenities-section::after { right: -260px; bottom: -610px; width: 1050px; height: 1050px; }

.amenities-head {
  width: min(1800px, 100%);
  margin: 0 auto clamp(24px, 3.2vh, 34px);
  text-align: left;
}

.amenities-head h2,
body .amenities-head h2 {
  display: block;
  margin: 0;
  padding: 0;
  color: #080808 !important;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-transform: none;
}

.amenities-head h2::after { display: none; }
.amenities-head h2 span { color: var(--trident-blue); }
.amenities-head h2 em { color: #16ad18; font-style: normal; }

.amenities-wrapper { width: min(1800px, 100%); }
.amenities-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(14px, 2.6vw, 48px); }

.amenity-card,
.amenity-card:nth-child(n),
.amenity-card:first-child,
.amenity-card:last-child {
  height: clamp(150px, 20vh, 180px);
  gap: 13px;
  padding: 15px 12px;
  border: 1px solid rgba(6, 61, 168, .15);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 11px 28px rgba(24, 70, 126, .07);
}

.amenity-card:nth-child(2) {
  border-color: rgba(10, 88, 208, .42);
  background: #edf6ff;
  box-shadow: 0 0 0 6px rgba(10,88,208,.045), 0 13px 30px rgba(6,61,168,.12);
}

.amenity-card::before { display: none; }

.amenity-icon {
  flex-basis: 60px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(10,88,208,.2);
  background: #eaf4ff;
  box-shadow: inset 0 0 0 7px rgba(10,88,208,.025);
  font-size: 26px;
}

.amenity-card h3,
body .amenity-card h3 {
  max-width: 205px;
  color: #0b1d3b !important;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.25;
}

.amenity-card:hover {
  border-color: rgba(10,88,208,.48);
  background: #edf6ff;
  box-shadow: 0 15px 32px rgba(6,61,168,.14);
  transform: translateY(-4px);
}

.amenity-card:hover .amenity-icon {
  background: var(--trident-blue);
  color: #fff;
  transform: scale(1.04);
}

@media (max-width: 1000px) {
  .amenities-head h2,
  body .amenities-head h2 { font-size: clamp(29px, 5vw, 42px); }
  .amenities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}

@media (max-width: 700px) {
  .amenities-section { min-height: auto; padding: 46px 12px 54px; }
  .amenities-head { margin-bottom: 27px; }
  .amenities-head h2,
  body .amenities-head h2 { font-size: 29px; line-height: 1.13; letter-spacing: -.01em; }
  .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 9px !important; }
  .amenity-card,
  .amenity-card:nth-child(n),
  .amenity-card:first-child,
  .amenity-card:last-child { height: 138px !important; }
  .amenity-icon { flex-basis: 51px; width: 51px; height: 51px; font-size: 21px; }
}

/* Amenities section copied from the supplied Conscient Hines project. */
.amenities-section {
  display: block;
  min-height: 0;
  padding: clamp(30px, 4vw, 54px) 0;
  background:
    radial-gradient(ellipse at 15% -20%, rgba(77, 145, 232, .12), transparent 42%),
    radial-gradient(ellipse at 85% 118%, rgba(21, 89, 186, .08), transparent 38%),
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 48%, #f8fbff 100%) !important;
}

.amenities-section::before,
.amenities-section::after { display: none; }

.amenities-head,
.amenities-wrapper {
  width: min(calc(100% - 56px), 1280px);
  margin-right: auto;
  margin-left: auto;
}

.amenities-head {
  margin-bottom: clamp(24px, 3vw, 38px);
  text-align: left;
}

.amenities-head p {
  margin: 0 0 4px;
  color: #65748a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.amenities-head h2,
body .amenities-head h2 {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  color: #071e48 !important;
  font-size: clamp(24px, 2.55vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: left;
}

.amenities-head h2::after { display: none; }
.amenities-head h2 span { color: var(--trident-blue); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(98px, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  width: 100%;
  height: auto;
  overflow: visible;
  perspective: 1000px;
  background: transparent;
  box-shadow: none;
}

.amenity-card,
.amenity-card:nth-child(n),
.amenity-card:first-child,
.amenity-card:last-child {
  position: relative;
  isolation: isolate;
  inset: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  aspect-ratio: auto;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 88px;
  margin: 0;
  padding: 14px 10px;
  overflow: hidden;
  border: 1px solid rgba(31, 91, 169, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
  color: var(--trident-blue);
  box-shadow: 0 12px 28px rgba(22, 68, 137, .08);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  text-align: center;
  transform: none;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.amenity-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(77,145,232,.16), transparent 34%, rgba(255,255,255,.38)),
    radial-gradient(circle at 50% 0%, rgba(77,145,232,.18), transparent 58%);
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.amenity-card i,
.amenity-card span { position: relative; z-index: 2; }

.amenity-card i {
  color: var(--trident-blue);
  font-size: 20px;
  line-height: 1;
  transition: color 260ms ease, transform 260ms ease;
}

.amenity-card span {
  color: #0b1d3b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.amenity-card:hover {
  border-color: rgba(77,145,232,.72);
  background: radial-gradient(circle at 50% 0%, #fff, rgba(238,248,255,.92) 68%);
  box-shadow: 0 18px 38px rgba(22,68,137,.14), 0 0 0 4px rgba(77,145,232,.16), 0 0 22px rgba(77,145,232,.32);
  transform: translateY(-3px);
}

.amenity-card:hover::before { opacity: 1; }
.amenity-card:hover i { color: var(--trident-blue); transform: translateY(-2px) scale(1.08); }
.amenities-mobile-nav { display: none !important; }

@media (max-width: 1100px) {
  .amenities-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .amenities-head,
  .amenities-wrapper { width: min(calc(100% - 32px), 100%); }
  .amenities-head h2,
  body .amenities-head h2 { font-size: 27px; }
  .amenities-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 36px) / 4) !important;
    grid-template-columns: none !important;
    grid-template-rows: repeat(2, minmax(102px, auto)) !important;
    gap: 12px !important;
    height: auto !important;
    padding: 2px 2px 12px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
  }
  .amenity-card,
  .amenity-card:nth-child(n),
  .amenity-card:first-child,
  .amenity-card:last-child {
    position: relative !important;
    inset: auto !important;
    display: inline-flex !important;
    width: 100% !important;
    height: auto !important;
    min-height: 102px !important;
    padding: 12px 7px !important;
    border-radius: 14px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    scroll-snap-align: start;
    transform: none !important;
  }
  .amenity-card span { font-size: 10px; }
  .amenity-card i { font-size: 18px; }
}

/* Exact active amenities block from the supplied project (singular amenity-grid). */
.amenities-section.section-shell {
  display: block;
  min-height: 0;
  padding-top: clamp(30px, 4vw, 54px);
  padding-bottom: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(ellipse at 15% -20%, rgba(77, 145, 232, .12), transparent 42%),
    radial-gradient(ellipse at 85% 118%, rgba(21, 89, 186, .08), transparent 38%),
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 48%, #f8fbff 100%) !important;
}

.amenities-section .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 56px), 1280px);
  max-width: none;
  margin: 0 auto;
}

.amenities-section .eyebrow.center {
  display: block;
  margin: 0 0 4px;
  color: #65748a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.amenities-section .eyebrow.center::after,
.amenities-section .center-heading::after { display: none; }

.amenities-section .center-heading,
body .amenities-section .center-heading {
  position: relative;
  display: table;
  width: auto;
  margin: 0 auto clamp(30px, 3.5vw, 44px);
  padding: 0 0 24px;
  color: var(--trident-blue) !important;
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.amenities-section .center-heading::after,
body .amenities-section .center-heading::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 146px;
  height: 8px;
  margin: auto;
  border-radius: 99px;
  background: var(--trident-green) !important;
  content: "";
}

.amenities-section .amenity-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(98px, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  perspective: 1000px;
}

.amenities-section .amenity-grid > .amenity-card,
.amenities-section .amenity-grid > .amenity-card:nth-child(n) {
  position: relative !important;
  isolation: isolate;
  inset: auto !important;
  grid-area: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px !important;
  aspect-ratio: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: clamp(132px, 8.2vw, 152px) !important;
  margin: 0 !important;
  padding: 14px 10px !important;
  overflow: hidden !important;
  border: 1px solid rgba(31, 91, 169, .16) !important;
  border-radius: 16px !important;
  background: #fff !important;
  color: #0759ba;
  box-shadow: 0 12px 28px rgba(22, 68, 137, .08) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  text-align: center;
  transform: none !important;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.amenities-section .amenity-grid > .amenity-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(77,145,232,.16), transparent 34%, rgba(255,255,255,.38)),
    radial-gradient(circle at 50% 0%, rgba(77,145,232,.18), transparent 58%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.amenities-section .amenity-grid > .amenity-card::after {
  display: none !important;
  background: none !important;
  content: none !important;
}

.amenities-section .amenity-grid > .amenity-card i,
.amenities-section .amenity-grid > .amenity-card span { position: relative; z-index: 3; }
.amenities-section .amenity-grid > .amenity-card i { color: #0759ba; font-size: clamp(23px, 1.55vw, 29px); line-height: 1; transition: transform 260ms ease; }
.amenities-section .amenity-grid > .amenity-card span { color: #0b1d3b; font-size: clamp(12px, .86vw, 15px); font-weight: 700; line-height: 1.25; }

.amenities-section .amenity-grid > .amenity-card:hover {
  border-color: rgba(77,145,232,.72) !important;
  background: #f7fbff !important;
  box-shadow: 0 18px 38px rgba(22,68,137,.14), 0 0 0 4px rgba(77,145,232,.16), 0 0 22px rgba(77,145,232,.32) !important;
  transform: translateY(-3px) !important;
}
.amenities-section .amenity-grid > .amenity-card:hover::before { opacity: 1; }
.amenities-section .amenity-grid > .amenity-card:hover i { transform: translateY(-2px) scale(1.08); }

@media (max-width: 1100px) {
  .amenities-section .amenity-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .amenities-section .container { width: min(calc(100% - 32px), 100%); }
  .amenities-section .center-heading,
  body .amenities-section .center-heading { font-size: 27px; }
  .amenities-section .amenity-grid {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 4);
    grid-template-columns: none;
    grid-template-rows: repeat(2, minmax(102px, auto));
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
  }
  .amenities-section .amenity-grid > .amenity-card,
  .amenities-section .amenity-grid > .amenity-card:nth-child(n) {
    min-height: 102px !important;
    padding: 12px 7px !important;
    scroll-snap-align: start;
  }
  .amenities-section .amenity-grid > .amenity-card span { font-size: 10px; }
  .amenities-section .amenity-grid > .amenity-card i { font-size: 18px; }
}

/* Keep every main section H2 identical to the Floor Plan heading. */
main section h2 {
  position: relative !important;
  display: table !important;
  width: fit-content !important;
  margin-top: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-bottom: 16px !important;
  color: var(--trident-blue) !important;
  font-family: "Optima", sans-serif !important;
  font-size: clamp(20px, 1.5vw, 25px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: .15px !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

main section h2::after {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  display: block !important;
  width: 98px !important;
  height: 6px !important;
  margin: auto !important;
  border-radius: 0 !important;
  background: var(--trident-green) !important;
  content: "" !important;
}

@media (max-width: 600px) {
  main section h2 {
    padding-bottom: 16px !important;
    font-size: 19px !important;
  }

  main section h2::after {
    width: 82px !important;
    height: 5px !important;
  }
}

/* =========================================================
   Professional lead-generation floor plan cards
   ========================================================= */
.floor-plan-section {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(34px, 4vh, 48px) 20px;
  align-items: center;
  background: #f7faff !important;
}

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

.floor-plan-heading { margin-bottom: clamp(26px, 3vh, 36px); }

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

.floor-plan-card,
.floor-plan-card:last-child {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(240px, 1.16fr);
  align-items: stretch;
  min-width: 0;
  min-height: clamp(365px, 50vh, 420px);
  padding: clamp(24px, 2.4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(6, 61, 168, .22);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6, 61, 168, .1);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.floor-plan-card::before {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 42px solid rgba(6, 61, 168, .025);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.floor-plan-card:hover {
  border-color: rgba(6, 61, 168, .4);
  box-shadow: 0 24px 54px rgba(6, 61, 168, .16);
  transform: translateY(-4px);
}

.floor-plan-copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-width: 0;
}

.floor-plan-card h3,
body .floor-plan-card h3 {
  margin: 0 0 10px;
  padding: 0;
  background: none !important;
  color: var(--trident-blue-dark) !important;
  font-family: "Optima", sans-serif;
  font-size: clamp(21px, 1.7vw, 29px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .2px;
  text-transform: none;
}

.floor-plan-size {
  margin: 0 0 20px;
  color: var(--trident-blue);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 700;
  line-height: 1.2;
}

.floor-plan-size small {
  display: block;
  margin-top: 4px;
  color: #65748a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floor-plan-features {
  display: grid;
  gap: 11px;
  margin: 0 0 23px;
  padding: 0;
  list-style: none;
}

.floor-plan-features li {
  position: relative;
  padding-left: 25px;
  color: #172640;
  font-size: clamp(13px, .95vw, 15px);
  font-weight: 600;
  line-height: 1.3;
}

.floor-plan-features li::before {
  position: absolute;
  top: .02em;
  left: 0;
  color: var(--trident-blue-light);
  content: "✓";
  font-size: 18px;
  font-weight: 800;
}

.floor-plan-explore {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 190px;
  margin-top: auto;
  padding: 11px 17px;
  border: 1px solid rgba(6, 61, 168, .42);
  border-radius: 999px;
  background: #edf6ff;
  color: var(--trident-blue);
  font-size: 14px;
  font-weight: 700;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.floor-plan-explore:hover,
.floor-plan-explore:focus-visible {
  background: var(--trident-blue);
  box-shadow: 0 10px 24px rgba(6, 61, 168, .24);
  color: #fff;
  transform: translateY(-2px);
}

.floor-plan-preview {
  position: relative;
  display: grid;
  width: auto;
  height: 100%;
  min-height: 290px;
  margin: 6px -6px 6px 16px;
  overflow: hidden;
  place-items: center;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

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

.floor-plan-preview img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
  background: #fff;
  filter: blur(3px) saturate(.86) brightness(1.03);
  transform: scale(1);
  transition: filter .4s ease, transform .5s ease;
}

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

.floor-plan-view {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #fff;
  text-align: center;
}

.floor-plan-eye {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 4px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: var(--trident-blue);
  box-shadow: 0 14px 32px rgba(2, 38, 111, .35);
  font-size: 27px;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.floor-plan-view strong {
  padding: 4px 9px;
  border-radius: 4px;
  background: rgba(2, 38, 111, .72);
  font-size: 15px;
  letter-spacing: .02em;
}

.floor-plan-view:hover .floor-plan-eye,
.floor-plan-view:focus-visible .floor-plan-eye {
  background: var(--trident-green-dark);
  box-shadow: 0 16px 36px rgba(0, 158, 50, .3);
  transform: scale(1.07);
}

@media (max-width: 1050px) {
  .floor-plan-section { min-height: auto; padding: 58px 18px 68px; }
  .floor-plan-grid { grid-template-columns: 1fr; width: min(760px, 100%); margin: 0 auto; }
  .floor-plan-card,
  .floor-plan-card:last-child { min-height: 390px; }
}

@media (max-width: 620px) {
  .floor-plan-section { padding: 48px 12px 58px; }
  .floor-plan-heading { margin-bottom: 30px; }
  .floor-plan-card,
  .floor-plan-card:last-child {
    grid-template-columns: 1fr;
    grid-template-rows: auto 225px;
    min-height: 0;
    padding: 22px 18px 18px;
    border-radius: 18px;
  }
  .floor-plan-card h3,
  body .floor-plan-card h3 { font-size: 22px; }
  .floor-plan-size { margin-bottom: 17px; font-size: 17px; }
  .floor-plan-features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 12px; margin-bottom: 21px; }
  .floor-plan-features li { padding-left: 20px; font-size: 11.5px; }
  .floor-plan-explore { width: 100%; margin-bottom: 22px; }
  .floor-plan-preview { min-height: 225px; margin: 0; border-radius: 14px; }
  .floor-plan-eye { width: 68px; height: 68px; font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  .floor-plan-card,
  .floor-plan-preview img,
  .floor-plan-eye,
  .floor-plan-explore { transition: none; }
}

/* Responsive interactive map in the existing location frame. */
.location-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  background: #eaf2fb;
}

@media (max-width: 992px) {
  .location-map-frame { min-height: 410px; }
}

@media (max-width: 576px) {
  .location-map-frame { min-height: 330px; }
}

/* Location highlights styled to match the project's feature cards. */
.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 28px;
}

.location-highlight-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 92px;
  padding: 14px 18px 14px 20px;
  overflow: hidden;
  border: 1px solid rgba(6, 61, 168, .18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 61, 168, .07);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.location-highlight-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--trident-green);
  content: "";
}

.location-highlight-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--trident-blue);
  font-size: 31px;
  transition: color .3s ease, transform .3s ease;
}

.location-highlight-card:nth-child(3) {
  border-color: rgba(0, 200, 63, .68);
}

.location-highlight-card div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.location-highlight-card strong {
  color: #101826;
  font-family: "Optima", sans-serif;
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 700;
  line-height: 1.2;
}

.location-highlight-card small {
  display: block;
  color: #647087;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.location-highlight-card:hover {
  border-color: var(--trident-green);
  box-shadow: 0 14px 32px rgba(6, 61, 168, .13);
  transform: translateY(-4px);
}

.location-highlight-card:hover .location-highlight-icon {
  color: var(--trident-green);
  transform: scale(1.07);
}

@media (max-width: 620px) {
  .location-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .location-highlight-card {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 80px;
    gap: 10px;
    padding: 10px 10px 10px 14px;
  }
  .location-highlight-icon {
    width: 42px;
    height: 42px;
    font-size: 23px;
  }
  .location-highlight-card strong {
    font-size: 13px;
    overflow-wrap: anywhere;
  }
}

/* Ensure blue contact/location CTAs always have readable white content. */
.site-header .call-button,
.site-header .call-button span,
.location-cta,
.location-cta span,
.location-cta i,
.site-header .call-button:hover,
.site-header .call-button:focus-visible,
.location-cta:hover,
.location-cta:focus-visible {
  color: #fff !important;
}


/* =========================================================
   MOBILE HERO CARD CENTERING
   Applies ONLY to screens 576px and below.
   ========================================================= */
@media (max-width: 576px) {
  .hero-content-wrap {
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content {
    width: calc(100% - 28px);
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .hero-eyebrow,
  .hero-type {
    text-align: center;
  }

  .hero-highlights {
    width: 100%;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-highlights li {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    justify-content: flex-start;
    white-space: normal;
  }

  .hero-highlights .bi-stars {
    flex: 0 0 22px;
    width: 22px;
  }

  .hero-price {
    margin-left: auto;
    margin-right: auto;
  }
}
