:root {
  color-scheme: light;
  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-soft: #f4efe5;
  --surface-muted: #ece6d8;
  --ink: #0e263a;
  --ink-soft: rgba(14, 38, 58, 0.72);
  --line: rgba(14, 38, 58, 0.12);
  --accent: #c89d52;
  --yellow: #f6c51b;
  --hero-pill-bg: #f6c51b;
  --navy: #0b2d4b;
  --shadow: 0 24px 70px rgba(11, 45, 75, 0.07);
  --container: 1600px;
  --space-xs: clamp(12px, 1vw, 20px);
  --space-sm: clamp(20px, 2vw, 40px);
  --space-md: clamp(40px, 4vw, 80px);
  --space-lg: clamp(80px, 8vw, 160px);
  --font-bump: 2px;
  --title-trim: 2px;
  --nav-trim: 1px;
  --transition: 700ms cubic-bezier(.2, .7, 0, 1);
  --fs-small: clamp(14px, 1vw, 18px);
  --fs-hero-note: calc(0.92rem + var(--font-bump));
  --fs-title: calc(clamp(42px, 7vw, 140px) + var(--font-bump));
  --fs-section-title: calc(5.7rem + var(--font-bump));
  --fs-section-title-xl: calc(7rem + var(--font-bump));
  --fs-facilities-title: calc(4rem + var(--font-bump));
  --fs-body: calc(clamp(16px, 1.2vw, 22px) + var(--nav-trim));
  --lh-body: 1.78;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: var(--fs-body);
  background:
    radial-gradient(circle at top, rgba(209, 199, 176, 0.12), transparent 28%),
    var(--bg);
  color: var(--ink);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  touch-action: pan-x pan-y;
  overscroll-behavior: none; /* mencegah bounce scroll di tepi halaman */
}

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

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

button,
a,
img,
.button,
.brand,
.topbar {
  forced-color-adjust: none;
}

.site-shell {
  overflow: clip;
}

.section {
  width: min(92%, var(--container));
  margin-inline: auto;
  padding: var(--space-lg) 0;
}

.text-center{
  text-align: center;
}

#about{
  margin-top: -45px;
}

.section.p-0{
  padding-top: 0;
  padding-bottom: 0;
}

.section.p-t-0, .p-t-0{
  padding-top: 0 !important;
}

.section.p-b-0, .p-b-0{
  padding-bottom: 0 !important;
}

.p-b-30{
  padding-bottom: 30px;
}

.topbar {
  position: fixed;
  inset: 0px 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.topbar.is-scrolled {
  background: rgba(248, 244, 236, 1);
  border-color: rgba(14, 38, 58, 0.08);
  backdrop-filter: blur(18px);
  padding-inline: 18px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.topbar.is-scrolled.is-hidden-scroll {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

.topbar.is-fullscreen {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

.brand {
  width: 122px;
  flex: 0 0 auto;
}

.brand img {
  filter: brightness(1);
}

.topnav {
  display: flex;
  gap: 20px;
  font-size: calc(var(--fs-small) + var(--nav-trim));
  font-weight: 600;
  letter-spacing: 0.025em;
  color: rgba(255, 255, 255, 0.95);
}

.topbar.is-scrolled .topnav {
  color: var(--navy);
}

.topnav a {
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.topnav a:hover::after,
.topnav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topnav a.is-active::after,
.topnav a[aria-current="location"]::after {
  background: var(--yellow);
  transform: scaleX(1);
  transform-origin: left;
}

.topnav__mobile-link,
.mobile-menu-toggle,
.mobile-menu-backdrop {
  display: none;
}

.mobile-menu-toggle {
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  color: #ffffff;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  transform: translateY(-1px);
}

.mobile-menu-toggle img {
  width: 18px;
  height: 18px;
}

.u-hidden-visually {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.035em;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
}

.topbar.is-scrolled .button--ghost {
  border-color: var(--navy);
  color: var(--navy);
}

.button--text {
  border-color: transparent;
  background: transparent;
  color: var(--navy);
  padding-inline: 0;
  min-height: auto;
}

.preloader {
  position: absolute;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: transparent;
  transition: opacity 650ms ease, visibility 650ms ease;
}

.preloader__inner {
  text-align: center;
}

.preloader__wave {
  width: 75px;
  height: 75px;
  border: 0;
  border-radius: 50%;
  margin: 0 auto 14px;
  animation: spin 0.9s linear infinite;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='46' fill='none' stroke='white' stroke-opacity='.35' stroke-width='4'/%3E%3Ccircle cx='50' cy='50' r='46' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-dasharray='72 289' transform='rotate(-90 50 50)'/%3E%3C/svg%3E") center / contain no-repeat;
  color-scheme: light;
  forced-color-adjust: none;
  -webkit-text-fill-color: #fff;
  filter: none;
  opacity: 1;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  --hero-reveal-duration: 3000ms;
  width: 100%;
  overflow: hidden;
  padding: clamp(22px, 3vw, 38px) min(44px, 4vw) clamp(20px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(14px, 2.2vh, 26px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #9fbfd0;
  clip-path: inset(
    var(--hero-clip-top, 0%)
    var(--hero-clip-side, 0%)
    var(--hero-clip-bottom, 0%)
    var(--hero-clip-side, 0%)
    round var(--hero-radius, 0px)
  );
  transform: scale(var(--hero-scale, 1)) translate3d(0, var(--hero-shift, 0px), 0);
  transform-origin: center center;
  will-change: clip-path, transform;
  box-shadow: 0 26px 80px rgba(11, 45, 75, 0.14);
}

.hero-slider__track,
.hero-slide,
.hero-video,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider__track {
  z-index: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 900ms ease,
    visibility 900ms ease,
    transform 1200ms cubic-bezier(.2, .7, 0, 1);
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(132, 171, 194, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(13, 49, 79, 0.36));
}

.hero-top,
.hero-center,
.hero-bottom {
  position: relative;
  z-index: 1;
}

.hero-top,
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-top {
  padding-top: 10px;
}

.hero-bottom {
  opacity: var(--hero-bottom-opacity, 1);
  transform: translate3d(0, var(--hero-bottom-shift, 0px), 0);
  transform-origin: center bottom;
  transition: opacity 220ms ease, transform 320ms cubic-bezier(.2, .7, 0, 1);
  pointer-events: var(--hero-bottom-events, auto);
}

.hero-lang,
.hero-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
}

.hero-lang span {
  opacity: 0.45;
}

.hero-pill,
.hero-book,
.hero-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-book{
  font-size: calc(12px + var(--font-bump));
}

.hero-dot {
  width: 44px;
  min-width: 44px;
  padding: 0;
  font-size: calc(1.05rem + var(--font-bump));
}

.hero-dot__icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.hero-center {
  display: grid;
  flex: 1 1 auto;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: clamp(44px, 8vh, 118px) 0 clamp(28px, 4vh, 78px);
}

.hero-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: calc(0.72rem + var(--font-bump));
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  width: min(42vw, 425px);
  overflow: hidden;
}

.hero-title-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(38, 67, 90, 0.16));
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 14%, 0);
  transition:
    clip-path var(--hero-reveal-duration) cubic-bezier(.16, 1, .3, 1),
    transform var(--hero-reveal-duration) cubic-bezier(.16, 1, .3, 1);
}

.hero-title.is-visible .hero-title-logo {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
}

.hero-subtitle {
  max-width: 38ch;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-body);
  line-height: 1.78;
}

.hero-subtitle--pill {
  display: block;
  justify-self: center;
  width: auto;
  max-width: none;
  color: var(--navy);
}

.hero-subtitle__pill-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 36px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(228, 222, 172, 0);
  background: rgba(228, 222, 172, 0);
  backdrop-filter: blur(12px);
  /*color: #e4deac;*/
  color: #f6c51b;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.155em;
  line-height: 1;
  text-transform: uppercase;
}

@media (min-width: 1440px) {
  .hero-subtitle {
    max-width: 38ch;
    font-size: 1.14rem;
    line-height: 1.72;
  }
}

.hero-note {
  max-width: min(500px, 44vw);
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-hero-note);
  line-height: 1.62;
  backdrop-filter: blur(18px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-scroll {
  position: relative;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: heroFadeUp var(--hero-reveal-duration) cubic-bezier(.16, 1, .3, 1) 240ms forwards;
}

.hero-scroll span {
  position: relative;
  top: -3px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
}

.hero-slider-nav {
  position: absolute;
  right: 0px;
  bottom: 45px;
  display: grid;
  gap: 10px;
  width: min(100%, 430px);
  color: rgba(255, 255, 255, 0.92);
}

.hero-slider-nav__count {
  text-align: right;
  padding-right: 7px;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.hero-slider-nav__row {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-left: -4px;
}

.hero-slider-nav__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.hero-slider-nav__button:hover,
.hero-slider-nav__button:focus-visible {
  color: #ffffff;
}

.hero-slider-nav__button svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.hero-slider-nav__line {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.hero-slider-nav__line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--hero-slider-progress, 33.333%);
  background: rgba(255, 255, 255, 0.95);
  transition: width 420ms ease;
}

.hero-slider-nav__title {
  margin: 0;
  margin-right: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: calc(clamp(1.2rem, 2vw, 1.7rem) + var(--font-bump) - var(--title-trim));
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-align: right;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section.no-top {
  padding-top: 0;
}

.section__lead {
  max-width: 100%;
  margin-bottom: 15px;
}

.neighbourhood-section > .section__lead {
  margin-inline: auto;
  text-align: center;
}

.section__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: calc(clamp(2.3rem, 4vw, 3.5rem) + var(--font-bump) - var(--title-trim));
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--navy);
  text-wrap: balance;
  --split-step: 120ms;
}

.section__title--xl {
  font-size: calc(var(--fs-section-title-xl) - var(--title-trim));
}

.section__title--split {
  max-width: 540px;
}

.manifesto__copy p,
.section__text p,
.concept__content p,
.suite-card p,
.service-row p,
.panorama__copy p,
.cta__panel p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-soft);
}

.manifesto__copy h2{
  font-size: calc(clamp(3rem, 4.5vw, 4rem) + var(--font-bump));
}

.manifesto__copy p{
  font-size: calc(clamp(16px, 1.2vw, 22px) - var(--font-bump));
}

.manifesto__body,
.section__split,
.panorama {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.manifesto__body{
  gap: 0px;
  align-items: stretch;
}

.manifesto__copy {
  width: min(100%, 500px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: left;
}

.manifesto__intro {
  margin: 0;
  max-width: 36ch;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--navy);
}

.manifesto__image,
.concept__image,
.panorama__media,
.gallery-grid__item,
.suite-card img,
.service-row img,
.image-band__item {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.manifesto__image img,
.concept__image img,
.panorama__media img,
.gallery-grid__item img,
.suite-card img,
.service-row img,
.image-band__item img {
  height: 100%;
  object-fit: cover;
}

#overview .manifesto__body {
  align-items: stretch;
}

#overview .manifesto__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

#overview .manifesto__image {
  margin: 0;
  min-height: 0;
  height: 100%;
  width: 100%;
}

#overview .section__lead {
  margin-bottom: 0;
}

#overview .manifesto__intro {
  margin: 0;
}

.image-band {
  width: min(1400px, calc(100vw - 40px));
}

.image-band__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.95fr;
  gap: 24px;
}

.image-band__item {
  min-height: 520px;
}

.manifesto{
  padding-left: 30px;
  padding-right: 30px;
}

.facilities-section {
  background: linear-gradient(180deg, #efeae1 0%, #e7e2d8 100%);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 30px;
  padding-right: 30px;
}

.facilities-section__content {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(520px, 1.05fr);
  gap: 54px;
  align-items: start;
  width: 100%;
  padding: 0 48px;
}

.facilities-section__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: calc(var(--fs-facilities-title) - var(--title-trim));
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.hero-subtitle,
.facilities-section__title,
.suite-card__content h3,
.service-row h3 {
  --split-step: 90ms;
}

.facilities-section__title-accent {
  color: var(--navy);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 280px));
  gap: 18px;
  justify-content: center;
  align-self: center;
}

.facilities-item {
  text-align: center;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  padding: 24px 18px;
  border: 1px solid rgba(14, 38, 58, 0);
  background: rgba(255, 252, 245, 0);
  backdrop-filter: blur(10px);
}

.facilities-item img {
  width: 60px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto;
}

.facilities-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
  text-wrap: balance;
}

.map-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  /*background: #80a4c8;*/
}

.map-section > .section__lead,
.map-section > .map-section__inner {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.map-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/bg-map-right.png") no-repeat center center / cover;
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.map-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.map-section__media {
  overflow: hidden;
}

.map-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-section__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-section__intro {
  margin: 0;
  max-width: 34ch;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--navy);
}

.map-section__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: calc(var(--fs-facilities-title) - var(--title-trim));
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--navy);
  --split-step: 120ms;
}

.map-section__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.map-stat {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 12px;
  padding: 0;
  border: 1px solid rgba(14, 38, 58, 0);
  background: rgba(255, 252, 246, 0);
  backdrop-filter: blur(8px);
}

.map-stat__value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.map-stat__value span {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  vertical-align: middle;
}

.map-stat__label {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: balance;
}

.section__side {
  max-width: 560px;
}

.section__text {
  max-width: 520px;
  margin-left: auto;
}

.section__text p:first-child,
.concept__content p:first-of-type,
.panorama__copy p:first-of-type,
.cta__panel p:first-of-type {
  margin-top: 0;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.72fr;
  gap: 28px;
  align-items: center;
}

.concept__image--large {
  min-height: 760px;
}

.concept__image--small {
  min-height: 420px;
  align-self: end;
}

.concept__content {
  padding-inline: 18px;
}

.suite-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.suite-card {
  display: grid;
  gap: 18px;
}

.suite-card img {
  aspect-ratio: 0.9;
}

.suite-card__content span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.suite-card__content h3,
.service-row h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
}

.suite-card__content p,
.service-row p {
  margin: 0;
}

.section__split--top {
  align-items: start;
}

.service-stack {
  display: grid;
  gap: 34px;
}

.service-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.service-row img {
  aspect-ratio: 1 / 1;
}

.panorama {
  align-items: center;
}

.panorama__media {
  min-height: 720px;
}

.panorama__copy {
  max-width: 460px;
  margin-inline: auto;
}

.gallery-scroll {
  position: relative;
  width: 100%;
  min-height: 600svh;
  background: #111;
}

.gallery-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.gallery-scroll__sticky .section__lead{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  text-align: center;
  padding: 120px 0;
}

.gallery-scroll__sticky .section__lead h2{
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  font-size: .86rem;
  line-height: 1.6;
  opacity: .8;
  color: white;
  letter-spacing: .3px;
}

.gallery-scroll__slides {
  position: absolute;
  inset: 0;
}

.gallery-scroll.is-out-of-view .gallery-scroll__slides {
  display: none;
}

.gallery-scroll__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  --gallery-slice-count: 9;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.gallery-scroll__slice-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--gallery-slice-count), minmax(0, 1fr));
  pointer-events: none;
}

.gallery-scroll__slice {
  min-width: 0;
  height: 100%;
  transform: scaleX(1);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 249, 238, 0.14) 0,
      rgba(255, 249, 238, 0.14) 14px,
      rgba(214, 198, 168, 0.05) 14px,
      rgba(214, 198, 168, 0.05) 20px
    ),
    linear-gradient(90deg, rgba(247, 242, 231, 0.98) 0%, rgba(223, 211, 188, 0.92) 100%);
  box-shadow:
    inset -1px 0 0 rgba(164, 140, 100, 0.12),
    inset 1px 0 0 rgba(255, 250, 240, 0.2);
}

.gallery-scroll__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 17, 28, 0.1) 0%, rgba(8, 17, 28, 0.08) 26%, rgba(8, 17, 28, 0.07) 74%, rgba(8, 17, 28, 0.44) 100%),
    linear-gradient(180deg, rgba(8, 17, 28, 0.12), rgba(8, 17, 28, 0.1));
}

.gallery-scroll__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-scroll__slide img,
.gallery-scroll__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.gallery-scroll__slide img {
  transform: scale(1.06);
  transform-origin: center center;
  transition: transform 1200ms cubic-bezier(.2, .72, .18, 1);
}

.gallery-scroll__slide.is-active img {
  transform: scale(1);
}

.gallery-scroll__slide.is-forward .gallery-scroll__slice {
  transform-origin: left center;
}

.gallery-scroll__slide.is-backward .gallery-scroll__slice {
  transform-origin: right center;
}

.gallery-scroll__slide.is-revealing.is-forward .gallery-scroll__slice {
  animation: gallerySliceReveal 720ms cubic-bezier(.22, .72, .18, 1) forwards;
  animation-delay: calc(var(--slice-order) * 34ms);
}

.gallery-scroll__slide.is-revealing.is-backward .gallery-scroll__slice {
  animation: gallerySliceReveal 720ms cubic-bezier(.22, .72, .18, 1) forwards;
  animation-delay: calc(var(--slice-order-reverse) * 34ms);
}

.gallery-scroll__overlay {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100vw - 72px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(620px, 792px) minmax(0, 1fr);
  align-items: center;
  padding-top: 56px;
  padding-bottom: 60px;
  gap: 30px;
}

.gallery-scroll__meta {
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.gallery-scroll__overlay > .gallery-scroll__meta:last-of-type {
  align-items: flex-end;
  text-align: right;
}

.gallery-scroll__card-kicker,
.gallery-scroll__hint,
.gallery-scroll__count {
  margin: 0;
}

.gallery-scroll__card-kicker {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-scroll__count {
  margin-top: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-scroll__card {
  grid-column: 2;
  align-self: start;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 8px 28px 0px;
  background: rgba(239, 235, 223, 0);
  color: white;
  text-align: center;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0);
  /*backdrop-filter: blur(0px);*/
  overflow: hidden;
  transition:
    height 760ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 520ms cubic-bezier(.22, 1, .36, 1),
    transform 520ms cubic-bezier(.22, 1, .36, 1);
  will-change: height;
}

.gallery-scroll__title {
  margin: 18px 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: calc(clamp(2.3rem, 4vw, 3.5rem) - var(--title-trim));
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.gallery-scroll__card-media {
  aspect-ratio: 1.48;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.gallery-scroll__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform, clip-path;
}

.gallery-scroll__card-text {
  display: none;
  margin: 22px auto 0;
  max-width: 28ch;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-scroll__card.is-content-revealing {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0);
}

.gallery-scroll__card.is-content-revealing .gallery-scroll__card-kicker,
.gallery-scroll__card.is-content-revealing .gallery-scroll__title,
.gallery-scroll__card.is-content-revealing .gallery-scroll__card-text {
  animation-duration: 720ms;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-fill-mode: both;
}

.gallery-scroll__card.is-content-revealing .gallery-scroll__card-media {
  animation: galleryCardMediaMaskReveal 820ms cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: 140ms;
}

.gallery-scroll__card.is-content-revealing .gallery-scroll__card-media img {
  animation: galleryCardImageReveal 1200ms cubic-bezier(.2, .7, 0, 1) both;
  animation-delay: 180ms;
}

.gallery-scroll__card.is-forward.is-content-revealing .gallery-scroll__card-kicker,
.gallery-scroll__card.is-forward.is-content-revealing .gallery-scroll__title,
.gallery-scroll__card.is-forward.is-content-revealing .gallery-scroll__card-text {
  animation-name: galleryCardMaskRevealVertical;
}

.gallery-scroll__card.is-backward.is-content-revealing .gallery-scroll__card-kicker,
.gallery-scroll__card.is-backward.is-content-revealing .gallery-scroll__title,
.gallery-scroll__card.is-backward.is-content-revealing .gallery-scroll__card-text {
  animation-name: galleryCardMaskRevealVertical;
}

.gallery-scroll__card.is-content-revealing .gallery-scroll__card-kicker {
  animation-delay: 0ms;
}

.gallery-scroll__card.is-content-revealing .gallery-scroll__title {
  animation-delay: 60ms;
}

.gallery-scroll__card.is-content-revealing .gallery-scroll__card-text {
  animation-delay: 260ms;
}

.gallery-scroll__hint {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  pointer-events: none;
  display: inline-flex;
  justify-content: flex-start;
  width: max-content;
  min-width: 200px;
  --gallery-hint-x: 0px;
  --gallery-hint-y: 0px;
  transform: translate3d(var(--gallery-hint-x), var(--gallery-hint-y), 0);
  transition: transform 180ms ease-out, opacity 150ms ease, visibility 150ms ease;
  will-change: transform, opacity;
  opacity: 0;
  visibility: hidden;
}

.gallery-scroll__hint,
.gallery-scroll__hint::before,
.gallery-scroll__hint::after,
.gallery-scroll__hint *,
.gallery-scroll__hint *::before,
.gallery-scroll__hint *::after {
  box-sizing: content-box;
}

.gallery-scroll__hint.is-pointer-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 150ms ease, visibility 150ms ease;
}

.gallery-scroll__hint.is-suppressed {
  opacity: 0;
  visibility: hidden;
}

.gallery-scroll__hint-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(0px);
  box-shadow: 0 16px 40px rgba(6, 19, 32, 0);
  white-space: nowrap;
}

.gallery-scroll__skip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  transition: color 200ms ease;
  pointer-events: auto;
  cursor: pointer;
  margin-left: auto;
  padding: 8px 0;
  min-height: auto;
  border-radius: 0;
}

.gallery-scroll__skip:hover {
  background: transparent;
  color: #fff;
}

.gallery-scroll__progress {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  width: min(560px, calc(100vw - 80px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: auto;
}

.gallery-scroll__nav-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 0;
  transition: color 220ms ease;
  border: 0px !important;
  cursor: pointer;
}

.gallery-scroll__nav-button:hover {
  color: #fff;
}

.gallery-scroll__nav-button svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.gallery-scroll__fullscreen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}

.gallery-scroll__fullscreen:hover {
  color: #fff;
  transform: scale(1.06);
}

.gallery-scroll__fullscreen svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.gallery-scroll__slide:fullscreen,
.gallery-scroll__slide:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  background: #000;
}

.gallery-scroll__slide:fullscreen img,
.gallery-scroll__slide:-webkit-full-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-scroll__sticky:fullscreen,
.gallery-scroll__sticky:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  background: #000;
}

.gallery-scroll__sticky:fullscreen .gallery-scroll__slides,
.gallery-scroll__sticky:-webkit-full-screen .gallery-scroll__slides {
  position: absolute;
  inset: 0;
}

.gallery-scroll__sticky:fullscreen .gallery-scroll__slide img,
.gallery-scroll__sticky:-webkit-full-screen .gallery-scroll__slide img {
  object-fit: contain;
}

.gallery-scroll__sticky:fullscreen .gallery-scroll__progress,
.gallery-scroll__sticky:-webkit-full-screen .gallery-scroll__progress {
  z-index: 5;
}

.gallery-scroll__sticky:fullscreen .to-top,
.gallery-scroll__sticky:-webkit-full-screen .to-top {
  z-index: 6;
}

.gallery-scroll__progress-track {
  position: relative;
  flex: 1;
  height: 2px;
}

.gallery-scroll__progress-line,
.gallery-scroll__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
}

.gallery-scroll__progress-line {
  width: 100%;
  background: rgba(255, 255, 255, 0.26);
}

.gallery-scroll__progress-fill {
  width: 0%;
  background: var(--yellow);
  transition: width 180ms linear;
}

@keyframes gallerySliceReveal {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes galleryCardMaskRevealVertical {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 14px, 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes galleryCardMediaMaskReveal {
  0% {
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 18px, 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes galleryCardImageReveal {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.usp-section {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 30px;
  padding-right: 30px;
  overflow: hidden;
}

.usp-section__bg {
  opacity: 0.16;
  pointer-events: none;
}

.usp-section .section__lead {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  margin-inline: auto;
  text-align: center;
}

.usp-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin-inline: auto;
}

.service-row__copy {
  display: grid;
  gap: 14px;
}

.facility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.facility-list li {
  color: var(--ink-soft);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.facility-list span {
  color: var(--accent);
  font-weight: 600;
  margin-right: 6px;
}

.facilities-masterplan .section__split--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.facility-plan__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0 60px;
}

.facility-plan__toggle {
  max-width: 300px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(14, 38, 58, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.facility-plan__toggle.is-active,
.facility-plan__toggle:hover,
.facility-plan__toggle:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.facility-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: center;
}

.facility-plan__legend {
  display: grid;
  gap: 18px;
  align-content: start;
}

.facility-plan__legend-group {
  padding: 0;
  border: 1px solid rgba(14, 38, 58, 0);
  background: rgba(255, 252, 245, 0.24);
  backdrop-filter: blur(8px);
}

.facility-plan__legend-group.is-hidden {
  display: none;
}

.facility-plan__legend-title {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.facility-plan__legend-list {
  column-count: 2;
  column-gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.facility-plan__legend-list li {
  break-inside: avoid;
  margin: 0 0 4px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.facility-plan__legend-list span {
  color: var(--navy);
  font-weight: 600;
  margin-right: 6px;
}

.facility-plan__stage {
  position: relative;
  min-width: 0;
  background: transparent;
}

.facility-plan__image {
  display: block;
  width: 100%;
  height: auto;
}

.facility-plan__compass {
  position: absolute;
  top: 22px;
  right: 35%;
  width: 74px;
  height: auto;
  z-index: 2;
}

.facility-plan__beach {
  position: absolute;
  bottom: -45px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: rgba(14, 38, 58, 0.78);
}

.facility-hotspot {
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: transparent;
}

.facility-hotspot span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.facility-hotspot strong {
  position: absolute;
  z-index: 4;
  left: calc(100% + 10px);
  top: 50%;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: max-content;
  max-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-4px);
  white-space: nowrap;
  padding: 9px 14px;
  background: #0e263a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(11, 45, 75, 0.26);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.facility-hotspot.is-ground span {
  background: #2f93d5;
}

.facility-hotspot.is-ground strong {
  background: #2f93d5;
}

.facility-hotspot.is-level8 span {
  background: #ef684f;
}

.facility-hotspot.is-level8 strong {
  background: #ef684f;
}

.facility-hotspot:hover,
.facility-hotspot:focus-visible,
.facility-hotspot.is-active {
  z-index: 10;
}

.facility-hotspot:hover span,
.facility-hotspot:focus-visible span,
.facility-hotspot.is-active span {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(11, 45, 75, 0.18);
}

.facility-hotspot:hover strong,
.facility-hotspot:focus-visible strong,
.facility-hotspot.is-active strong {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.facility-hotspot.is-hidden {
  display: none;
}

.layout-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.52fr);
  gap: 24px;
  align-items: start;
}

.layout-overview__plan {
  position: relative;
  overflow: hidden;
  background: #f7f4ee;
  box-shadow: var(--shadow);
}

.layout-overview__keyplan {
  position: absolute;
  top: 22px;
  left: 22px;
  width: min(34%, 280px);
  max-width: 100%;
  background: rgba(255, 255, 255, 0.82);
  padding: 10px;
  box-shadow: 0 12px 24px rgba(11, 45, 75, 0.12);
}

.layout-overview__cards {
  display: grid;
  gap: 18px;
}

.layout-overview__card {
  padding: 24px 22px;
  border: 1px solid rgba(14, 38, 58, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.layout-overview__card span,
.floor-plan-display__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.layout-overview__card h3,
.floor-plan-display__info h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
}

.layout-overview__card p {
  margin: 0;
  color: var(--ink-soft);
}

.floor-plans-section {
  color: #fff;
  padding: 0;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, rgba(11, 45, 75, 0.96), rgba(8, 33, 56, 0.99));
}

.floor-plan-display {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  min-height: 100vh;
}

.floor-plan-display__info {
  padding: clamp(60px, 10vw, 120px) clamp(30px, 6vw, 80px);
  display: flex;
  flex-direction: column;
}

.floor-plan-display__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.floor-plan-display__header .section__title {
  color: #efebdf;
  margin: 0;
}

.floor-plan-display__count {
  width: 55px;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(239, 235, 223, 0.8);
  margin-top: 12px;
}

.floor-plan-display__intro {
  color: rgba(239, 235, 223, 0.8);
  margin: 0 0 60px;
  max-width: 480px;
}

.floor-plan-selector {
  display: flex;
  flex-direction: column;
  margin: 0 0 auto;
}

.floor-plan-selector__item {
  position: relative;
}

.floor-plan-selector__btn {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  width: 100%;
  padding: 16px 118px 16px 0;
  border: none;
  border-bottom: 1px solid rgba(239, 235, 223, 0.2);
  background: transparent;
  color: #efebdf;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 300ms ease;
}

.floor-plan-selector__item:first-child .floor-plan-selector__btn {
  border-top: 1px solid rgba(239, 235, 223, 0.2);
}

.floor-plan-selector__num {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: opacity 300ms ease;
}

.floor-plan-selector__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floor-plan-selector__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
}

.floor-plan-selector__size {
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
  transition: opacity 300ms ease;
}

.floor-plan-selector__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.floor-plan-selector__btn.is-active,
.floor-plan-selector__btn:hover {
  /*background: rgba(239, 235, 223, 0.9);*/
  background: var(--yellow);
  color: #5b574d;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 0;
  border-color: transparent;
}

.floor-plan-selector__btn.is-active .floor-plan-selector__num,
.floor-plan-selector__btn:hover .floor-plan-selector__num,
.floor-plan-selector__btn.is-active .floor-plan-selector__size,
.floor-plan-selector__btn:hover .floor-plan-selector__size {
  opacity: 1;
}

.floor-plan-selector__actions {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
}

.floor-plan-selector__vr-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(239, 235, 223, 0.16);
  border-radius: 999px;
  color: rgba(239, 235, 223, 0.82);
  background: rgba(239, 235, 223, 0.05);
  backdrop-filter: blur(10px);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.floor-plan-selector__vr-link:hover,
.floor-plan-selector__vr-link:focus-visible {
  color: #5b574d;
  background: rgba(246, 197, 27, 0.96);
  border-color: rgba(246, 197, 27, 0.96);
  transform: scale(1.02);
}

.floor-plan-selector__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
  right: 4px;
  border: 1px solid rgba(239, 235, 223, 0) !important;
  border-radius: 999px;
  color: rgba(239, 235, 223, 0.82);
  background: rgba(239, 235, 223, 0) !important;
  backdrop-filter: blur(10px);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.floor-plan-selector__icon-link:hover,
.floor-plan-selector__icon-link:focus-visible {
  color: #5b574d;
  background: rgba(246, 197, 27, 0.96);
  border-color: rgba(246, 197, 27, 0.96);
  transform: scale(1.03);
}

.floor-plan-selector__icon-link.is-static {
  cursor: default;
}

.floor-plan-selector__btn.is-active + .floor-plan-selector__actions .floor-plan-selector__vr-link,
.floor-plan-selector__btn.is-active + .floor-plan-selector__actions .floor-plan-selector__icon-link {
  color: var(--navy);
  border-color: rgba(11, 45, 75, 0.2);
  background: rgba(11, 45, 75, 0.08);
}

.floor-plan-selector__btn:hover + .floor-plan-selector__actions .floor-plan-selector__vr-link,
.floor-plan-selector__btn:hover + .floor-plan-selector__actions .floor-plan-selector__icon-link,
.floor-plan-selector__btn:focus-visible + .floor-plan-selector__actions .floor-plan-selector__vr-link,
.floor-plan-selector__btn:focus-visible + .floor-plan-selector__actions .floor-plan-selector__icon-link {
  color: var(--navy);
  border-color: rgba(11, 45, 75, 0.2);
  background: rgba(11, 45, 75, 0.08);
}

.floor-plan-selector__vr-link span {
  display: inline-block;
  min-width: 3.2em;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floor-plan-display__action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 60px;
  padding: 16px 24px;
  border: 1px solid rgba(239, 235, 223, 0.4);
  color: #efebdf;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 300ms ease;
}

.floor-plan-display__action:hover {
  background: #efebdf;
  color: #5b574d;
}

.floor-plan-display__stage {
  position: relative;
  background: #eae6d9;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 0px;
  align-items: center;
  justify-items: center;
  padding: 90px 8vw;
}

.floor-plan-keyplan {
  grid-row: 1;
  grid-column: 1;
  justify-self: end;
  position: relative;
  width: 100%;
  z-index: 10;
  margin-bottom: 30px;
}

.floor-plan-keyplan__image {
  width: 100%;
  height: auto;
  display: block;
}

.floor-plan-hotspot {
  position: absolute;
  width: 5%;
  height: 6%;
  transform: translate(-50%, -50%) rotate(-35deg); /* Match angle of Block C */
  cursor: pointer;
  z-index: 15;
  background: transparent;
  transition: background 200ms ease, box-shadow 200ms ease;
  border-radius: 2px;
}

.floor-plan-hotspot:hover,
.floor-plan-hotspot.is-active {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8), inset 0 0 8px rgba(255, 255, 255, 0.9);
}

.floor-plan-tooltip {
  position: absolute;
  top: 0; left: 0; /* Reset for JS transform */
  padding: 6px 10px;
  color: #fff;
  font-size: clamp(9px, 0.8vw, 11px);
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(11, 45, 75, 0.96), rgba(8, 33, 56, 0.99)) !important;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease, visibility 150ms ease;
  z-index: 20;
}

.floor-plan-tooltip.is-active {
  opacity: 1;
  visibility: visible;
}

.floor-plan-panel {
  grid-row: 2;
  grid-column: 1;
  display: grid;
  align-self: start;
  align-items: start;
  justify-items: start;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.96);
  transform-origin: top center;
  transition:
    opacity 420ms ease,
    visibility 420ms ease,
    transform 420ms ease;
}

.floor-plan-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(.75);
  z-index: 2;
}

.floor-plan-panel img {
  align-self: start;
  width: 100%;
  height: 90%;
  max-width: 680px;
  object-fit: contain;
  object-position: top center;
}

.register-section {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background: linear-gradient(180deg, #f7f4ee, #fbfbf8);
}

.register-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  margin-inline: auto;
  overflow: hidden;
  background: rgba(255, 252, 245, 0.66);
  box-shadow: 0 24px 64px rgba(11, 45, 75, 0.08);
}

.register-section__lead {
  width: 100%;
  margin: 0 0 34px;
  text-align: left;
}

.register-section__media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #d5cfbf;
}

.register-section__image {
  width: 100%;
  height: 100%;
  min-height: 780px;
  object-fit: cover;
}

.register-section__panel {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(36px, 4vw, 72px);
  background: rgba(233, 228, 211, 0.88);
  backdrop-filter: blur(12px);
}

.register-section__intro {
  margin: 18px 0 0;
  color: rgba(11, 45, 75, 0.8);
  font-size: 0.98rem;
  line-height: 1.78;
}

.virtual-tour__frame {
  display: block;
  width: 100%;
  border: 0;
  background: #d9e3ea;
}

.virtual-tour__lead {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: center;
}

.virtual-tour__copy {
  display: grid;
  gap: 18px;
}

.virtual-tour__copy p {
  max-width: 68ch;
  margin-inline: auto;
  text-align: center;
}

.virtual-tour__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.virtual-tour-section .panorama {
  display: block;
}

.virtual-tour-section .panorama__media {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  background: #e9e4d3;
  position: relative;
  z-index: 1;
}

.virtual-tour-section .panorama__media--video {
  background: linear-gradient(180deg, rgba(11, 45, 75, 0.96), rgba(8, 33, 56, 0.99));
}

.virtual-tour-section .panorama__media[data-vr-content="360"] {
  display: flex;
  flex-direction: column;
}

.virtual-tour-section .panorama__media[data-vr-content="360"] .virtual-tour__frame {
  flex-grow: 1;
  width: 100%;
  min-height: 720px;
}

.virtual-tour-section .panorama__media.is-hidden {
  display: none !important;
}

.video-wrapper {
  width: 100%;
  max-width: 1428px;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
  box-shadow: var(--shadow);
  display: flex;
  margin: auto;
  z-index: 10;
}

.virtual-tour-section .panorama__media[data-vr-content="brochures"] {
  background: url("./assets/bg-map-right.png") no-repeat center center / cover;
  position: relative;
  padding: 40px;
}

.virtual-tour-section .panorama__media[data-vr-content="video"] {
  padding: 0px;
}

/* VR Tabs Styles */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0px;
  width: 100%;
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.brochure-card {
  border: 1px solid rgba(14, 38, 58, 0);
  background: rgba(255, 252, 245, 0.035);
  backdrop-filter: blur(8px);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.brochure-card:first-child{
  border-right: 0px;
}

.brochure-card:hover {
  background: rgba(255, 252, 245, 0.15);
  box-shadow: 0 20px 48px rgba(11, 45, 75, 0.12);
  z-index: 10;
}

.brochure-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: var(--navy);
}

.brochure-card__desc {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form__field {
  display: block;
  border-bottom: 2px solid var(--yellow);
  box-shadow: inset 0 -1px 0 rgba(14, 38, 58, 0.01);
  transition: border-bottom-color 180ms ease, box-shadow 180ms ease;
}

.contact-form__field input {
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  padding: 0 0 12px;
  font: inherit;
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  color: var(--navy);
  outline: none;
  transition: border-bottom-color 180ms ease;
}

.contact-form__field input::placeholder {
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .9;
  font-size: 0.74rem;
  transition: opacity 180ms ease;
}

.contact-form__field:focus-within {
  border-bottom-color: #d9ad09;
  box-shadow: inset 0 -1px 0 rgba(214, 201, 179, 0.02);
}

.contact-form__field input:focus::placeholder {
  opacity: 0;
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
  color: rgba(14, 38, 58, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form__check input {
  width: 15px;
  height: 15px;
  margin: 3px 0 0;
  accent-color: var(--navy);
}

.contact-form__check span {
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.6;
}

.contact-form__check a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.contact-form__submit {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 50px;
  margin-top: 10px;
  padding: 12px 34px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(33, 76, 135, 0.12);
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(33, 76, 135, 0.16);
  background: #edbd16;
}

.contact-form__submit:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
  box-shadow: 0 6px 14px rgba(33, 76, 135, 0.12);
}

.contact-form__status {
  min-height: 24px;
  margin: 0;
  text-align: left;
  color: var(--navy);
}

.contact-form__status.is-loading {
  color: #5f78a4;
}

.contact-form__status.is-success {
  color: #214c87;
}

.contact-form__status.is-error {
  color: #9a2b2b;
}

@media (max-width: 980px) {
  .register-section__inner {
    grid-template-columns: 1fr;
  }

  .register-section__image {
    min-height: 420px;
  }
}

.cta__panel {
  padding: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta__panel .section__title {
  max-width: 860px;
}

.cta__panel p {
  max-width: 660px;
}

.site-footer {
  padding: 60px 28px 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(11, 45, 75, 0.96), rgba(8, 33, 56, 0.99));
}

.site-footer__inner {
  width: min(92%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 28px;
  align-items: end;
}

.site-footer__brand {
  display: grid;
  gap: 10px;
  max-width: 34ch;
}

.site-footer__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer__nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #ffffff;
}

.site-footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity var(--transition),
    transform var(--transition);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}

.hero .reveal {
  transition:
    opacity var(--hero-reveal-duration) cubic-bezier(.16, 1, .3, 1),
    transform var(--hero-reveal-duration) cubic-bezier(.16, 1, .3, 1);
}

.reveal[data-reveal="fade-left"] {
  transform: translate3d(52px, 0, 0);
}

.reveal[data-reveal="fade-right"] {
  transform: translate3d(-52px, 0, 0);
}

.reveal[data-reveal="zoom-out"] {
  transform: translate3d(0, 38px, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal.is-fading-out {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
  transition-delay: 0ms;
}

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

.split-line,
.split-word {
  overflow: hidden;
}

.split-line {
  display: block;
  padding-top: 0em;
  padding-bottom: 0.2em;
  margin-top: -0.14em;
  margin-bottom: -0.14em;
}

.split-word {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.14em;
  padding-top: 0.08em;
  padding-bottom: 0.1em;
  margin-top: -0.08em;
  margin-bottom: -0.1em;
}

.split-text {
  display: inline-block;
  transform: translate3d(0, 112%, 0);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 1.25s cubic-bezier(.16, 1, .3, 1),
    opacity 1.05s ease;
  transition-delay: calc(var(--delay, 0ms) + (var(--split-index, 0) * var(--split-step, 110ms)));
}

.hero .split-text {
  transition:
    transform var(--hero-reveal-duration) cubic-bezier(.16, 1, .3, 1),
    opacity var(--hero-reveal-duration) ease;
}

.reveal.is-visible .split-text {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.reveal.has-media-reveal {
  transform: translate3d(0, 24px, 0);
}

.reveal.has-media-reveal > img,
.reveal.has-media-reveal picture > img,
.reveal.has-media-reveal .reveal-media {
  clip-path: inset(0 0 100% 0 round 0);
  transform: scale(1.16);
  transform-origin: center center;
  will-change: clip-path, transform;
  transition:
    clip-path 1.45s cubic-bezier(.16, 1, .3, 1),
    transform 1.8s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--delay, 0ms) + 40ms);
}

.reveal.is-visible.has-media-reveal > img,
.reveal.is-visible.has-media-reveal picture > img,
.reveal.is-visible.has-media-reveal .reveal-media {
  clip-path: inset(0 0 0 0 round 0);
  transform: scale(1);
}

[data-speed] {
  will-change: transform;
  transition: transform 40ms linear;
}

.to-top {
  position: fixed;
  right: clamp(14px, 1.7vw, 24px);
  bottom: clamp(14px, 2.4vh, 28px);
  z-index: 20;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 47, 84, 0.88);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms ease;
  will-change: transform, opacity;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.to-top__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 0;
}

.to-top__track,
.to-top__progress {
  fill: none;
  stroke-width: 2.4;
}

.to-top__track {
  stroke: rgba(255, 255, 255, 0.2);
}

.to-top__progress {
  stroke: #f6c51b;
  stroke-linecap: round;
  /* Removed transition to prevent lag during scroll updates */
  will-change: stroke-dashoffset;
}

.to-top__icon {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1220px) {
  .button--ghost {
    display: none;
  }
  :root {
    --fs-section-title: 4.6rem;
    --fs-section-title-xl: 5.6rem;
    --fs-facilities-title: 3.25rem;
    --lh-body: 1.68;
  }

  body.menu-open {
    overflow: hidden;
  }

  .topbar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .topbar.is-scrolled {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar.is-hidden-scroll {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-110%);
  }

  .topnav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    z-index: 32;
    display: grid;
    gap: 16px;
    padding: 22px 22px 24px;
    border: 1px solid rgba(14, 38, 58, 0.08);
    border-radius: 24px;
    background: rgba(248, 244, 236, 0.96);
    color: var(--navy);
    box-shadow: 0 30px 70px rgba(11, 45, 75, 0.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -14px, 0);
    transition:
      opacity 240ms ease,
      visibility 240ms ease,
      transform 300ms cubic-bezier(.2, .7, 0, 1);
  }

  .topbar.is-menu-open .topnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .topnav a {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(14, 38, 58, 0.08);
    color: var(--navy);
  }

  .topnav__mobile-link:last-child{
    border-bottom: 0px;
  }

  .topnav a.is-active,
  .topnav a[aria-current="location"] {
    border-bottom-color: var(--yellow);
  }

  .topnav a::after {
    display: none;
  }

  .topnav__mobile-link {
    display: inline-flex;
  }

  .mobile-menu-toggle,
  .mobile-menu-backdrop {
    display: inline-flex;
  }

  .mobile-menu-toggle {
    order: 3;
    margin-left: auto;
  }

  .topbar.is-scrolled .mobile-menu-toggle,
  .topbar.is-menu-open .mobile-menu-toggle {
    border-color: rgba(14, 38, 58, 0);
    background: rgba(14, 38, 58, 0);
    color: var(--navy);
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 31;
    border: 0;
    padding: 0;
    background: rgba(5, 20, 35, 0.26);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(6px);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .topbar.is-menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .facilities-section__content {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .facilities-section__title {
    max-width: 8ch;
  }

  .manifesto__body,
  .section__split,
  .concept__grid,
  .map-section__inner,
  .panorama,
  .register-section__inner,
  .facility-plan,
  .layout-overview,
  .floor-plan-display {
    grid-template-columns: 1fr;
  }

  .map-section__copy {
    gap: 22px;
  }

  .floor-plan-display__stage {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
    min-height: 960px;
    padding: 60px 20px 0px;
  }

  .floor-plan-selector__btn.is-active, .floor-plan-selector__btn:hover{
    margin: 0px;
  }

  .facility-plan__legend {
    grid-column: auto;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-overview__keyplan {
    width: min(42%, 240px);
  }

  .gallery-scroll__card{
    height: auto;
  }

  .gallery-scroll {
    min-height: 520svh;
  }

  .gallery-scroll__overlay {
    width: min(100vw - 40px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
  }

  .gallery-scroll__meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: center;
    padding-top: 0;
  }

  .gallery-scroll__card {
    width: min(100%, 440px);
  }

  .gallery-scroll__progress {
    width: min(100vw - 56px, 820px);
    padding-right: 48px; /* Give space for to-top button on mobile */
  }

  .gallery-scroll__hint {
    display: none;
  }

  .gallery-scroll__meta:last-of-type {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .gallery-scroll__skip {
    margin-left: 0;
  }


  .section__text,
  .panorama__copy {
    margin-left: 0;
    max-width: 100%;
  }

  .image-band__grid,
  .suite-list,
  .layouts-section .suite-list,
  .usp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .concept__content {
    padding-inline: 0;
  }

  .manifesto__image,
  .concept__image--large,
  .panorama__media,
  .virtual-tour__frame,
  .floor-plan-display__stage,
  .register-section__media {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
    min-height: 810px;
  }

  .facility-plan__legend-list {
    column-count: 1;
  }
}

@media (max-width: 768px) {
  .gallery-scroll__overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 80px;
    gap: 32px;
  }
  .gallery-scroll__overlay > .gallery-scroll__meta {
    flex-direction: row;
    justify-content: center;
  }
  :root {
    --container: min(100vw - 32px, 100%);
    --fs-hero-note: 0.82rem;
    --fs-section-title: 3.4rem;
    --fs-section-title-xl: 3.9rem;
    --fs-facilities-title: 3.1rem;
    --fs-body: 16px;
    --lh-body: 1.65;
  }

  .topbar {
    inset: 0px 0 auto;
    padding: 14px 0;
  }

  .topbar.is-scrolled {
    padding-inline: 14px;
  }

  .brand {
    width: 138px;
  }

  .button--ghost {
    display: none;
  }

  .topnav {
    top: 15px;
    left: 14px;
    right: 14px;
    gap: 14px;
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .topbar.is-scrolled.is-menu-open{
    height: 100vh;
    background: transparent;
    backdrop-filter: blur(3px);
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu-toggle img {
    width: 30px;
    height: 30px;
  }

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

  .facilities-item {
    min-height: 132px;
    padding: 20px 18px;
  }

  .hero {
    height: 100svh;
    padding: 20px 16px 18px;
    gap: 12px;
  }

  .hero-media {
    clip-path: inset(
      var(--hero-clip-top, 0%)
      var(--hero-clip-side-mobile, var(--hero-clip-side, 0%))
      var(--hero-clip-bottom, 0%)
      var(--hero-clip-side-mobile, var(--hero-clip-side, 0%))
      round var(--hero-radius, 0px)
    );
  }

  .section {
    padding: 80px 0;
  }

  .hero-top,
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-slider-nav {
    width: min(100%, 360px);
  }

  .hero-slider-nav__title {
    text-align: left;
  }

  .hero-tools {
    flex-wrap: wrap;
  }

  .hero-lang,
  .hero-tools {
    gap: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero-book {
    font-size: 11px;
  }

  .hero-dot {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: unset;
  }

  .hero-top{
    flex-direction: row;
    flex-wrap: unset;
    align-items: center;
  }

  .hero-book{
    display: none;
    min-height: 36px;
  }

  .hero-dot__icon {
    width: 18px;
    height: 18px;
  }

  .hero-center {
    padding: 28px 0 0px;
  }

  .hero-subtitle {
    max-width: 31ch;
    line-height: 1.65;
  }

  .hero-subtitle--pill {
    max-width: min(100%, 320px);
    margin-top: 14px;
  }

  .hero-subtitle__pill-text {
    width: 100%;
    min-height: auto;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }

  .hero-note {
    max-width: 100%;
    padding: 12px 14px;
    line-height: 1.45;
  }

  .to-top {
    right: 5px;
    width: 42px;
    height: 42px;
  }

  .image-band {
    width: var(--container);
  }

  .image-band__grid,
  .suite-list,
  .layouts-section .suite-list,
  .facility-list,
  .contact-form__row,
  .usp-grid {
    grid-template-columns: 1fr;
  }

  .map-section__stats {
    grid-template-columns: 1fr 1fr;
  }

  .map-stat {
    /*min-height: 126px;
    padding: 18px 16px;*/
  }

  .map-stat__value {
    font-size: 2.5rem;
  }

  .image-band__item,
  .concept__image--large,
  .concept__image--small,
  .panorama__media,
  .virtual-tour__frame,
  .floor-plan-display__stage {
    min-height: 540px;
  }

  .virtual-tour__frame{
    min-height: 540px !important;
  }

  .manifesto__image,
  .register-section__media {
    width: 100%;
    z-index: 1;
    min-height: auto;
  }

  .manifesto__image {
    margin-top: 30px;
  }

  .manifesto__image img,
  .register-section__image {
    height: auto !important;
    min-height: auto !important;
    top: 0 !important;
    transform: none !important;
    transition: none !important;
  }

  .gallery-scroll {
    min-height: 480svh;
  }

  .gallery-scroll__sticky {
    min-height: 100svh;
  }

  .gallery-scroll__overlay {
    width: min(100vw - 24px, 100%);
    padding: 18px 0 28px;
    gap: 16px;
    display: block;
  }

  .gallery-scroll__meta {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /*.gallery-scroll__meta:last-of-type {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 4;
    width: auto;
    margin-top: 0;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
  }*/

  .gallery-scroll__card {
    width: 90%;
    padding: 22px 18px 24px;
    margin: 12px auto 0;
  }

  .gallery-scroll__title {
    margin: 4px 0 18px;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .gallery-scroll__card-media {
    aspect-ratio: 1.36;
  }

  .gallery-scroll__card-text {
    display: none;
  }

  .gallery-scroll__hint {
    display: none;
  }

  .gallery-scroll__skip {
    display: inline-flex;
    margin-left: 0;
  }

  .gallery-scroll__card-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .gallery-scroll__hint-pill {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .gallery-scroll__count {
    margin-top: 10px;
    font-size: 0.82rem;
  }

  .gallery-scroll__progress {
    bottom: 18px;
    width: calc(100vw - 32px);
    padding-right: 56px; /* Space for to-top button */
  }

  .gallery-scroll__fullscreen {
    padding: 7px 10px;
    letter-spacing: 0.1em;
  }

  .gallery-scroll__fullscreen span {
    display: none;
  }


  .facility-plan__legend {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .facility-plan__beach {
    font-size: 1.4rem;
  }

  .facility-hotspot {
    width: 14px;
    height: 14px;
  }

  .facility-hotspot span {
    font-size: 8px;
  }

  .facility-hotspot strong {
    left: 50%;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
  }

  .facility-hotspot:hover strong,
  .facility-hotspot:focus-visible strong,
  .facility-hotspot.is-active strong {
    transform: translateX(-50%) translateY(0);
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row img {
    aspect-ratio: 1.2 / 1;
  }

  .cta__panel {
    padding: 32px 0;
  }

  .layout-overview__plan {
    padding: 0;
  }

  .floor-plan-display__info {
    padding: 60px 24px 40px;
  }

  .floor-plan-selector__btn {
    padding-right: 116px;
  }

  .floor-plan-selector__actions {
    top: 25px;
    right: 4px;
    gap: 8px;
  }

  .floor-plan-selector__vr-link {
    padding: 4px 8px;
  }

  .floor-plan-selector__vr-link span {
    min-width: 3em;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .floor-plan-selector__icon-link {
    width: 32px;
    height: 32px;
  }

  .layout-overview__keyplan {
    position: static;
    width: min(100%, 220px);
    margin: 16px;
  }

  .site-footer {
    padding: 18px 16px 22px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 10px;
  }

  .site-footer__brand,
  .site-footer__nav {
    justify-items: center;
    text-align: center;
  }

  .site-footer__nav {
    justify-content: center;
  }

  .site-footer__eyebrow{
    font-size: 0.7rem;
  }

  .site-footer__tagline{
    font-size: 0.75rem;
  }

  .site-footer__nav a{
    font-size: 0.7rem;
  }

  .site-footer__copy {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
  .virtual-tour-section{
    margin-right: 0px;
    margin-left: 0px;
    padding-bottom: 0px;
    width: 100%;
  }

  .panorama__media{
    padding: 30px 15px 45px;
  }

  .brochure-card:first-child{
    border-right: 0px solid rgba(14, 38, 58, 0.2);
  }
  .video-wrapper{
    margin-bottom: 0;
    margin-top: 0;
  }
  .gallery-scroll__sticky .section__lead h2{
    font-size: .8rem;
  }
}

@media (max-width: 520px) {
  :root {
    --fs-section-title: 2.8rem;
    --fs-section-title-xl: 3.2rem;
    --fs-facilities-title: 3rem;
    --lh-body: 1.6;
  }

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

  .map-section__stats {
    grid-template-columns: 1fr;
  }

  .facilities-section__title {
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: start;
  }

  .button {
    width: 100%;
  }

  .button--text {
    width: auto;
  }

  .hero-title {
    width: min(58vw, 420px);
  }

  .hero-slider-nav {
    width: 100%;
    gap: 8px;
  }

  .hero-slider-nav__row {
    gap: 10px;
    grid-template-columns: auto minmax(88px, 1fr) auto;
  }

  .hero-slider-nav__button,
  .hero-slider-nav__count {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero-slider-nav__title {
    font-size: 1.05rem;
  }

  .hero-subtitle {
    max-width: 50ch;
  }

  .topbar.is-scrolled {
    padding-inline: 12px;
  }

  .facility-plan__controls,
  .floor-plan-selector,
  .virtual-tour__actions {
    gap: 10px;
  }

  .facility-plan__toggle,
  .floor-plan-selector__btn {
    width: 100%;
  }

  .hero-subtitle--pill {
    max-width: min(100%, 292px);
  }

  .hero-subtitle__pill-text {
    padding: 9px 14px;
    font-size: 0.68rem;
    line-height: 1.25;
    letter-spacing: 0.03em;
  }

  .facilities-item p,
  .map-stat__label,
  .manifesto__intro,
  .contact-form__check {
    text-wrap: pretty;
  }
}

@media (prefers-color-scheme: light) {
  body,
  .topbar,
  .button {
    color-scheme: light;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: var(--bg);
    color: var(--ink);
    -webkit-text-fill-color: currentColor;
  }

  .topbar.is-scrolled {
    background: rgba(251, 251, 248, 0.92);
  }

  .brand img {
    filter: brightness(100);
  }
}
