@font-face {
  font-family: "CocoGothic";
  src: url("/fonts/CocoGothic-Light.woff2") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CocoGothic";
  src: url("/fonts/CocoGothic-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CocoGothic";
  src: url("/fonts/CocoGothic-Bold.woff2") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Palatino";
  src: url("/fonts/Palatino.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --clr-primary: #066ab2;
  --clr-secondary: #979fbf;
  --clr-bg: #f6f1ef;
  --ff-primary: "CocoGothic";
  --ff-heading: "Palatino";
  --space-xl: 80px;
  --space-l: 50px;
}

body {
  margin: 0;
  padding: 0 !important;
  font-family: var(--ff-primary), sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  text-wrap: balance;
}

a:hover {
  color: #000000;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

#section-ads {
  display: flex;
  justify-content: center;
  width: 100%;
}

#section-ads a {
  width: unset;
  padding: 20px;
}

.place-to-belong {
  padding-top: var(--space-xl);
}

.custom-container {
  margin: 0 auto;
  --max-width: 1200px;
  --padding: 2rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
}

.title {
  font-size: clamp(35px, 5vw, 50px);
  font-family: var(--ff-heading);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.description {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  font-family: var(--ff-primary);
}
.small-text {
  font-size: clamp(12px, 1.5vw, 14px);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Video background */
.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* Navbar */
navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: 40px 0;
  padding-block: 28px;
  background: transparent;
  transition: all 0.35s ease-in-out;
  animation: navbar-fade-down 0.9s ease-in-out both;
}

navbar .logo {
  grid-column: 2;
}

navbar .nav-ctas {
  grid-column: 3;
  justify-self: end;
}

navbar::before,
navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: opacity 0.35s ease-in-out;
  pointer-events: none;
}

navbar::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 1;
}

navbar::after {
  background: #fff;
  opacity: 0;
}

navbar.is-scrolled {
  padding-block: 14px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

navbar.is-scrolled::before {
  opacity: 0;
}

navbar.is-scrolled::after {
  opacity: 1;
}

navbar .logo,
navbar .burger-icon {
  transition:
    filter 0.35s ease-in-out,
    width 0.35s ease-in-out,
    height 0.35s ease-in-out;
}

navbar.is-scrolled .logo {
  width: 55px;
}

navbar.is-scrolled .logo,
navbar.is-scrolled .burger-icon {
  filter: invert(1);
}

navbar.is-scrolled .cta.white-cta {
  background: #f6f1ef;
  color: #000;
}

navbar.is-scrolled .cta.white-cta:hover {
  background: #000;
  color: #fff;
}

@keyframes navbar-fade-down {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

navbar .cta {
  font-size: 16px;
  width: 100%;
}
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  position: relative;
}

.lang-switcher__toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-primary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0;
  transition: color 0.35s ease-in-out;
}

.lang-switcher__chevron {
  transition: transform 0.25s ease;
}

.lang-switcher.is-open .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  background-color: white;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switcher__dropdown a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #000;
  opacity: 0.5;
  transition: opacity 0.2s;
  display: block;
}

.lang-switcher__dropdown a.is-active {
  opacity: 1;
}

.lang-switcher__dropdown a:hover {
  opacity: 1;
}

navbar.is-scrolled .lang-switcher__toggle,
navbar.is-scrolled .lang-switcher__dropdown a {
  color: #000;
}

.cta {
  background: #fff;
  color: #000;
  border: none;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  text-transform: uppercase;
  padding: 18px 14px;
  line-height: 1.5;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.cta:hover {
  background: #000;
  color: #fff;
}

.cta.get-in-touch {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  padding: 16px 13px;
  font-size: 14px;
}

.cta.white-cta {
  background: #fff;
  color: #000;
}

.cta.white-cta:hover {
  background: #000;
  color: #fff;
}

.cta.dark-cta {
  background: #000;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: clamp(16px, 2vw, 25px);
  padding-block: 13px;
}

.cta.dark-cta:hover {
  background: #fff;
  color: #000;
}

.logo {
  width: 115px;
  height: auto;
}

.burger-icon {
  width: 36px;
  height: auto;
  cursor: pointer;
}

/* Message Box */
.message-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 48px 56px;
  text-align: center;
  color: #fff;
  max-width: 600px;
  width: calc(100% - 48px);
}

.message-box__eyebrow {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: 0.8;
}

.message-box__title {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1.1;
}

.message-box__body {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
  margin-top: auto;
}

.hero__scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff 40%, #fff);
  position: relative;
}

.hero__scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-49%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: dotSlide 1.8s ease-in-out infinite;
}

@keyframes dotSlide {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 7px);
    opacity: 0;
  }
}

/* Place to Belong */
.place-to-belong--wrapper {
  margin-bottom: var(--space-xl);
}
.place-to-belong .description {
}

/* Features */
.features {
  padding-top: var(--space-xl);
}

.features-swiper {
  margin-bottom: 40px;
}

.features-pagination {
  display: none;
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.feature img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.feature p {
  margin: 0;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 175px;
}

.features .disclaimer {
  text-align: center;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 300;
  color: #666;
  margin: 0;
}

.resort p{
    max-width: 100%;
}

/*  Exclusive Lifestyle */
.exclusive-lifestyle {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-block: var(--space-xl);
  background-color: var(--clr-bg);
}

.exclusive-lifestyle .custom-container {
  height: 100%;
}

.exclusive-lifestyle__left {
  flex: 0 0 38%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.exclusive-lifestyle__left--inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.exclusive-lifestyle__left--inner .title-wrapper .title {
  margin-bottom: 30px;
}

.exclusive-lifestyle__left .title {
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0;
}

.exclusive-lifestyle__left .description {
  max-width: 260px;
}

.exclusive-lifestyle__right {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 16px;
}

/* Slider nav arrows */
.slider-nav {
  display: flex;
  gap: 8px;
}

.slider-nav__btn {
  background: none;
  border: none;
  color: #000;
  font-size: 25px;
  font-weight: 300;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.slider-nav__btn:hover {
  border-color: #000;
  color: #000;
}

.slider-nav__btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

/* Swiper container */
.lifestyle-swiper {
  width: 100%;
  overflow: hidden;
}

/* Slide card */
.slide-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: 525px;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  color: #fff;
  font-family: var(--ff-primary);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 25px);
  text-transform: uppercase;
}

/* Wellness & Spa */
.wellness-block {
  position: relative;
  overflow: hidden;
}

.wellness-spa {
  background-image: url("/img/spa.png");
  background-size: cover;
  background-position: center;
  padding-block: var(--space-xl);
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

.wellness-spa__content {
  text-align: end;
  color: #fff;
}

.wellness-spa__content .title {
  margin: 0;
}

.wellness-spa__content .description {
  font-size: clamp(18px, 2vw, 25px);
}

/* Spa Features */
.spa-features {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.spa-features__left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.spa-features__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.spa-features__img {
  background-image: url("/img/pool.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
}

.spa-features-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
  padding: var(--space-l);
}

.spa-features-list span {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
}

/* Residences */
.residences-section {
  padding-top: var(--space-xl);
  background: var(--clr-bg);
}

.residences-section .residences-wrapper {
  margin-bottom: var(--space-xl);
}

.residences-section .description {
  margin-bottom: 30px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 400;
  max-width: 575px;
}

.residences-section .small-text {
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
}

.residences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-inline-end: 2rem;
  margin: 0 auto;
}

.residences-images {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.residences-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.residences-image.is-active {
  opacity: 1;
}

.residences-list {
  display: flex;
  flex-direction: column;
}

.residence {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 28px 0;
  text-align: center;
  cursor: pointer;
  color: #b8b3b0;
  transition: color 0.3s ease;
  font-family: var(--ff-primary);
}

.residence:last-child {
  border-bottom: none;
}

.residence h6 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.residence p {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}

.residence.is-active {
  color: #000;
}

/* Map Section */
.map-section {
  position: relative;
  min-height: 1100px;
  overflow: hidden;
}

.map-section__map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.map-section__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-section__left {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
}

.map-section__title {
  margin-bottom: var(--space-l);
}

.map-section__tabs-wrap {
  display: flex;
  gap: 40px;
  flex: 1;
}

.map-section__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 150px;
}

.map-section__tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #000;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.25s ease;
  user-select: none;
}
.map-section__tab:last-child {
  border-bottom: none;
}

.map-section__tab.is-active {
  opacity: 1;
}

.map-section__tab:hover {
  opacity: 0.7;
}

.map-section__tab.is-active:hover {
  opacity: 1;
}

.map-section__tab img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.map-section__tab span {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  text-transform: uppercase;
}

.map-section__panels {
  padding-top: 14px;
}

.map-section__panel {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 10px;
}

.map-section__panel.is-active {
  display: flex;
}

.map-section__panel li {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.map-section__panel li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
}

/* Gallery */
.gallery {
  margin-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background: linear-gradient(180deg, #f6f1ef 0%, #f3efe6 100%);
}

.gallery-swiper {
  width: 100%;
  overflow: hidden;
  padding-inline: 2rem;
}

.gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gallery-controls {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 1.5px;
  border-radius: 0;
  background: #000;
  opacity: 0.25;
  transition: opacity 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.gallery-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 40px;
}

@media (max-width: 991px) {
  .exclusive-lifestyle {
    flex-direction: column;
    padding-bottom: 0;
    text-align: center;
  }

  .exclusive-lifestyle__left {
    flex: none;
    width: 100%;
    padding-bottom: 32px;
  }

  .exclusive-lifestyle__right {
    width: 100%;
    padding: 0 0 var(--space-xl);
    flex-direction: column;
    align-items: flex-end;
  }
  .exclusive-lifestyle__left .description {
    max-width: 100%;
  }

  .exclusive-lifestyle__left--inner {
    align-items: center;
    justify-content: space-between;
    gap: 11px;
  }
  .logo {
    width: 75px;
  }
  .burger-icon {
    width: 18px;
  }
}

@media (max-width: 768px) {
  .custom-container {
    --padding: 20px;
  }

  navbar {
    padding: 20px;
  }

  .logo {
    width: 65px;
  }
  navbar.is-scrolled .logo {
    width: 45px;
  }
  navbar.is-scrolled {
    padding-block: 10px;
  }

  .nav-ctas .cta {
    display: none;
  }

  .place-to-belong {
    text-align: center;
  }

  .residences-section {
    padding-block: var(--space-xl) var(--space-l);
    text-align: center;
  }

  .map-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .map-section__map {
    position: relative;
    height: 300px;
    order: 2;
  }

  .map-section__map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #fff 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }

  .map-section__left {
    order: 1;
    max-width: 100%;
    width: 100%;
    padding: var(--space-xl) 0;
  }

  .map-section__tabs-wrap {
    flex-direction: column;
    gap: 24px;
  }
  .features .custom-container {
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
  .features-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }

  .feature.swiper-slide {
    width: 160px;
    flex-shrink: 0;
  }

  .features-swiper {
    padding-bottom: 36px !important;
  }

  .features-pagination {
    display: block;
    text-align: center;
    margin-top: 16px;
  }

  .features-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #000;
    opacity: 0.2;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: opacity 0.2s;
  }

  .features-pagination .swiper-pagination-bullet-active {
    opacity: 1;
  }

  .feature p {
    line-height: 1.2;
  }

  .cta.white-cta {
    font-size: 10px;
    padding: 11px 14px;
  }

  .cta.get-in-touch {
    font-size: 9px;
    padding: 14px 10px;
  }
  .wellness-spa {
    min-height: 100svh;
    z-index: 1;
  }
  .spa-features__left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    min-height: auto;
    z-index: 2;
  }
  .spa-features__right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    z-index: 3;
  }
  .spa-features-list {
    gap: 18px;
    line-height: 1.2;
    padding: var(--space-l) 24px;
  }

  .residences {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-inline: 2rem;
  }

  .slide-card {
    max-height: 300px;
  }

  .gallery-swiper .swiper-slide {
    height: 400px;
  }

  .slider-nav {
    display: none;
  }
}
