:root {
  --color-coral: #ef4058;
  --color-coral-dark: #dc2e49;
  --color-ink: #1e2b2f;
  --color-teal: #000;
  --color-cream: #fff8ea;
  --header-height: 78px;
  --section-min-height: 100svh;
  --container: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-ink);
  font-family: "Montserrat", Arial, sans-serif;
  background: #f4f1e9;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

.section-screen {
  position: relative;
  min-height: var(--section-min-height);
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  color: #fff;
  transform: translateY(0);
  transition:
    transform 280ms var(--ease),
    background 250ms var(--ease),
    box-shadow 250ms var(--ease),
    backdrop-filter 250ms var(--ease);
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(12, 44, 50, 0.74);
  box-shadow: 0 14px 44px rgba(4, 22, 28, 0.2);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(1340px, calc(100% - 72px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.brand__script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.85rem, 2.35vw, 2.5rem);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  transform: translateY(2px) rotate(-4deg);
}

.brand__divider {
  width: 1px;
  height: 27px;
  margin: 0 10px 0 12px;
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(15deg);
}

.brand__text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  flex: 1 1 auto;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 29px 0 25px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 3px rgba(0, 0, 0, 0.42),
    0 8px 13px rgba(0, 0, 0, 0.28);
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.24));
  transition:
    color 180ms ease,
    transform 180ms var(--ease),
    text-shadow 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: #fff;
  transition: transform 220ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 3px 4px rgba(0, 0, 0, 0.5),
    0 10px 16px rgba(0, 0, 0, 0.34);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 0 21px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-coral), #ff5263);
  box-shadow: 0 10px 26px rgba(235, 54, 77, 0.34);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(235, 54, 77, 0.44);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms var(--ease),
    opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  min-height: 100svh;
  padding-top: var(--header-height);
  background-image: url("assets/images/hero-berano.png");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-position: center;
  background-size: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 25, 39, 0.28) 0%,
      rgba(0, 18, 24, 0.06) 28%,
      rgba(0, 18, 20, 0.14) 66%,
      rgba(0, 16, 15, 0.45) 100%
    ),
    radial-gradient(
      circle at 17% 49%,
      rgba(255, 226, 129, 0.26),
      rgba(255, 226, 129, 0) 32%
    ),
    linear-gradient(90deg, rgba(13, 35, 29, 0.16) 0%, rgba(13, 35, 29, 0) 42%);
}

.hero__content {
  width: 100%;
  margin: 0 auto;
  padding: clamp(52px, 8vh, 96px) 0 210px clamp(110px, 13.4vw, 188px);
  align-self: center;
  transform: translateY(-1vh);
}

.hero__eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 3px rgba(0, 0, 0, 0.42),
    0 8px 13px rgba(0, 0, 0, 0.28);
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.24));
}

.hero__title {
  margin: 0;
  color: var(--color-coral);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.15rem, 6.15vw, 5.55rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34),
    0 3px 0 rgba(177, 27, 51, 0.22),
    0 9px 18px rgba(118, 21, 37, 0.28),
    0 18px 34px rgba(35, 21, 12, 0.22),
    0 4px 18px rgba(255, 247, 221, 0.3);
  filter: drop-shadow(0 10px 16px rgba(53, 30, 16, 0.16));
}

.hero__tagline {
  margin: clamp(13px, 1.8vw, 22px) 0 0;
  color: var(--color-teal);
  font-family: "Caveat", cursive;
  max-width: 560px;
  font-size: clamp(1.85rem, 2.22vw, 2.35rem);
  font-weight: 700;
  line-height: 0.92;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 2px 0 rgba(0, 78, 82, 0.16),
    0 6px 12px rgba(0, 56, 62, 0.28),
    0 2px 9px rgba(255, 250, 227, 0.66);
  filter: drop-shadow(0 7px 8px rgba(12, 46, 39, 0.16));
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 21px 0 0 74px;
  color: #40331f;
  font-size: clamp(0.98rem, 1.22vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 2px 0 rgba(47, 34, 17, 0.18),
    0 7px 13px rgba(42, 31, 16, 0.3),
    0 2px 9px rgba(255, 248, 220, 0.62);
  filter: drop-shadow(0 5px 7px rgba(46, 33, 15, 0.18));
}

.hero__location span {
  display: block;
  width: clamp(32px, 4.6vw, 58px);
  height: 2px;
  background: currentColor;
  opacity: 0.75;
}

.scroll-cue {
  position: absolute;
  right: clamp(25px, 5vw, 70px);
  bottom: 30px;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.scroll-cue__mouse {
  position: relative;
  display: block;
  width: 39px;
  height: 89px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.scroll-cue__mouse i {
  position: absolute;
  left: 50%;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}

.scroll-cue .bi {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-size: 2rem;
  line-height: 1;
  animation: arrowDrop 1.6s infinite;
}

.view-section {
  display: grid;
  align-items: start;
  padding: clamp(96px, 11vh, 112px) 0 clamp(28px, 4vh, 46px);
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(173, 191, 185, 0.28),
      transparent 30%
    ),
    linear-gradient(180deg, #f8f8f5 0%, #eef2f0 50%, #fbfaf7 100%);
}

.view-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      circle at 50% 22%,
      rgba(255, 255, 255, 0.85),
      transparent 34%
    );
}

.view-section__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, 1400px);
  margin: 0 auto;
}

.view-section__title {
  margin: 0 0 clamp(16px, 2.4vh, 24px);
  color: #111;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(25, 38, 43, 0.12);
}

.view-showcase {
  position: relative;
  height: clamp(560px, calc(100svh - 132px), 680px);
  min-height: 560px;
  perspective: 1400px;
}

.view-showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  bottom: 20%;
  width: min(78%, 920px);
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at 50% 38%,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.34) 34%,
      rgba(255, 255, 255, 0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(0, 108, 118, 0),
      rgba(0, 108, 118, 0.1) 46%,
      rgba(12, 36, 54, 0)
    );
  filter: blur(8px);
  opacity: 0.88;
  transform: translateX(-50%);
}

.view-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 36%;
  z-index: 2;
  width: min(62%, 740px);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 91, 100, 0.28),
    transparent
  );
  transform: translateX(-50%);
}

.view-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: clamp(24px, 3.1vw, 44px);
  background: #dce5df;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.84) inset,
    0 -18px 34px rgba(10, 35, 39, 0.18) inset,
    0 28px 46px rgba(13, 37, 43, 0.18),
    0 8px 18px rgba(13, 37, 43, 0.12);
  transform-style: preserve-3d;
  will-change: opacity, transform, filter;
}

.view-panel--front {
  height: 29%;
  z-index: 3;
  transform: rotateX(2deg) translateZ(0);
}

.view-panel--back {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 29%;
  z-index: 3;
  transform: rotateX(-1deg) translateZ(0);
}

.view-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.view-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2),
      transparent 28%,
      rgba(0, 0, 0, 0.24)
    ),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 38%);
}

.view-panel figcaption {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 2;
  width: min(92%, 820px);
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.42),
    0 10px 22px rgba(0, 0, 0, 0.34);
}

.view-panel--back figcaption {
  top: 16px;
  bottom: auto;
}

.view-panel--front figcaption {
  display: none;
}

.view-panel__arrow {
  position: absolute;
  left: 22%;
  top: 30%;
  z-index: 3;
  width: clamp(54px, 6vw, 92px);
  height: clamp(54px, 6vw, 92px);
  color: #fff;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.34));
  transform: rotate(-8deg);
  will-change: opacity, transform;
}

.view-panel__arrow .bi,
.view-arrow .bi {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.view-project {
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: 5;
  width: min(60vw, 840px);
  aspect-ratio: 2.35;
  transform: translate(-50%, -50%) rotateX(4deg) translateZ(40px);
  transform-style: preserve-3d;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  will-change: opacity, transform, filter;
}

.view-project::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 8px;
  height: 22px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(7, 42, 47, 0.28);
  filter: blur(18px);
}

.view-project::before {
  display: none;
}

.view-project__image {
  width: 100%;
  height: 100%;
  background-image: url("assets/images/view-project-center.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  filter: drop-shadow(0 20px 28px rgba(7, 36, 42, 0.26))
    drop-shadow(0 7px 10px rgba(7, 36, 42, 0.16));
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 52%,
    #000 0%,
    #000 56%,
    rgba(0, 0, 0, 0.82) 68%,
    rgba(0, 0, 0, 0) 82%
  );
  mask-image: radial-gradient(
    ellipse at 50% 52%,
    #000 0%,
    #000 56%,
    rgba(0, 0, 0, 0.82) 68%,
    rgba(0, 0, 0, 0) 82%
  );
  transform: scale(1.02);
  will-change: transform, filter;
}

.view-arrow {
  position: absolute;
  top: 41%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: clamp(56px, 5vw, 72px);
  height: clamp(56px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 14px 30px rgba(17, 35, 40, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition:
    transform 180ms var(--ease),
    background 180ms ease,
    box-shadow 180ms ease;
  will-change: opacity, transform;
}

.view-arrow:hover,
.view-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62) inset,
    0 18px 36px rgba(17, 35, 40, 0.28);
}

.view-arrow--left {
  left: 15%;
}

.view-arrow--right {
  right: 15%;
}

.view-arrow--left:hover,
.view-arrow--left:focus-visible {
  transform: translateY(-50%) translateX(-4px);
}

.view-arrow--right:hover,
.view-arrow--right:focus-visible {
  transform: translateY(-50%) translateX(4px);
}

.view-arrow .bi {
  width: 54%;
  height: 54%;
  font-size: clamp(1.85rem, 2.7vw, 2.35rem);
}

.view-360 {
  position: absolute;
  right: 3.2%;
  top: 44%;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: #111;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 34px rgba(10, 31, 36, 0.2);
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms ease;
  will-change: opacity, transform;
}

.js-enabled .view-section:not(.is-inview) .view-section__title,
.js-enabled .view-section:not(.is-inview) .view-panel,
.js-enabled .view-section:not(.is-inview) .view-panel__arrow,
.js-enabled .view-section:not(.is-inview) .view-project,
.js-enabled .view-section:not(.is-inview) .view-arrow,
.js-enabled .view-section:not(.is-inview) .view-360 {
  opacity: 0;
}

.view-section.is-inview .view-section__title {
  animation: viewTitleIn 650ms var(--ease) both;
}

.view-section.is-inview .view-panel--front {
  animation: viewFrontIn 850ms 120ms var(--ease) both;
}

.view-section.is-inview .view-panel__arrow {
  animation: viewMiniArrowIn 620ms 520ms var(--ease) both;
}

.view-section.is-inview .view-project {
  animation: viewProjectIn 950ms 520ms var(--ease) both;
}

.view-section.is-inview .view-project__image {
  animation: viewProjectFloat 5.5s 1.45s ease-in-out infinite;
}

.view-section.is-inview .view-panel--back {
  animation: viewBackIn 850ms 960ms var(--ease) both;
}

.view-section.is-inview .view-arrow {
  animation: viewControlIn 650ms 1.15s var(--ease) both;
}

.view-section.is-inview .view-360 {
  animation: viewPillIn 650ms 1.3s var(--ease) both;
}

.view-360:hover,
.view-360:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 22px 40px rgba(10, 31, 36, 0.26);
}

.view-360 span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.view-360 strong {
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 800;
  white-space: nowrap;
}

.perspective-section {
  display: grid;
  align-items: stretch;
  min-height: 100svh;
  padding: clamp(86px, 9.4vh, 96px) 0 84px;
  background:
    linear-gradient(
      90deg,
      #fbf7ef 0%,
      #fbf7ef 33%,
      rgba(251, 247, 239, 0.92) 43%,
      rgba(251, 247, 239, 0.3) 56%,
      rgba(251, 247, 239, 0) 100%
    ),
    #fbf7ef;
  isolation: isolate;
}

.perspective-media {
  position: absolute;
  inset: 0 0 86px auto;
  z-index: -2;
  width: 69%;
  background-image: url("assets/images/night-view-godrej.png");
  background-size: cover;
  background-position: 73% center;
  transform: scale(1.01);
}

.perspective-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #fbf7ef 0%,
      rgba(251, 247, 239, 0.92) 17%,
      rgba(251, 247, 239, 0.5) 35%,
      rgba(251, 247, 239, 0.06) 54%
    ),
    linear-gradient(180deg, rgba(251, 247, 239, 0.04), rgba(251, 247, 239, 0.1));
}

.perspective-media::after {
  content: "";
  position: absolute;
  left: -22%;
  top: 0;
  bottom: 0;
  width: 48%;
  background: radial-gradient(
    ellipse at 0% 50%,
    #fbf7ef 0%,
    rgba(251, 247, 239, 0.92) 42%,
    rgba(251, 247, 239, 0) 72%
  );
  filter: blur(16px);
}

.perspective-content {
  width: min(34vw, 430px);
  margin-left: clamp(36px, 4.7vw, 74px);
  align-self: start;
}

.perspective-kicker {
  margin: 0 0 9px;
  color: #000;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.perspective-title {
  margin: 0;
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  max-width: 470px;
  font-size: clamp(2.7rem, 3.5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 24px rgba(27, 77, 79, 0.1);
}

.perspective-title span {
  display: inline;
}

.perspective-title__line {
  display: block;
  white-space: nowrap;
}

.perspective-title__accent {
  color: #000;
}

.perspective-title > span:last-child {
  display: block;
}

.perspective-lead {
  margin: 18px 0 18px;
  color: #22354c;
  font-size: clamp(1.08rem, 1.36vw, 1.48rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}

.perspective-copy {
  display: grid;
  gap: 13px;
  color: #20324a;
  font-size: clamp(0.8rem, 0.85vw, 0.98rem);
  font-weight: 500;
  line-height: 1.45;
}

.perspective-copy p {
  margin: 0;
}

.perspective-stats {
  position: absolute;
  left: clamp(24px, 2.6vw, 38px);
  right: clamp(24px, 2.6vw, 38px);
  bottom: 14px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 90px;
  border: 1px solid rgba(219, 194, 137, 0.88);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(18, 89, 82, 0.98) 0%,
      rgba(15, 82, 78, 0.98) 42%,
      rgba(7, 57, 59, 0.98) 100%
    ),
    #083b3d;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.16) inset,
    0 16px 30px rgba(3, 27, 28, 0.28),
    0 7px 0 rgba(3, 35, 36, 0.82);
  overflow: hidden;
}

.perspective-stats::before {
  display: none;
}

.perspective-stat {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  height: 100%;
  padding: 14px clamp(18px, 2vw, 30px);
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    box-shadow 220ms ease;
}

.perspective-stat:hover {
  z-index: 2;
  background:
   #000,
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 14px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.perspective-stat + .perspective-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(219, 194, 137, 0.72);
}

.perspective-stat__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 0;
  color: #e8d4a0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.16));
}

.perspective-stat:hover .perspective-stat__icon {
  color: #e8d4a0;
}

.perspective-stat__icon .bi {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  font-size: 2.05rem;
  line-height: 1;
}

.perspective-stat strong,
.perspective-stat span {
  display: block;
}

.perspective-stat strong {
  color: #fff6dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 1.45vw, 1.52rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.perspective-stat span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  font-weight: 700;
  line-height: 1.2;
}

.floor-plan-section {
  display: grid;
  place-items: center;
  min-height: 100svh;
  scroll-margin-top: var(--header-height);
  padding: clamp(84px, 9vh, 96px) clamp(18px, 2vw, 30px) clamp(22px, 3vh, 34px);
  background:
    radial-gradient(circle at 74% 18%, rgba(6, 97, 92, 0.08), transparent 30%),
    linear-gradient(180deg, #f4efe6 0%, #fbf8f0 52%, #f1eadf 100%);
  isolation: isolate;
}

.floor-plan-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(590px, 1.12fr);
  grid-template-rows: minmax(0, auto) auto auto;
  align-content: space-between;
  column-gap: clamp(28px, 3vw, 54px);
  row-gap: clamp(22px, 3vh, 32px);
  width: min(1540px, calc(100% - 8px));
  min-height: min(800px, calc(100svh - 120px));
  margin: 0 auto;
  padding: clamp(42px, 5vh, 62px) clamp(56px, 5vw, 74px)
    clamp(26px, 3.4vh, 38px);
  border: 1px solid rgba(219, 211, 195, 0.95);
  border-radius: clamp(22px, 2.2vw, 30px);
  background:
    linear-gradient(
      145deg,
      rgba(255, 253, 248, 0.96),
      rgba(248, 242, 232, 0.91)
    ),
    #fbf7ef;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86) inset,
    0 26px 54px rgba(61, 50, 35, 0.14),
    0 8px 18px rgba(61, 50, 35, 0.08);
  overflow: hidden;
}

.floor-plan-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 61% 8%,
      rgba(255, 255, 255, 0.9),
      transparent 28%
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.floor-plan-content,
.floor-plan-preview,
.floor-plan-tabs {
  position: relative;
  z-index: 1;
}

.floor-plan-content {
  align-self: start;
  max-width: 470px;
}

.floor-plan-kicker {
  margin: 0 0 9px;
  color: #000;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.floor-plan-title {
  margin: 0;
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  max-width: 460px;
  font-size: clamp(2.35rem, 3.05vw, 3.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.floor-plan-title span {
  display: block;
}

.floor-plan-title span:first-child {
  color: #000;
}

.floor-plan-lead {
      margin: clamp(18px, 2.2vh, 24px) 0 8px;
    color: #151c24;
    font-size: clamp(0.98rem, 1.08vw, 1.18rem);
    font-weight: 600;
    line-height: 1.28;
}

.floor-plan-copy {
  max-width: 500px;
  margin: 0;
  color: rgba(21, 28, 36, 0.72);
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  font-weight: 500;
  line-height: 1.52;
}

.floor-plan-selected-detail,
.floor-plan-price-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 34px;
  padding: 9px 18px;
  border: 1px solid rgba(221, 213, 198, 0.92);
  border-radius: 8px;
  color: #000;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 52%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 244, 236, 0.9)
    ),
    #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86) inset,
    0 12px 18px rgba(0, 0, 0, 0.1),
    0 4px 0 rgba(0, 0, 0, 0.13);
  font-size: clamp(0.78rem, 0.88vw, 0.94rem);
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  transition:
    transform 200ms var(--ease),
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
}

.floor-plan-selected-detail {
  margin: 12px 0 0;
}

.floor-plan-price-button {
  width: max-content;
  margin: 12px 0 0;
  font-family: inherit;
  cursor: pointer;
}

.floor-plan-selected-detail:hover,
.floor-plan-price-button:hover,
.floor-plan-price-button:focus-visible {
  color: #fff;
  border-color: rgba(0, 126, 119, 0.72);
  background:
    #000;
  
  transform: translateY(-4px);
}

.floor-plan-preview {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(350px, 48vh, 470px);
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  perspective: 1300px;
}

.floor-plan-preview::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 9%;
  z-index: 0;
  height: clamp(24px, 4vh, 44px);
  border-radius: 50%;
  background: rgba(45, 35, 22, 0.24);
  filter: blur(18px);
  transform: rotateX(62deg);
  pointer-events: none;
}

.floor-plan-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 860px);
  max-height: clamp(340px, 50vh, 500px);
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) rotateX(2deg) rotateZ(0.25deg) scale(0.98);
  transform-origin: 50% 60%;
  filter: blur(2px) saturate(0.94) brightness(0.96);
  image-rendering: auto;
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease),
    filter 260ms ease;
}

.floor-plan-image.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(2deg) rotateZ(0.25deg) scale(1.08);
}

.floor-plan-preview:hover .floor-plan-image.is-visible,
.floor-plan-preview:focus-visible .floor-plan-image.is-visible {
  filter: blur(2px) saturate(0.98) brightness(0.9);
  transform: translateY(0) rotateX(2deg) rotateZ(0.25deg) scale(1.1);
}

.floor-plan-preview__overlay {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  min-width: min(100%, 278px);
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  color: #fff;
  background:
    #000;

  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 200ms ease,
    transform 220ms var(--ease);
  white-space: nowrap;
}

.floor-plan-preview__overlay .bi {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 1.05rem;
  line-height: 1;
}

.floor-plan-preview:hover .floor-plan-preview__overlay,
.floor-plan-preview:focus-visible .floor-plan-preview__overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.035);
}

.floor-plan-placeholder {
  display: grid;
  place-items: center;
  width: min(100%, 650px);
  min-height: clamp(220px, 32vh, 320px);
  padding: 24px;
  border: 1px dashed rgba(12, 100, 103, 0.35);
  border-radius: 24px;
  color: #0a676b;
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  box-shadow: 0 18px 36px rgba(42, 45, 40, 0.08);
}

.floor-plan-placeholder[hidden] {
  display: none;
}

.floor-plan-placeholder span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(7, 116, 116, 0.08);
}

.floor-plan-placeholder .bi {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-size: 1.65rem;
  line-height: 1;
}

.floor-plan-placeholder strong,
.floor-plan-placeholder small {
  display: block;
}

.floor-plan-placeholder strong {
  color: #10243a;
  font-size: 1rem;
}

.floor-plan-placeholder small {
  margin-top: 6px;
  color: rgba(16, 36, 58, 0.66);
  font-weight: 600;
}

.floor-plan-tabs {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(14px, 1.7vw, 24px);
  align-items: start;
  margin-top: 0;
}

.floor-plan-option {
  display: grid;
  min-width: 0;
  text-align: center;
}

.floor-plan-tab {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(78px, 9vh, 94px);
  padding: 11px 12px 13px;
  border: 1px solid rgba(221, 213, 198, 0.92);
  border-radius: 10px;
  color: #1c242b;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 244, 236, 0.9)
    ),
    #fff;
  
  cursor: pointer;
  text-align: center;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.floor-plan-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 24px;
  height: 24px;
  border-radius: 0 0 5px 0;
  background: linear-gradient(135deg, transparent 0 50%, #000 50%);
  opacity: 0;
  transform: translateX(-50%) rotate(45deg) scale(0.76);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease);
}

.floor-plan-tab__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
  border-radius: 50%;
  color: #000;
  background: linear-gradient(
    145deg,
    rgba(249, 246, 237, 0.98),
    rgba(237, 231, 218, 0.9)
  );

}

.floor-plan-tab__icon .bi {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 1.48rem;
  line-height: 1;
}

.floor-plan-tab strong {
  display: block;
  max-width: 100%;
  color: currentColor;
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.floor-plan-tab:hover,
.floor-plan-tab:focus-visible {
  color: #fff;
  border-color: rgba(1, 1, 1, 0.72);
  background:
    #000;
  transform: translateY(-5px);
  
}

.floor-plan-tab:hover .floor-plan-tab__icon,
.floor-plan-tab:focus-visible .floor-plan-tab__icon {
  color: #063f40;
  background: rgba(255, 253, 245, 0.94);
}

.floor-plan-tab.is-active {
  color: #fff;
  border-color: rgba(0, 126, 119, 0.72);
  background:
    #000;
  
}

.floor-plan-tab.is-active::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -16px;
  width: min(178px, calc(100% - 24px));
  height: 6px;
  border-radius: 999px;
  background: #000000;
  box-shadow: 0 6px 14px rgba(8, 110, 104, 0.26);
  transform: translateX(-50%);
}

.floor-plan-tab.is-active::after {
  opacity: 1;
  transform: translateX(-50%) rotate(45deg) scale(1);
}

.floor-plan-tab.is-active .floor-plan-tab__icon {
  color: #000000;
  background: rgba(255, 253, 245, 0.94);
}

.floor-plan-modal[hidden] {
  display: none;
}

.floor-plan-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
}

.floor-plan-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 28, 0.72), rgba(8, 24, 28, 0.58)),
    rgba(244, 239, 230, 0.42);
  backdrop-filter: blur(12px);
}

.floor-plan-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(470px, calc(100vw - 32px));
  min-width: 0;
  max-height: calc(100svh - 48px);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(225, 237, 233, 0.92);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(11, 107, 112, 0.12),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 253, 248, 0.99),
      rgba(247, 241, 231, 0.97)
    ),
    #fbf7ef;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.82) inset,
    0 32px 76px rgba(0, 0, 0, 0.34);
  overflow-x: hidden;
  overflow-y: auto;
}

.floor-plan-modal__dialog.is-previewing {
  width: min(960px, 100%);
}

.floor-plan-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(11, 107, 112, 0.16);
  border-radius: 12px;
  color: #000;
  background: rgba(255, 255, 255, 0.88);
  /* box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 12px 24px rgba(0, 0, 0, 0.16); */
  cursor: pointer;
}

.floor-plan-modal__close .bi {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 1rem;
  line-height: 1;
}

.floor-plan-modal__header {
  min-width: 0;
  padding-right: 54px;
}

.floor-plan-modal__header h3 {
  margin: 0;
  max-width: 100%;
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.06;
  overflow-wrap: anywhere;
  white-space: normal;
}

.floor-plan-modal__header span {
  display: inline-flex;
  max-width: 100%;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 119, 117, 0.18);
  border-radius: 8px;
  color: #000;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.floor-plan-lead-form {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.floor-plan-lead-form[hidden] {
  display: none;
}

.floor-plan-lead-form label {
  display: grid;
  gap: 7px;
  color: #000;
  font-size: 0.82rem;
  font-weight: 500;
}

.floor-plan-lead-form em {
  color: rgba(16, 36, 58, 0.58);
  font-style: normal;
  font-weight: 700;
}

.floor-plan-lead-form input,
.floor-plan-lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(8, 101, 100, 0.22);
  border-radius: 13px;
  color: #10243a;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 20px rgba(48, 43, 34, 0.06);
  font: inherit;
  font-weight: 600;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.floor-plan-lead-form textarea {
  min-height: 92px;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 1.45;
  resize: vertical;
}

.floor-plan-lead-form input:focus,
.floor-plan-lead-form textarea:focus {
  border-color: rgba(9, 130, 125, 0.62);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(9, 130, 125, 0.12),
    0 10px 20px rgba(48, 43, 34, 0.08);
}

.floor-plan-lead-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  color: #fff;
  background: #000;
  /* box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 18px 32px rgba(2, 42, 43, 0.24); */
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms ease;
}

.floor-plan-lead-form__submit:hover,
.floor-plan-lead-form__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 22px 36px rgba(2, 42, 43, 0.3);
}

.floor-plan-lead-form__submit .bi {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 1rem;
  line-height: 1;
}

.floor-plan-lead-form__submit span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.floor-plan-modal__preview[hidden] {
  display: none;
}

.floor-plan-modal__preview {
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
  justify-self: center;
}

.floor-plan-modal__preview p {
  margin: 0;
  color: #076d68;
  font-size: 0.85rem;
  font-weight: 800;
}

.floor-plan-modal__image {
  display: block;
  width: 100%;
  max-height: min(58svh, 520px);
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(45, 38, 28, 0.12);
}

.query-modal__dialog.is-submitted {
  width: min(520px, calc(100vw - 32px));
}

.query-modal__success[hidden] {
  display: none;
}

.query-modal__success {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 14px 8px;
  text-align: center;
}

.query-modal__success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(255, 255, 255, 0.34),
      transparent 38%
    ),
    linear-gradient(145deg, #0b7f79, #000);
  box-shadow: 0 18px 34px rgba(6, 70, 72, 0.22);
}

.query-modal__success-icon .bi {
  font-size: 1.7rem;
  line-height: 1;
}

.query-modal__success p {
  margin: 0;
  color: #076d68;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.query-modal__success strong {
  max-width: 340px;
  color: #000;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.35;
}

.master-plan-section {
  display: grid;
  align-items: stretch;
  min-height: 100svh;
  scroll-margin-top: var(--header-height);
  padding: clamp(86px, 9.4vh, 96px) 0 0;
  background:
    linear-gradient(
      90deg,
      #fbf7ef 0%,
      #fbf7ef 34%,
      rgba(251, 247, 239, 0.88) 46%,
      rgba(251, 247, 239, 0.24) 63%,
      rgba(251, 247, 239, 0) 100%
    ),
    #fbf7ef;
  isolation: isolate;
}

.master-plan-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(590px, 1.28fr);
  grid-template-rows: minmax(0, 1fr) auto auto;
  width: min(1340px, calc(100% - 72px));
  min-height: calc(100svh - clamp(86px, 9.4vh, 96px));
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.master-plan-content {
  position: relative;
  z-index: 3;
  align-self: start;
  padding: 0 0 22px;
}

.master-plan-kicker {
  margin: 0 0 9px;
  color: #000;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.master-plan-title {
  margin: 0;
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  max-width: 460px;
  font-size: clamp(2.35rem, 3.05vw, 3.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.master-plan-title span {
  display: block;
}

.master-plan-title span:first-child {
  color: #000;
}

.master-plan-lead {
  max-width: 500px;
  color: #16243a;
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  font-weight: 500;
  line-height: 1.52;
}

.master-plan-lead {
  margin: clamp(18px, 2.2vh, 24px) 0 8px;
  font-weight: 700;
}

.master-plan-ratio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(100%, 330px);
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(224, 216, 201, 0.9);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.94),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.86),
      rgba(246, 241, 230, 0.82)
    );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 18px 30px rgba(0, 0, 0, 0.12),
    0 5px 0 rgba(0, 0, 0, 0.13);
  text-align: center;
  transform: translateZ(0);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.master-plan-ratio:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 24px 36px rgba(0, 0, 0, 0.15),
    0 5px 0 rgba(0, 0, 0, 0.14);
}

.master-plan-ratio strong,
.master-plan-ratio span {
  display: block;
}

.master-plan-ratio strong {
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.master-plan-ratio span {
  margin-top: 6px;
  color: #14212f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.master-plan-ratio__ring {
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fbf7ef 0 36%, transparent 37%),
    conic-gradient(#000 0 19%, #d8d3c8 19% 100%);
  box-shadow: 0 10px 18px rgba(20, 33, 47, 0.12);
}

.master-plan-legend {
  width: min(100%, 360px);
  margin-top: clamp(18px, 2.5vh, 28px);
  padding-top: 18px;
  border-top: 1px solid rgba(20, 33, 47, 0.16);
}

.master-plan-legend p {
  margin: 0 0 12px;
  color: #0d3438;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.master-plan-legend ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.master-plan-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #16243a;
  font-size: clamp(0.66rem, 0.74vw, 0.78rem);
  font-weight: 600;
  line-height: 1.2;
}

.master-plan-legend li span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: #000;
  font-size: 0.58rem;
  font-weight: 800;
}

.master-plan-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(44px, 6vh, 74px) clamp(28px, 4vw, 66px) 96px 0;
  perspective: 1400px;
}

.master-plan-visual::before {
  display: none;
}

.master-plan-visual img {
  position: relative;
  z-index: 0;
  display: block;
  width: min(100%, 1040px);
  height: min(560px, 62vh);
  object-fit: cover;
  object-position: 60% 52%;
  border-radius: 0;
  opacity: 0.96;
  filter: saturate(1.05) contrast(1.04)
    drop-shadow(0 34px 42px rgba(31, 35, 24, 0.24));
  transform: rotateX(3deg) rotateZ(0.2deg) scale(1.02);
}

.master-plan-stats {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  min-height: 90px;
  margin: 0 0 18px;
  border: 1px solid rgba(219, 194, 137, 0.88);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(18, 89, 82, 0.98) 0%,
      rgba(15, 82, 78, 0.98) 42%,
      rgba(7, 57, 59, 0.98) 100%
    ),
    #083b3d;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.16) inset,
    0 16px 30px rgba(3, 27, 28, 0.28),
    0 7px 0 rgba(3, 35, 36, 0.82);
  overflow: hidden;
}

.master-plan-stats article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  height: 100%;
  padding: 14px clamp(18px, 2vw, 30px);
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    box-shadow 220ms ease;
}

.master-plan-stats article:hover {
  z-index: 2;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.1),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 14px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.master-plan-stats article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(219, 194, 137, 0.72);
}

.master-plan-stats .bi {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #e8d4a0;
  font-size: 2.05rem;
  line-height: 1;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.16));
}

.master-plan-stats strong,
.master-plan-stats span {
  display: block;
}

.master-plan-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fff6dc;
  font-size: clamp(1.18rem, 1.45vw, 1.52rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.master-plan-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  font-weight: 700;
  line-height: 1.2;
}

.daylife-section {
  display: grid;
  place-items: center;
  height: 50svh;
  min-height: 420px;
  scroll-margin-top: var(--header-height);
  padding: 0;
  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(219, 194, 137, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #f6f0e4 0%, #fbf8f0 52%, #eee6d8 100%);
}

.daylife-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 1.04fr 1.04fr 1.08fr;
  grid-template-rows: clamp(62px, 8vh, 76px) minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #062f35;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22) inset,
    0 30px 64px rgba(27, 25, 18, 0.22);
  overflow: hidden;
  isolation: isolate;
}

.daylife-panel {
  position: relative;
  grid-row: 1 / 3;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid rgba(219, 194, 137, 0.72);
  background: #082f35;
}

.daylife-panel--afternoon,
.daylife-panel--evening {
  grid-row: 2;
}

.daylife-panel:last-of-type {
  border-right: 0;
}

.daylife-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.03);
  transition:
    transform 600ms var(--ease),
    filter 600ms ease,
    opacity 600ms ease;
}

.daylife-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(4, 25, 29, 0.18) 0%,
      rgba(4, 25, 29, 0.02) 42%,
      rgba(4, 25, 29, 0.28) 100%
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 34%
    );
  pointer-events: none;
}

.daylife-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 36%;
  background: linear-gradient(180deg, rgba(5, 28, 32, 0), rgba(5, 28, 32, 0.5));
  pointer-events: none;
}

.daylife-panel:hover img {
  opacity: 1;
  filter: saturate(1.14) contrast(1.08);
  transform: scale(1.08);
}

.daylife-panel__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 100%;
  padding: clamp(40px, 5vw, 72px) 18px 24px;
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.46);
}

.daylife-panel__content p {
  margin: 0 0 8px;
  color: rgba(255, 250, 237, 0.94);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.24rem, 1.65vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.daylife-panel__content h3 {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.86rem, 1.05vw, 1.12rem);
  font-weight: 500;
  line-height: 1.32;
}

.daylife-panel--morning img {
  object-position: 42% center;
}

.daylife-panel--afternoon img {
  object-position: 54% center;
}

.daylife-panel--evening img {
  object-position: 50% center;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
}

.daylife-panel--night img {
  object-position: 62% center;
  filter: saturate(0.95) contrast(1.06) brightness(0.72);
}

.daylife-band {
  position: relative;
  z-index: 3;
  grid-column: 2 / 4;
  grid-row: 1;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(219, 194, 137, 0.72);
  border-left: 0;
  border-right: 0;
  color: #e8d4a0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 38%
    ),
    linear-gradient(160deg, rgba(8, 61, 67, 0.98), rgba(3, 33, 41, 0.98));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 18px 30px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.daylife-kicker {
  display: none;
}

.daylife-band h2 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 3.05vw, 3.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.daylife-band h2::first-letter {
  color: inherit;
}

@media (max-width: 1180px) {
  .daylife-grid {
    grid-template-rows: clamp(60px, 8vh, 72px) minmax(0, 1fr);
    min-height: 0;
  }

  .daylife-panel {
    min-height: 0;
  }

  .daylife-panel__content {
    padding: 44px 14px 20px;
  }

  .daylife-panel__content p {
    font-size: clamp(1.06rem, 1.8vw, 1.45rem);
  }

  .daylife-panel__content h3 {
    font-size: 0.86rem;
  }

  .master-plan-shell {
    grid-template-columns: minmax(260px, 0.72fr) minmax(430px, 1.28fr);
    width: min(1120px, calc(100% - 48px));
    min-height: calc(100svh - clamp(86px, 9.4vh, 96px));
  }

  .master-plan-content {
    padding: 0 0 18px;
  }

  .master-plan-title {
    font-size: clamp(2.1rem, 3.15vw, 3rem);
  }

  .master-plan-ratio {
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    padding: 14px;
  }

  .master-plan-ratio__ring {
    width: 58px;
  }

  .master-plan-legend ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .master-plan-visual {
    padding: 48px 34px 92px 0;
  }

  .master-plan-visual img {
    height: min(520px, 58vh);
  }

  .master-plan-stats {
    min-height: 82px;
  }

  .master-plan-stats article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
  }

  .master-plan-stats .bi {
    width: 42px;
    height: 42px;
    font-size: 1.65rem;
  }
}

@media (max-width: 980px) {
  .daylife-section {
    height: auto;
    min-height: auto;
    padding: 0;
  }

  .daylife-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(66px, auto) repeat(2, minmax(220px, 1fr));
    width: 100%;
    min-height: auto;
  }

  .daylife-panel {
    grid-row: auto;
    min-height: 220px;
    border-right: 1px solid rgba(219, 194, 137, 0.72);
    border-bottom: 1px solid rgba(219, 194, 137, 0.72);
  }

  .daylife-panel:nth-child(2n) {
    border-right: 0;
  }

  .daylife-panel:nth-child(1),
  .daylife-panel:nth-child(2) {
    grid-row: 2;
  }

  .daylife-panel:nth-child(3),
  .daylife-panel:nth-child(4) {
    grid-row: 3;
  }

  .daylife-panel__content {
    padding: 28px 16px 22px;
  }

  .daylife-band {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 66px;
    border-left: 0;
    border-right: 0;
  }

  .daylife-band h2 {
    font-size: clamp(1.65rem, 5vw, 2.25rem);
  }

  .master-plan-section {
    min-height: auto;
    padding: 84px 18px 34px;
  }

  .master-plan-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    width: min(100%, 760px);
    min-height: auto;
  }

  .master-plan-content {
    padding: 0 0 8px;
  }

  .master-plan-title {
    font-size: clamp(2rem, 5.8vw, 2.9rem);
  }

  .master-plan-lead {
    max-width: 100%;
  }

  .master-plan-ratio,
  .master-plan-legend {
    width: 100%;
  }

  .master-plan-legend ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .master-plan-visual {
    grid-column: 1;
    grid-row: auto;
    min-height: 430px;
    padding: 18px 18px 28px;
  }

  .master-plan-visual::before {
    display: none;
  }

  .master-plan-visual img {
    width: 100%;
    height: 420px;
    object-position: 60% center;
    transform: rotateX(1deg) scale(1);
  }

  .master-plan-stats {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 18px;
  }

  .master-plan-stats article:nth-child(odd)::before {
    display: none;
  }

  .master-plan-stats article:nth-child(n + 3)::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 0;
    height: 1px;
    background: rgba(219, 194, 137, 0.42);
  }
}

@media (max-width: 640px) {
  .daylife-section {
    height: auto;
    padding: 0;
  }

  .daylife-grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(62px, auto) repeat(4, minmax(170px, auto));
  }

  .daylife-panel {
    min-height: 170px;
    border-right: 0;
  }

  .daylife-panel:nth-child(1) {
    grid-row: 2;
  }

  .daylife-panel:nth-child(2) {
    grid-row: 3;
  }

  .daylife-panel:nth-child(3) {
    grid-row: 4;
  }

  .daylife-panel:nth-child(4) {
    grid-row: 5;
  }

  .daylife-panel__content {
    padding: 24px 14px 18px;
  }

  .daylife-panel__content p {
    font-size: 1.18rem;
  }

  .daylife-panel__content h3 {
    font-size: 0.84rem;
  }

  .daylife-band {
    grid-row: 1;
    min-height: 62px;
    padding: 0 14px;
  }

  .daylife-band h2 {
    font-size: clamp(1.28rem, 7vw, 1.75rem);
    letter-spacing: 0.06em;
  }

  .master-plan-section {
    padding: 78px 12px 24px;
  }

  .master-plan-content {
    padding: 0 0 6px;
  }

  .master-plan-kicker {
    font-size: 0.68rem;
  }

  .master-plan-title {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .master-plan-lead {
    font-size: 0.78rem;
  }

  .master-plan-ratio {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .master-plan-ratio__ring {
    justify-self: center;
    order: -1;
  }

  .master-plan-legend ul {
    grid-template-columns: 1fr;
  }

  .master-plan-visual {
    min-height: 310px;
    padding: 16px 12px 22px;
  }

  .master-plan-visual img {
    height: 300px;
    border-radius: 14px;
  }

  .master-plan-stats {
    grid-template-columns: 1fr;
    margin: 0 0 16px;
  }

  .master-plan-stats article + article::before {
    display: block;
    left: 12px;
    right: 12px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .master-plan-stats article:nth-child(n + 3)::after {
    display: none;
  }
}

@media (max-width: 1180px) {
  .view-section__inner {
    width: min(100% - 40px, 1040px);
  }

  .view-showcase {
    height: clamp(540px, calc(100svh - 126px), 640px);
    min-height: 540px;
  }

  .view-project {
    width: min(66vw, 720px);
  }

  .view-arrow--left {
    left: 8%;
  }

  .view-arrow--right {
    right: 8%;
  }

  .view-360 {
    right: 1%;
    padding: 0 18px;
  }

  .perspective-section {
    padding-bottom: 92px;
  }

  .perspective-content {
    width: min(40vw, 410px);
    margin-left: 36px;
  }

  .perspective-media {
    width: 72%;
    background-position: 70% center;
  }

  .perspective-stat {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 14px;
  }

  .perspective-stat__icon {
    width: 42px;
    height: 42px;
  }

  .perspective-stat__icon .bi {
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
  }

  .floor-plan-shell {
    grid-template-columns: minmax(360px, 0.82fr) minmax(500px, 1.18fr);
    column-gap: 26px;
    width: min(1120px, calc(100% - 48px));
    min-height: min(760px, calc(100svh - 118px));
    padding: 38px 40px 30px;
  }

  .floor-plan-title {
    font-size: clamp(2.1rem, 3.15vw, 3rem);
  }

  .floor-plan-preview {
    min-height: clamp(300px, 43vh, 400px);
  }

  .floor-plan-image {
    width: min(100%, 760px);
    max-height: clamp(300px, 45vh, 430px);
  }

  .floor-plan-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .floor-plan-tab {
    min-height: 86px;
    padding: 10px 9px 12px;
  }

  .floor-plan-tab__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }

  .floor-plan-tab__icon .bi {
    width: 26px;
    height: 26px;
    font-size: 1.36rem;
  }

  .floor-plan-tab strong {
    font-size: clamp(0.72rem, 0.9vw, 0.92rem);
  }
}

@media (max-width: 980px) {
  .view-section {
    padding-top: 88px;
  }

  .view-section__inner {
    width: min(100% - 28px, 760px);
  }

  .view-section__title {
    font-size: clamp(1.15rem, 4vw, 1.55rem);
  }

  .view-showcase {
    height: 610px;
    min-height: 610px;
  }

  .view-panel {
    border-radius: 24px;
  }

  .view-panel figcaption {
    top: 15px;
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .view-project {
    top: 39%;
    width: min(80vw, 560px);
    border-radius: 0;
  }

  .view-project__image {
    background-size: contain;
    background-position: 50% 50%;
  }

  .view-arrow {
    top: 40%;
    width: 50px;
    height: 50px;
  }

  .view-arrow--left {
    left: 8%;
  }

  .view-arrow--right {
    right: 8%;
  }

  .view-360 {
    top: 49%;
    right: 50%;
    min-height: 48px;
    padding: 0 16px;
    transform: translateX(50%);
  }

  .view-section.is-inview .view-360 {
    animation-name: viewPillInMobile;
  }

  .view-360:hover,
  .view-360:focus-visible {
    transform: translateX(50%) translateY(-2px);
  }

  .view-360 span {
    width: 32px;
    height: 32px;
    font-size: 0.68rem;
  }

  .perspective-section {
    min-height: auto;
    padding: 86px 0 0;
    background: #fbf7ef;
  }

  .perspective-media {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    min-height: 390px;
    margin-top: 22px;
    background-position: 62% center;
  }

  .perspective-media::before {
    background:
      linear-gradient(
        180deg,
        #fbf7ef 0%,
        rgba(251, 247, 239, 0.72) 18%,
        rgba(251, 247, 239, 0.08) 45%
      ),
      linear-gradient(90deg, rgba(251, 247, 239, 0.66), rgba(251, 247, 239, 0));
  }

  .perspective-media::after {
    display: none;
  }

  .perspective-content {
    width: min(100% - 48px, 640px);
    margin: 0 auto;
  }

  .perspective-title {
    max-width: 100%;
    font-size: clamp(2.3rem, 8.7vw, 3.55rem);
    letter-spacing: 0.035em;
  }

  .perspective-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 28px, 720px);
    margin: -42px auto 0;
    border-radius: 12px;
  }

  .perspective-stat:nth-child(odd)::before {
    display: none;
  }

  .perspective-stat:nth-child(n + 3)::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: rgba(219, 194, 137, 0.46);
  }

  .floor-plan-section {
    min-height: auto;
    padding: 84px 18px 34px;
  }

  .floor-plan-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: min(100%, 760px);
    min-height: auto;
    padding: 30px 24px 28px;
    border-radius: 24px;
  }

  .floor-plan-content {
    max-width: 680px;
  }

  .floor-plan-title {
    font-size: clamp(2rem, 5.8vw, 2.9rem);
  }

  .floor-plan-selected-detail,
  .floor-plan-price-button {
    font-size: 0.82rem;
  }

  .floor-plan-preview {
    grid-column: 1;
    grid-row: auto;
    min-height: 360px;
    padding: 0;
  }

  .floor-plan-image {
    width: min(100%, 720px);
    max-height: 380px;
    transform: translateY(8px) rotateX(1deg) scale(0.98);
  }

  .floor-plan-image.is-visible {
    transform: translateY(0) rotateX(1deg) scale(1.04);
  }

  .floor-plan-tabs {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    gap: 10px;
    margin: 0 -4px;
    padding: 14px 4px 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .floor-plan-option {
    flex: 0 0 142px;
    scroll-snap-align: start;
  }

  .floor-plan-tab {
    min-height: 84px;
  }

  .floor-plan-tab.is-active::before {
    bottom: -17px;
    width: min(118px, calc(100% - 22px));
    height: 6px;
  }
}

@media (max-width: 640px) {
  .view-section {
    padding: 80px 0 18px;
  }

  .view-section__title {
    margin-bottom: 12px;
    font-size: 1.02rem;
  }

  .view-showcase {
    height: 620px;
    min-height: 0;
  }

  .view-panel--front {
    height: 30%;
  }

  .view-panel--back {
    height: 30%;
  }

  .view-panel {
    border-radius: 18px;
  }

  .view-panel img {
    transform: scale(1.04);
  }

  .view-panel--front img {
    object-position: 47% center;
  }

  .view-panel--back img {
    object-position: 54% center;
  }

  .view-panel figcaption {
    top: 13px;
    font-size: 0.98rem;
  }

  .view-panel--back figcaption {
    top: 12px;
    bottom: auto;
  }

  .view-panel__arrow {
    left: 11%;
    top: 40%;
    width: 48px;
    height: 48px;
  }

  .view-project {
    top: 40%;
    width: min(84vw, 380px);
    border-radius: 0;
  }

  .view-project__image {
    background-size: contain;
    background-position: 50% 50%;
  }

  .view-arrow {
    top: 40%;
    width: 42px;
    height: 42px;
  }

  .view-arrow--left {
    left: 22px;
  }

  .view-arrow--right {
    right: 22px;
  }

  .view-360 {
    top: 48%;
    min-height: 42px;
    gap: 8px;
    padding: 0 13px;
  }

  .view-360 span {
    width: 28px;
    height: 28px;
    border-width: 1.5px;
    font-size: 0.58rem;
  }

  .view-360 strong {
    font-size: 0.78rem;
  }

  .perspective-section {
    padding-top: 80px;
  }

  .perspective-content {
    width: calc(100% - 30px);
  }

  .perspective-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .perspective-title {
    font-size: clamp(2rem, 9.8vw, 2.7rem);
    letter-spacing: 0.02em;
  }

  .perspective-title__line {
    font-size: 0.82em;
  }

  .perspective-lead {
    margin-top: 14px;
    font-size: 1.05rem;
  }

  .perspective-copy {
    font-size: 0.78rem;
    gap: 10px;
  }

  .perspective-media {
    min-height: 310px;
    margin-top: 18px;
    background-position: 62% center;
  }

  .perspective-stats {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .perspective-stat {
    border-top: 0;
  }

  .perspective-stat + .perspective-stat::before {
    display: block;
    left: 16px;
    right: 16px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: rgba(219, 194, 137, 0.46);
  }

  .perspective-stat {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 14px;
  }

  .perspective-stat:nth-child(n + 3)::after {
    display: none;
  }

  .perspective-stat__icon {
    width: 40px;
    height: 40px;
  }

  .perspective-stat__icon .bi {
    width: 40px;
    height: 40px;
    font-size: 1.55rem;
  }

  .floor-plan-section {
    padding: 78px 12px 24px;
  }

  .floor-plan-shell {
    padding: 24px 14px 24px;
    border-radius: 20px;
  }

  .floor-plan-kicker {
    font-size: 0.72rem;
  }

  .floor-plan-title {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .floor-plan-lead {
    font-size: 0.98rem;
  }

  .floor-plan-copy {
    font-size: 0.84rem;
  }

  .floor-plan-selected-detail,
  .floor-plan-price-button {
    width: 100%;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .floor-plan-preview {
    min-height: 270px;
  }

  .floor-plan-image {
    width: min(112%, 520px);
    max-height: 290px;
  }

  .floor-plan-image.is-visible {
    transform: translateY(0) rotateX(0) scale(1.03);
  }

  .floor-plan-placeholder {
    min-height: 210px;
    border-radius: 18px;
  }

  .floor-plan-tabs {
    gap: 10px;
    padding-bottom: 18px;
  }

  .floor-plan-option {
    flex-basis: 118px;
  }

  .floor-plan-tab {
    min-height: 76px;
    padding: 9px 8px 10px;
    border-radius: 10px;
  }

  .floor-plan-tab__icon {
    width: 34px;
    height: 34px;
    margin-bottom: 7px;
  }

  .floor-plan-tab__icon .bi {
    width: 21px;
    height: 21px;
    font-size: 1.1rem;
  }

  .floor-plan-tab strong {
    font-size: 0.68rem;
  }

  .floor-plan-tab.is-active::before {
    bottom: -16px;
    width: min(96px, calc(100% - 18px));
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 44px);
  }
}

/* Clean, responsive master-plan image */
.master-plan-image {
  position: relative;
  width: min(100%, 1040px);
  height: min(560px, 62vh);
  overflow: hidden;
  border-radius: 4px;
}

.master-plan-visual .master-plan-image img {
  width: 100%;
  height: 100%;
  object-position: center;
  border-radius: inherit;
  filter: none;
  transform: none;
}

@media (max-width: 980px) {
  .master-plan-image {
    width: 100%;
    height: 420px;
  }
}

@media (max-width: 640px) {
  .master-plan-image {
    height: 300px;
  }
}

/* Shared Absolute Assets logo */
.brand__logo-image,
.footer-brand__logo-image {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand__logo-image {
  height: 64px;
  padding: 5px 8px;
  border-radius: 9px;
  background: #fff;
}

.footer-brand__logo-image {
  height: 68px;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 640px) {
  .brand__logo-image {
    height: 52px;
    padding: 4px 6px;
  }

  .footer-brand__logo-image {
    height: 60px;
  }
}

@keyframes arrowDrop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@keyframes viewTitleIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes viewFrontIn {
  from {
    opacity: 0;
    filter: blur(8px) saturate(0.85);
    transform: translateY(-34px) scale(0.96) rotateX(10deg);
  }
  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translateY(0) scale(1) rotateX(2deg);
  }
}

@keyframes viewProjectIn {
  0% {
    opacity: 0;
    filter: blur(10px) saturate(0.9);
    transform: translate(-50%, -45%) scale(0.74) rotateX(16deg) translateZ(10px);
  }
  72% {
    opacity: 1;
    filter: blur(0) saturate(1.03);
    transform: translate(-50%, -50%) scale(1.04) rotateX(3deg) translateZ(46px);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translate(-50%, -50%) scale(1) rotateX(4deg) translateZ(40px);
  }
}

@keyframes viewProjectFloat {
  0%,
  100% {
    transform: translateY(0) scale(1.02);
    filter: drop-shadow(0 20px 28px rgba(7, 36, 42, 0.26))
      drop-shadow(0 7px 10px rgba(7, 36, 42, 0.16));
  }
  50% {
    transform: translateY(-8px) scale(1.025);
    filter: drop-shadow(0 26px 34px rgba(7, 36, 42, 0.3))
      drop-shadow(0 9px 13px rgba(7, 36, 42, 0.18));
  }
}

@keyframes viewBackIn {
  from {
    opacity: 0;
    filter: blur(8px) saturate(0.85);
    transform: translateY(34px) scale(0.96) rotateX(-9deg);
  }
  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translateY(0) scale(1) rotateX(-1deg);
  }
}

@keyframes viewMiniArrowIn {
  from {
    opacity: 0;
    transform: translate(-10px, 12px) rotate(-18deg) scale(0.72);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-8deg) scale(1);
  }
}

@keyframes viewControlIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes viewPillIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.86);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes viewPillInMobile {
  from {
    opacity: 0;
    transform: translateX(50%) translateY(12px) scale(0.86);
  }
  to {
    opacity: 1;
    transform: translateX(50%) translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .view-section.is-inview .view-section__title,
  .view-section.is-inview .view-panel--front,
  .view-section.is-inview .view-panel__arrow,
  .view-section.is-inview .view-project,
  .view-section.is-inview .view-project__image,
  .view-section.is-inview .view-panel--back,
  .view-section.is-inview .view-arrow,
  .view-section.is-inview .view-360 {
    animation: none;
  }

  .js-enabled .view-section:not(.is-inview) .view-section__title,
  .js-enabled .view-section:not(.is-inview) .view-panel,
  .js-enabled .view-section:not(.is-inview) .view-panel__arrow,
  .js-enabled .view-section:not(.is-inview) .view-project,
  .js-enabled .view-section:not(.is-inview) .view-arrow,
  .js-enabled .view-section:not(.is-inview) .view-360 {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 36px, 1040px);
  }

  .site-header__inner {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .header-cta {
    min-width: 122px;
    padding: 0 17px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .brand__script {
    font-size: 2.15rem;
  }

  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(9, 43, 49, 0.92);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 200ms ease,
      transform 200ms var(--ease);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    text-shadow: none;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    background-position: 58% center;
  }

  .hero__content {
    padding: clamp(58px, 9vh, 96px) clamp(28px, 5vw, 60px) 272px;
  }

  .hero__title {
    font-size: clamp(4.2rem, 15vw, 7rem);
  }

  .hero__tagline {
    max-width: 560px;
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .hero__location {
    margin-left: 12px;
  }

  .scroll-cue {
    right: 22px;
    bottom: 30px;
  }

  .scroll-cue__mouse {
    width: 33px;
    height: 68px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand__divider,
  .brand__text {
    display: none;
  }

  .header-cta {
    min-width: auto;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 0.65rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr;
  }

  .hero {
    background-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 25, 39, 0.42) 0%,
        rgba(0, 18, 24, 0.12) 28%,
        rgba(0, 18, 20, 0.24) 61%,
        rgba(0, 16, 15, 0.55) 100%
      ),
      linear-gradient(90deg, rgba(255, 242, 194, 0.2), rgba(255, 242, 194, 0));
  }

  .hero__content {
    padding: 42px 14px 265px;
    align-self: center;
    transform: translateY(-4vh);
  }

  .hero__eyebrow {
    font-size: 0.62rem;
  }

  .hero__title {
    font-size: clamp(3.55rem, 19vw, 5.6rem);
    line-height: 0.9;
    letter-spacing: 0.05em;
  }

  .hero__tagline {
    max-width: 320px;
    font-size: clamp(1.75rem, 9vw, 2.65rem);
    line-height: 1;
  }

  .hero__location {
    gap: 9px;
    margin: 17px 0 0;
    font-size: 0.87rem;
  }

  .hero__location span {
    width: 27px;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 390px) {
  .header-cta {
    display: none;
  }

  .hero__title {
    font-size: 3.35rem;
  }

  .hero__tagline {
    max-width: 280px;
  }
}

/* Iconic clubhouses */
.clubhouse-showcase-section {
  position: relative;
  scroll-margin-top: var(--header-height);
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(26px, 3.2vw, 42px) 0;
  background:
    radial-gradient(
      circle at 84% 10%,
      rgba(239, 64, 88, 0.06),
      transparent 29%
    ),
    radial-gradient(
      circle at 10% 55%,
      rgba(11, 107, 112, 0.06),
      transparent 32%
    ),
    linear-gradient(180deg, #fbf7ef 0%, #f6f0e5 100%);
  overflow: hidden;
}

.clubhouse-showcase-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.clubhouse-showcase-header {
  margin: 0 auto clamp(14px, 1.6vw, 20px);
  text-align: center;
}

.clubhouse-showcase-title {
  margin: 0;
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.clubhouse-showcase-list {
  display: grid;
  gap: clamp(9px, 1vw, 13px);
}

.clubhouse-showcase-card {
  position: relative;
  min-height: clamp(148px, 17.5vh, 188px);
  border: 1px solid rgba(7, 78, 80, 0.16);
  border-radius: 17px;
  background: #000;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 14px 30px rgba(29, 37, 33, 0.12),
    0 4px 0 rgba(44, 63, 59, 0.07);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.clubhouse-showcase-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(1.03) contrast(1.02);
  transition:
    transform 700ms var(--ease),
    filter 500ms ease;
}

.clubhouse-showcase-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(4, 41, 45, 0.91) 0%,
      rgba(4, 41, 45, 0.68) 28%,
      rgba(4, 41, 45, 0.18) 53%,
      rgba(4, 41, 45, 0.01) 76%
    ),
    linear-gradient(180deg, rgba(3, 31, 34, 0.04), rgba(3, 31, 34, 0.17));
}

.clubhouse-showcase-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: inherit;
  padding: clamp(18px, 2vw, 26px) clamp(24px, 3vw, 40px);
  color: #fff;
}

.clubhouse-showcase-card__content > div {
  width: min(500px, 62%);
}

.clubhouse-showcase-card h3 {
  margin: 0;
  color: #fff9ea;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
}

.clubhouse-showcase-card__content div > p {
  max-width: 460px;
  margin: 7px 0 11px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.7rem, 0.75vw, 0.82rem);
  font-weight: 500;
  line-height: 1.42;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.clubhouse-showcase-card__number {
  order: 2;
  margin: 0;
  color: rgba(255, 249, 232, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 5.3vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.8;
  text-shadow: 0 7px 26px rgba(0, 0, 0, 0.24);
}

.clubhouse-showcase-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid rgba(255, 243, 210, 0.68);
  border-radius: 6px;
  color: #fff9ea;
  background: rgba(8, 76, 78, 0.34);
  backdrop-filter: blur(8px);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    border-color 220ms ease;
}

.clubhouse-showcase-card__cta:hover,
.clubhouse-showcase-card__cta:focus-visible {
  border-color: rgba(255, 249, 234, 0.96);
  background: rgba(239, 64, 88, 0.82);
  transform: translateY(-2px);
}

.clubhouse-showcase-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.05);
}

@media (max-width: 980px) {
  .clubhouse-showcase-section {
    min-height: auto;
    padding: 48px 0;
  }

  .clubhouse-showcase-shell {
    width: min(100% - 36px, 780px);
  }

  .clubhouse-showcase-card {
    min-height: 205px;
    border-radius: 16px;
  }

  .clubhouse-showcase-card__content > div {
    width: min(510px, 72%);
  }
}

@media (max-width: 640px) {
  .clubhouse-showcase-section {
    min-height: auto;
    padding: 42px 0 38px;
  }

  .clubhouse-showcase-shell {
    width: calc(100% - 24px);
  }

  .clubhouse-showcase-header {
    margin-bottom: 18px;
    padding: 0 8px;
  }

  .clubhouse-showcase-title {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .clubhouse-showcase-list {
    gap: 10px;
  }

  .clubhouse-showcase-card {
    min-height: 250px;
    border-radius: 15px;
  }

  .clubhouse-showcase-card img {
    object-position: 62% center;
  }

  .clubhouse-showcase-card__shade {
    background:
      linear-gradient(
        180deg,
        rgba(4, 41, 45, 0.06) 25%,
        rgba(4, 41, 45, 0.88) 100%
      ),
      linear-gradient(90deg, rgba(4, 41, 45, 0.3), transparent 74%);
  }

  .clubhouse-showcase-card__content {
    align-items: flex-end;
    padding: 19px 18px;
  }

  .clubhouse-showcase-card__content > div {
    width: min(100%, 440px);
  }

  .clubhouse-showcase-card__number {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 3.5rem;
  }

  .clubhouse-showcase-card h3 {
    padding-right: 58px;
    font-size: clamp(1.6rem, 7.5vw, 2.05rem);
  }

  .clubhouse-showcase-card__content div > p {
    margin: 7px 0 12px;
    font-size: 0.72rem;
  }
}

/* Location & Connectivity */
.location-section {
  position: relative;
  scroll-margin-top: var(--header-height);
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100svh - var(--header-height)));
  padding: clamp(52px, 6vw, 82px) 0;
  background:
    radial-gradient(
      circle at 10% 18%,
      rgba(239, 64, 88, 0.07),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(11, 107, 112, 0.08),
      transparent 30%
    ),
    linear-gradient(135deg, #fbf7ef 0%, #f3ecdf 100%);
  overflow: hidden;
}

.location-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -180px;
  top: -190px;
  border: 1px solid rgba(11, 107, 112, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(11, 107, 112, 0.025),
    0 0 0 96px rgba(239, 64, 88, 0.018);
  pointer-events: none;
}

.location-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.location-content {
  min-width: 0;
}

.location-kicker {
  margin: 0 0 13px;
  color: #000;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-title {
  margin: 0;
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.75rem, 4vw, 4.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.location-title span {
  display: block;
}
.location-title span:last-child {
  color: #000;
}

.location-copy {
  max-width: 580px;
  margin: 22px 0 22px;
  color: #536267;
  font-size: clamp(0.84rem, 0.95vw, 0.98rem);
  font-weight: 500;
  line-height: 1.72;
}

.location-address-card {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 590px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 107, 112, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    0 10px 26px rgba(44, 55, 50, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(10px);
}

.location-address-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border-radius: 12px;
  color: #fff7e9;
  background: linear-gradient(145deg, #000, #075157);
  box-shadow: 0 8px 18px rgba(11, 107, 112, 0.22);
  font-size: 1.05rem;
}

.location-address-card small,
.location-address-card strong {
  display: block;
}
.location-address-card small {
  margin-bottom: 3px;
  color: #000;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.location-address-card strong {
  color: #243b40;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.18;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  max-width: 610px;
}

.location-point {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 10px 12px;
  border: 1px solid rgba(28, 69, 70, 0.09);
  border-radius: 11px;
  background: rgba(255, 252, 246, 0.66);
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}
.location-point:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 107, 112, 0.2);
  box-shadow: 0 10px 22px rgba(35, 51, 48, 0.08);
}
.location-point > span {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--color-teal);
  background: rgba(11, 107, 112, 0.09);
  font-size: 0.83rem;
}
.location-point strong,
.location-point small {
  display: block;
}
.location-point strong {
  color: #263b3f;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
}
.location-point small {
  margin-top: 2px;
  color: #7b8280;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.25;
}

.location-map-wrap {
  position: relative;
  padding: 11px;
  border: 1px solid rgba(11, 107, 112, 0.15);
  border-radius: 25px;
  background: rgba(255, 252, 246, 0.72);
  box-shadow:
    0 28px 65px rgba(45, 43, 35, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.88) inset;
  backdrop-filter: blur(14px);
}

.location-map-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 4px 7px 12px 10px;
}
.location-map-topbar small,
.location-map-topbar strong {
  display: block;
}
.location-map-topbar small {
  margin-bottom: 2px;
  color: #000;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.location-map-topbar strong {
  color: #173e43;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
}
.location-map-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(11, 107, 112, 0.18);
  border-radius: 9px;
  color: #000;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 200ms ease,
    color 200ms ease,
    transform 200ms var(--ease);
}
.location-map-topbar a:hover {
  background: var(--color-teal);
  color: #fff;
  transform: translateY(-1px);
}

.location-map-frame {
  position: relative;
  height: clamp(400px, 53vh, 540px);
  border-radius: 17px;
  overflow: hidden;
  background: #e5e0d5;
  isolation: isolate;
}
.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(0.94) sepia(0.08);
}
.location-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(7, 79, 83, 0.14);
  border-radius: inherit;
  box-shadow: inset 0 0 42px rgba(24, 65, 66, 0.06);
  pointer-events: none;
}
.location-map-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 172px;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 13px;
  color: #fff;
  background: #000;
  box-shadow: 0 12px 28px rgba(8, 37, 40, 0.23);
  backdrop-filter: blur(12px);
  pointer-events: none;
}
.location-map-badge__pin {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #000;
  background: #fff;
  box-shadow: 0 7px 16px rgba(239, 64, 88, 0.3);
}
.location-map-badge small,
.location-map-badge strong {
  display: block;
}
.location-map-badge small {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}
.location-map-badge strong {
  margin-top: 1px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
}

@media (max-width: 1050px) {
  .location-section {
    min-height: auto;
  }
  .location-shell {
    grid-template-columns: 1fr;
    width: min(880px, calc(100% - 40px));
    gap: 34px;
  }
  .location-content {
    text-align: center;
  }
  .location-copy,
  .location-address-card,
  .location-points {
    margin-left: auto;
    margin-right: auto;
  }
  .location-address-card {
    text-align: left;
  }
  .location-points {
    text-align: left;
  }
  .location-map-frame {
    height: 480px;
  }
}

@media (max-width: 640px) {
  .location-section {
    padding: 44px 0;
  }
  .location-shell {
    width: calc(100% - 24px);
    gap: 26px;
  }
  .location-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.19em;
  }
  .location-title {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 0.95;
  }
  .location-copy {
    margin: 17px auto 18px;
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .location-address-card {
    padding: 12px;
    border-radius: 12px;
  }
  .location-address-card__icon {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
  }
  .location-address-card strong {
    font-size: 0.96rem;
  }
  .location-points {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .location-point {
    min-height: 55px;
    padding: 9px 11px;
  }
  .location-map-wrap {
    padding: 8px;
    border-radius: 19px;
  }
  .location-map-topbar {
    min-height: 54px;
    padding: 4px 4px 10px 7px;
  }
  .location-map-topbar strong {
    font-size: 1rem;
  }
  .location-map-topbar small {
    font-size: 0.5rem;
  }
  .location-map-topbar a {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.54rem;
  }
  .location-map-frame {
    height: 390px;
    border-radius: 13px;
  }
  .location-map-badge {
    left: 12px;
    bottom: 12px;
    min-width: 154px;
    padding: 8px 10px 8px 8px;
  }
}

/* ===============================
   Premium Amenities — Bento Layout
   =============================== */
.amenities-premium-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6.2vw, 92px) 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(156, 86, 97, 0.09), transparent 30%),
    radial-gradient(
      circle at 92% 86%,
      rgba(11, 102, 107, 0.1),
      transparent 31%
    ),
    #fbf6ee;
}

.amenities-premium-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(14, 87, 89, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 87, 89, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

.amenities-premium-shell {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 56px));
  margin: 0 auto;
}

.amenities-premium-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 30px;
}

.amenities-premium-kicker {
  margin: 0 0 11px;
  color: #000;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.amenities-premium-head h2 {
  margin: 0;
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.75rem, 4.35vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 0.91;
}

.amenities-premium-head h2 span {
  color: #000;
}

.amenities-premium-intro {
  max-width: 520px;
  margin: 0 0 3px auto;
  color: #586366;
  font-size: clamp(0.82rem, 0.92vw, 0.96rem);
  font-weight: 500;
  line-height: 1.72;
}

.amenities-bento {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr 0.78fr;
  grid-template-rows: 236px 236px;
  gap: 14px;
}

.amenity-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 22px;
  background: #163b3f;
  box-shadow:
    0 18px 40px rgba(40, 48, 43, 0.12),
    inset 0 0 0 1px rgba(13, 74, 77, 0.07);
  isolation: isolate;
}

.amenity-feature--pool {
  grid-row: 1 / 3;
}
.amenity-feature--racquet {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.amenity-feature--social {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.amenity-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 500ms ease;
}

.amenity-feature--pool img {
  object-position: 54% center;
}
.amenity-feature--racquet img {
  object-position: 52% center;
}
.amenity-feature--social img {
  object-position: center 48%;
}

.amenity-feature__veil {
      position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5, 27, 30, 0.02) 24%, rgb(0 0 0 / 80%) 100%);
}

.amenity-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.amenity-feature:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.amenity-feature__content {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: #fff;
}

.amenity-feature__icon {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.95rem;
}

.amenity-feature__content p {
  margin: 0 0 2px;
  color: #f4c9c4;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.amenity-feature__content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 1.75vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
}

.amenity-feature__content div > span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.63rem;
  font-weight: 500;
  line-height: 1.35;
}

.amenities-mini-grid {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.amenity-mini-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 14px 14px;
  border: 1px solid rgba(15, 89, 91, 0.105);
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow:
    0 9px 22px rgba(43, 49, 44, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  transition:
    transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.amenity-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 102, 107, 0.24);
  box-shadow:
    0 14px 28px rgba(43, 49, 44, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.amenity-mini-card > span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #0b666b;
  background: rgba(11, 102, 107, 0.085);
  font-size: 0.95rem;
}

.amenity-mini-card strong,
.amenity-mini-card small {
  display: block;
}

.amenity-mini-card strong {
  overflow: hidden;
  color: #243d40;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.amenity-mini-card small {
  margin-top: 3px;
  color: #777e7d;
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1.35;
}

.amenity-mini-card--accent {
  border-color: rgba(157, 86, 97, 0.17);
  background: linear-gradient(
    145deg,
    rgba(157, 86, 97, 0.09),
    rgba(255, 252, 246, 0.88)
  );
}

.amenity-mini-card--accent > span {
  color: #000;
  background: rgba(157, 86, 97, 0.1);
}

@media (max-width: 1100px) {
  .amenities-premium-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .amenities-premium-intro {
    margin-left: 0;
  }
  .amenities-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 230px auto;
  }
  .amenity-feature--pool {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .amenity-feature--racquet {
    grid-column: 1;
    grid-row: 2;
  }
  .amenity-feature--social {
    grid-column: 2;
    grid-row: 2;
  }
  .amenities-mini-grid {
    grid-column: 1 / 3;
    grid-row: 3;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .amenities-premium-section {
    padding: 48px 0;
  }
  .amenities-premium-shell {
    width: calc(100% - 24px);
  }
  .amenities-premium-head {
    margin-bottom: 22px;
  }
  .amenities-premium-kicker {
    font-size: 0.61rem;
    letter-spacing: 0.19em;
  }
  .amenities-premium-head h2 {
    font-size: clamp(2.4rem, 11.5vw, 3.5rem);
    line-height: 0.94;
  }
  .amenities-premium-intro {
    font-size: 0.8rem;
    line-height: 1.62;
  }
  .amenities-bento {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 11px;
  }
  .amenity-feature--pool,
  .amenity-feature--racquet,
  .amenity-feature--social {
    grid-column: 1;
    grid-row: auto;
    min-height: 255px;
  }
  .amenity-feature--pool {
    min-height: 330px;
  }
  .amenity-feature {
    border-radius: 18px;
  }
  .amenity-feature__content {
    left: 16px;
    right: 16px;
    bottom: 15px;
  }
  .amenities-mini-grid {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .amenity-mini-card {
    align-items: flex-start;
    padding: 12px 11px;
    border-radius: 14px;
  }
  .amenity-mini-card > span {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .amenity-mini-card strong {
    white-space: normal;
    font-size: 0.64rem;
  }
  .amenity-mini-card small {
    font-size: 0.52rem;
  }
}

@media (max-width: 430px) {
  .amenities-mini-grid {
    grid-template-columns: 1fr;
  }
  .amenity-mini-card {
    min-height: 66px;
    align-items: center;
  }
}

/* Premium 3D Gallery */
.gallery-3d-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 64, 88, 0.1), transparent 24%),
    radial-gradient(
      circle at 88% 72%,
      rgba(11, 107, 112, 0.12),
      transparent 26%
    ),
    linear-gradient(135deg, #fff9ee 0%, #f7efe4 48%, #f2ede5 100%);
  padding: 88px 0 42px;
}
.gallery-3d-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 107, 112, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 107, 112, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 22%,
    black 80%,
    transparent
  );
  pointer-events: none;
}
.gallery-3d-shell {
  width: min(1220px, calc(100% - 48px));
  margin: auto;
  position: relative;
  z-index: 1;
}
.gallery-3d-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 24px;
}
.gallery-3d-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #000;
  font-size: 11px;
  font-weight: 700;
}
.gallery-3d-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 0.92;
  font-weight: 500;
  color: var(--color-ink);
}
.gallery-3d-head h2 span {
  color: #000;
  font-style: italic;
}
.gallery-3d-head > p {
  max-width: 410px;
  margin: 0 0 5px;
  color: #596568;
  font-size: 13px;
  line-height: 1.75;
}
.gallery-3d-stage {
  height: clamp(390px, 56vh, 560px);
  position: relative;
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-3d-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.gallery-3d-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62vw, 730px);
  height: 92%;
  border-radius: 28px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 30px 70px rgba(28, 42, 45, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.76);
  transform-origin: center;
  transition:
    transform 0.72s var(--ease),
    opacity 0.55s var(--ease),
    filter 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
  will-change: transform, opacity;
  cursor: pointer;
}
.gallery-3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease);
}
.gallery-3d-card.is-active:hover img {
  transform: scale(1.035);
}
.gallery-3d-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 30, 0.72), transparent 45%);
}
.gallery-3d-card__meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.gallery-3d-card__meta small {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 650;
  opacity: 0.8;
}
.gallery-3d-card__meta strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  text-align: right;
}
.gallery-3d-card.is-active {
  z-index: 5;
  transform: translate(-50%, -50%) translateZ(80px) scale(1);
  opacity: 1;
  filter: saturate(1.03);
  box-shadow: 0 34px 85px rgba(19, 48, 51, 0.25);
}
.gallery-3d-card.is-prev {
  z-index: 3;
  transform: translate(-88%, -50%) rotateY(18deg) translateZ(-95px) scale(0.76);
  opacity: 0.72;
  filter: saturate(0.74) brightness(0.84);
}
.gallery-3d-card.is-next {
  z-index: 3;
  transform: translate(-12%, -50%) rotateY(-18deg) translateZ(-95px) scale(0.76);
  opacity: 0.72;
  filter: saturate(0.74) brightness(0.84);
}
.gallery-3d-card.is-far-prev {
  z-index: 1;
  transform: translate(-106%, -50%) rotateY(26deg) translateZ(-180px) scale(0.6);
  opacity: 0.22;
  filter: brightness(0.72);
}
.gallery-3d-card.is-far-next {
  z-index: 1;
  transform: translate(6%, -50%) rotateY(-26deg) translateZ(-180px) scale(0.6);
  opacity: 0.22;
  filter: brightness(0.72);
}
.gallery-3d-nav {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #000;
  box-shadow: 0 14px 30px rgba(30, 43, 47, 0.14);
  border: 1px solid #fff;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.gallery-3d-nav:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--color-teal);
  color: #fff;
}
.gallery-3d-nav--prev {
  left: 1%;
}
.gallery-3d-nav--next {
  right: 1%;
}
.gallery-3d-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}
.gallery-3d-progress {
  width: min(260px, 35vw);
  height: 2px;
  background: rgba(11, 107, 112, 0.16);
  overflow: hidden;
}
.gallery-3d-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: #000;
  transition: width 0.55s var(--ease);
}
.gallery-3d-count {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.gallery-3d-count strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  color: #000000;
  font-weight: 600;
}
.gallery-3d-count span {
  font-size: 11px;
  color: #7d8685;
  letter-spacing: 0.1em;
}
@media (max-width: 760px) {
  .gallery-3d-section {
    min-height: auto;
    padding: 76px 0 34px;
  }
  .gallery-3d-shell {
    width: min(100% - 28px, 1220px);
  }
  .gallery-3d-head {
    display: block;
    margin-bottom: 18px;
  }
  .gallery-3d-head > p {
    margin-top: 14px;
    max-width: 95%;
  }
  .gallery-3d-stage {
    height: 440px;
  }
  .gallery-3d-card {
    width: 82vw;
    height: 88%;
    border-radius: 22px;
  }
  .gallery-3d-card.is-prev {
    transform: translate(-100%, -50%) rotateY(14deg) translateZ(-100px)
      scale(0.68);
  }
  .gallery-3d-card.is-next {
    transform: translate(0%, -50%) rotateY(-14deg) translateZ(-100px)
      scale(0.68);
  }
  .gallery-3d-card.is-far-prev,
  .gallery-3d-card.is-far-next {
    opacity: 0;
  }
  .gallery-3d-card__meta {
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: block;
  }
  .gallery-3d-card__meta strong {
    display: block;
    text-align: left;
    margin-top: 5px;
  }
  .gallery-3d-nav {
    width: 42px;
    height: 42px;
  }
  .gallery-3d-nav--prev {
    left: -4px;
  }
  .gallery-3d-nav--next {
    right: -4px;
  }
}
@media (max-height: 760px) and (min-width: 761px) {
  .gallery-3d-section {
    padding-top: 76px;
  }
  .gallery-3d-stage {
    height: 430px;
  }
  .gallery-3d-head h2 {
    font-size: 48px;
  }
  .gallery-3d-head {
    margin-bottom: 14px;
  }
}

/* Premium Footer */
.site-footer {
  position: relative;
  overflow: hidden;
 background: #000;
  color: #fff;
  padding: 30px 0 22px;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}
.site-footer__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}
.site-footer__glow--one {
  width: 420px;
  height: 420px;
  right: -230px;
  top: -210px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.03);
}
.site-footer__glow--two {
  width: 260px;
  height: 260px;
  left: -140px;
  bottom: -130px;
  border: 1px solid rgba(239, 64, 88, 0.25);
}
.site-footer__shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  gap: 38px;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(255, 248, 234, 0.12),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: 0 22px 55px rgba(0, 28, 31, 0.18);
  backdrop-filter: blur(14px);
}
.footer-kicker {
  margin: 0 0 7px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.footer-cta h2 {
  margin: 0;
  max-width: 690px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.footer-cta h2 em {
  color: #fff;
  font-weight: 500;
}
.footer-cta__content > p:last-child {
  margin: 13px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
}
.footer-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 205px;
}
.footer-primary-btn,
.footer-secondary-btn {
  height: 48px;
  padding: 0 17px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.footer-primary-btn {
  background: #000;
  color: #fff;
 border: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-primary-btn:hover {
  transform: translateY(-2px);
  background: #ff5067;
}
.footer-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  justify-content: flex-start;
}
.footer-secondary-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.88fr;
  gap: 56px;
  padding: 38px 4px 30px;
  align-items: start;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
}
.footer-brand__script {
  font-family: "Great Vibes", cursive;
  font-size: 35px;
  line-height: 1;
}
.footer-brand__divider {
  width: 1px;
  height: 27px;
  background: rgba(255, 255, 255, 0.28);
}
.footer-brand__text {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 650;
}
.footer-brand-block > p {
  max-width: 340px;
  margin: 17px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.5px;
  line-height: 1.75;
}
.footer-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.footer-location-pill i {
  color: #fff;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link-group strong {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 9px;
  color: #fff;
  margin-bottom: 3px;
}
.footer-link-group a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 11px;
  transition:
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.footer-link-group a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-contact-card {
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}
.footer-contact-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(239, 64, 88, 0.16);
  color: #ff9daa;
  margin-bottom: 14px;
}
.footer-contact-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.54);
  font-size: 8.5px;
  font-weight: 700;
}
.footer-contact-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  margin: 4px 0 7px;
}
.footer-contact-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10.5px;
  line-height: 1.65;
}
.footer-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd4d9;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}
.footer-contact-card a i {
  transition: transform 0.2s var(--ease);
}
.footer-contact-card a:hover i {
  transform: translateX(4px);
}
.footer-rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15) 12%,
    rgba(255, 255, 255, 0.15) 88%,
    transparent
  );
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 17px 4px 0;
}
.footer-bottom p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8.5px;
  line-height: 1.65;
}
.footer-back-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 8px;
  font-weight: 700;
}
.footer-back-top i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  transition: 0.22s var(--ease);
}
.footer-back-top:hover {
  color: #fff;
}
.footer-back-top:hover i {
  background: #fff;
  color: var(--color-teal);
  transform: translateY(-2px);
}
@media (max-width: 920px) {
  .footer-cta {
    grid-template-columns: 1fr;
  }
  .footer-cta__actions {
    flex-direction: row;
    min-width: 0;
  }
  .footer-cta__actions a {
    min-width: 190px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact-card {
    grid-column: 1/-1;
  }
  .footer-brand-block > p {
    max-width: 450px;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding: 18px 0 18px;
  }
  .site-footer__shell {
    width: calc(100% - 24px);
  }
  .footer-cta {
    padding: 23px 18px;
    border-radius: 20px;
    gap: 22px;
  }
  .footer-cta h2 {
    font-size: clamp(34px, 11vw, 46px);
  }
  .footer-cta__content > p:last-child {
    font-size: 11px;
  }
  .footer-cta__actions {
    flex-direction: column;
  }
  .footer-cta__actions a {
    width: 100%;
    min-width: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 3px 24px;
  }
  .footer-links {
    gap: 26px;
  }
  .footer-contact-card {
    grid-column: auto;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-back-top {
    justify-self: start;
  }
  .footer-bottom p {
    font-size: 8px;
  }
}

/* Shared section heading system and overview stat cards */
:root {
  --section-heading-size: clamp(2.35rem, 3.05vw, 3.35rem);
  --section-heading-weight: 600;
  --section-heading-line-height: 1;
  --section-heading-letter-spacing: 0;
}

.view-section__title,
.perspective-title,
.floor-plan-title,
.clubhouse-showcase-title,
.master-plan-title,
.location-title,
.amenities-premium-head h2,
.gallery-3d-head h2,
.daylife-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-letter-spacing);
  line-height: var(--section-heading-line-height);
}

.perspective-section {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: space-between;
  min-height: 100svh;
  padding: clamp(78px, 8.5vh, 88px) 0 clamp(20px, 3vh, 30px);
}

.perspective-media {
  inset: 0 0 clamp(118px, 15vh, 138px) auto;
  width: 68%;
}

.perspective-content {
  align-self: center;
  width: min(33vw, 420px);
}

.perspective-title {
  max-width: 460px;
  letter-spacing: var(--section-heading-letter-spacing);
  line-height: var(--section-heading-line-height);
  text-transform: none;
}

.perspective-title__line {
  white-space: normal;
}

.perspective-kicker {
  text-transform: none;
}

.perspective-lead {
  margin: clamp(14px, 1.8vh, 18px) 0 12px;
  font-size: clamp(1rem, 1.2vw, 1.28rem);
}

.perspective-copy {
  gap: 10px;
  font-size: clamp(0.8rem, 0.82vw, 0.92rem);
  line-height: 1.42;
}

.perspective-stats {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1240px, calc(100% - 48px));
  min-height: 96px;
  margin: clamp(14px, 2vh, 22px) auto 0;
  padding: 0;
  border: 1px solid rgba(221, 213, 198, 0.92);
  border-radius: 12px;
  color: var(--color-ink);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 244, 236, 0.9)
    ),
    #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86) inset,
    0 18px 24px rgba(0, 0, 0, 0.13),
    0 5px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.perspective-stats::before,
.perspective-stat:nth-child(n + 3)::after {
  display: none;
}

.perspective-stat + .perspective-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  display: block;
  width: 1px;
  background: rgba(221, 213, 198, 0.92);
}

.perspective-stat {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 96px;
  height: auto;
  padding: 14px clamp(16px, 1.7vw, 24px);
  border: 0;
  border-radius: 0;
  color: #000;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(248, 244, 236, 0.9)
    ),
    #fff;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.86) inset;
  transition:
    transform 280ms var(--ease),
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    color 280ms ease;
}

.perspective-stat:hover,
.perspective-stat:focus-within {
  color: #fff;
  border-color: rgba(0, 126, 119, 0.72);
  background:
   #000;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.42) inset,
    0 18px 25px rgba(0, 0, 0, 0.17),
    0 4px 0 #044b49;
  transform: translateY(-2px);
}

.perspective-stat__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin: 0;
  border-radius: 50%;
  color: #000;
  background: linear-gradient(
    145deg,
    rgba(249, 246, 237, 0.98),
    rgba(237, 231, 218, 0.9)
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 20px rgba(45, 39, 29, 0.12);
  filter: none;
  transition:
    background 280ms ease,
    color 280ms ease;
}

.perspective-stat:hover .perspective-stat__icon,
.perspective-stat:focus-within .perspective-stat__icon {
  color: #063f40;
  background: #000;
}

.perspective-stat__icon .bi {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 1.48rem;
  line-height: 1;
}

.perspective-stat__icon .bi::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 1em;
  height: 1em;
}

.perspective-stat strong {
  color: #000;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: none;
}

.perspective-stat span {
  color: #000;
  font-size: clamp(0.66rem, 0.74vw, 0.78rem);
}

.perspective-stat:hover strong,
.perspective-stat:hover span,
.perspective-stat:focus-within strong,
.perspective-stat:focus-within span {
  color: #fff;
}

@media (max-width: 1180px) {
  :root {
    --section-heading-size: clamp(2.1rem, 3.15vw, 3rem);
  }

  .perspective-section {
    padding-bottom: 28px;
  }

  .perspective-content {
    width: min(38vw, 410px);
  }

  .perspective-media {
    width: 70%;
  }
}

@media (max-width: 980px) {
  :root {
    --section-heading-size: clamp(2rem, 5.8vw, 2.9rem);
  }

  .perspective-section {
    min-height: auto;
    padding: 86px 0 34px;
    background: #fbf7ef;
  }

  .perspective-media {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    min-height: 360px;
    margin-top: 20px;
    background-position: 62% center;
  }

  .perspective-content {
    width: min(100% - 48px, 640px);
    margin: 0 auto;
  }

  .perspective-stats {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 36px, 720px);
    margin: 18px auto 0;
  }

  .perspective-stat:nth-child(odd)::before {
    display: none;
  }

  .perspective-stat:nth-child(n + 3)::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    display: block;
    height: 1px;
    background: rgba(221, 213, 198, 0.92);
  }
}

@media (max-width: 640px) {
  :root {
    --section-heading-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .perspective-section {
    padding: 80px 0 24px;
  }

  .perspective-content {
    width: calc(100% - 30px);
  }

  .perspective-media {
    min-height: 300px;
    margin-top: 18px;
  }

  .perspective-stats {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-top: 16px;
  }

  .perspective-stat {
    min-height: 82px;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 12px 14px;
  }

  .perspective-stat + .perspective-stat::before {
    left: 14px;
    right: 14px;
    top: 0;
    bottom: auto;
    display: block;
    width: auto;
    height: 1px;
    background: rgba(221, 213, 198, 0.92);
  }

  .perspective-stat:nth-child(n + 3)::after {
    display: none;
  }

  .perspective-stat__icon {
    width: 44px;
    height: 44px;
  }

  .perspective-stat__icon .bi {
    width: 26px;
    height: 26px;
    font-size: 1.34rem;
  }

  .perspective-stat strong {
    font-size: clamp(0.72rem, 3.4vw, 0.92rem);
  }
}

/* Beveled 3D clubhouse image cards */
.clubhouse-showcase-list {
  perspective: 1400px;
}

.clubhouse-showcase-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 252, 244, 0.86),
      rgba(230, 221, 204, 0.42)
    ),
    #000;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 0 0 1px rgba(7, 78, 80, 0.2),
    0 20px 34px rgba(31, 40, 35, 0.16),
    0 7px 0 rgba(5, 63, 63, 0.38);
  transform: translateZ(0);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms ease,
    border-color 280ms ease,
    filter 280ms ease;
}

.clubhouse-showcase-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 4;
  border-radius: 16px;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.04) 32%,
      rgba(0, 0, 0, 0.16) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.26),
      transparent 16%,
      transparent 84%,
      rgba(0, 0, 0, 0.16)
    );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.66) inset,
    0 -1px 0 rgba(0, 35, 37, 0.36) inset;
}

.clubhouse-showcase-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  z-index: 4;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.clubhouse-showcase-card__shade {
  z-index: 1;
}

.clubhouse-showcase-card__content {
  z-index: 5;
}

.clubhouse-showcase-card:hover {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 0 0 1px rgba(7, 78, 80, 0.22),
    0 24px 42px rgba(31, 40, 35, 0.2),
    0 8px 0 rgba(5, 63, 63, 0.46);
  transform: translateY(-2px) translateZ(0);
}

.clubhouse-showcase-card:hover img {
  transform: scale(1.045);
}

@media (max-width: 640px) {
  .clubhouse-showcase-card {
    border-radius: 16px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.78) inset,
      0 0 0 1px rgba(7, 78, 80, 0.18),
      0 15px 26px rgba(31, 40, 35, 0.14),
      0 5px 0 rgba(5, 63, 63, 0.34);
  }

  .clubhouse-showcase-card::before {
    border-radius: 14px;
  }
}

/* Simple centered stat icons */
.perspective-stat__icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  color: #000;
  background: #fff8ea;
  box-shadow: 0 8px 18px rgba(45, 39, 29, 0.1);
}

.perspective-stat:hover .perspective-stat__icon,
.perspective-stat:focus-within .perspective-stat__icon {
  color: #000;
  background: #fff8ea;
}

.perspective-stat__icon .bi {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: auto;
  height: auto;
  font-size: 1.35rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.perspective-stat__icon .bi::before {
  display: block;
  width: auto;
  height: auto;
  line-height: 1;
}

.perspective-stat__icon .bi-buildings::before,
.perspective-stat__icon .bi-building::before {
  transform: translate(-1px, 1px);
}

.perspective-stat__icon .bi-people::before {
  transform: translate(0, 1px);
}

.perspective-stat__icon .bi-house-heart::before {
  transform: translate(0, 1px);
}

/* White 3D amenity point cards */
.amenity-mini-card,
.amenity-mini-card--accent {
  border: 1px solid rgba(221, 213, 198, 0.92);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 244, 236, 0.9)
    ),
    #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86) inset,
    0 14px 22px rgba(0, 0, 0, 0.1),
    0 4px 0 rgba(0, 0, 0, 0.13);
  backdrop-filter: none;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.amenity-mini-card:hover,
.amenity-mini-card--accent:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 213, 198, 0.98);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 28px rgba(0, 0, 0, 0.12),
    0 5px 0 rgba(0, 0, 0, 0.14);
}

.amenity-mini-card > span,
.amenity-mini-card--accent > span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #000;
  background: #fff8ea;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 8px 18px rgba(45, 39, 29, 0.1);
}

/* Aligned neutral sections: Gallery, Amenities and Location */
:root {
  --aligned-section-width: min(1240px, calc(100% - 48px));
  --aligned-section-bg: linear-gradient(180deg, #fbf7ef 0%, #f6f0e5 100%);
  --beveled-surface: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(249, 244, 235, 0.9)
  );
}

.gallery-3d-section,
.amenities-premium-section,
.location-section {
  background: var(--aligned-section-bg);
}

.gallery-3d-section::before,
.amenities-premium-section::before,
.location-section::before {
  display: none;
}

.gallery-3d-shell,
.amenities-premium-shell,
.location-shell {
  width: var(--aligned-section-width);
  margin-left: auto;
  margin-right: auto;
}

.gallery-3d-head > p,
.amenities-premium-intro,
.location-copy {
  color: rgba(33, 51, 52, 0.72);
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  font-weight: 500;
  line-height: 1.62;
}

.gallery-3d-card {
  background: var(--beveled-surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(168, 158, 138, 0.18),
    0 5px 0 rgba(8, 72, 74, 0.18),
    0 20px 42px rgba(35, 43, 39, 0.16);
}

.gallery-3d-card.is-active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(168, 158, 138, 0.2),
    0 7px 0 rgba(8, 72, 74, 0.2),
    0 30px 62px rgba(24, 46, 45, 0.22);
}

.gallery-3d-card.is-prev,
.gallery-3d-card.is-next {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 4px 0 rgba(8, 72, 74, 0.12),
    0 16px 34px rgba(35, 43, 39, 0.12);
}

.gallery-3d-card img {
  filter: contrast(1.01) saturate(0.98);
}

@media (max-width: 980px) {
  :root {
    --aligned-section-width: calc(100% - 36px);
  }
}

@media (max-width: 640px) {
  :root {
    --aligned-section-width: calc(100% - 24px);
  }

  .gallery-3d-head > p,
  .amenities-premium-intro,
  .location-copy {
    font-size: 0.8rem;
  }
}

/* Signature view section: clean 3D tile treatment */
.view-section {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(11, 107, 112, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #f9f8f3 0%, #edf4f1 52%, #fbfaf7 100%);
}

.view-section__inner {
  width: min(1240px, calc(100% - 48px));
}

.view-section__title {
  display: block;
  width: fit-content;
  max-width: min(100%, 560px);
  margin: 0 clamp(18px, 4vw, 54px) clamp(14px, 2vh, 20px) auto;
  padding: 8px 16px;
  border: 1px solid rgba(11, 107, 112, 0.16);
  border-radius: 999px;
  color: #000;
  background: rgba(255, 252, 246, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 20px rgba(33, 45, 42, 0.1);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.64rem, 0.92vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-shadow: none;
}

.view-panel {
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: clamp(20px, 2.5vw, 34px);
  background: linear-gradient(145deg, #ffffff, #f3eee3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(158, 148, 128, 0.18),
    0 6px 0 rgba(7, 70, 72, 0.16),
    0 24px 46px rgba(21, 36, 39, 0.18);
}

.view-panel--front {
  transform: rotateX(2.6deg) translateZ(12px);
}

.view-panel--back {
  transform: rotateX(-2.2deg) translateZ(10px);
}

.view-panel img {
  transform: scale(1.01);
  filter: contrast(1.03) saturate(1.02);
}

.view-panel::after {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18),
      transparent 34%,
      rgba(2, 24, 27, 0.28)
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.22),
      transparent 42%
    );
}

.view-panel figcaption {
  left: 28px;
  top: 18px;
  width: auto;
  max-width: calc(100% - 56px);
  padding: 7px 13px;
  transform: none;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #000;
  background: rgba(255, 252, 246, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.6rem, 0.88vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: left;
  text-shadow: none;
}

.view-panel--back figcaption {
  top: 18px;
}

.view-section.is-inview .view-panel--front {
  animation-name: viewFrontTileIn;
}

.view-section.is-inview .view-panel--back {
  animation-name: viewBackTileIn;
}

@keyframes viewFrontTileIn {
  from {
    opacity: 0;
    filter: blur(8px) saturate(0.85);
    transform: translateY(-34px) scale(0.96) rotateX(10deg);
  }
  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translateY(0) scale(1) rotateX(2.6deg) translateZ(12px);
  }
}

@keyframes viewBackTileIn {
  from {
    opacity: 0;
    filter: blur(8px) saturate(0.85);
    transform: translateY(34px) scale(0.96) rotateX(-9deg);
  }
  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translateY(0) scale(1) rotateX(-2.2deg) translateZ(10px);
  }
}

@media (max-width: 980px) {
  .view-section__inner {
    width: calc(100% - 36px);
  }

  .view-panel figcaption {
    left: 18px;
    top: 14px;
    max-width: calc(100% - 36px);
    font-size: 0.68rem;
  }

  .view-panel--back figcaption {
    top: 14px;
  }
}

@media (max-width: 640px) {
  .view-section__inner {
    width: calc(100% - 24px);
  }

  .view-section__title {
    margin-right: auto;
    margin-left: auto;
    padding: 7px 12px;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .view-panel figcaption {
    left: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .view-panel--back figcaption {
    top: 12px;
  }
}

/* Keep decorative serif only for real h1/h2/h3 headings */
body,
button,
input,
textarea,
select,
label,
p,
a,
li,
small,
figcaption,
strong,
span {
  font-family: "Montserrat", Arial, sans-serif;
}

/* View labels: keep the section title for screen readers and show both image labels as matching overlay pills. */
.view-section__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.view-panel--front figcaption {
  display: block;
  right: 28px;
  left: auto;
  text-align: center;
}

@media (max-width: 980px) {
  .view-panel--front figcaption {
    right: 18px;
  }
}

@media (max-width: 640px) {
  .view-panel--front figcaption {
    right: 12px;
  }
}

h1,
h2,
h3,
h1 span,
h2 span,
h3 span,
h1 em,
h2 em,
h3 em {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero__eyebrow,
.hero__tagline,
.hero__location,
.view-section__title,
.view-panel figcaption,
.view-360 strong,
.perspective-kicker,
.perspective-lead,
.perspective-copy,
.perspective-stat strong,
.perspective-stat span,
.floor-plan-kicker,
.floor-plan-lead,
.floor-plan-copy,
.floor-plan-selected-detail,
.floor-plan-price-button,
.floor-plan-preview__overlay strong,
.floor-plan-placeholder strong,
.floor-plan-tab strong,
.master-plan-kicker,
.master-plan-lead,
.master-plan-ratio strong,
.master-plan-ratio span,
.master-plan-stats strong,
.master-plan-stats span,
.clubhouse-showcase-kicker,
.clubhouse-showcase-card__label,
.clubhouse-showcase-card__copy,
.amenities-premium-kicker,
.amenities-premium-intro,
.amenity-mini-card strong,
.amenity-mini-card small,
.amenity-mini-card--accent strong,
.amenity-mini-card--accent small,
.gallery-3d-kicker,
.gallery-3d-head > p,
.gallery-3d-card__meta small,
.gallery-3d-card__meta strong,
.gallery-3d-count strong,
.gallery-3d-count span,
.location-kicker,
.location-copy,
.location-address-card small,
.location-address-card strong,
.location-point strong,
.location-point small,
.location-map-badge small,
.location-map-badge strong,
.footer-brand__text,
.footer-location-pill,
.footer-contact-card small,
.footer-contact-card strong,
.footer-contact-card p,
.footer-contact-card a,
.footer-bottom p,
.footer-back-top {
  font-family: "Montserrat", Arial, sans-serif;
}

/* Perspective section full-background image */
.perspective-section {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: space-between;
  min-height: 100svh;
  padding: clamp(78px, 8.5vh, 88px) 0 clamp(20px, 3vh, 30px);
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(251, 247, 239, 0.98) 0%,
      rgba(251, 247, 239, 0.9) 29%,
      rgba(251, 247, 239, 0.48) 48%,
      rgba(251, 247, 239, 0.08) 68%,
      rgba(251, 247, 239, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(251, 247, 239, 0.18),
      rgba(251, 247, 239, 0.04)
    ),
    url("assets/images/hero-berano.png") center center / cover no-repeat;
}

.perspective-media {
  display: none;
}

.perspective-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(34vw, 430px);
  margin-left: clamp(36px, 4.7vw, 74px);
}

.perspective-stats {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 980px) {
  .perspective-section {
    min-height: 100svh;
    padding: 84px 0 28px;
    background:
      linear-gradient(
        180deg,
        rgba(251, 247, 239, 0.98) 0%,
        rgba(251, 247, 239, 0.9) 34%,
        rgba(251, 247, 239, 0.58) 62%,
        rgba(251, 247, 239, 0.28) 100%
      ),
      url("assets/images/hero-berano.png") 62% center / cover no-repeat;
  }

  .perspective-content {
    width: min(100% - 48px, 640px);
    margin: 0 auto;
  }

  .perspective-stats {
    width: min(100% - 36px, 720px);
    margin: 18px auto 0;
  }
}

@media (max-width: 640px) {
  .perspective-section {
    min-height: auto;
    padding: 80px 0 24px;
    background:
      linear-gradient(
        180deg,
        rgba(251, 247, 239, 0.99) 0%,
        rgba(251, 247, 239, 0.92) 44%,
        rgba(251, 247, 239, 0.7) 100%
      ),
      url("assets/images/hero-berano.png") 66% center / cover no-repeat;
  }

  .perspective-content,
  .perspective-stats {
    width: calc(100% - 24px);
  }
}

/* Floor plan detail pill and price CTA stack */
.floor-plan-selected-detail {
  display: flex;
  width: max-content;
  max-width: 100%;
}

.floor-plan-price-button {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
}

.floor-plan-selected-detail:hover {
  color: #000;
  border-color: rgba(221, 213, 198, 0.98);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 244, 236, 0.92)
    ),
    #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 26px rgba(0, 0, 0, 0.11),
    0 5px 0 rgba(0, 0, 0, 0.13);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .floor-plan-selected-detail,
  .floor-plan-price-button {
    width: 100%;
  }
}

/* Master plan highlight tabs match overview 3D card system */
.master-plan-stats {
  border: 1px solid rgba(221, 213, 198, 0.92);
  border-radius: 10px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 244, 236, 0.9)
    ),
    #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86) inset,
    0 18px 24px rgba(0, 0, 0, 0.13),
    0 5px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.master-plan-stats article {
  color: #000;
  background: transparent;
  transition:
    transform 280ms var(--ease),
    background 280ms ease,
    box-shadow 280ms ease,
    color 280ms ease;
}

.master-plan-stats article:hover {
  color: #fff;
  background:
    #000;
  transform: translateY(-2px);
}

.master-plan-stats article + article::before {
  background: rgba(221, 213, 198, 0.92);
}

.master-plan-stats .bi {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #000;
  background: #fff8ea;
  box-shadow: 0 8px 18px rgba(45, 39, 29, 0.1);
  font-size: 1.35rem;
  filter: none;
  transition:
    background 280ms ease,
    color 280ms ease;
}

.master-plan-stats article:hover .bi {
  color: #063f40;
  background: rgba(255, 253, 245, 0.94);
}

.master-plan-stats strong {
  color: #000;
  font-size: clamp(0.78rem, 0.95vw, 0.98rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: none;
}

.master-plan-stats span {
  margin-top: 4px;
  color: rgba(7, 63, 67, 0.76);
  font-size: clamp(0.58rem, 0.68vw, 0.72rem);
  font-weight: 700;
  line-height: 1.25;
}

.master-plan-stats article:hover strong,
.master-plan-stats article:hover span {
  color: #fff;
}

@media (max-width: 1180px) {
  .master-plan-stats article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .master-plan-stats .bi {
    width: 44px;
    height: 44px;
    font-size: 1.22rem;
  }
}

/* Location connectivity points as white 3D cards */
.location-points {
  gap: 12px;
}

.location-point {
  min-height: 88px;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(221, 213, 198, 0.92);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 244, 236, 0.9)
    ),
    #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86) inset,
    0 16px 24px rgba(0, 0, 0, 0.1),
    0 5px 0 rgba(0, 0, 0, 0.13);
  backdrop-filter: none;
}

.location-point:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 213, 198, 0.98);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 30px rgba(0, 0, 0, 0.12),
    0 6px 0 rgba(0, 0, 0, 0.14);
}

.location-point > span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #000;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 8px 18px rgba(45, 39, 29, 0.1);
  font-size: 0.94rem;
}

.location-point strong {
  color: #203a3f;
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  font-weight: 800;
}

.location-point small {
  color: rgba(32, 58, 63, 0.68);
  font-size: clamp(0.58rem, 0.66vw, 0.68rem);
  font-weight: 600;
}

@media (max-width: 640px) {
  .location-points {
    gap: 10px;
  }

  .location-point {
    min-height: 78px;
    padding: 15px 16px;
  }
}

/* FAQ section */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6.2vw, 92px) 0;
  background: var(
    --aligned-section-bg,
    linear-gradient(180deg, #fbf7ef 0%, #f6f0e5 100%)
  );
}

.faq-shell {
  width: var(--aligned-section-width, min(1240px, calc(100% - 48px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.faq-head {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.faq-kicker {
  margin: 0 0 10px;
  color: #000;
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-title {
  margin: 0;
  color: #000;
  font-size: var(--section-heading-size, clamp(2.35rem, 3.05vw, 3.35rem));
  font-weight: var(--section-heading-weight, 600);
  letter-spacing: var(--section-heading-letter-spacing, 0);
  line-height: var(--section-heading-line-height, 1);
}

.faq-title span {
  display: block;
}

.faq-title span:last-child {
  color: #000;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(221, 213, 198, 0.92);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.98),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 244, 236, 0.9)
    ),
    #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86) inset,
    0 14px 22px rgba(0, 0, 0, 0.1),
    0 4px 0 rgba(0, 0, 0, 0.13);
  overflow: hidden;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.faq-item:hover,
.faq-item[open] {
  transform: translateY(-2px);
  border-color: rgba(221, 213, 198, 0.98);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 28px rgba(0, 0, 0, 0.12),
    0 5px 0 rgba(0, 0, 0, 0.14);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 16px 18px 16px 22px;
  color: #203a3f;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  font-weight: 500;
  line-height: 1.28;
}

.faq-item summary .bi {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #000;
  background: #fff8ea;
  box-shadow: 0 8px 18px rgba(45, 39, 29, 0.1);
  font-size: 0.95rem;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease;
}

.faq-item[open] summary .bi {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: rgba(32, 58, 63, 0.7);
  font-size: clamp(0.78rem, 0.88vw, 0.92rem);
  font-weight: 500;
  line-height: 1.62;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  margin: 0 22px 20px;
  padding: 0 16px;
  border: 1px solid rgba(0, 126, 119, 0.72);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 42%
    ),
    linear-gradient(160deg, #0b8a83 0%, #05615f 100%);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.38) inset,
    0 16px 24px rgba(0, 0, 0, 0.15),
    0 4px 0 #044b49;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.faq-cta:hover,
.faq-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.44) inset,
    0 20px 30px rgba(0, 0, 0, 0.18),
    0 5px 0 #044b49;
}

@media (max-width: 980px) {
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-head {
    position: static;
    text-align: center;
  }

  .faq-title span {
    display: inline;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 48px 0;
  }

  .faq-shell {
    width: calc(100% - 24px);
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 12px;
    min-height: 64px;
    padding: 14px 14px 14px 16px;
  }

  .faq-item summary .bi {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .faq-item p {
    padding: 0 16px 16px;
    font-size: 0.78rem;
  }

  .faq-cta {
    width: calc(100% - 32px);
    margin: 0 16px 18px;
  }
}

/* FAQ centered heading and two-column accordion layout */
.faq-shell {
  display: block;
  width: var(--aligned-section-width, min(1240px, calc(100% - 48px)));
}

.faq-head {
  position: static;
  max-width: 760px;
  margin: 0 auto clamp(24px, 3.2vw, 38px);
  text-align: center;
}

.faq-title {
  color: #000;
  font-size: var(--section-heading-size, clamp(2.35rem, 3.05vw, 3.35rem));
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.faq-item {
  align-self: start;
}

@media (max-width: 820px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-shell {
    width: calc(100% - 24px);
  }

  .faq-head {
    margin-bottom: 22px;
  }
}

/* Master plan spacing aligned with location section */
.master-plan-shell {
  width: var(--aligned-section-width, min(1240px, calc(100% - 48px)));
  column-gap: clamp(34px, 4.4vw, 72px);
}

.master-plan-visual {
  padding-right: 0;
}

@media (max-width: 980px) {
  .master-plan-section {
    padding-left: 0;
    padding-right: 0;
  }

  .master-plan-shell {
    width: min(880px, calc(100% - 36px));
  }
}

@media (max-width: 640px) {
  .master-plan-section {
    padding-left: 0;
    padding-right: 0;
  }

  .master-plan-shell {
    width: calc(100% - 24px);
  }
}

/* Ultra-premium cinematic hero redesign */
:root {
  --ivory: #f5efe4;
  --sand: #e5d8c5;
  --coral-500: #e65442;
  --coral-600: #d34738;
  --teal-700: #075c68;
  --teal-900: #063e47;
  --graphite: #242a2b;
  --hero-glass: rgba(255, 255, 255, 0.62);
  --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header {
  inset: 18px 24px auto;
  height: 80px;
  color: var(--graphite);
  background: transparent;
  pointer-events: none;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 22px));
}

.site-header.is-scrolled,
.site-header.is-open {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header__inner {
  width: min(1600px, 100%);
  height: 100%;
  padding: 0 16px 0 22px;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.68),
    rgba(255, 255, 255, 0.42)
  );
  box-shadow:
    0 16px 48px rgba(33, 45, 52, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(25, 40, 50, 0.08);
  backdrop-filter: blur(24px) saturate(130%);
  pointer-events: auto;
}

.brand {
  color: var(--teal-900);
  padding-right: 24px;
  text-shadow: none;
}

.brand::after {
  content: "";
  width: 1px;
  height: 34px;
  margin-left: 24px;
  background: rgba(36, 42, 43, 0.12);
}

.brand__script {
  font-size: 2rem;
}

.brand__divider {
  height: 25px;
  background: rgba(6, 62, 71, 0.34);
}

.brand__text {
  color: var(--graphite);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.main-nav {
  gap: clamp(14px, 1.4vw, 24px);
}

.main-nav a {
  padding: 31px 0 27px;
  color: rgba(36, 42, 43, 0.82);
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0;
  text-shadow: none;
  filter: none;
}

.main-nav a::after {
  left: 50%;
  right: auto;
  bottom: 20px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral-500);
  transform: translateX(-50%) scaleX(0);
  transition: transform 250ms var(--hero-ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--teal-900);
  text-shadow: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.header-cta {
  position: relative;
  min-width: 132px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #f3614d, #d63f32);
  box-shadow:
    0 8px 18px rgba(139, 43, 33, 0.28),
    0 2px 5px rgba(139, 43, 33, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 -2px 3px rgba(104, 30, 24, 0.18);
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  overflow: hidden;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 1px 8px auto;
  height: 15px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
  pointer-events: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 12px 22px rgb(255 255 255 / 30%), 0 4px 8px rgba(139, 43, 33, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.66), inset 0 -2px 3px rgb(255 252 252 / 18%);
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 13px;
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(18, 38, 45, 0.1);
}

.hero {
  display: block;
  min-height: 100svh;
  padding-top: 0;
  overflow: hidden;
  background: var(--ivory);
  isolation: isolate;
  --hero-x: 0px;
  --hero-y: 0px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 2;
  background:
    radial-gradient(
      circle at 18% 42%,
      rgba(255, 207, 149, 0.28),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 32%,
      rgba(255, 211, 159, 0.3),
      transparent 36%
    ),
    linear-gradient(
      90deg,
      rgba(245, 238, 223, 0.84) 0%,
      rgba(245, 238, 223, 0.56) 28%,
      rgba(245, 238, 223, 0.12) 52%,
      transparent 72%
    );
}

.hero::after {
  z-index: 3;
  background:
    linear-gradient(
      180deg,
      rgba(6, 25, 29, 0.08),
      transparent 22%,
      rgba(5, 25, 24, 0.16) 100%
    ),
    linear-gradient(90deg, rgba(245, 239, 228, 0.28), transparent 54%);
}

.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: -24px;
  background-image: url("assets/images/hero-berano.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 67% center;
  transform: translate3d(
      calc(var(--hero-x) * var(--depth, 0.2)),
      calc(var(--hero-y) * var(--depth, 0.2)),
      0
    )
    scale(1.025);
  will-change: transform;
}

.hero__image--far {
  --depth: 0.18;
  opacity: 0.52;
  filter: saturate(0.96) contrast(0.96) blur(1.5px);
}

.hero__image--middle {
  --depth: 0.34;
  opacity: 0.94;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 34% 100%);
  filter: saturate(1.05) contrast(1.02);
}

.hero__image--near {
  --depth: 0.52;
  opacity: 0.5;
  clip-path: polygon(0 68%, 100% 54%, 100% 100%, 0 100%);
  filter: saturate(1.08) contrast(1.04);
}

.hero__light {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      circle at 20% 38%,
      rgba(255, 210, 150, 0.28),
      transparent 34%
    ),
    radial-gradient(
      circle at 72% 26%,
      rgba(255, 240, 213, 0.2),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%);
  mix-blend-mode: soft-light;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      90deg,
      rgba(245, 239, 228, 0.72) 0%,
      rgba(245, 239, 228, 0.38) 32%,
      rgba(245, 239, 228, 0.08) 56%,
      rgba(4, 24, 28, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      transparent 48%,
      rgba(21, 43, 42, 0.32)
    );
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.025;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, #000 0 1px, transparent 1px),
    radial-gradient(circle at 75% 64%, #000 0 1px, transparent 1px);
  background-size:
    5px 5px,
    7px 7px;
}

.hero__content {
  position: relative;
  z-index: 5;
  width: min(1600px, 100%);
  max-width: 680px;
  margin: 0 auto;
  padding: 22svh 0 240px clamp(42px, 7vw, 120px);
  transform: translate3d(
    calc(var(--hero-x) * 0.12),
    calc(var(--hero-y) * 0.12),
    0
  );
  will-change: transform;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--teal-900);
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-shadow: none;
  filter: none;
}

.hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral-500);
}

.hero__title {
  margin: 0;
  color: transparent;
  background: linear-gradient(180deg, #d45743 0%, #b73c31 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  font-size: 8.75rem;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: none;
  filter: drop-shadow(0 2px 1px rgba(75, 35, 28, 0.15));
}

.hero__title-mark {
  display: block;
  width: 72px;
  height: 8px;
  margin: 18px 0 22px 4px;
  background:
    radial-gradient(
      circle at right center,
      rgba(230, 84, 66, 0.72) 0 3px,
      transparent 4px
    ),
    linear-gradient(
      90deg,
      rgba(230, 84, 66, 0.7),
      rgba(230, 84, 66, 0.12) 72%,
      transparent 72%
    );
  border-radius: 999px;
}

.hero__tagline {
  max-width: 570px;
  margin: 0;
  color: var(--teal-700);
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: none;
  filter: none;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
  color: var(--graphite);
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: none;
  filter: none;
}

.hero__location-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--coral-500);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 5px 12px rgba(20, 40, 50, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero__location-icon .bi {
  font-size: 0.95rem;
}

.hero__location > span:not(.hero__location-icon) {
  display: inline;
  width: auto;
  height: auto;
  background: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  min-width: 226px;
  padding: 0 14px 0 24px;
  border-radius: 15px;
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  transition:
    transform 220ms var(--hero-ease),
    box-shadow 220ms ease;
}

.hero__button::before {
  content: "";
  position: absolute;
  inset: 1px 10px auto;
  height: 18px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent);
  opacity: 0.75;
  transition: opacity 220ms ease;
}

.hero__button .bi {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  transition:
    transform 220ms var(--hero-ease),
    background 220ms ease;
}

.hero__button span {
  position: relative;
  z-index: 1;
}

.hero__button--primary {
  color: #fff;
  background: linear-gradient(145deg, #f05a46, #d94838);
  box-shadow:
    0 15px 28px rgba(174, 61, 47, 0.22),
    0 5px 10px rgba(117, 41, 32, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero__button--primary .bi {
  background: rgba(110, 29, 22, 0.16);
}

.hero__button--secondary {
  color: #313332;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.58),
    rgba(244, 234, 219, 0.44)
  );
  box-shadow:
    0 10px 25px rgba(52, 53, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.hero__button--secondary .bi {
  color: var(--coral-600);
  background: rgba(255, 255, 255, 0.68);
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-2px);
}

.hero__button:hover::before,
.hero__button:focus-visible::before {
  opacity: 1;
}

.hero__button:hover .bi,
.hero__button:focus-visible .bi {
  transform: translateX(3px);
}

.hero__button:active {
  transform: translateY(0) scale(0.985);
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 26px;
  color: rgba(36, 42, 43, 0.82);
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 0 15px;
  border-right: 1px solid rgba(36, 42, 43, 0.18);
}

.hero__stats span:first-child {
  padding-left: 0;
}

.hero__stats span:last-child {
  border-right: 0;
}

.hero__stats strong {
  color: var(--teal-900);
  font-size: 1.125rem;
  font-weight: 800;
}

.hero__architecture-label {
  position: absolute;
  right: 5%;
  top: 37%;
  z-index: 5;
  display: grid;
  gap: 3px;
  min-width: 86px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow:
    0 12px 30px rgba(18, 38, 45, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(14px);
  transform: translate3d(
    calc(var(--hero-x) * 0.2),
    calc(var(--hero-y) * 0.2),
    0
  );
}

.hero__architecture-label strong {
  font-family: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.9;
}

.hero__architecture-label span {
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__usp-dock {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(86vw, 1260px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.76),
    rgba(246, 239, 229, 0.62)
  );
  box-shadow:
    0 22px 55px rgba(22, 47, 56, 0.16),
    0 5px 15px rgba(22, 47, 56, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(130%);
  transform: translate3d(
    calc(-50% + (var(--hero-x) * 0.1)),
    calc(var(--hero-y) * 0.1),
    0
  );
  overflow: hidden;
}

.hero__usp {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  min-height: 92px;
  padding: 18px 20px;
  border-right: 1px solid rgba(50, 70, 75, 0.12);
  transition:
    background 220ms ease,
    transform 220ms var(--hero-ease);
}

.hero__usp:last-child {
  border-right: 0;
}

.hero__usp:hover {
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.hero__usp-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #f25b47, #d34435);
  box-shadow:
    0 6px 12px rgba(158, 54, 43, 0.26),
    inset 0 1px 1px rgba(255, 255, 255, 0.56);
  transition: transform 220ms var(--hero-ease);
}

.hero__usp:hover .hero__usp-icon {
  transform: rotate(-3deg) scale(1.05);
}

.hero__usp strong,
.hero__usp small {
  display: block;
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
}

.hero__usp strong {
  color: var(--graphite);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero__usp small {
  margin-top: 4px;
  color: rgba(34, 54, 59, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
}

.scroll-cue {
  right: 30px;
  bottom: 34px;
  z-index: 7;
  gap: 9px;
  color: rgba(6, 62, 71, 0.75);
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-shadow: none;
}

.scroll-cue__rail {
  position: relative;
  display: block;
  width: 1px;
  height: 66px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(6, 62, 71, 0.52),
    transparent
  );
}

.scroll-cue__rail i {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral-500);
  box-shadow: 0 0 0 5px rgba(230, 84, 66, 0.12);
  transform: translateX(-50%);
  animation: heroScrollDot 2.2s var(--hero-ease) infinite;
}

.scroll-cue .bi {
  width: 22px;
  height: 22px;
  color: var(--coral-600);
  font-size: 1rem;
  animation: none;
}

.scroll-cue__mouse {
  display: none;
}

.site-header,
.hero__eyebrow,
.hero__title,
.hero__title-mark,
.hero__tagline,
.hero__location,
.hero__actions,
.hero__stats,
.hero__usp-dock,
.hero__architecture-label,
.scroll-cue {
  animation: heroReveal 720ms var(--hero-ease) both;
}

.site-header {
  animation-delay: 0ms;
}

.hero__eyebrow {
  animation-delay: 150ms;
}

.hero__title {
  animation-delay: 230ms;
}

.hero__title-mark,
.hero__tagline {
  animation-delay: 330ms;
}

.hero__location {
  animation-delay: 410ms;
}

.hero__actions {
  animation-delay: 490ms;
}

.hero__stats {
  animation-delay: 580ms;
}

.hero__usp-dock {
  animation-delay: 720ms;
}

.hero__architecture-label,
.scroll-cue {
  animation-delay: 780ms;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    filter: blur(3px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes heroScrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  18%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 48px);
  }
}

@media (max-width: 1280px) {
  .hero__title {
    font-size: 7.5rem;
  }

  .hero__content {
    max-width: 620px;
    padding-left: 54px;
  }

  .hero__usp {
    padding: 16px;
  }

  .hero__usp strong {
    font-size: 0.92rem;
  }
}

@media (max-width: 1100px) {
  .site-header {
    inset: 14px 18px auto;
    height: 74px;
  }

  .site-header__inner {
    gap: 16px;
  }

  .brand {
    padding-right: 12px;
  }

  .brand::after {
    display: none;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav a:nth-child(n + 5) {
    display: none;
  }

  .hero__title {
    font-size: 5.375rem;
  }

  .hero__tagline {
    font-size: 1.625rem;
  }

  .hero__content {
    max-width: 560px;
    padding-top: 22svh;
    padding-bottom: 260px;
  }

  .hero__usp-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(88vw, 760px);
  }

  .hero__usp:nth-child(2) {
    border-right: 0;
  }

  .hero__usp:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(50, 70, 75, 0.12);
  }
}

@media (max-width: 980px) {
  .site-header {
    inset: 12px 14px auto;
    height: 70px;
  }

  .site-header__inner {
    padding: 0 12px 0 16px;
    border-radius: 18px;
  }

  .main-nav {
    left: 14px;
    right: 14px;
    top: 94px;
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(250, 246, 238, 0.92);
    box-shadow: 0 24px 60px rgba(18, 38, 45, 0.18);
  }

  .main-nav a {
    color: var(--graphite);
    padding: 16px 14px;
  }

  .main-nav a:nth-child(n + 5) {
    display: inline-flex;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(230, 84, 66, 0.08);
  }

  .header-cta {
    min-width: 118px;
    min-height: 44px;
    margin-left: auto;
  }

  .hero::before {
    background:
      radial-gradient(
        circle at 28% 52%,
        rgba(255, 207, 149, 0.22),
        transparent 36%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        rgba(245, 239, 228, 0.08) 37%,
        rgba(245, 239, 228, 0.9) 57%,
        rgba(245, 239, 228, 0.98) 100%
      );
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(245, 239, 228, 0.28) 43%,
      rgba(245, 239, 228, 0.96) 62%,
      #f5efe4 100%
    );
  }

  .hero__scene {
    height: 48svh;
    min-height: 390px;
    bottom: auto;
  }

  .hero__image {
    inset: -14px;
    background-position: 67% center;
    transform: scale(1.02);
  }

  .hero__image--middle,
  .hero__image--near {
    clip-path: none;
  }

  .hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(245, 239, 228, 0.24) 62%,
        rgba(245, 239, 228, 0.86) 100%
      ),
      linear-gradient(90deg, rgba(245, 239, 228, 0.18), transparent 56%);
  }

  .hero__content {
    max-width: none;
    padding: calc(42svh - 12px) 22px 250px;
    transform: none;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 0.74rem;
  }

  .hero__title {
    font-size: 4.75rem;
  }

  .hero__tagline {
    max-width: 520px;
    font-size: 1.5rem;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__button {
    min-width: min(100%, 258px);
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(520px, 100%);
    row-gap: 10px;
  }

  .hero__stats span {
    padding: 0 12px 0 0;
  }

  .hero__stats span:nth-child(2) {
    border-right: 0;
  }

  .hero__usp-dock {
    bottom: 24px;
    width: calc(100% - 28px);
  }

  .hero__architecture-label,
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    inset: 10px 10px auto;
    height: 64px;
  }

  .site-header__inner {
    gap: 10px;
    padding-left: 14px;
    border-radius: 16px;
  }

  .brand__script {
    font-size: 1.72rem;
  }

  .brand__divider,
  .brand__text {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    min-width: auto;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 0.64rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    top: 82px;
    grid-template-columns: 1fr;
  }

  .hero__scene {
    height: 46svh;
    min-height: 330px;
  }

  .hero__image {
    background-position: 64% center;
  }

  .hero__content {
    padding: calc(41svh - 6px) 18px 225px;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero__eyebrow::before {
    width: 26px;
  }

  .hero__title {
    font-size: 4.2rem;
    line-height: 0.86;
  }

  .hero__title-mark {
    width: 60px;
    margin: 14px 0 18px 2px;
  }

  .hero__tagline {
    font-size: 1.34rem;
  }

  .hero__location {
    gap: 10px;
    margin-top: 18px;
    font-size: 0.76rem;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
  }

  .hero__button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    font-size: 0.68rem;
  }

  .hero__stats strong {
    font-size: 1rem;
  }

  .hero__usp-dock {
    left: 14px;
    right: 0;
    bottom: 20px;
    display: flex;
    width: auto;
    padding: 0;
    border-radius: 20px 0 0 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    transform: none;
  }

  .hero__usp {
    flex: 0 0 82vw;
    min-height: 86px;
    border-right: 1px solid rgba(50, 70, 75, 0.12);
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .hero__usp:last-child {
    border-right: 0;
  }
}

@media (max-width: 390px) {
  .header-cta {
    display: inline-flex;
    padding: 0 10px;
    font-size: 0.58rem;
  }

  .hero__content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero__title {
    font-size: 3.55rem;
  }

  .hero__tagline {
    font-size: 1.18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero__eyebrow,
  .hero__title,
  .hero__title-mark,
  .hero__tagline,
  .hero__location,
  .hero__actions,
  .hero__stats,
  .hero__usp-dock,
  .hero__architecture-label,
  .scroll-cue,
  .scroll-cue__rail i {
    animation: none;
  }

  .hero__image,
  .hero__content,
  .hero__architecture-label,
  .hero__usp-dock {
    transform: none;
  }
}

/* Screenshot-aligned hero fit */
.site-header {
  inset: 10px 10px auto;
  height: 80px;
}

.site-header__inner {
  width: 100%;
  padding: 0 22px 0 26px;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:linear-gradient(180deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 44%));
  box-shadow:
    0 12px 35px rgba(4, 24, 32, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 22, 30, 0.22);
  backdrop-filter: blur(10px) saturate(120%);
}

.brand {
  color: #fff;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.45);
}

.brand__script {
  font-size: clamp(2.45rem, 3vw, 3.45rem);
}

.brand__divider {
  height: 34px;
  background: rgba(255, 255, 255, 0.55);
}

.brand__text {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.52),
    0 0 12px rgba(0, 0, 0, 0.2);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.header-cta {
  min-width: 146px;
  min-height: 54px;
  border-radius: 7px;
  background: linear-gradient(145deg, #ee4d3e, #d93428);
  box-shadow:
    0 8px 16px rgba(52, 21, 18, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.52),
    inset 0 -2px 4px rgba(80, 20, 16, 0.24);
  font-size: 0.86rem;
}

.hero {
  min-height: 100svh;
  height: 100svh;
  background: #e8d6b7;
}

.hero::before {
  z-index: 2;
  background:
    radial-gradient(
      circle at 7% 55%,
      rgba(255, 207, 116, 0.45),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(245, 228, 195, 0.38) 0%,
      rgba(245, 228, 195, 0.1) 36%,
      transparent 62%
    );
}

.hero::after {
  z-index: 3;
  background:
    linear-gradient(
      180deg,
      rgba(0, 31, 43, 0.08) 0%,
      transparent 42%,
      rgba(5, 45, 42, 0.18) 100%
    ),
    linear-gradient(90deg, rgba(255, 228, 174, 0.22), transparent 48%);
}

.hero__image {
  inset: 0;
  background-position: center center;
  background-size: cover;
  transform: translate3d(
      calc(var(--hero-x) * var(--depth, 0.18)),
      calc(var(--hero-y) * var(--depth, 0.18)),
      0
    )
    scale(1.01);
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(
      calc(var(--hero-x) * 0.18),
      calc(var(--hero-y) * 0.18),
      0
    )
    scale(1.01);
  filter: saturate(1.03) contrast(1.03);
}

.hero__image {
  z-index: 0;
}

.hero__image--far,
.hero__image--middle,
.hero__image--near {
  opacity: 1;
  clip-path: none;
}

.hero__image--far {
  filter: saturate(1.02) contrast(1.03);
}

.hero__image--middle,
.hero__image--near {
  display: none;
}

.hero__light {
  background:
    radial-gradient(
      circle at 8% 55%,
      rgba(255, 214, 127, 0.42),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 245, 222, 0.16),
      transparent 30%
    );
  mix-blend-mode: soft-light;
}

.hero__shade {
  background:
    linear-gradient(
      90deg,
      rgba(247, 221, 174, 0.22) 0%,
      rgba(247, 221, 174, 0.08) 34%,
      transparent 58%
    ),
    linear-gradient(180deg, rgba(0, 26, 36, 0.08), rgba(0, 24, 22, 0.18));
}

.hero__content {
  max-width: 860px;
  width: auto;
  margin: 0;
  padding: clamp(156px, 21vh, 188px) 0 0 clamp(72px, 7.2vw, 116px);
}

.hero__eyebrow {
  margin-bottom: 16px;
  color: #171d1f;
  font-size: clamp(0.92rem, 1.05vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.48),
    0 2px 5px rgba(0, 0, 0, 0.24);
}

.hero__eyebrow::before {
  display: none;
}

.hero__title {
  font-size: clamp(5.2rem, 8.1vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0.075em;
  background: linear-gradient(145deg, #ff4f63 0%, #ef4058 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 2px 0 rgba(255, 235, 202, 0.55))
    drop-shadow(0 5px 3px rgba(53, 24, 18, 0.34));
}

.hero__title-mark {
  display: none;
}

.hero__tagline {
  max-width: 760px;
  color: #057684;
  font-family: "Caveat", cursive;
  font-size: clamp(1.95rem, 2.3vw, 2.55rem);
  font-weight: 700;
  line-height: 0.95;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.58),
    0 2px 0 rgba(0, 72, 84, 0.12),
    0 5px 9px rgba(0, 58, 66, 0.22);
}

.hero__location {
  margin-top: 22px;
  color: #2b2b27;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.56),
    0 2px 5px rgba(0, 0, 0, 0.18);
}

.hero__location strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.hero__location::before,
.hero__location::after {
  content: "";
  display: block;
  width: clamp(48px, 5.2vw, 78px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(43, 43, 39, 0.62));
}

.hero__location::after {
  background: linear-gradient(90deg, rgba(43, 43, 39, 0.62), transparent);
}

.hero__location strong span {
  display: inline;
  width: auto;
  height: auto;
  background: none;
  opacity: 1;
}

.hero__location-icon {
  width: 24px;
  height: 24px;
  color: #df3d30;
  background: transparent;
  box-shadow: none;
}

.hero__location-icon .bi {
  font-size: 1.26rem;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.26));
}

.hero__actions {
  gap: 14px;
  margin-top: 28px;
}

.hero__button {
  min-width: 178px;
  min-height: 48px;
  padding: 0 10px 0 17px;
  border-radius: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
}

.hero__button .bi {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.16);
}

.hero__button--primary {
  background: linear-gradient(145deg, #ee4f40, #d5362a);
  box-shadow:
    0 8px 15px rgba(48, 20, 17, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.52),
    inset 0 -2px 4px rgba(87, 23, 18, 0.24);
}

.hero__button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(75, 64, 46, 0.22)
  );
  box-shadow:
    0 7px 14px rgba(34, 28, 20, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
}

.hero__button--secondary .bi {
  color: #fff;
}

.hero__button,
.hero__button--primary,
.hero__button--secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(145deg, #ff4f63, #ef4058);
  box-shadow:
    0 8px 16px rgba(131, 30, 45, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero__button .bi,
.hero__button--secondary .bi {
  color: #fff;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero__button,
.hero__button--primary,
.hero__button--secondary {
  min-width: 178px;
  min-height: 48px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #ff5364 0%, #ef4058 100%);
  box-shadow:
    0 8px 14px rgba(98, 24, 36, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: none;
}

.hero__button::before,
.hero__button--primary::before,
.hero__button--secondary::before {
  display: none;
}

.hero__button .bi,
.hero__button--primary .bi,
.hero__button--secondary .bi {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  margin-left: 8px;
  color: #fff;
  background: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.08rem;
  line-height: 1;
}

.header-cta {
  min-width: 146px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: #000;
  box-shadow:
    0 8px 14px rgba(98, 24, 36, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}

.header-cta::before {
  display: none;
}

/* Footer readability and contact action tiles */
.footer-cta h2 {
  font-size: clamp(2.85rem, 4.7vw, 4.95rem);
  line-height: 0.98;
}

.footer-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}

.footer-cta p,
.footer-brand-block p,
.footer-link-group a,
.footer-bottom p {
  font-size: 10px;
  line-height: 1.65;
}

.footer-link-group strong {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.footer-primary-btn,
.footer-secondary-btn {
  min-height: 58px;
  font-size: 0.94rem;
  font-weight: 850;
}

.footer-main {
  grid-template-columns: 1.12fr 0.98fr 1.05fr;
  align-items: stretch;
}

.footer-action-tabs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-action-tab {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #fff;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.12),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.05)
    );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 13px 22px rgba(0, 0, 0, 0.14),
    0 4px 0 rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background 180ms ease;
}

.footer-action-tab:hover,
.footer-action-tab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.07)
    );
}

.footer-action-tab span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: #fff;
  background: #000;
  
}

.footer-action-tab strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.15;
}

@media (max-width: 920px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-action-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .footer-cta p,
  .footer-brand-block p,
  .footer-link-group a,
  .footer-bottom p {
    font-size: 0.9rem;
  }

  .footer-action-tabs {
    grid-template-columns: 1fr;
  }
}

/* Mobile view-section gap cleanup */
@media (max-width: 640px) {
  .view-section {
    padding-top: 68px;
    padding-bottom: 14px;
  }

  .view-showcase {
    height: 430px;
    min-height: 430px;
  }

  .view-panel--front,
  .view-panel--back {
    height: 31%;
  }

  .view-project {
    top: 31%;
    width: min(76vw, 315px);
  }

  .view-arrow {
    top: 31%;
  }

  .view-360 {
    top: 46%;
  }

  .view-panel--back {
    bottom: 0;
  }
}

/* Footer screen-fit layout */
.site-footer {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(18px, 3vh, 34px) 0;
}

.site-footer__shell {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: clamp(18px, 2.4vh, 28px);
}

.footer-cta {
  padding: clamp(24px, 4vh, 42px) clamp(26px, 4vw, 42px);
}

.footer-main {
  padding: 0 4px;
  align-items: center;
}

.footer-bottom {
  padding-top: 0;
}

@media (max-height: 760px) and (min-width: 921px) {
  .footer-cta {
    padding: 22px 32px;
  }

  .footer-cta h2 {
    font-size: clamp(2.55rem, 4vw, 4rem);
  }

  .footer-main {
    gap: 34px;
  }

  .footer-action-tab {
    min-height: 62px;
    padding: 10px 14px;
  }
}

@media (max-width: 920px) {
  .site-footer {
    min-height: auto;
    align-items: stretch;
  }
}

/* Mobile perspective points: 2 rows x 2 columns */
@media (max-width: 640px) {
  .perspective-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .perspective-stat {
    min-height: 112px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    border: 1px solid rgba(221, 213, 198, 0.92);
    border-radius: 14px;
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.98),
        transparent 48%
      ),
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.94),
        rgba(248, 244, 236, 0.9)
      );
    box-shadow:
      0 2px 0 rgba(255, 255, 255, 0.86) inset,
      0 12px 20px rgba(0, 0, 0, 0.1),
      0 4px 0 rgba(0, 0, 0, 0.13);
  }

  .perspective-stat::before,
  .perspective-stat::after,
  .perspective-stat + .perspective-stat::before,
  .perspective-stat:nth-child(odd)::before,
  .perspective-stat:nth-child(n + 3)::after {
    display: none;
  }

  .perspective-stat__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
  }

  .perspective-stat strong {
    font-size: 0.9rem;
    line-height: 1.12;
  }

  .perspective-stat span {
    margin-top: 4px;
    font-size: 0.7rem;
    line-height: 1.25;
  }
}

/* Mobile floor-plan tabs: full first card, touch scroll, hidden scrollbar */
@media (max-width: 640px) {
  .floor-plan-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 4px 14px 8px;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .floor-plan-tabs::-webkit-scrollbar {
    display: none;
  }

  .floor-plan-option {
    flex: 0 0 132px;
    min-width: 132px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .floor-plan-tab {
    width: 100%;
    min-height: 86px;
  }
}

/* Mobile master-plan ratio: ring left, details right */
@media (max-width: 640px) {
  .master-plan-ratio {
    display: grid;
    grid-template-columns: minmax(92px, 0.42fr) minmax(0, 0.58fr);
    grid-template-rows: repeat(2, auto);
    align-items: center;
    column-gap: 12px;
    row-gap: 14px;
    padding: 18px 24px;
    text-align: left;
  }

  .master-plan-ratio__ring {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 78px;
    height: 78px;
    justify-self: start;
  }

  .master-plan-ratio > div:first-child {
    grid-column: 2;
    grid-row: 1;
  }

  .master-plan-ratio > div:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .master-plan-ratio strong {
    font-size: 1.45rem;
    line-height: 1;
  }

  .master-plan-ratio span {
    margin-top: 4px;
    font-size: 0.72rem;
    line-height: 1.2;
  }
}

/* Mobile master-plan legend: tabular 2-column list */
@media (max-width: 640px) {
  .master-plan-legend {
    width: 100%;
    margin-top: 18px;
    padding-top: 14px;
  }

  .master-plan-legend p {
    margin-bottom: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .master-plan-legend ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .master-plan-legend li {
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(221, 213, 198, 0.92);
    border-radius: 11px;
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.98),
        transparent 48%
      ),
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.96),
        rgba(248, 244, 236, 0.9)
      ),
      #fff;
    box-shadow:
      0 2px 0 rgba(255, 255, 255, 0.86) inset,
      0 9px 15px rgba(0, 0, 0, 0.08),
      0 3px 0 rgba(0, 0, 0, 0.12);
    font-size: 0.7rem;
    font-weight: 750;
  }

  .master-plan-legend li span {
    width: 24px;
    height: 24px;
    font-size: 0.58rem;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.24) inset,
      0 5px 10px rgba(7, 63, 63, 0.24);
  }
}

/* Mobile master-plan stats: 2-column beveled table */
@media (max-width: 640px) {
  .master-plan-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .master-plan-stats article {
    min-height: 88px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border: 1px solid rgba(221, 213, 198, 0.92);
    border-radius: 12px;
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.98),
        transparent 48%
      ),
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.96),
        rgba(248, 244, 236, 0.9)
      ),
      #fff;
    box-shadow:
      0 2px 0 rgba(255, 255, 255, 0.86) inset,
      0 10px 16px rgba(0, 0, 0, 0.08),
      0 3px 0 rgba(0, 0, 0, 0.12);
  }

  .master-plan-stats article + article::before,
  .master-plan-stats article::after {
    display: none;
  }

  .master-plan-stats .bi {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
  }

  .master-plan-stats strong {
    font-size: 0.84rem;
    line-height: 1.12;
  }

  .master-plan-stats span {
    margin-top: 4px;
    font-size: 0.66rem;
    line-height: 1.22;
  }

  .master-plan-stats article:last-child {
    grid-column: 1 / -1;
    min-height: 72px;
  }
}

/* Mobile gallery: native touch scroll, no arrow controls */
@media (max-width: 760px) {
  .gallery-3d-nav {
    display: none;
  }

  .gallery-3d-stage {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-3d-stage::-webkit-scrollbar {
    display: none;
  }

  .gallery-3d-track {
    display: flex;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    height: 100%;
    padding: 0 14px;
    transform: none;
  }

  .gallery-3d-card,
  .gallery-3d-card.is-active,
  .gallery-3d-card.is-prev,
  .gallery-3d-card.is-next,
  .gallery-3d-card.is-far-prev,
  .gallery-3d-card.is-far-next {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 84vw;
    width: 84vw;
    height: 100%;
    opacity: 1;
    filter: none;
    transform: none;
    scroll-snap-align: center;
  }
}

.view-360 {
  box-shadow:
    0 12px 24px rgba(11, 35, 38, 0.18),
    0 5px 0 rgba(7, 63, 67, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.view-360 strong {
  color: #111717;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.22);
}

/* Readable compact amenity and location cards */
.amenity-mini-card,
.amenity-mini-card--accent,
.location-point {
  min-height: 72px;
  gap: 14px;
  padding: 13px 18px;
  align-items: center;
}

.amenity-mini-card > span,
.amenity-mini-card--accent > span,
.location-point > span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.amenity-mini-card strong,
.amenity-mini-card--accent strong,
.location-point strong {
  color: #17343a;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.15;
}

.amenity-mini-card small,
.amenity-mini-card--accent small,
.location-point small {
  margin-top: 4px;
  color: rgba(23, 52, 58, 0.72);
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-weight: 650;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .amenity-mini-card,
  .amenity-mini-card--accent,
  .location-point {
    min-height: 68px;
    padding: 12px 14px;
  }

  .amenity-mini-card strong,
  .amenity-mini-card--accent strong,
  .location-point strong {
    font-size: 0.88rem;
  }

  .amenity-mini-card small,
  .amenity-mini-card--accent small,
  .location-point small {
    font-size: 0.72rem;
  }
}

.hero__stats,
.hero__architecture-label {
  display: none;
}

.hero__usp-dock {
  left: 50%;
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(79vw, 1260px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.hero__usp {
  min-height: 86px;
  padding: 16px 20px;
  border: 2px solid rgba(190, 55, 39, 0.74);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 243, 0.88),
    rgba(238, 231, 218, 0.78)
  );
  box-shadow:
    0 7px 13px rgba(26, 31, 30, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -2px 0 rgba(11, 92, 104, 0.18);
  backdrop-filter: blur(8px);
}

.hero__usp-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ef513f, #c93227);
  box-shadow:
    0 4px 8px rgba(92, 23, 18, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.58);
}

.hero__usp strong {
  color: #07536a;
  font-size: clamp(0.98rem, 1.12vw, 1.18rem);
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero__usp small {
  display: none;
}

.scroll-cue {
  right: 38px;
  bottom: 32px;
  color: #fff;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}

.scroll-cue__rail {
  width: 45px;
  height: 78px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: transparent;
}

.scroll-cue__rail i {
  top: 14px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.scroll-cue .bi {
  color: #fff;
  font-size: 1.65rem;
}

@media (max-width: 1180px) {
  .hero__content {
    padding-left: 46px;
  }

  .hero__title {
    font-size: clamp(4rem, 7.2vw, 5.9rem);
  }

  .hero__usp-dock {
    width: calc(100% - 44px);
  }
}

@media (max-width: 980px) {
  .site-header {
    inset: 10px 12px auto;
    height: 68px;
  }

  .site-header__inner {
    border-radius: 10px;
  }

  .main-nav {
    top: 86px;
    background: rgba(39, 88, 110, 0.9);
  }

  .main-nav a {
    color: #fff;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero__scene {
    height: 100%;
    min-height: 100%;
  }

  .hero__image {
    background-position: 58% center;
  }

  .hero__content {
    padding: 142px 20px 360px 42px;
  }

  .hero__title {
    font-size: clamp(3.8rem, 12vw, 5.4rem);
  }

  .hero__usp-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 24px;
    gap: 9px;
    width: calc(100% - 28px);
  }

  .hero__usp {
    min-height: 76px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 62px;
  }

  .brand__script {
    font-size: 2rem;
  }

  .hero__content {
    padding: 126px 16px 300px;
  }

  .hero__title {
    font-size: clamp(3rem, 17vw, 4.5rem);
    letter-spacing: 0.05em;
  }

  .hero__tagline {
    font-size: 1.1rem;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__button {
    min-height: 52px;
  }

  .hero__usp-dock {
    left: 14px;
    bottom: 18px;
    display: flex;
    width: auto;
    overflow-x: auto;
    transform: none;
  }

  .hero__usp {
    flex: 0 0 78vw;
    min-height: 74px;
  }
}

/* Keep hero video clear; only text carries readability shadow. */
.hero::before,
.hero::after,
.hero__light {
  background: none;
}

.hero__shade {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.34) 0%,
      rgba(0, 0, 0, 0.16) 34%,
      rgba(0, 0, 0, 0.03) 62%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.14) 0%,
      transparent 42%,
      rgba(0, 0, 0, 0.16) 100%
    );
}

.hero__eyebrow,
.hero__location {
  color: #f7f2e8;
  -webkit-text-stroke: 0.35px rgba(8, 18, 18, 0.72);
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.72),
    0 3px 8px rgba(0, 0, 0, 0.48);
}

.hero__title {
  text-shadow: none;
  -webkit-text-stroke: 0.8px rgba(104, 22, 16, 0.46);
  filter: drop-shadow(0 1px 0 rgba(255, 230, 202, 0.42))
    drop-shadow(0 3px 3px rgba(24, 11, 8, 0.58))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.hero__tagline {
  color: #23a7b5;
  -webkit-text-stroke: 0.45px rgba(0, 35, 42, 0.7);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 2px 2px rgba(0, 24, 30, 0.7),
    0 5px 11px rgba(0, 0, 0, 0.38);
}

.hero__button,
.hero__usp strong,
.main-nav a,
.header-cta {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.32);
}

/* Single sleek USP tab at hero bottom */
.hero__usp-dock {
  left: 50%;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(820px, calc(100% - 220px));
  min-height: 64px;
  padding: 8px;
  border: 1.5px solid rgba(229, 69, 52, 0.78);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.44),
    rgba(234, 232, 218, 0.3)
  );
  box-shadow:
    0 12px 26px rgba(10, 28, 34, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px) saturate(120%);
  overflow: hidden;
}

.hero__usp {
  min-height: 54px;
  padding: 8px 22px;
  gap: 12px;
  border: 0;
  border-right: 1px solid rgba(8, 83, 106, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero__usp:last-child {
  border-right: 0;
}

.hero__usp:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: none;
}

.hero__usp-icon {
  width: 32px;
  height: 32px;
}

.hero__usp strong {
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  line-height: 1.15;
}

@media (max-width: 1180px) {
  .hero__usp-dock {
    width: min(820px, calc(100% - 44px));
  }
}

@media (max-width: 760px) {
  .hero__usp-dock {
    left: 14px;
    right: 14px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    overflow: hidden;
    transform: none;
  }

  .hero__usp {
    min-width: 0;
    gap: 7px;
    padding: 9px 7px;
    border-right: 1px solid rgba(8, 83, 106, 0.16);
  }

  .hero__usp-icon {
    width: 28px;
    height: 28px;
  }

  .hero__usp strong {
    font-size: clamp(0.62rem, 2.7vw, 0.78rem);
    line-height: 1.15;
  }
}

/* Final mobile gallery scroll fix */
@media (max-width: 760px) {
  .gallery-3d-nav {
    display: none !important;
  }

  .gallery-3d-stage {
    display: block !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .gallery-3d-stage::-webkit-scrollbar {
    display: none;
  }

  .gallery-3d-track {
    position: relative !important;
    display: flex !important;
    gap: 14px;
    width: max-content !important;
    min-width: max-content !important;
    height: 100% !important;
    padding: 0 14px;
    transform: none !important;
    transform-style: flat !important;
  }

  .gallery-3d-card,
  .gallery-3d-card.is-active,
  .gallery-3d-card.is-prev,
  .gallery-3d-card.is-next,
  .gallery-3d-card.is-far-prev,
  .gallery-3d-card.is-far-next {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    flex: 0 0 84vw !important;
    width: 84vw !important;
    height: 100% !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    scroll-snap-align: center;
  }
}

/* About developer premium section */
.developer-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(900px, 100svh);
  scroll-margin-top: var(--header-height);
  padding: clamp(78px, 8vw, 118px) 0 clamp(58px, 6vw, 86px);
  background:
    linear-gradient(
      90deg,
      rgba(251, 247, 239, 0.98) 0%,
      rgba(251, 247, 239, 0.95) 38%,
      rgba(251, 247, 239, 0.72) 56%,
      rgba(251, 247, 239, 0.18) 100%
    ),
    linear-gradient(180deg, #fbf7ef 0%, #f3eadc 100%);
}

.developer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(239, 64, 88, 0.12),
      transparent 28%
    ),
    linear-gradient(rgba(11, 107, 112, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 107, 112, 0.045) 1px, transparent 1px);
  background-size:
    auto,
    44px 44px,
    44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
  pointer-events: none;
}

.developer-section__media {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: -2;
}

.developer-section__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(251, 247, 239, 0.88) 0%,
      rgba(251, 247, 239, 0.34) 35%,
      rgba(8, 34, 36, 0.1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(251, 247, 239, 0.02) 0%,
      rgba(8, 33, 33, 0.34) 100%
    );
}

.developer-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.02);
}

.developer-section__shell {
  position: relative;
  z-index: 1;
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
}

.developer-section__intro {
  max-width: 710px;
}

.developer-kicker {
  margin: 0 0 12px;
  color: #000;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.developer-title {
  margin: 0;
  color: #075b60;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 6.2vw, 6.7rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 34px rgba(9, 41, 43, 0.13);
}

.developer-copy {
  max-width: 690px;
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: #233b40;
  font-size: clamp(0.98rem, 1.1vw, 1.17rem);
  font-weight: 500;
  line-height: 1.92;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
  width: min(850px, 72%);
  margin-top: clamp(26px, 3vw, 38px);
  perspective: 1100px;
}

.developer-stat-card,
.developer-projects article {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(221, 213, 198, 0.95);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.94),
    rgba(248, 244, 235, 0.86)
  );
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.92) inset,
    0 18px 34px rgba(23, 35, 31, 0.12),
    0 6px 0 rgba(8, 48, 51, 0.08);
  backdrop-filter: blur(12px);
  transform: translateZ(0);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease),
    border-color 240ms var(--ease);
}

.developer-stat-card {
  min-height: 104px;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
}

.developer-stat-card:hover,
.developer-projects article:hover {
  border-color: rgba(11, 107, 112, 0.26);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.96) inset,
    0 26px 42px rgba(19, 38, 37, 0.16),
    0 8px 0 rgba(8, 48, 51, 0.1);
  transform: translateY(-5px) rotateX(3deg);
}

.developer-stat-card__icon,
.developer-projects i {
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(11, 107, 112, 0.16);
  border-radius: 50%;
  color: #000;
  background: radial-gradient(
    circle at 32% 25%,
    #ffffff 0%,
    #ffffff 36%,
    #f4ead9 100%
  );
  box-shadow:
    0 12px 18px rgba(15, 34, 32, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 1.45rem;
}

.developer-stat-card div {
  min-width: 0;
  padding-left: 15px;
  border-left: 1px solid rgba(11, 107, 112, 0.18);
}

.developer-stat-card strong,
.developer-stat-card small,
.developer-projects span {
  display: block;
}

.developer-stat-card strong {
  color: #102f33;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.22rem, 1.5vw, 1.62rem);
  font-weight: 650;
  line-height: 1.05;
}

.developer-stat-card small {
  margin-top: 6px;
  color: rgba(23, 52, 58, 0.72);
  font-size: clamp(0.72rem, 0.78vw, 0.84rem);
  font-weight: 650;
  line-height: 1.28;
}

.developer-gurugram {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  margin-top: clamp(28px, 3.8vw, 52px);
  padding: clamp(24px, 3.2vw, 38px);
  border: 1.5px solid rgba(7, 91, 96, 0.72);
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.93),
    rgba(251, 247, 239, 0.84)
  );
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.55),
    0 26px 60px rgba(19, 36, 33, 0.16);
  backdrop-filter: blur(16px) saturate(120%);
}

.developer-gurugram__label {
  margin: 0 0 14px;
  color: #075b60;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.developer-gurugram__content p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(28, 53, 58, 0.78);
  font-size: clamp(0.9rem, 0.96vw, 1.02rem);
  font-weight: 500;
  line-height: 1.72;
}

.developer-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.45vw, 18px);
}

.developer-projects article {
  min-height: 82px;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 16px;
}

.developer-projects i {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}

.developer-projects span {
  min-width: 0;
  color: #17343a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.06rem, 1.28vw, 1.32rem);
  font-weight: 650;
  line-height: 1.1;
}

.developer-section.is-inview .developer-section__intro {
  animation: developerFadeUp 720ms var(--ease) both;
}

.developer-section.is-inview .developer-stat-card {
  animation: developerCardIn 720ms var(--ease) both;
}

.developer-section.is-inview .developer-stat-card:nth-child(2) {
  animation-delay: 80ms;
}
.developer-section.is-inview .developer-stat-card:nth-child(3) {
  animation-delay: 160ms;
}
.developer-section.is-inview .developer-stat-card:nth-child(4) {
  animation-delay: 240ms;
}
.developer-section.is-inview .developer-stat-card:nth-child(5) {
  animation-delay: 320ms;
}
.developer-section.is-inview .developer-stat-card:nth-child(6) {
  animation-delay: 400ms;
}

.developer-section.is-inview .developer-gurugram {
  animation: developerFadeUp 760ms 360ms var(--ease) both;
}

@keyframes developerFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes developerCardIn {
  from {
    opacity: 0;
    transform: translateY(22px) rotateX(8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@media (max-width: 1180px) {
  .developer-stats {
    width: min(100%, 860px);
  }

  .developer-section__media {
    left: 48%;
  }

  .developer-gurugram,
  .developer-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .developer-gurugram__content {
    grid-column: 1 / -1;
  }

  .developer-projects {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .developer-section {
    min-height: auto;
    padding: 76px 0 54px;
    background:
      linear-gradient(
        180deg,
        rgba(251, 247, 239, 0.97) 0%,
        rgba(251, 247, 239, 0.92) 58%,
        rgba(251, 247, 239, 0.82) 100%
      ),
      url("assets/images/view-gurugram-skyline.png") 58% center / cover
        no-repeat;
  }

  .developer-section__media {
    display: none;
  }

  .developer-section__shell {
    width: calc(100% - 28px);
  }

  .developer-section__intro {
    max-width: 100%;
  }

  .developer-title {
    font-size: clamp(3.2rem, 13vw, 5.2rem);
  }

  .developer-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .developer-gurugram {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .developer-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .developer-section {
    padding: 64px 0 42px;
  }

  .developer-kicker {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
  }

  .developer-copy {
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .developer-stats {
    gap: 10px;
  }

  .developer-stat-card {
    min-height: 118px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 15px;
  }

  .developer-stat-card__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .developer-stat-card div {
    width: 100%;
    padding: 10px 0 0;
    border-top: 1px solid rgba(11, 107, 112, 0.15);
    border-left: 0;
  }

  .developer-stat-card strong {
    font-size: 1.18rem;
  }

  .developer-stat-card small {
    font-size: 0.7rem;
  }

  .developer-gurugram {
    margin-top: 24px;
    padding: 18px;
    border-radius: 20px;
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.5),
      0 18px 36px rgba(19, 36, 33, 0.14);
  }

  .developer-gurugram__label {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .developer-projects {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .developer-projects article {
    min-height: 68px;
    padding: 11px 13px;
  }
}

/* Final compact developer section */
.developer-section {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(54px, 6vh, 74px) 0;
  background: var(
    --aligned-section-bg,
    linear-gradient(180deg, #fbf7ef 0%, #f6f0e5 100%)
  );
}

.developer-section::before {
  display: none;
}

.developer-section__shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  width: var(--aligned-section-width, min(1220px, calc(100% - 48px)));
}

.developer-section__intro {
  max-width: 470px;
}

.developer-kicker {
  margin-bottom: 10px;
  color: #000;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.developer-title {
  color: #075b60;
  font-size: clamp(3.1rem, 5.2vw, 5.35rem);
  line-height: 0.9;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(10, 44, 45, 0.12);
}

.developer-copy {
  max-width: 440px;
  margin-top: 18px;
  color: rgba(31, 55, 59, 0.76);
  font-size: clamp(0.9rem, 0.98vw, 1.02rem);
  line-height: 1.72;
}

.developer-stats {
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
}

.developer-stat-card {
  min-height: 86px;
  gap: 13px;
  padding: 14px 15px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 244, 235, 0.9)
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 14px 24px rgba(25, 40, 38, 0.1),
    0 4px 0 rgba(8, 48, 51, 0.07);
}

.developer-stat-card:hover,
.developer-projects article:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 18px 30px rgba(25, 40, 38, 0.14),
    0 5px 0 rgba(8, 48, 51, 0.08);
}

.developer-stat-card__icon {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
  font-size: 1.12rem;
}

.developer-stat-card div {
  padding-left: 12px;
}

.developer-stat-card strong {
  font-size: clamp(1.04rem, 1.2vw, 1.34rem);
}

.developer-stat-card small {
  margin-top: 4px;
  font-size: clamp(0.66rem, 0.72vw, 0.76rem);
}

.developer-gurugram {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  margin-top: clamp(6px, 1vw, 12px);
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(7, 91, 96, 0.42);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.82),
    rgba(250, 246, 238, 0.76)
  );
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.42),
    0 18px 42px rgba(19, 36, 33, 0.12);
}

.developer-gurugram__label {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 2.55vw, 2.7rem);
}

.developer-gurugram__content p:last-child {
  max-width: 390px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.developer-projects {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.developer-projects article {
  min-height: 68px;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 14px;
}

.developer-projects i {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.developer-projects span {
  font-size: clamp(0.94rem, 1.1vw, 1.16rem);
}

@media (max-width: 980px) {
  .developer-section {
    min-height: auto;
    padding: 64px 0;
    background: var(
      --aligned-section-bg,
      linear-gradient(180deg, #fbf7ef 0%, #f6f0e5 100%)
    );
  }

  .developer-section__shell {
    grid-template-columns: 1fr;
    gap: 22px;
    width: calc(100% - 28px);
  }

  .developer-section__intro,
  .developer-copy {
    max-width: 100%;
  }

  .developer-stats {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .developer-gurugram {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .developer-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .developer-section {
    padding: 50px 0 46px;
  }

  .developer-title {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .developer-stats {
    gap: 9px;
  }

  .developer-stat-card {
    min-height: 96px;
    padding: 12px;
  }

  .developer-gurugram {
    padding: 16px;
    border-radius: 18px;
  }

  .developer-projects article {
    min-height: 62px;
  }
}

/* Final developer layout: floor-plan typography, four highlights and project media */
.developer-section {
  display: block;
  min-height: auto;
  padding: clamp(64px, 7vw, 92px) 0;
  background: var(
    --aligned-section-bg,
    linear-gradient(180deg, #fbf7ef 0%, #f6f0e5 100%)
  );
}

.developer-section__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  width: var(--aligned-section-width, min(1240px, calc(100% - 48px)));
  margin: 0 auto;
}

.developer-section__content {
  min-width: 0;
  max-width: 520px;
}

.developer-kicker {
  margin: 0 0 9px;
  color: #000;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.developer-title {
  max-width: 460px;
  margin: 0;
  color: #000;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 3.05vw, 3.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: none;
}

.developer-title span {
  display: block;
}

.developer-title span:first-child {
  color: #000;
}

.developer-copy {
  max-width: 500px;
  margin: clamp(18px, 2.2vh, 24px) 0 0;
  color: rgba(21, 28, 36, 0.72);
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  font-weight: 500;
  line-height: 1.62;
}

.developer-stats {
  display: grid;
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: clamp(24px, 3vw, 34px) 0 0;
}

.developer-stat-card {
  display: flex;
  align-items: center;
  flex-direction: row;
  min-height: 82px;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(221, 213, 198, 0.95);
  border-radius: 14px;
  background: var(
    --beveled-surface,
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 235, 0.9))
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 4px 0 rgba(8, 72, 74, 0.1),
    0 14px 24px rgba(25, 40, 38, 0.1);
}

.developer-stat-card:hover {
  border-color: rgba(11, 107, 112, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 5px 0 rgba(8, 72, 74, 0.12),
    0 18px 30px rgba(25, 40, 38, 0.14);
  transform: translateY(-3px);
}

.developer-stat-card__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  font-size: 1.08rem;
}

.developer-stat-card div {
  width: auto;
  padding: 0 0 0 11px;
  border-top: 0;
  border-left: 1px solid rgba(11, 107, 112, 0.18);
}

.developer-stat-card strong {
  font-size: clamp(1rem, 1.15vw, 1.24rem);
}

.developer-stat-card small {
  margin-top: 4px;
  font-size: clamp(0.66rem, 0.72vw, 0.76rem);
}

.developer-section__media {
  position: relative;
  inset: auto;
  z-index: 1;
  align-self: stretch;
  min-height: clamp(360px, 34vw, 455px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 213, 198, 0.95);
  border-radius: clamp(20px, 2vw, 28px);
  background: #e9e4d9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 6px 0 rgba(8, 72, 74, 0.14),
    0 24px 46px rgba(25, 40, 38, 0.18);
}

.developer-section__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 40, 42, 0) 58%,
    rgba(6, 40, 42, 0.16) 100%
  );
}

.developer-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(0.98);
  transform: none;
  transition: transform 700ms var(--ease);
}

.developer-section__media:hover img {
  transform: scale(1.025);
}

@media (max-width: 980px) {
  .developer-section {
    padding: 64px 0;
  }

  .developer-section__shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .developer-section__content {
    max-width: 680px;
  }

  .developer-copy {
    max-width: 620px;
  }

  .developer-section__media {
    display: block;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .developer-section {
    padding: 52px 0 48px;
  }

  .developer-section__shell {
    gap: 28px;
  }

  .developer-kicker {
    font-size: 0.72rem;
  }

  .developer-title {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .developer-copy {
    font-size: 0.84rem;
  }

  .developer-stats {
    gap: 10px;
    margin-top: 22px;
  }

  .developer-stat-card {
    min-height: 76px;
    gap: 9px;
    padding: 11px;
  }

  .developer-stat-card__icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 0.94rem;
  }

  .developer-stat-card div {
    padding-left: 9px;
  }

  .developer-stat-card strong {
    font-size: 0.96rem;
  }

  .developer-stat-card small {
    font-size: 0.66rem;
  }

  .developer-section__media {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
}

/* Final production safeguards for narrow mobile headers and hero highlights */
@media (max-width: 640px) {
  .site-header__inner {
    gap: 8px;
    padding: 0 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo-image {
    width: auto;
    max-width: 138px;
    height: 46px;
  }

  .header-cta {
    min-width: 0;
    min-height: 42px;
    margin-left: auto;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-left: 0;
  }

  .hero__usp-dock {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  .hero__usp {
    width: 100%;
    min-width: 0;
  }

  .hero__usp > span:last-child {
    min-width: 0;
  }

  .hero__usp strong {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 380px) {
  .developer-stat-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .developer-stat-card div {
    width: 100%;
    padding: 8px 0 0;
    border-top: 1px solid rgba(11, 107, 112, 0.15);
    border-left: 0;
  }
}

/* Developer section — reference-aligned editorial layout */
.developer-section {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding: clamp(30px, 4vh, 46px) 0;
  background:
    radial-gradient(
      circle at 78% 38%,
      rgba(174, 211, 201, 0.2),
      transparent 27%
    ),
    linear-gradient(180deg, #fbf8f1 0%, #f7f2e9 100%);
}

.developer-section__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  align-items: center;
  gap: clamp(30px, 4vw, 54px);
  width: min(1240px, calc(100% - 48px));
}

.developer-section__content {
  max-width: 540px;
}

.developer-kicker {
  margin-bottom: 9px;
  color: #000;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.developer-title {
  max-width: 540px;
  font-size: clamp(2.2rem, 3.55vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.developer-title span:first-child {
  color: #000;
}

.developer-title span:last-child {
  margin-top: 4px;
  color: #000;
}

.developer-copy {
  max-width: 530px;
  margin-top: 16px;
  color: #637074;
  font-size: clamp(0.78rem, 0.86vw, 0.88rem);
  line-height: 1.58;
}

.developer-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 10px;
  margin-top: 18px;
}

.developer-stat-card {
  min-height: 65px;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid rgba(143, 125, 96, 0.25);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 5px 0 rgba(69, 67, 57, 0.12),
    0 13px 24px rgba(50, 58, 52, 0.06);
  backdrop-filter: blur(9px);
}

.developer-stat-card:hover {
  border-color: rgba(7, 106, 112, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 6px 0 rgba(7, 71, 74, 0.13),
    0 17px 29px rgba(41, 67, 65, 0.1);
}

.developer-stat-card__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #000;
  font-size: 0.88rem;
  background: #fffaf0;
  box-shadow: 0 8px 18px rgba(35, 68, 65, 0.08);
}

.developer-stat-card div {
  padding-left: 9px;
}

.developer-stat-card strong {
  color: #18383c;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(0.7rem, 0.76vw, 0.8rem);
  font-weight: 800;
  line-height: 1.25;
}

.developer-stat-card small {
  margin-top: 2px;
  color: #69777a;
  font-size: clamp(0.58rem, 0.63vw, 0.66rem);
  line-height: 1.35;
}

.developer-media-card {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(7, 106, 112, 0.16);
  border-radius: 21px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 24px 55px rgba(42, 57, 52, 0.14);
  backdrop-filter: blur(12px);
}

.developer-media-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 0 7px 9px;
}

.developer-media-card__head small,
.developer-media-card__head strong {
  display: block;
}

.developer-media-card__head small {
  margin-bottom: 3px;
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.developer-media-card__head strong {
  color: #173f43;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.94rem, 1.2vw, 1.12rem);
  line-height: 1.15;
}

.developer-media-card__mark {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(7, 106, 112, 0.2);
  border-radius: 12px;
  color: #000;
  background: rgba(255, 255, 255, 0.76);
}

.developer-section__media {
  position: relative;
  inset: auto;
  z-index: 1;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 106, 112, 0.13);
  border-radius: 17px;
  box-shadow: none;
}

.developer-section__media::after {
  background: linear-gradient(
    180deg,
    transparent 52%,
    rgba(4, 37, 40, 0.62) 100%
  );
}

.developer-section__media img {
  object-position: center 48%;
}

.developer-section__media figcaption {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: #fff;
  background: #000;
  
  backdrop-filter: blur(8px);
}

.developer-section__media figcaption span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.developer-section__media figcaption strong {
  margin-top: 2px;
  font-size: 0.92rem;
}

@media (max-width: 1050px) {
  .developer-section__shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 34px;
  }

  .developer-title {
    font-size: clamp(2.6rem, 4.8vw, 3.7rem);
  }
}

@media (max-width: 900px) {
  .developer-section {
    display: block;
    min-height: auto;
    padding: 48px 0;
  }

  .developer-section__shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .developer-section__content {
    max-width: 680px;
  }

  .developer-media-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .developer-section {
    padding: 38px 0 36px;
  }

  .developer-section__shell {
    width: calc(100% - 28px);
    gap: 28px;
  }

  .developer-title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }

  .developer-copy {
    margin-top: 14px;
    font-size: 0.78rem;
  }

  .developer-stats {
    gap: 8px;
    margin-top: 17px;
  }

  .developer-stat-card {
    min-height: 78px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 9px;
  }

  .developer-stat-card div {
    width: 100%;
    padding: 8px 0 0;
    border-top: 1px solid rgba(11, 107, 112, 0.15);
    border-left: 0;
  }

  .developer-media-card {
    padding: 10px;
    border-radius: 19px;
  }

  .developer-media-card__head {
    min-height: 54px;
    padding: 2px 5px 10px;
  }

  .developer-media-card__mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .developer-section__media {
    aspect-ratio: 16 / 10;
    border-radius: 13px;
  }

  .developer-section__media figcaption {
    bottom: 10px;
    left: 10px;
    min-width: 0;
    padding: 8px 10px;
  }
}

/* Footer CTA compact refinement */
.footer-cta {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 360px);
  gap: clamp(20px, 2.2vw, 30px);
  padding: clamp(22px, 3vh, 30px) clamp(24px, 3vw, 34px);
}

.footer-cta h2 {
  max-width: none;
  font-size: clamp(2.45rem, 3.35vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
}

.footer-cta__content > p:last-child {
  margin-top: 10px;
  max-width: 760px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-cta__actions {
  gap: 8px;
  min-width: min(100%, 330px);
}

.footer-primary-btn,
.footer-secondary-btn {
  min-height: 52px;
  height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-primary-btn i,
.footer-secondary-btn i {
  font-size: 1.1rem;
}

@media (min-width: 1180px) {
  .footer-cta h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .footer-cta {
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 320px);
  }

  .footer-cta h2 {
    font-size: clamp(2.2rem, 3.1vw, 3.45rem);
  }
}

@media (max-width: 920px) {
  .footer-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 22px;
  }

  .footer-cta h2 {
    white-space: normal;
    font-size: clamp(2.05rem, 6.2vw, 3rem);
  }

  .footer-cta__actions {
    flex-direction: row;
    min-width: 0;
  }

  .footer-primary-btn,
  .footer-secondary-btn {
    min-width: 0;
    flex: 1 1 0;
  }
}

@media (max-width: 640px) {
  .footer-cta {
    padding: 20px 18px;
  }

  .footer-cta h2 {
    font-size: clamp(1.9rem, 9.2vw, 2.6rem);
    line-height: 1.04;
  }

  .footer-cta__actions {
    flex-direction: column;
  }

  .footer-primary-btn,
  .footer-secondary-btn {
    width: 100%;
    height: 50px;
    min-height: 50px;
    font-size: 0.86rem;
  }
}

/* ============================================================
   FINAL UI TUNING — Hero, Footer CTA and Amenities Mini Cards
   Easy edit controls are kept here so future changes are simple.
   ============================================================ */

:root {
  /* HERO H1: reduce this value if you want VERANO smaller. */
  --hero-h1-size: clamp(4.65rem, 6.65vw, 7.15rem);
  --hero-h1-line-height: 0.76;

  /* Desktop footer CTA sizing. */
  --footer-heading-size: clamp(2.25rem, 3.15vw, 3.55rem);
}

/* HERO — simpler H1 sizing, no scaleY trick. */
@media (min-width: 981px) {
  .hero__title {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0;
    font-size: var(--hero-h1-size);
    line-height: var(--hero-h1-line-height);
    letter-spacing: 0.06em;
    transform: none;
    transform-origin: initial;
    will-change: auto;
  }
}

/* AMENITIES — compact cards + proper text wrapping. */
.amenities-mini-grid {
  gap: 10px;
}

.amenity-mini-card,
.amenity-mini-card--accent {
  min-width: 0;
  min-height: 106px;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 14px;
  overflow: hidden;
}

.amenity-mini-card > div,
.amenity-mini-card--accent > div {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.amenity-mini-card > span,
.amenity-mini-card--accent > span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
}

.amenity-mini-card strong,
.amenity-mini-card--accent strong {
  display: block;
  max-width: 100%;
  overflow: visible;
  color: #243d40;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  font-weight: 800;
  line-height: 1.18;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
}

.amenity-mini-card small,
.amenity-mini-card--accent small {
  display: block;
  max-width: 100%;
  margin-top: 4px;
  color: #687879;
  font-size: clamp(0.69rem, 0.78vw, 0.82rem);
  font-weight: 600;
  line-height: 1.32;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* FOOTER CTA — shorter card, smaller buttons, single-line H2 on desktop. */
.footer-cta {
  grid-template-columns: minmax(0, 1fr) minmax(245px, 292px);
  gap: 28px;
  padding: 22px 28px;
  border-radius: 22px;
}

.footer-cta__content {
  min-width: 0;
}

.footer-kicker {
  margin-bottom: 6px;
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.25em;
}

.footer-cta h2 {
  max-width: none;
  margin: 0;
  font-size: var(--footer-heading-size);
  line-height: 0.94;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.footer-cta__content > p:last-child {
  max-width: 760px;
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-cta__actions {
  gap: 8px;
  min-width: 0;
}

.footer-primary-btn,
.footer-secondary-btn {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  gap: 10px;
  font-size: 0.78rem;
  line-height: 1;
}

.footer-primary-btn .bi,
.footer-secondary-btn .bi {
  font-size: 1rem;
}

/* Tablet: allow heading to wrap only when width becomes genuinely tight. */
@media (max-width: 1180px) {
  .footer-cta {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
    gap: 22px;
    padding: 20px 22px;
  }

  .footer-cta h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
  }
}

@media (max-width: 920px) {
  .footer-cta {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-cta h2 {
    white-space: normal;
    font-size: clamp(2rem, 6vw, 2.8rem);
    line-height: 1;
  }

  .footer-cta__actions {
    flex-direction: row;
  }

  .footer-primary-btn,
  .footer-secondary-btn {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .amenity-mini-card,
  .amenity-mini-card--accent {
    min-height: 82px;
    padding: 10px;
  }

  .amenity-mini-card strong,
  .amenity-mini-card--accent strong {
    font-size: 0.78rem;
  }

  .amenity-mini-card small,
  .amenity-mini-card--accent small {
    font-size: 0.66rem;
  }

  .footer-cta {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .footer-cta h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .footer-cta__content > p:last-child {
    font-size: 0.76rem;
  }

  .footer-cta__actions {
    flex-direction: column;
  }

  .footer-primary-btn,
  .footer-secondary-btn {
    height: 42px;
    min-height: 42px;
    font-size: 0.76rem;
  }
}

/* ===== Final correction patch: hero H1, footer CTA, amenity mini cards ===== */

/* Hero H1: make overall height visibly smaller and reduce line-height */
.hero__title {
  font-size: clamp(4.4rem, 6.35vw, 6.55rem) !important;
  line-height: 0.72 !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 4px !important;
}

.hero__tagline {
  margin-top: 0 !important;
}

@media (max-width: 1280px) {
  .hero__title {
    font-size: clamp(4.1rem, 7.2vw, 5.95rem) !important;
    line-height: 0.72 !important;
  }
}

@media (max-width: 920px) {
  .hero__title {
    font-size: clamp(3.55rem, 10.6vw, 5.1rem) !important;
    line-height: 0.78 !important;
    letter-spacing: 0.03em !important;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(3.1rem, 13.4vw, 4.2rem) !important;
    line-height: 0.8 !important;
  }
}

/* Footer enquiry card: more compact, heading single line on desktop, smaller buttons */
.site-footer {
  padding: clamp(14px, 2.2vh, 26px) 0 !important;
}

.footer-cta {
  grid-template-columns: minmax(0, 1fr) 320px !important;
  gap: 26px !important;
  padding: 22px 28px !important;
  border-radius: 22px !important;
}

.footer-kicker {
  margin-bottom: 6px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.22em !important;
}

.footer-cta h2 {
  max-width: none !important;
  font-size: clamp(2.25rem, 2.85vw, 3.45rem) !important;
  line-height: 0.94 !important;
  white-space: nowrap !important;
}

.footer-cta__content > p:last-child {
  margin-top: 10px !important;
  max-width: 760px !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.footer-cta__actions {
  min-width: 0 !important;
  gap: 8px !important;
}

.footer-primary-btn,
.footer-secondary-btn {
  min-height: 46px !important;
  height: 46px !important;
  padding: 0 14px !important;
  border-radius: 12px !important;
  font-size: 0.84rem !important;
  line-height: 1 !important;
}

.footer-primary-btn .bi,
.footer-secondary-btn .bi {
  font-size: 1rem !important;
}

.footer-main {
  gap: 36px !important;
}

.footer-action-tabs {
  gap: 10px !important;
}

.footer-action-tab {
  grid-template-columns: 42px minmax(0, 1fr) !important;
  min-height: 62px !important;
  padding: 10px 14px !important;
  border-radius: 13px !important;
}

.footer-action-tab span {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
}

.footer-action-tab strong {
  font-size: 0.92rem !important;
  line-height: 1.12 !important;
}

@media (max-width: 920px) {
  .footer-cta {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-cta h2 {
    white-space: normal !important;
    font-size: clamp(2.15rem, 6.2vw, 3rem) !important;
    line-height: 0.98 !important;
  }

  .footer-cta__actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 640px) {
  .footer-cta {
    padding: 18px 16px !important;
  }

  .footer-kicker {
    font-size: 0.64rem !important;
    letter-spacing: 0.18em !important;
  }

  .footer-cta h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem) !important;
  }

  .footer-cta__content > p:last-child {
    font-size: 0.84rem !important;
  }

  .footer-primary-btn,
  .footer-secondary-btn {
    width: 100% !important;
    min-height: 44px !important;
    height: 44px !important;
    font-size: 0.8rem !important;
  }
}

/* Amenity small cards: smaller cards + force all text to stay inside */
.amenities-mini-grid {
  gap: 12px !important;
}

.amenity-mini-card,
.amenity-mini-card--accent {
  align-items: center !important;
  min-width: 0 !important;
  min-height: 112px !important;
  padding: 12px 14px !important;
  border-radius: 16px !important;
}

.amenity-mini-card > div,
.amenity-mini-card--accent > div {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.amenity-mini-card > span,
.amenity-mini-card--accent > span {
  flex: 0 0 40px !important;
  width: 40px !important;
  height: 40px !important;
}

.amenity-mini-card strong,
.amenity-mini-card--accent strong {
  overflow: visible !important;
  color: #243d40 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1.24 !important;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.amenity-mini-card small,
.amenity-mini-card--accent small {
  margin-top: 4px !important;
  color: #677370 !important;
  font-size: 0.54rem !important;
  font-weight: 600 !important;
  line-height: 1.32 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 920px) {
  .amenities-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .amenity-mini-card,
  .amenity-mini-card--accent {
    min-height: 104px !important;
  }
}

@media (max-width: 640px) {
  .amenities-mini-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .amenity-mini-card,
  .amenity-mini-card--accent {
    min-height: 96px !important;
    padding: 11px 10px !important;
    gap: 10px !important;
  }

  .amenity-mini-card > span,
  .amenity-mini-card--accent > span {
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .amenity-mini-card strong,
  .amenity-mini-card--accent strong {
    font-size: 0.64rem !important;
    line-height: 1.2 !important;
  }

  .amenity-mini-card small,
  .amenity-mini-card--accent small {
    font-size: 0.5rem !important;
    line-height: 1.26 !important;
  }
}

/* ===== Final H1 typography update: Instrument Serif + compact height ===== */
.hero__title {
  font-family: "Instrument Serif", Georgia, serif !important;
  font-size: clamp(4.2rem, 6vw, 6.2rem) !important;
  font-weight: 400 !important;
  line-height: 0.7 !important;
  letter-spacing: 0.035em !important;
  margin: 0 0 5px !important;
  text-transform: uppercase !important;
  /* Existing H1 color/gradient intentionally preserved */
}

@media (max-width: 1280px) {
  .hero__title {
    font-size: clamp(3.95rem, 6.8vw, 5.7rem) !important;
    line-height: 0.72 !important;
  }
}

@media (max-width: 920px) {
  .hero__title {
    font-size: clamp(3.45rem, 10vw, 4.9rem) !important;
    line-height: 0.76 !important;
    letter-spacing: 0.025em !important;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(3rem, 12.8vw, 4rem) !important;
    line-height: 0.78 !important;
  }
}

/* ===== H1 FONT ONLY: reference-style bold geometric sans ===== */
.hero__title {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 800 !important;
}

/* ===== H1 FONT ONLY: match supplied luxury serif reference ===== */
.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 500 !important;
}

/* ===== V6 hero refinements: typography, spacing, glass request button ===== */
/* H1 typeface aligned to the Conscient/Hines luxury heading treatment. */
.hero__title {
  font-family: "Instrument Serif", Georgia, serif !important;
  font-weight: 400 !important;
}

/* Desktop: distribute the content vertically and reduce the large empty zone below it. */
@media (min-width: 981px) {
  .hero__content {
    padding-top: clamp(188px, 22vh, 218px) !important;
  }

  .hero__eyebrow {
    margin-bottom: 11px !important;
  }

  .hero__title {
    margin-bottom: 10px !important;
    line-height: 0.72 !important;
  }

  .hero__tagline {
    margin: 0 !important;
    line-height: 1 !important;
  }

  .hero__location {
    margin-top: 18px !important;
  }

  .hero__actions {
    margin-top: 24px !important;
  }
}

/* Request Details: glass by default, coral/red only on hover/focus. */
.hero__button--secondary {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.48) !important;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.1)
  ) !important;
  box-shadow:
    0 10px 24px rgba(8, 26, 30, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.36) !important;
  backdrop-filter: blur(16px) saturate(125%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(125%) !important;
}

.hero__button--secondary .bi {
  color: #ffffff !important;
}

.hero__button--secondary:hover,
.hero__button--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.34) !important;
  background: linear-gradient(145deg, #ff5364 0%, #ef4058 100%) !important;
  box-shadow:
    0 12px 24px rgba(98, 24, 36, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Keep mobile spacing compact and unchanged in structure. */
@media (max-width: 980px) {
  .hero__content {
    padding-top: 142px !important;
  }
}

@media (max-width: 640px) {
  .hero__content {
    padding-top: 126px !important;
  }
}

/* ============================================================
   HERO FINAL PATCH — typography, white text clarity & spacing
   ============================================================ */

/* Distinct premium H1 typeface; no external font dependency required. */
.hero__title {
  font-family: "Bodoni MT", Didot, "Times New Roman", serif !important;
  font-weight: 500 !important;
  font-size: clamp(4.3rem, 6.25vw, 6.65rem) !important;
  line-height: 0.76 !important;
  letter-spacing: 0.035em !important;
}

/* Text that is meant to be white now renders as true white with stronger contrast. */
.hero__eyebrow,
.hero__location,
.hero__location strong,
.hero__button,
.hero__button span,
.hero__button .bi {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0 !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.82),
    0 4px 12px rgba(0, 0, 0, 0.48) !important;
}

/* Use the previously empty lower content area instead of leaving a large visual gap. */
.hero__stats {
  display: inline-flex !important;
  margin-top: 20px !important;
  color: #ffffff !important;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 4px 10px rgba(0, 0, 0, 0.4) !important;
}

.hero__stats strong,
.hero__stats span {
  color: #ffffff !important;
}

.hero__stats span {
  border-right-color: rgba(255, 255, 255, 0.42) !important;
}

@media (min-width: 981px) {
  .hero__content {
    padding-top: clamp(138px, 17vh, 170px) !important;
    padding-bottom: 118px !important;
  }

  .hero__eyebrow {
    margin-bottom: 10px !important;
  }

  .hero__title {
    margin-bottom: 12px !important;
  }

  .hero__tagline {
    margin-top: 0 !important;
  }

  .hero__location {
    margin-top: 18px !important;
  }

  .hero__actions {
    margin-top: 22px !important;
  }

  .hero__usp-dock {
    bottom: 18px !important;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  .hero__title {
    font-size: clamp(4rem, 6.6vw, 5.85rem) !important;
  }
}

@media (max-width: 980px) {
  .hero__eyebrow,
  .hero__location,
  .hero__location strong,
  .hero__stats,
  .hero__stats strong,
  .hero__stats span {
    color: #ffffff !important;
  }

  .hero__stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 10px 0;
    margin-top: 18px !important;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(3rem, 13.2vw, 4.1rem) !important;
    line-height: 0.8 !important;
    letter-spacing: 0.025em !important;
  }

  .hero__stats {
    margin-top: 16px !important;
  }
}

/* ============================================================
   HERO UPDATE V2 — remove stats, tighten bottom space, new H1 font
   ============================================================ */

@media (min-width: 981px) {
  .hero__content {
    max-width: 760px;
    padding: 158px 0 158px clamp(34px, 4.6vw, 72px);
    transform: translateY(2.5vh);
  }
}

.hero__title {
  color: #f34f69;
  font-family: "Bodoni Moda", "Didot", "Bodoni MT", Georgia, serif;
  font-size: clamp(4.4rem, 7vw, 7.2rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-text-stroke: 0.7px rgba(122, 26, 34, 0.35);
  text-shadow: none;
  filter: drop-shadow(0 1px 0 rgba(255, 232, 222, 0.4))
    drop-shadow(0 3px 4px rgba(34, 14, 10, 0.48))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.hero__eyebrow,
.hero__location,
.hero__location strong,
.hero__button,
.hero__button span,
.hero__button i {
  color: #ffffff;
}

.hero__eyebrow {
  margin: 0 0 18px;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.54),
    0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero__title-mark {
  margin: 18px 0 18px 4px;
}

.hero__tagline {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  line-height: 1;
}

.hero__location {
  margin: 20px 0 0;
  gap: 18px;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.56),
    0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero__actions {
  margin-top: 28px;
}

.hero__stats {
  display: none !important;
}

@media (max-width: 980px) {
  .hero__content {
    padding: 148px 20px 250px 34px;
  }

  .hero__title {
    font-size: clamp(3.9rem, 11vw, 5.65rem);
    letter-spacing: 0.04em;
  }

  .hero__tagline {
    font-size: clamp(1.24rem, 3.4vw, 1.7rem);
  }

  .hero__location {
    margin-top: 16px;
  }

  .hero__actions {
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  .hero__content {
    padding: calc(41svh + 8px) 18px 220px;
  }

  .hero__title {
    font-size: clamp(3.35rem, 16vw, 4.65rem);
    line-height: 0.92;
  }

  .hero__title-mark {
    margin: 14px 0 14px 2px;
  }

  .hero__tagline {
    font-size: 1.2rem;
  }

  .hero__location {
    margin-top: 14px;
    font-size: 0.8rem;
  }

  .hero__actions {
    margin-top: 18px;
  }
}

/* ============================================================
   HERO + HEADER UPDATE V3 — Marcellus H1, white location edges,
   WhatsApp circular header button
   ============================================================ */

.hero__title {
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero__location,
.hero__location strong {
  color: #ffffff;
}

.hero__location::before,
.hero__location::after {
  background: rgba(255, 255, 255, 0.78);
}

.hero__location {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.56),
    0 1px 0 rgba(255, 255, 255, 0.12);
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(145deg, #25d366 0%, #128c3a 100%);
  box-shadow:
    0 8px 16px rgba(16, 74, 34, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    filter 180ms ease;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 12px 22px rgba(16, 74, 34, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: saturate(1.04);
}

.header-whatsapp .bi {
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.22));
}

@media (max-width: 980px) {
  .header-whatsapp {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-right: 8px;
  }

  .header-whatsapp .bi {
    font-size: 1.22rem;
  }
}

@media (max-width: 640px) {
  .header-whatsapp {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-right: 6px;
  }
}

/* ============================================================
   HERO UPDATE V4 — remove scroll cue, add bottom-right WhatsApp
   ============================================================ */

.scroll-cue {
  display: none !important;
}

.hero__floating-whatsapp {
  position: fixed;
  right: clamp(16px, 2.2vw, 28px);
  bottom: clamp(16px, 2.6vw, 30px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(145deg, #29df6f 0%, #149944 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 18px 34px rgba(7, 58, 22, 0.32),
    0 6px 16px rgba(7, 58, 22, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    filter 180ms ease;
}

.hero__floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(41, 223, 111, 0.34);
  border-radius: inherit;
  animation: whatsappPulse 2.3s ease-out infinite;
}

.hero__floating-whatsapp:hover,
.hero__floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 24px 42px rgba(7, 58, 22, 0.36),
    0 10px 20px rgba(7, 58, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: saturate(1.04);
}

.hero__floating-whatsapp .bi {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.92);
  }
  70% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (max-width: 640px) {
  .hero__floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 18px;
  }

  .hero__floating-whatsapp .bi {
    font-size: 1.8rem;
  }
}

/* ============================================================
   GLOBAL WHATSAPP FLOAT V5 — full site floating CTA
   Place the HTML snippet before closing </body>
   ============================================================ */

.hero__floating-whatsapp {
  display: none !important;
}

.site-whatsapp-float {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(18px, 2.2vw, 30px);
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 62px;
  height: 62px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(145deg, #2ae06f 0%, #149844 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 18px 36px rgba(7, 58, 22, 0.34),
    0 8px 18px rgba(7, 58, 22, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    filter 180ms ease;
}

.site-whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(42, 224, 111, 0.34);
  border-radius: inherit;
  animation: siteWhatsappPulse 2.3s ease-out infinite;
}

.site-whatsapp-float:hover,
.site-whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 24px 42px rgba(7, 58, 22, 0.38),
    0 10px 20px rgba(7, 58, 22, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: saturate(1.05);
}

.site-whatsapp-float__icon,
.site-whatsapp-float .bi {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.95rem;
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
}

.site-whatsapp-float__label {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

@keyframes siteWhatsappPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  70% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (max-width: 640px) {
  .site-whatsapp-float {
    right: 14px;
    bottom: 18px;
    min-width: 56px;
    height: 56px;
    padding: 0 16px;
    gap: 8px;
  }

  .site-whatsapp-float__icon,
  .site-whatsapp-float .bi {
    width: 24px;
    height: 24px;
    font-size: 1.72rem;
  }

  .site-whatsapp-float__label {
    font-size: 0.78rem;
  }
}

/* ============================================================
   FINAL HERO SCROLL + GLOBAL WHATSAPP VISIBILITY
   Scroll cue stays visible inside hero. Global WhatsApp appears
   only after the hero has been completely scrolled past.
   ============================================================ */

.hero .scroll-cue {
  display: inline-flex !important;
}

.site-whatsapp-float {
  width: 62px;
  min-width: 62px;
  height: 62px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 240ms var(--ease),
    box-shadow 180ms var(--ease),
    filter 180ms ease;
}

.site-whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-whatsapp-float.is-visible:hover,
.site-whatsapp-float.is-visible:focus-visible {
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 640px) {
  .hero .scroll-cue {
    display: inline-flex !important;
  }

  .site-whatsapp-float {
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
  }
}

/* ============================================================
   HERO SCROLL CUE REFINEMENT V8
   1) Add glassy background effect
   2) Shift cue slightly to the left
   ============================================================ */

.scroll-cue {
  right: 56px;
  bottom: 30px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.08)
    ),
    rgba(18, 31, 42, 0.08);
  box-shadow:
    0 18px 36px rgba(6, 18, 26, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
}

.scroll-cue::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.scroll-cue > * {
  position: relative;
  z-index: 1;
}

.scroll-cue__rail {
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@media (max-width: 640px) {
  .scroll-cue {
    right: 24px;
    bottom: 22px;
    padding: 12px 12px 14px;
    border-radius: 20px;
  }
}


/* ============================================================
   GALLERY LIGHTBOX + MOBILE HERO SCROLL CUE
   - Scroll cue is hidden only on mobile/tablet widths.
   - Any gallery image opens in a fullscreen lightbox on all widths.
   ============================================================ */

.gallery-3d-card {
  cursor: zoom-in;
}

.gallery-3d-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.96);
  outline-offset: 5px;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.2vw, 32px);
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 14, 0.9);
  backdrop-filter: blur(16px) saturate(115%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  height: min(820px, 90svh);
  display: grid;
  place-items: center;
  outline: none;
}

.gallery-lightbox__figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(12, 18, 22, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: contain;
  background: #080d10;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-lightbox__caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 20px;
  align-items: center;
  padding: 16px 22px 18px;
  color: #fff;
  background: rgba(12, 18, 22, 0.95);
}

.gallery-lightbox__caption span {
  grid-column: 1;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.66;
}

.gallery-lightbox__caption strong {
  grid-column: 1;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.25;
}

.gallery-lightbox__caption small {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(14, 24, 30, 0.58);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.gallery-lightbox__close {
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
}

.gallery-lightbox__close:hover {
  transform: rotate(5deg) scale(1.04);
}

.gallery-lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 1.15rem;
}

.gallery-lightbox__nav--prev {
  left: 14px;
}

.gallery-lightbox__nav--next {
  right: 14px;
}

.gallery-lightbox__nav:hover {
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 760px) {
  /* Requested: remove the hero Scroll tab only in mobile view. */
  .hero .scroll-cue,
  .scroll-cue {
    display: none !important;
  }

  .gallery-lightbox {
    padding: 10px;
  }

  .gallery-lightbox__dialog {
    width: 100%;
    height: min(86svh, 760px);
  }

  .gallery-lightbox__figure {
    border-radius: 18px;
  }

  .gallery-lightbox__caption {
    gap: 3px 12px;
    padding: 12px 14px 14px;
  }

  .gallery-lightbox__caption span {
    font-size: 0.64rem;
  }

  .gallery-lightbox__caption strong {
    font-size: 0.96rem;
  }

  .gallery-lightbox__caption small {
    font-size: 0.68rem;
  }

  .gallery-lightbox__close {
    top: 9px;
    right: 9px;
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox__nav {
    width: 44px;
    height: 44px;
    top: 46%;
  }

  .gallery-lightbox__nav--prev {
    left: 9px;
  }

  .gallery-lightbox__nav--next {
    right: 9px;
  }
}
