:root {
  --primary: #0b1d33;
  --secondary: #0d47a1;
  --sky: #5db7e5;
  --mist: #f4f8fb;
  --soft-blue: #eef5fb;
  --charcoal: #1f2937;
  --border: #e6e9ee;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(11, 29, 51, 0.08);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

body.video-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__links,
.topbar__item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__item {
  gap: 7px;
  white-space: nowrap;
}

.topbar svg,
.button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar__button {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  padding: 4px 12px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.site-header {
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 29, 51, 0.08);
}

.site-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: inline-flex;
  width: 270px;
  max-width: 45vw;
}

.logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
}

.main-nav__link {
  position: relative;
  color: #111827;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--secondary);
}

.main-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: var(--secondary);
  transform: translateX(-50%);
  opacity: 0;
}

.main-nav__link--active::after {
  opacity: 1;
}

.site-header.is-menu-open {
  z-index: 40;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 251, 0.96) 56%, rgba(238, 245, 251, 0.94) 100%);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__logo {
  width: min(220px, 52vw);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(11, 29, 51, 0.14));
  opacity: 0.92;
}

.site-loader__bar {
  width: min(220px, 52vw);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 71, 161, 0.14);
}

.site-loader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--sky) 100%);
  transform: translateX(-100%);
  animation: loader-bar 1.45s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes loader-bar {
  0% {
    transform: translateX(-100%) scaleX(0.36);
    transform-origin: left;
  }

  55% {
    transform: translateX(-18%) scaleX(0.72);
    transform-origin: left;
  }

  100% {
    transform: translateX(100%) scaleX(0.38);
    transform-origin: right;
  }
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 48, 92, 0.84) 0%, rgba(0, 64, 120, 0.55) 42%, rgba(0, 28, 58, 0.1) 78%),
    linear-gradient(180deg, rgba(11, 29, 51, 0) 58%, rgba(11, 29, 51, 0.28) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 70px 0 100px;
}

.hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 39px);
  font-weight: 500;
  line-height: 1;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(68px, 8.6vw, 104px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 560px;
  margin: 0 0 34px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 0 22px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(11, 29, 51, 0.16);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.button--primary {
  background: var(--secondary);
  color: var(--white);
}

.button--primary:hover {
  background: var(--primary);
}

.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(11, 29, 51, 0.12);
}

.button--outline:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--secondary);
}

.button--compact {
  min-height: 44px;
  padding-inline: 18px;
}

.stats-wrap {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  min-height: 162px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 28px 20px;
  text-align: center;
  color: var(--secondary);
}

.stat + .stat {
  border-left: 1px solid var(--border);
}

.stat img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.stat strong {
  color: var(--secondary);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.stat span {
  color: #5f6771;
  font-size: 14px;
  line-height: 1.35;
}

.section-pad {
  padding: 66px 0;
}

.intro__grid,
.master__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.38fr);
  align-items: center;
  gap: 72px;
}

.section-copy {
  max-width: 430px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.section-copy h2,
.section-heading h2 {
  margin: 0 0 22px;
  color: #1e252d;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy h2 span {
  color: var(--secondary);
  display: block;
}

.section-copy p:not(.kicker) {
  margin: 0 0 18px;
  color: #49515b;
  font-size: 14px;
}

.video-poster {
  position: relative;
  width: 100%;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: var(--border);
  box-shadow: none;
}

.video-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.video-poster__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(11, 29, 51, 0.06);
  transition: background-color 160ms ease;
}

.video-poster__play svg {
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 8px 18px rgba(11, 29, 51, 0.28));
  transform-origin: center;
  animation: video-play-pulse 2.1s ease-in-out infinite;
}

.video-poster__play circle {
  fill: rgba(255, 255, 255, 0.18);
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 2;
}

.video-poster__play path {
  fill: rgba(255, 255, 255, 0.92);
}

.video-poster:hover .video-poster__play {
  background: rgba(11, 29, 51, 0.18);
}

@keyframes video-play-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 18px rgba(11, 29, 51, 0.28));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 14px 28px rgba(11, 29, 51, 0.38));
  }
}

.amenities {
  padding: 0 0 54px;
}

.title-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
}

.title-rule span {
  height: 1px;
  background: var(--border);
}

.title-rule h2 {
  margin: 0;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.amenity {
  min-height: 132px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 16px 12px;
  color: #4b5563;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
}

.amenity + .amenity {
  border-left: 1px solid var(--border);
}

.amenity img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.beach-club {
  position: relative;
  min-height: 330px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.beach-club__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.beach-club__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-block: 28px;
}

.club-card {
  width: min(465px, 100%);
  border-radius: 8px;
  background: linear-gradient(135deg, #0d47a1 0%, #061d38 100%);
  box-shadow: 0 18px 36px rgba(11, 29, 51, 0.18);
  padding: 46px 44px 42px;
}

.club-card__heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.club-card__heading svg {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.club-card__heading p,
.club-card h3,
.club-card p {
  margin: 0;
}

.club-card__heading p {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.club-card h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.club-card h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 18px;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.club-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.club-card p {
  margin-bottom: 26px;
  font-size: 14px;
}

.master {
  background: linear-gradient(90deg, var(--mist) 0%, var(--white) 68%);
}

.master__grid {
  grid-template-columns: minmax(250px, 0.58fr) minmax(520px, 1.42fr);
  gap: 54px;
}

.master__image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 2.35 / 1;
  border-radius: 8px;
  background: var(--soft-blue);
}

.master__image img,
.master__image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.financing {
  background: var(--white);
}

.section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.finance-card {
  min-height: 142px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  color: var(--secondary);
  text-align: center;
}

.finance-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.finance-card p,
.finance-card span {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.35;
}

.finance-card strong {
  color: var(--secondary);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.finance-card--featured {
  background: linear-gradient(135deg, #0d47a1 0%, #06306d 100%);
  color: var(--white);
}

.finance-card--featured p,
.finance-card--featured strong {
  color: var(--white);
}

.finance-card--featured img {
  filter: brightness(0) invert(1);
}

.finance-notes {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 8vw, 110px);
  margin-top: 20px;
  color: #303947;
  font-size: 14px;
}

.finance-notes span::first-letter {
  color: var(--secondary);
}

.future-cta {
  padding: 0 0 28px;
  background: var(--white);
}

.future-cta__box {
  min-height: 112px;
  display: grid;
  grid-template-columns: 118px 1fr auto;
  align-items: center;
  gap: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d47a1 0%, #003981 100%);
  color: var(--white);
  padding: 22px 48px;
}

.future-cta__box img {
  width: 105px;
  opacity: 0.18;
  filter: brightness(0) invert(1);
}

.future-cta h2,
.future-cta p {
  margin: 0;
}

.future-cta h2 {
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.future-cta p {
  max-width: 620px;
  font-size: 14px;
}

.future-cta__button {
  min-width: 260px;
}

.contact-strip {
  background: linear-gradient(180deg, var(--white) 0%, var(--mist) 100%);
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-strip article {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
}

.contact-strip article + article {
  border-left: 1px solid var(--border);
}

.contact-strip article > svg,
.contact-strip article > img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-strip article > svg {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-strip h3,
.contact-strip p,
.contact-strip span,
.contact-strip a {
  margin: 0;
}

.contact-strip h3 {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
}

.contact-strip p,
.contact-strip span,
.contact-strip a {
  color: #555d66;
  font-size: 12px;
  line-height: 1.45;
}

.social-links {
  display: grid;
  gap: 2px;
  margin-top: 5px;
}

.social-links a,
.social-links span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.social-links svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(2) svg,
.social-links span:nth-child(2) svg {
  fill: var(--secondary);
  stroke: none;
}

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 28px 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  gap: 24px;
}

.site-footer img {
  width: 166px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__links {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a[aria-current="page"] {
  color: var(--sky);
}

.privacy-page {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 48%, #ffffff 100%);
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 92px) 0 34px;
  background:
    radial-gradient(circle at 74% 26%, rgba(93, 183, 229, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f1f7fb 100%);
}

.privacy-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: repeating-linear-gradient(135deg, rgba(13, 71, 161, 0.04) 0 2px, transparent 2px 18px);
  opacity: 0.45;
  pointer-events: none;
}

.privacy-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 8vw, 96px);
}

.privacy-hero__copy h1 {
  max-width: 520px;
  margin: 0 0 20px;
  color: #1e252d;
  font-size: clamp(56px, 7vw, 78px);
  line-height: 0.92;
}

.privacy-hero__copy h1 span {
  display: block;
  color: var(--secondary);
}

.privacy-hero__copy p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: #4d5865;
  font-size: 15px;
}

.privacy-summary-card {
  display: grid;
  gap: 26px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(30px, 4vw, 44px);
  box-shadow: 0 22px 48px rgba(11, 29, 51, 0.08);
  backdrop-filter: blur(10px);
}

.privacy-summary-card__icon {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-summary-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-summary-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 14px;
  color: #42505f;
  font-size: 14px;
}

.privacy-summary-card li svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-content {
  padding: 24px 0 34px;
}

.privacy-card {
  max-width: 1040px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(30px, 5vw, 48px);
  box-shadow: 0 18px 44px rgba(11, 29, 51, 0.08);
}

.privacy-section {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--border);
}

.privacy-section + .privacy-section {
  padding-top: 34px;
}

.privacy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-section__number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
}

.privacy-section h2 {
  margin: 0 0 16px;
  color: #1e252d;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1.05;
}

.privacy-section p {
  margin: 0 0 18px;
  color: #3f4854;
  font-size: 14px;
  line-height: 1.75;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section a {
  color: var(--secondary);
  font-weight: 800;
  text-decoration: none;
}

.privacy-section ul {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding-left: 18px;
  color: #3f4854;
  font-size: 14px;
}

.privacy-section li::marker {
  color: var(--secondary);
}

.privacy-inline-link {
  display: inline;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--secondary);
  font-weight: 800;
  text-decoration: none;
}

.privacy-inline-link:hover {
  color: #073579;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.privacy-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 33, 0.68);
  backdrop-filter: blur(8px);
}

.privacy-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(82vh, 840px);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.privacy-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
}

.privacy-modal__header {
  padding: 34px 44px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.privacy-modal__header h2 {
  margin: 0 0 8px;
  color: #1e252d;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
}

.privacy-modal__header p:not(.kicker) {
  margin: 0;
  color: #5c6672;
  font-size: 14px;
}

.privacy-modal__body {
  overflow: auto;
  padding: 30px 44px 42px;
}

.privacy-modal__body article + article {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.privacy-modal__body h3 {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.25;
}

.privacy-modal__body p,
.privacy-modal__body li {
  color: #3f4854;
  font-size: 13px;
  line-height: 1.7;
}

.privacy-modal__body p {
  margin: 0 0 13px;
}

.privacy-modal__body p:last-child {
  margin-bottom: 0;
}

.privacy-modal__body ul,
.privacy-modal__body ol {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 20px;
}

.privacy-modal__body li::marker {
  color: var(--secondary);
  font-weight: 800;
}

.privacy-modal__body a {
  color: var(--secondary);
  font-weight: 800;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #22c55e;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(11, 29, 51, 0.22);
  transition: transform 180ms ease, background-color 180ms ease;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  background: #16a34a;
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 820ms ease, transform 820ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42), 0 12px 26px rgba(11, 29, 51, 0.22);
  }
  72% {
    box-shadow: 0 0 0 18px rgba(34, 197, 94, 0), 0 12px 26px rgba(11, 29, 51, 0.22);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), 0 12px 26px rgba(11, 29, 51, 0.22);
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.video-modal.is-open {
  display: grid;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 20, 0.78);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  border-radius: 10px;
  background: #020a14;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

.video-modal__dialog video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #020a14;
}

.video-modal__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.gallery-modal.is-open {
  display: grid;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 10, 20, 0.78);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 980px);
  max-height: calc(100vh - 72px);
}

.gallery-modal__dialog img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 72px);
  margin: auto;
  border-radius: 10px;
  background: #020a14;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
  object-fit: contain;
}

.gallery-modal__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.brochure-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 24px;
}

.brochure-modal.is-open {
  display: grid;
}

.brochure-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 20, 0.74);
}

.brochure-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  padding: 34px;
}

.brochure-modal__dialog h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.05;
}

.brochure-modal__dialog p {
  margin: 8px 0 22px;
  color: #5c6672;
  font-size: 14px;
}

.brochure-modal__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.brochure-form {
  display: grid;
  gap: 16px;
}

.brochure-form label {
  display: grid;
  gap: 8px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
}

.brochure-form input {
  width: 100%;
  border: 1px solid #d8dde6;
  border-radius: 3px;
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 15px;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.brochure-form input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.brochure-form .button {
  margin-top: 6px;
  justify-self: start;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status[data-status="success"] {
  color: #16833a;
}

.form-status[data-status="error"] {
  color: #c4331f;
}

.form-status[data-status="loading"] {
  color: var(--secondary);
}

.about-page {
  overflow: hidden;
}

.about-section {
  padding: 72px 0;
  background: var(--white);
}

.about-section--mist {
  background:
    linear-gradient(90deg, var(--white) 0%, var(--mist) 100%);
}

.about-hero {
  padding-top: 18px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}

.about-split--hero {
  grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.15fr);
}

.about-copy {
  max-width: 520px;
}

.about-copy h1,
.about-copy h2,
.location-heading h2,
.business-heading h2 {
  margin: 0 0 24px;
  color: #1e252d;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-copy h1 {
  font-size: clamp(46px, 5.6vw, 68px);
}

.about-copy h2,
.location-heading h2,
.business-heading h2 {
  font-size: clamp(34px, 4vw, 46px);
}

.about-copy h1 span,
.about-copy h2 span,
.location-heading h2 span {
  display: block;
  color: var(--secondary);
}

.about-copy p:not(.kicker),
.location-heading p:not(.kicker),
.business-heading p:not(.kicker) {
  margin: 0 0 24px;
  color: #49515b;
  font-size: 14px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button--secondary {
  border-color: var(--secondary);
  background: var(--white);
  color: var(--secondary);
}

.button--secondary:hover {
  background: var(--secondary);
  color: var(--white);
}

.media-frame,
.map-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft-blue);
  box-shadow: 0 12px 28px rgba(11, 29, 51, 0.08);
}

.media-frame img,
.map-frame img,
.about-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--hero {
  aspect-ratio: 1.2 / 1;
}

.media-frame--wide,
.about-video {
  aspect-ratio: 16 / 9;
}

.media-frame--tall {
  aspect-ratio: 1.56 / 1;
}

.about-copy h2 .heading-number {
  display: inline;
  color: inherit;
  font-family: var(--font-sans);
  font-size: 0.78em;
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0;
}

.about-metrics,
.protection-grid {
  display: grid;
  gap: 18px;
}

.about-metrics {
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0 22px;
}

.about-metrics article {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.about-metrics article + article {
  border-left: 1px solid var(--border);
}

.about-metrics img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-metrics strong {
  color: var(--secondary);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.about-metrics span {
  color: #4b5563;
  font-size: 12px;
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.protection-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.protection-grid article {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.protection-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.protection-grid span {
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #4b5563;
  font-size: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--secondary);
  border-radius: 999px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.about-video {
  position: relative;
  border-radius: 8px;
}

.location-section {
  padding-bottom: 48px;
}

.location-heading,
.business-heading {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.location-heading h2 span {
  display: inline;
}

.map-frame {
  width: 100vw;
  aspect-ratio: 2711 / 820;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: none;
}

.business-section {
  padding: 24px 0 34px;
  background: var(--white);
}

.business-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.business-heading h2 {
  margin-bottom: 8px;
}

.business-heading p {
  margin-bottom: 0;
  font-size: 12px;
}

.business-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.business-logos img {
  width: 100%;
  max-height: 88px;
  object-fit: contain;
  padding: 0 28px;
}

.business-logos img + img {
  border-left: 1px solid var(--border);
}

.master-plan-page {
  overflow: hidden;
  background: var(--white);
}

.plan-hero {
  position: relative;
  min-height: 606px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.plan-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.plan-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 34%, rgba(255, 255, 255, 0.58) 43%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 54%);
}

.plan-hero__content {
  position: relative;
  z-index: 1;
}

.master-plan-copy {
  max-width: 460px;
}

.master-plan-copy h1,
.development-heading h2,
.financing-panel h2 {
  margin: 0 0 24px;
  color: #1e252d;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.master-plan-copy h1 {
  font-size: clamp(44px, 5vw, 60px);
}

.master-plan-copy h1 span {
  display: block;
}

.master-plan-copy p:not(.kicker) {
  margin: 0 0 28px;
  color: #3f4a56;
  font-size: 14px;
}

.plan-stats-wrap {
  position: relative;
  z-index: 2;
  margin-top: -66px;
  margin-bottom: -66px;
  padding-bottom: 0;
  background: transparent;
}

.plan-stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 29, 51, 0.1);
}

.plan-stat {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 34px;
  color: var(--secondary);
}

.plan-stat + .plan-stat {
  border-left: 1px solid var(--border);
}

.plan-stat img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.plan-stat span,
.plan-stat small {
  display: block;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.3;
}

.plan-stat span {
  text-transform: uppercase;
  font-weight: 700;
}

.plan-stat strong {
  display: block;
  color: var(--secondary);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.05;
}

.development-section {
  padding: 134px 0 28px;
  background: linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
}

.development-heading {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

.development-heading h2 {
  margin: 0 auto 18px;
  font-size: clamp(38px, 4.3vw, 54px);
}

.development-heading > p {
  margin: 0;
  max-width: 620px;
  color: #49515b;
  font-size: 14px;
  line-height: 1.65;
}

.availability-map {
  position: relative;
  width: calc(100vw - 48px);
  margin: 0 0 0 calc(50% - 50vw + 24px);
  overflow: hidden;
  aspect-ratio: 1836.96 / 836.88;
  border-radius: 8px;
  background: var(--soft-blue);
  box-shadow: 0 12px 28px rgba(11, 29, 51, 0.08);
}

.availability-map__zoom {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-origin: 0 0;
  will-change: transform;
}

.availability-map img,
.availability-map__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.availability-map__base {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: fill;
}

.availability-map__svg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.availability-map__legend {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #3f4854;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(11, 29, 51, 0.12);
}

.availability-map__legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.availability-map__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(11, 29, 51, 0.12);
}

.availability-map__dot--disponible {
  background: #1db954;
}

.availability-map__dot--apartado {
  background: #03c4f2;
}

.availability-map__dot--vendido {
  background: #ff3d00;
}

.availability-map__tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  box-sizing: border-box;
  min-width: 172px;
  max-width: calc(100% - 20px);
  padding: 11px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #101928;
  font-size: 12px;
  line-height: 1.25;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px)) scale(0.96);
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 14px 34px rgba(11, 29, 51, 0.2);
}

.availability-map__tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
}

.availability-map__tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 18px)) scale(1);
}

.availability-map__tooltip strong {
  display: block;
}

.availability-map__tooltip strong {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.availability-map__tooltip dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  margin: 0;
}

.availability-map__tooltip dt,
.availability-map__tooltip dd {
  margin: 0;
  font-size: 11px;
}

.availability-map__tooltip dt {
  color: #667085;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-map__tooltip dd {
  color: #263241;
  font-weight: 700;
  text-align: right;
}

.availability-map__tooltip[data-status="disponible"] dd[data-status-value] {
  color: #1db954;
}

.availability-map__tooltip[data-status="apartado"] dd[data-status-value] {
  color: #03c4f2;
}

.availability-map__tooltip[data-status="vendido"] dd[data-status-value] {
  color: #ff3d00;
}

.availability-mobile-card {
  display: none;
}

.availability-download {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.availability-download__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.availability-download__button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.plan-financing {
  padding: 42px 0 24px;
  background: var(--white);
}

.plan-financing .container {
  max-width: 1120px;
  padding: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.plan-financing__heading {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.plan-financing__heading h2 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: clamp(32px, 4vw, 44px);
}

.plan-financing__heading p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.plan-financing__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.financing-option {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 268px;
  padding: 30px 26px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(11, 29, 51, 0.06);
}

.financing-option--featured {
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(11, 29, 51, 0.1);
}

.financing-option h3 {
  margin: 0 0 8px;
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.5vw, 31px);
  font-weight: 600;
  line-height: 1;
}

.financing-option > p {
  margin: 0 0 18px;
  color: #263241;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.financing-option > p strong {
  display: block;
  margin-top: 3px;
  color: var(--secondary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.financing-option dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.financing-option dl div {
  position: relative;
  padding-left: 25px;
}

.financing-option dl div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid #c99643;
  border-radius: 50%;
  color: #c99643;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.financing-option dt,
.financing-option dd {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.35;
}

.financing-option dt {
  font-weight: 700;
}

.financing-option dd {
  margin-top: 2px;
  color: #1f2937;
  font-weight: 600;
}

.plan-financing__action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.plan-amenities {
  padding-top: 48px;
  padding-bottom: 30px;
}

.work-progress {
  padding: 42px 0 52px;
  background: var(--white);
}

.work-progress .section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.work-progress .section-heading h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.work-progress .section-heading .kicker {
  margin-right: auto;
  margin-left: auto;
}

.work-progress__viewer {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 18px 46px rgba(11, 29, 51, 0.08);
}

.work-progress__viewer iframe,
.work-progress__viewer video {
  display: block;
  width: 100%;
  height: clamp(320px, 32vw, 430px);
}

.work-progress__viewer iframe {
  border: 0;
}

.work-progress__viewer video {
  object-fit: cover;
}

.work-progress__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.work-progress__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 0;
  border-radius: 8px;
  background: var(--soft-blue);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(11, 29, 51, 0.07);
}

.work-progress__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(5, 78, 164, 0);
  transition: background-color 180ms ease;
}

.work-progress__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.work-progress__photo:hover img {
  transform: scale(1.05);
}

.work-progress__photo:hover::after {
  background: rgba(5, 78, 164, 0.14);
}

.comfort-section {
  padding: 24px 0 48px;
  background: var(--white);
}

.comfort-section .section-heading {
  margin-bottom: 28px;
}

.comfort-section .section-heading h2 {
  color: var(--secondary);
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.comfort-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.comfort-card {
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 30px 30px 28px;
  box-shadow: 0 10px 26px rgba(11, 29, 51, 0.05);
}

.comfort-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 16px;
}

.comfort-card h3 {
  margin: 0 0 16px;
  color: var(--secondary);
  font-size: 16px;
  font-weight: 800;
}

.comfort-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.4;
}

.financing-page {
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--mist) 48%, var(--white) 100%);
}

.financing-hero {
  padding: 62px 0 42px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 55%, rgba(93, 183, 229, 0.08) 0%, rgba(93, 183, 229, 0) 30%),
    radial-gradient(circle at 82% 28%, rgba(13, 71, 161, 0.07) 0%, rgba(13, 71, 161, 0) 28%);
}

.financing-hero .container {
  max-width: 760px;
}

.financing-hero h1 {
  margin: 0 0 20px;
  color: #1e252d;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.4vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.financing-hero h1 span,
.investment-copy h2 span {
  display: block;
  color: var(--secondary);
}

.financing-hero p:not(.kicker) {
  margin: 0 auto;
  max-width: 540px;
  color: #49515b;
  font-size: 14px;
}

.financing-showcase {
  padding: 0 0 44px;
}

.financing-showcase__grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.22fr) minmax(320px, 0.78fr);
  align-items: stretch;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(11, 29, 51, 0.09);
}

.financing-showcase__image {
  margin: 0;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  background: var(--soft-blue);
}

.financing-showcase__image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.financing-terms {
  display: grid;
  align-content: center;
  border-radius: 0 10px 10px 0;
  background: var(--white);
  padding: clamp(30px, 5vw, 54px);
}

.financing-terms h2,
.investment-copy h2,
.investment-card h3,
.financing-banner h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.financing-terms h2 {
  max-width: 390px;
  margin-bottom: 26px;
  color: var(--secondary);
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.08;
}

.financing-terms .price-number {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 0.9em;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700;
  line-height: 1.15;
}

.terms-list {
  display: grid;
  margin-bottom: 28px;
}

.terms-list div {
  display: block;
  padding: 18px 0;
}

.terms-list div + div {
  border-top: 1px solid var(--border);
}

.terms-list p {
  margin: 0;
  color: #49515b;
  font-size: 14px;
}

.financing-benefits {
  padding: 0 0 70px;
}

.financing-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.financing-benefit-card {
  min-height: 176px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(11, 29, 51, 0.06);
}

.financing-benefit-card:first-child {
  border-radius: 8px 0 0 8px;
}

.financing-benefit-card:last-child {
  border-radius: 0 8px 8px 0;
}

.financing-benefit-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.financing-benefit-card strong {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.financing-benefit-card span {
  color: #4b5563;
  font-size: 12px;
  line-height: 1.35;
}

.investment-section {
  padding: 0 0 72px;
}

.investment-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 84px);
}

.investment-copy {
  max-width: 520px;
}

.investment-copy h2 {
  margin-bottom: 24px;
  color: #1e252d;
  font-size: clamp(34px, 4vw, 46px);
}

.investment-copy p:not(.kicker) {
  margin: 0 0 26px;
  color: #49515b;
  font-size: 14px;
}

.investment-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d47a1 0%, #062f6c 100%);
  color: var(--white);
  padding: clamp(32px, 5vw, 54px);
  box-shadow: 0 18px 38px rgba(11, 29, 51, 0.12);
}

.investment-card > img {
  position: absolute;
  right: -16px;
  bottom: -12px;
  width: 190px;
  opacity: 0.16;
  filter: brightness(0) invert(1);
}

.investment-card .kicker,
.investment-card h3 {
  color: var(--white);
}

.investment-card h3 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 40px);
}

.investment-card__monthly {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 0 18px;
  color: #8fd9ff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.investment-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.investment-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 15px;
  line-height: 1.35;
}

.investment-card li:last-child {
  border-bottom: 0;
}

.investment-card li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.financing-amenities {
  padding: 0 0 66px;
}

.financing-amenities .section-heading {
  margin-bottom: 28px;
}

.financing-banner {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.financing-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.financing-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 48, 104, 0.72);
}

.financing-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.financing-banner p {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1;
}

.financing-banner h2 {
  max-width: 640px;
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 50px);
}

.contact-page {
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--mist) 48%, var(--white) 100%);
}

.contact-hero {
  position: relative;
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at 78% 46%, rgba(93, 183, 229, 0.1), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, var(--mist) 100%);
}

.contact-hero::after {
  position: absolute;
  right: -8%;
  bottom: 18px;
  left: -8%;
  height: 120px;
  content: "";
  background: repeating-radial-gradient(ellipse at center, rgba(93, 183, 229, 0.16) 0 2px, transparent 2px 18px);
  opacity: 0.34;
  pointer-events: none;
  transform: rotate(-2deg);
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.contact-hero__copy {
  max-width: 520px;
}

.contact-hero__copy h1,
.contact-form-card h2,
.contact-methods .section-heading h2,
.contact-map__card h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-hero__copy h1 {
  color: #1f2937;
  font-size: clamp(46px, 5.6vw, 68px);
}

.contact-hero__copy h1 span,
.contact-map__card h2 span {
  color: var(--secondary);
}

.contact-hero__copy > p:last-child {
  max-width: 500px;
  margin: 26px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.direct-contact-card,
.contact-form-card,
.contact-method-card,
.contact-map__card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(11, 29, 51, 0.08);
}

.direct-contact-card {
  display: grid;
  gap: 22px;
  padding: 34px 38px;
}

.direct-contact-card h2 {
  margin: 0 0 6px;
  color: var(--secondary);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.direct-contact-card__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
}

.direct-contact-card__item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.direct-contact-card__item strong,
.contact-method-card h3 {
  display: block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.direct-contact-card__item span {
  display: block;
  margin-top: 4px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.contact-form-section {
  position: relative;
  z-index: 2;
  padding: 20px 0 58px;
}

.contact-form-card {
  padding: clamp(30px, 5vw, 48px);
}

.contact-form-card h2 {
  color: #1f2937;
  font-size: clamp(34px, 4.5vw, 44px);
}

.contact-form-card > p {
  margin: 8px 0 28px;
  color: #5c6672;
  font-size: 14px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 36px;
}

.contact-form__grid label {
  display: grid;
  gap: 8px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
}

.contact-form__grid input,
.contact-form__grid textarea {
  width: 100%;
  border: 1px solid #d8dde6;
  border-radius: 3px;
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 15px;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form__grid input:focus,
.contact-form__grid textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.contact-form__grid textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form-card .button {
  margin-top: 24px;
}

.contact-methods {
  padding: 0 0 62px;
  background: var(--white);
}

.contact-methods .section-heading {
  margin-bottom: 30px;
}

.contact-methods .section-heading h2 {
  font-size: clamp(36px, 5vw, 46px);
}

.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-method-card {
  display: grid;
  justify-items: center;
  min-height: 260px;
  padding: 28px 22px;
  text-align: center;
}

.contact-method-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

.contact-method-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.contact-method-card p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}

.contact-method-card a {
  align-self: end;
  margin-top: 24px;
  color: var(--secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.contact-method-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.contact-method-card a:hover span {
  transform: translateX(4px);
}

.contact-map-section {
  padding: 0 0 48px;
  background: var(--white);
}

.contact-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

.contact-map__pin {
  position: absolute;
  top: 50%;
  left: 51%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 14px 32px rgba(11, 29, 51, 0.24);
  transform: translate(-50%, -100%);
  pointer-events: none;
}

.contact-map__pin::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 3px;
  background: var(--secondary);
  transform: translateX(-50%) rotate(45deg);
}

.contact-map__pin img {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.contact-map__content {
  position: relative;
  z-index: 2;
  min-height: 470px;
  display: flex;
  align-items: center;
}

.contact-map__card {
  width: min(100%, 330px);
  padding: 34px 32px;
}

.contact-map__card h2 {
  color: #1f2937;
  font-size: clamp(36px, 4vw, 44px);
}

.contact-map__card > p:not(.kicker) {
  margin: 20px 0 24px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
}

.contact-map__card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.contact-map__card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.45;
}

.contact-map__card li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-future-cta {
  padding-top: 0;
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header__inner {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding-block: 16px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero {
    min-height: 570px;
  }

  .stats-card,
  .finance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .stat:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .intro__grid,
  .master__grid,
  .about-split,
  .about-split--hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-copy {
    max-width: 650px;
  }

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

  .about-split .media-frame,
  .about-split .about-video {
    order: 2;
  }

  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .amenity:nth-child(4) {
    border-left: 0;
  }

  .amenity:nth-child(n+4) {
    border-top: 1px solid var(--border);
  }

  .beach-club__inner {
    justify-content: center;
  }

  .master__image {
    aspect-ratio: 2 / 1;
  }

  .future-cta__box {
    grid-template-columns: 90px 1fr;
  }

  .future-cta__button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-strip__grid {
    grid-template-columns: 1fr;
  }

  .contact-strip article {
    padding: 22px 0;
  }

  .contact-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer__links {
    justify-self: center;
    justify-content: center;
  }

  .privacy-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-summary-card {
    max-width: 560px;
  }

  .protection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }

  .business-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-logos img {
    padding: 18px 28px;
  }

  .business-logos img + img {
    border-left: 0;
  }

  .business-logos img:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .business-logos img:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }

  .plan-hero {
    min-height: 500px;
  }

  .plan-hero::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 48%, rgba(255, 255, 255, 0.12) 100%);
  }

  .development-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plan-financing__cards {
    grid-template-columns: 1fr;
  }

  .development-heading {
    max-width: 680px;
  }

  .work-progress__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-progress__viewer iframe,
  .work-progress__viewer video {
    height: clamp(300px, 52vw, 400px);
  }

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

  .financing-showcase__grid,
  .investment-grid,
  .contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-hero__copy {
    max-width: 680px;
  }

  .direct-contact-card {
    max-width: 620px;
  }

  .contact-methods__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-map,
  .contact-map__content {
    min-height: 560px;
  }

  .contact-map__content {
    align-items: flex-start;
    padding-top: 28px;
  }

  .financing-showcase__image,
  .financing-terms {
    border-radius: 10px;
  }

  .financing-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .financing-benefit-card,
  .financing-benefit-card:first-child,
  .financing-benefit-card:last-child {
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: relative;
    z-index: 40;
  }

  .site-header__inner {
    min-height: 86px;
    position: relative;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 18px;
    padding-block: 14px;
  }

  .logo {
    width: min(225px, calc(100vw - 112px));
    max-width: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(13, 71, 161, 0.18);
    border-radius: 6px;
    background: var(--white);
    color: var(--secondary);
    box-shadow: 0 8px 20px rgba(11, 29, 51, 0.08);
  }

  .menu-toggle span {
    position: absolute;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 4px);
    left: 18px;
    right: 18px;
    z-index: 10;
    width: auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(11, 29, 51, 0.16);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav__link {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-radius: 6px;
    padding: 0 14px;
    white-space: normal;
  }

  .main-nav__link:hover,
  .main-nav__link--active {
    background: var(--mist);
  }

  .main-nav__link--active::after {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 48, 92, 0.9) 0%, rgba(0, 58, 112, 0.7) 68%, rgba(0, 28, 58, 0.32) 100%),
      linear-gradient(180deg, rgba(11, 29, 51, 0) 60%, rgba(11, 29, 51, 0.28) 100%);
  }

  .hero__content {
    padding: 56px 0 108px;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 78px);
  }

  .hero__actions,
  .finance-notes {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .stats-wrap {
    margin-top: -58px;
  }

  .stats-card,
  .finance-grid {
    grid-template-columns: 1fr;
  }

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

  .stat,
  .finance-card {
    min-height: 132px;
  }

  .stat + .stat,
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .amenity,
  .amenity:nth-child(4),
  .amenity:nth-child(n+4) {
    border-top: 0;
  }

  .amenity + .amenity {
    border-left: 0;
  }

  .amenity:nth-child(even) {
    border-left: 1px solid var(--border);
  }

  .amenity:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }

  .section-pad {
    padding: 48px 0;
  }

  .about-section {
    padding: 52px 0;
  }

  .about-hero {
    padding-top: 40px;
  }

  .about-copy h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .about-copy h2,
  .location-heading h2,
  .business-heading h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .about-actions,
  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-actions {
    display: grid;
  }

  .about-metrics article + article {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }

  .media-frame--hero,
  .media-frame--wide,
  .about-video {
    aspect-ratio: 1.18 / 1;
  }

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

  .map-frame {
    aspect-ratio: 1.45 / 1;
  }

  .map-frame img {
    object-fit: cover;
  }

  .business-section {
    padding-top: 12px;
  }

  .plan-hero {
    min-height: 560px;
    align-items: start;
  }

  .plan-hero__image {
    object-position: 58% center;
  }

  .plan-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.2) 100%);
  }

  .plan-hero__content {
    padding-top: 46px;
  }

  .master-plan-copy h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .plan-stats-wrap {
    margin-top: -44px;
    margin-bottom: -44px;
  }

  .plan-stats-card {
    grid-template-columns: 1fr;
  }

  .plan-stat {
    justify-content: flex-start;
    min-height: 116px;
    padding: 22px 24px;
  }

  .plan-stat + .plan-stat {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .development-section {
    padding-top: 72px;
  }

  .development-heading h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .availability-map {
    width: calc(100vw - 28px);
    margin-left: calc(50% - 50vw + 14px);
    border-radius: 6px;
  }

  .availability-map.is-zoomable {
    touch-action: none;
    cursor: grab;
  }

  .availability-map.is-zoomable .availability-map__svg {
    pointer-events: none;
  }

  .availability-map.is-zoomed {
    cursor: grabbing;
  }

  .availability-map__legend {
    bottom: 10px;
    max-width: calc(100% - 18px);
    gap: 6px;
    padding: 6px 7px;
    font-size: 9px;
  }

  .availability-map__dot {
    width: 10px;
    height: 10px;
  }

  .availability-map__tooltip {
    display: none;
  }

  .availability-mobile-card {
    position: relative;
    display: block;
    width: calc(100vw - 28px);
    margin: 0 0 30px calc(50% - 50vw + 14px);
    padding: 18px 18px 16px;
    border: 1px solid rgba(11, 29, 51, 0.08);
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(11, 29, 51, 0.12);
    backdrop-filter: blur(10px);
  }

  .availability-mobile-card[hidden] {
    display: none;
  }

  .availability-mobile-card__handle {
    display: block;
    width: 46px;
    height: 4px;
    margin: -5px auto 14px;
    border-radius: 999px;
    background: rgba(11, 29, 51, 0.2);
  }

  .availability-mobile-card h3 {
    margin: 0 0 12px;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: 23px;
    line-height: 1.05;
  }

  .availability-mobile-card dl {
    display: grid;
    grid-template-columns: minmax(78px, auto) 1fr;
    gap: 0;
    margin: 0 0 16px;
    border-top: 1px solid rgba(11, 29, 51, 0.08);
  }

  .availability-mobile-card dt,
  .availability-mobile-card dd {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(11, 29, 51, 0.08);
    font-size: 13px;
    line-height: 1.25;
  }

  .availability-mobile-card dt {
    color: #667085;
    font-weight: 800;
    text-transform: uppercase;
  }

  .availability-mobile-card dd {
    color: #263241;
    font-weight: 800;
    text-align: right;
  }

  .availability-mobile-card[data-status="disponible"] dd[data-status-value] {
    color: #1db954;
  }

  .availability-mobile-card[data-status="apartado"] dd[data-status-value] {
    color: #03c4f2;
  }

  .availability-mobile-card[data-status="vendido"] dd[data-status-value] {
    color: #ff3d00;
  }

  .availability-mobile-card__button {
    width: 100%;
    justify-content: center;
    background: #071b34;
  }

  .plan-financing {
    padding-top: 30px;
  }

  .plan-financing .container {
    padding: 24px 16px;
  }

  .financing-option {
    min-height: 0;
    padding: 28px 22px 22px;
  }

  .plan-financing__action .button {
    width: 100%;
  }

  .work-progress {
    padding: 34px 0 42px;
  }

  .work-progress__gallery {
    gap: 12px;
  }

  .work-progress__viewer iframe,
  .work-progress__viewer video {
    height: 280px;
  }

  .comfort-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comfort-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .financing-hero {
    padding: 46px 0 34px;
  }

  .financing-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .financing-showcase {
    padding-bottom: 34px;
  }

  .financing-showcase__image img {
    min-height: 0;
    aspect-ratio: 1.05 / 1;
  }

  .financing-terms {
    padding: 30px 24px;
  }

  .financing-benefits {
    padding-bottom: 48px;
  }

  .financing-benefits__grid {
    grid-template-columns: 1fr;
  }

  .financing-benefit-card {
    min-height: 140px;
  }

  .investment-section {
    padding-bottom: 52px;
  }

  .investment-card {
    padding: 32px 24px;
  }

  .investment-card li {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    font-size: 14px;
  }

  .financing-amenities {
    padding-bottom: 48px;
  }

  .financing-banner {
    min-height: 360px;
  }

  .contact-hero {
    padding: 48px 0 44px;
  }

  .contact-hero__copy h1 {
    font-size: clamp(45px, 13vw, 58px);
  }

  .direct-contact-card {
    padding: 28px 24px;
  }

  .contact-form-section {
    padding-bottom: 44px;
  }

  .contact-form__grid,
  .contact-methods__grid {
    grid-template-columns: 1fr;
  }

  .contact-method-card {
    min-height: 0;
  }

  .contact-map,
  .contact-map__content {
    min-height: 0;
  }

  .contact-map {
    display: grid;
    overflow: visible;
    background: var(--white);
  }

  .contact-map iframe {
    position: relative;
    order: 2;
    height: 390px;
  }

  .contact-map__pin {
    top: auto;
    bottom: 170px;
    left: 50%;
    z-index: 3;
  }

  .contact-map__card {
    width: 100%;
  }

  .contact-map__content {
    order: 1;
    display: block;
    padding-top: 0;
    padding-bottom: 22px;
  }

  .intro__grid {
    gap: 28px;
  }

  .title-rule {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .title-rule span {
    display: none;
  }

  .beach-club {
    min-height: 520px;
    align-items: end;
  }

  .beach-club__inner {
    padding-block: 30px;
  }

  .club-card {
    padding: 34px 26px 30px;
  }

  .club-card__heading {
    align-items: flex-start;
  }

  .master__image {
    aspect-ratio: 1.35 / 1;
  }

  .future-cta__box {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 18px;
  }

  .future-cta__box img {
    display: none;
  }

  .future-cta__button {
    grid-column: auto;
    width: 100%;
  }

  .contact-strip article {
    align-items: flex-start;
  }

  .privacy-hero {
    padding: 48px 0 26px;
  }

  .privacy-hero__copy h1 {
    font-size: clamp(48px, 16vw, 62px);
  }

  .privacy-summary-card {
    padding: 26px 22px;
  }

  .privacy-content {
    padding-top: 16px;
  }

  .privacy-card {
    padding: 26px 20px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .privacy-section__number {
    width: 32px;
    height: 32px;
  }

  .privacy-section h2 {
    font-size: 30px;
  }

  .privacy-section p,
  .privacy-section ul {
    font-size: 13px;
  }

  .privacy-modal {
    padding: 14px;
  }

  .privacy-modal__dialog {
    max-height: 86vh;
    border-radius: 10px;
  }

  .privacy-modal__header {
    padding: 28px 22px 20px;
  }

  .privacy-modal__body {
    padding: 22px 22px 30px;
  }

  .privacy-modal__body p,
  .privacy-modal__body li {
    font-size: 12px;
  }
}
