@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --teal-950: #0A2A27;
  --teal-900: #0E332F;
  --teal-800: #14433D;
  --teal-700: #1B554C;
  --teal-600: #23695D;

  --sand-50:  #FBF6EA;
  --sand-100: #F3E8D2;
  --sand-200: #E9D9B8;

  --gold-300: #F5BE5E;
  --gold-500: #F0A226;
  --gold-600: #C97F14;

  --coral-500: #E1653F;
  --coral-600: #C6512F;

  --ink: #16231F;
  --ink-soft: #55655C;
  --paper: #FBF6EA;

  --line-light: rgba(22, 35, 31, 0.12);
  --line-lighter: rgba(22, 35, 31, 0.07);
  --line-dark: rgba(251, 246, 234, 0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--teal-950);
}
p { line-height: 1.65; margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold-500);
  display: block;
}
.eyebrow--light { color: var(--gold-300); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-out), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none;
}
.btn:hover::before { left: 120%; }

.btn-gold { background: var(--gold-500); color: var(--teal-950); box-shadow: 0 10px 24px rgba(240, 162, 38, 0.28); }
.btn-gold:hover { background: var(--gold-300); box-shadow: 0 14px 30px rgba(240, 162, 38, 0.38); }

.btn-coral { background: var(--coral-500); color: var(--sand-50); box-shadow: 0 10px 24px rgba(225, 101, 63, 0.3); }
.btn-coral:hover { background: var(--coral-600); }

.btn-ghost { background: transparent; color: var(--sand-50); border-color: var(--line-dark); }
.btn-ghost:hover { border-color: var(--gold-300); color: var(--gold-300); }

.btn-outline { background: transparent; color: var(--teal-950); border-color: var(--line-light); }
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-600); }

.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-full { width: 100%; text-align: center; }
.btn:disabled {
  cursor: default;
  transform: none;
}
.btn:disabled::before { display: none; }
.btn-gold:disabled:hover {
  background: var(--gold-500);
  box-shadow: 0 10px 24px rgba(240, 162, 38, 0.28);
}

/* Keep enquiry controls static on hover. */
[data-open-popup="enquiry-popup"],
#enquiry-submit,
#contact-submit {
  transition: none !important;
}
[data-open-popup="enquiry-popup"]:hover,
#enquiry-submit:hover,
#contact-submit:hover {
  transform: none !important;
}
[data-open-popup="enquiry-popup"]::before,
#enquiry-submit::before,
#contact-submit::before {
  display: none;
}

/* ---------- reveal-up ---------- */
.reveal-up { opacity: 0; transform: translateY(28px) scale(0.97); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-up.d1 { transition-delay: 0.08s; }
.reveal-up.d2 { transition-delay: 0.16s; }
.reveal-up.d3 { transition-delay: 0.24s; }
.reveal-up.d4 { transition-delay: 0.32s; }

.count-pop { display: inline-block; animation: count-pop 0.4s var(--ease-out); }
@keyframes count-pop { 0% { transform: scale(1); } 40% { transform: scale(1.14); } 100% { transform: scale(1); } }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: padding 0.3s var(--ease-out), background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(251, 246, 234, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(10, 42, 39, 0.08);
}
.header-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; }

.mark { display: flex; align-items: center; gap: 10px; color: var(--teal-950); transition: color 0.3s ease; }
.is-scrolled .mark { color: var(--teal-950); }
.mark-glyph {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid currentColor; color: var(--gold-500);
}
.mark-text { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: 0.05em; }
.mark-sub { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; display: block; margin-top: -2px; }
.brand-logo { display: block; height: auto; object-fit: contain; }
.brand-logo--header {
  width: 132px; padding: 5px 7px; border-radius: 4px;;
}
.brand-logo--footer { width: 180px; padding: 7px 9px; border-radius: 4px;background-color: white  }
.brand-logo--scrolled { display: none; }
.is-scrolled .brand-logo--default { display: none; }
.is-scrolled .brand-logo--scrolled { display: block; }

.site-nav { display: flex; align-items: center; justify-content: center; gap: 18px; font-size: 0.82rem; font-weight: 600; }
.site-nav a { position: relative; color: var(--ink-soft); padding-bottom: 4px; transition: color 0.2s ease; }
.is-scrolled .site-nav a { color: var(--ink-soft); }
.site-nav a:hover, .is-scrolled .site-nav a:hover { color: var(--gold-600); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold-500); transition: right 0.25s var(--ease-out);
}
.site-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn-gold { color: var(--teal-950); }

.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-light); color: var(--teal-950); flex-shrink: 0; background: none;
}
.is-scrolled .menu-toggle { color: var(--teal-950); border-color: var(--line-light); }
.menu-toggle .icon-close { display: none; }

.mobile-menu {
  position: fixed; inset: 0; top: 0; z-index: 60;
  background: var(--teal-950);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav-link { font-family: var(--font-display); font-size: 1.6rem; color: var(--sand-100); }
.mobile-menu .btn { margin-top: 12px; }
.mobile-menu-close {
  position: absolute; top: 24px; right: 28px; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-dark); color: var(--sand-50); display: flex; align-items: center; justify-content: center; background: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 8001 / 3388;
  color: var(--sand-50);
  background: var(--teal-950);
  overflow: hidden;
}

.hero > .wrap { width: 100%; }

.hero-carousel { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,42,39,0) 0%, rgba(10,42,39,0) 70%, rgba(10,42,39,0.5) 100%);
}

.hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,190,94,0.20), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: var(--glow-x, 50%); top: var(--glow-y, 30%);
  transition: left 0.3s ease, top 0.3s ease;
  z-index: 1;
}

.hero-carousel-dots { position: absolute; bottom: 34px; right: 50%; transform: translateX(50%); display: flex; gap: 9px; z-index: 3; }
.hero-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(251,246,234,0.35); border: none; padding: 0; transition: background 0.2s ease, width 0.2s ease; }
.hero-carousel-dot.is-active { background: var(--gold-500); width: 22px; border-radius: 5px; }

.hero-content { position: relative; z-index: 2; max-width: 760px; }

@keyframes hero-slide-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-content .eyebrow,
.hero-content h1,
.hero-lede,
.hero-actions,
.hero-stat-strip {
  animation: hero-slide-in 0.9s var(--ease-out) both;
}
.hero-content .eyebrow { animation-delay: 0.05s; }
.hero-content h1 { animation-delay: 0.18s; }
.hero-lede { animation-delay: 0.32s; }
.hero-actions { animation-delay: 0.46s; }
.hero-stat-strip { animation-delay: 0.6s; }

.hero h1 { color: var(--sand-50); font-size: clamp(2.5rem, 5.2vw, 4rem); }
.hero h1 em { color: var(--gold-300); font-style: normal; }

.hero-lede { color: rgba(251,246,234,0.82); font-size: 1.12rem; max-width: 52ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stat-strip { display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid var(--line-dark); padding-top: 26px; }
.hero-stat { padding: 0 28px; border-left: 1px solid var(--line-dark); }
.hero-stat:first-child { padding-left: 0; border-left: none; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-300); }
.hero-stat span { font-size: 0.78rem; color: rgba(251,246,234,0.68); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: auto; display: block; }
.hero-wave path { animation: wave-motion 6s ease-in-out infinite; transform-origin: center bottom; }
@keyframes wave-motion {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-5px) scaleY(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-wave path { animation: none; }
}

/* ---------- section basics ---------- */
.section { padding: 110px 0; }
.section-tight { padding: 90px 0; }
.section:not(.section--sand):not(.section--teal) {
  background-color: var(--sand-50);
  background-image:
    radial-gradient(ellipse at 50% 100%, transparent 0 19px, rgba(138,106,47,0.04) 19.5px 20.5px, transparent 21px),
    radial-gradient(ellipse at 50% 100%, transparent 0 19px, rgba(201,127,20,0.028) 19.5px 20.5px, transparent 21px);
  background-size: 48px 38px;
  background-position: 0 0, 24px 19px;
}
.section:not(.section--sand):not(.section--teal) p {
  color: #3f4945;
  font-weight: 500;
}
.section--sand { background: var(--sand-100); }
.section--teal { background: var(--teal-950); color: var(--sand-50); }
.section--teal h2 { color: var(--sand-50); }
.section--teal p { color: rgba(251,246,234,0.75); }

.section-head { max-width: 680px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2,
.overview-copy h2,
.developer-copy h2,
.contact-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; }
.section-head p { font-size: 1.04rem; margin: 0; }

/* ---------- overview ---------- */
#overview { overflow-x: clip; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.overview-photo {
  position: relative; border-radius: 8px; overflow: hidden;
  height: 460px; background-size: cover; background-position: center;
  box-shadow: 0 30px 60px rgba(10,42,39,0.18);
}
.overview-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(251,246,234,0.14); }
.overview-badge {
  position: absolute; left: 14px; top: 14px;
  background: var(--sand-50); border-radius: 5px; padding: 7px 10px;
  box-shadow: 0 10px 22px rgba(10,42,39,0.18);
  display: flex; align-items: center; gap: 8px;
}
.overview-badge .ring {
  position: relative;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--gold-500); display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
}
.overview-badge .ring::after {
  content: ""; position: absolute; inset: -1.5px; border-radius: 50%;
  border: 1.5px solid var(--gold-500); animation: ring-pulse 2.4s ease-out infinite;
}
.overview-badge .ring svg { width: 12px; height: 12px; }
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .overview-badge .ring::after { animation: none; }
}
.overview-badge strong { display: block; font-family: var(--font-display); font-size: 0.76rem; color: var(--teal-950); }
.overview-badge span { font-size: 0.58rem; color: var(--ink-soft); }

.overview-copy p { font-size: 1.02rem; }
.overview-facts { list-style: none; margin: 30px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line-light); display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.overview-facts li { display: flex; flex-direction: column; }
.overview-facts strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-950); }
.overview-facts strong .count { display: inline; }
.overview-facts span { font-size: 0.82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }

/* Overview two-direction entrance */
#overview .overview-photo.reveal-up {
  opacity: 0;
  transform: translateX(-64px);
}
#overview .overview-photo.reveal-up.is-visible {
  opacity: 1;
  transform: translateX(0);
}

#overview .overview-copy.reveal-up {
  opacity: 0;
  transform: translateX(64px);
}
#overview .overview-copy.reveal-up.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- highlights ---------- */
 .developer-copy h2,.eyebrow, h2,h3,.amenity-chip span,button,a,
 .c-name,.config-table td,.config-table th,.overview-facts strong .count,
 .hl-num {
  font-family: "Jost", var(--font-body) !important;
}
/* #highlights .section-head .eyebrow,
#highlights .section-head h2,
#highlights .highlight-card,
#highlights .highlight-card h3,
#highlights .highlight-card p,
#highlights .hl-num {
  font-family: "Jost", var(--font-body);
} */
#highlights .section-head h2 { font-weight: 700; }
#highlights .section-head p { font-weight: 400; }
#highlights .highlight-card h3 { font-weight: 600; }
#highlights .hl-num { font-weight: 500; }

.highlights-marquee { overflow: hidden; border-top: 1px solid var(--line-lighter); border-bottom: 1px solid var(--line-lighter); padding: 22px 0; margin-bottom: 64px; }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: marquee-scroll 32s linear infinite; }
.highlights-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.15rem; color: var(--teal-800); white-space: nowrap; }
.marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

.highlights-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
}
.highlight-card {
  position: relative; flex: 0 1 calc(33.333% - 12px); min-width: 0; min-height: 0;
  padding: 16px 26px; border-radius: 10px;
  background: var(--sand-50); border: 1px solid var(--line-light);
  display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: center; gap: 12px;
  box-shadow: 0 10px 30px rgba(10,42,39,0.05); overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
.highlight-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--coral-500));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease-out);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,42,39,0.12); border-color: var(--gold-300); }
.highlight-card:hover::before { transform: scaleX(1); }
.hl-num { font-family: var(--font-display); font-size: 0.85rem; color: var(--gold-600); margin: 0; display: block; }
.highlight-feature-icon { display: flex; align-items: center; justify-content: center; width: 28px; color: var(--gold-600); }
.hl-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal-950); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center; margin: 0;
}
.highlight-card h3 {
  font-size: clamp(0.68rem, 1.05vw, 0.88rem); line-height: 1.25; letter-spacing: -0.015em;
  white-space: nowrap; margin: 0;
}
.highlight-card p { font-size: 0.88rem; margin: 0; }

/* ---------- configurations ---------- */
.config-tabs { display: flex; gap: 10px; margin-bottom: 40px; justify-content: center; }
.config-tab {
  padding: 12px 26px; border-radius: 30px; border: 1px solid var(--line-light);
  background: var(--sand-50); font-weight: 700; font-size: 0.88rem; color: var(--ink-soft);
  transition: all 0.2s ease;
}
.config-tab.is-active { background: var(--teal-950); color: var(--gold-300); border-color: var(--teal-950); }

.config-panel { display: none; }
.config-panel.is-active { display: block; animation: hero-slide-in 0.5s var(--ease-out) both; }

.config-table-wrap {
  width: 100%; max-width: 1000px; margin-inline: auto; overflow-x: auto;
  border-radius: 8px; border: 1px solid var(--line-light); background: var(--sand-50);
}
table.config-table { width: 100%; border-collapse: collapse; min-width: 640px;text-align: center; }
.config-table th {
  text-align: center; font-family: var(--font-body); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--sand-100); background: var(--teal-900); padding: 16px 20px;
}
.config-table th:first-child { border-radius: 0; }
.config-table td { padding: 18px 20px; border-bottom: 1px solid var(--line-lighter); font-size: 0.95rem; }
.config-table tr:last-child td { border-bottom: none; }
.config-table tr:hover td { background: var(--sand-100); }
.config-table td.ctype { font-family: var(--font-display); font-size: 1.02rem; color: var(--teal-950); }
.config-table td.cta a { white-space: nowrap; }
.config-note { margin-top: 18px; font-size: 0.85rem; color: var(--ink-soft); text-align: center; }

/* ---------- amenities ---------- */
.amenities-carousel { position: relative; }
.amenities-track-wrap { overflow: hidden; padding: 10px 0; margin: -10px 0; }
.amenities-track { display: flex; gap: 16px; transition: transform 0.5s var(--ease-out); }
.amenities-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.amenity-chip {
  flex: 0 0 calc(25% - 12px); min-width: 0;
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: rgba(251,246,234,0.05); border: 1px solid var(--line-dark); border-radius: 8px;
  transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease;
}
.amenity-chip:hover { transform: translateY(-4px); background: rgba(245,190,94,0.08); border-color: var(--gold-500); }
.amenity-chip .a-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,190,94,0.14); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
}
.amenity-chip span { font-size: 0.92rem; font-weight: 600; color: var(--sand-50); }

/* ---------- gallery ---------- */
.gallery-scroll { position: relative; }
.gallery-grid {
  position: relative; height: 330px; overflow: hidden;
  margin: 0 42px;
}
.gallery-item {
  position: absolute; left: 50%; top: 50%; width: 360px; height: auto; aspect-ratio: 4 / 3;
  border-radius: 4px; overflow: hidden; cursor: zoom-in; background: var(--sand-100);
  opacity: 0; pointer-events: none;
  transform: translate(-50%, -50%) scale(0.45);
  box-shadow: 0 12px 28px rgba(28,33,23,0.14);
  transition: transform 0.55s var(--ease-out), opacity 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item.is-active {
  z-index: 5; opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 24px 48px rgba(28,33,23,0.22);
}
.gallery-item.is-prev-1 { z-index: 4; opacity: 0.92; pointer-events: auto; transform: translate(calc(-50% - 292px), -50%) scale(0.76); }
.gallery-item.is-next-1 { z-index: 4; opacity: 0.92; pointer-events: auto; transform: translate(calc(-50% + 292px), -50%) scale(0.76); }
.gallery-item.is-prev-2 { z-index: 3; opacity: 0.72; pointer-events: auto; transform: translate(calc(-50% - 500px), -50%) scale(0.54); }
.gallery-item.is-next-2 { z-index: 3; opacity: 0.72; pointer-events: auto; transform: translate(calc(-50% + 500px), -50%) scale(0.54); }
.gallery-item.is-prev-1,
.gallery-item.is-next-1,
.gallery-item.is-prev-2,
.gallery-item.is-next-2 { cursor: pointer; }
.gallery-item.is-prev-1 img,
.gallery-item.is-next-1 img,
.gallery-item.is-prev-2 img,
.gallery-item.is-next-2 img { filter: saturate(0.82) brightness(0.9); }
.gallery-item.is-active img { filter: none; }
.gallery-item:focus-visible {
  outline: 3px solid var(--gold-500); outline-offset: 4px;
}
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(28,33,23,0.86) 100%); opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: contain; transition: filter 0.4s ease; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 7;
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--sand-50); border: 1px solid var(--line-light); color: var(--teal-950);
  box-shadow: 0 10px 24px rgba(28,33,23,0.16);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-arrow:hover { background: var(--teal-950); color: var(--gold-300); border-color: var(--teal-950); }
.gallery-arrow--prev { left: 0; }
.gallery-arrow--next { right: 0; }

.lightbox {
  position: fixed; inset: 0; z-index: 80; background: rgba(10,42,39,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img-wrap { width: 90vw; height: 88vh; max-width: 90vw; max-height: 88vh; }
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }
.lightbox-caption { text-align: center; color: var(--sand-100); margin-top: 16px; font-size: 0.9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-dark);
  color: var(--sand-50); background: rgba(251,246,234,0.06);
}
.lightbox-close { top: 26px; right: 28px; }
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold-500); color: var(--gold-300); }

/* ---------- floor plans ---------- */
.floorplan-carousel { position: relative; }
.floorplan-tabs { margin-bottom: 30px; }
.floorplan-track-wrap { overflow: hidden; }
.floorplan-track { display: flex; gap: 22px; transition: transform 0.5s var(--ease-out); }
.floorplan-card {
  flex: 0 0 calc(33.333% - 15px); background: var(--sand-50); border: 1px solid var(--line-light);
  border-radius: 8px; overflow: hidden;
}
.floorplan-card[hidden] { display: none; }
.floorplan-photo {
  height: 260px; background-color: #fff; background-size: contain; background-repeat: no-repeat;
  background-position: center; position: relative; overflow: hidden;
}
.floorplan-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.floorplan-photo .block-tag {
  position: absolute; top: 14px; left: 14px; background: var(--teal-950); color: var(--gold-300);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; z-index: 2;
}
.floorplan-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.floorplan-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.floorplan-body p { font-size: 0.85rem; margin: 0 0 14px; }
.floorplan-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.fp-nav-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-light);
  background: var(--sand-50); color: var(--teal-950); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.fp-nav-btn:hover { background: var(--teal-950); color: var(--gold-300); border-color: var(--teal-950); }

/* ---------- connectivity ---------- */
.connectivity-showcase {
  display: grid; grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  gap: 30px; align-items: start;
}
.connectivity-visual { order: 2; margin: 0; }
.connectivity-image-wrap {
  overflow-x: auto; border: 1px solid var(--line-light); border-radius: 12px;
  background: #f4f0e7; box-shadow: 0 24px 55px rgba(10,42,39,0.12);
  scrollbar-width: thin; scrollbar-color: var(--gold-500) var(--sand-100); cursor: zoom-in;
}
.connectivity-image-wrap img { width: 100%; height: auto; }
.connectivity-visual figcaption {
  margin-top: 12px; color: var(--ink-soft); font-size: 0.78rem; text-align: center;
}
.connectivity-details {
  order: 1; margin: 0; padding: 22px; border: 1px solid var(--line-light); border-radius: 12px;
  background: var(--sand-50); box-shadow: 0 18px 45px rgba(10,42,39,0.08);
}
.connectivity-details .connectivity-layout { grid-template-columns: 1fr; gap: 24px; }
.connectivity-details .connectivity-tabs {
  position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
}
.connectivity-details .conn-tab { padding: 10px 12px; font-size: 0.82rem; }
.connectivity-details .conn-tab .c-icon { width: 30px; height: 30px; }
.connectivity-details .conn-row { padding: 13px 2px; }
.connectivity-details .conn-row .c-bar { width: 80px; }
.connectivity-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.connectivity-tabs { display: flex; flex-direction: column; gap: 6px; position: sticky; top: 110px; }
.conn-tab {
  display: flex; align-items: center; gap: 14px; text-align: left; padding: 14px 18px; border-radius: 8px;
  border: 1px solid transparent; background: none; color: var(--ink-soft); font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.conn-tab .c-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--sand-100); color: var(--gold-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s var(--ease-out), background 0.2s ease, color 0.2s ease; }
.conn-tab:hover .c-icon, .conn-tab.is-active .c-icon { transform: scale(1.1); }
.conn-tab.is-active { background: var(--sand-50); border-color: var(--line-light); color: var(--teal-950); box-shadow: 0 10px 24px rgba(10,42,39,0.08); }
.conn-tab.is-active .c-icon { background: var(--teal-950); color: var(--gold-300); }

.conn-panel { display: none; }
.conn-panel.is-active { display: block; animation: hero-slide-in 0.45s var(--ease-out) both; }
.conn-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.conn-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; padding: 16px 4px; border-bottom: 1px solid var(--line-lighter); }
.conn-row .c-name { font-weight: 600; color: var(--teal-950); display: flex; align-items: center; gap: 10px; }
.conn-row .c-num { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-500); color: #fff; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; }
.conn-row .c-bar-wrap { display: flex; align-items: center; gap: 12px; }
.conn-row .c-bar { width: 120px; height: 5px; border-radius: 4px; background: var(--line-lighter); overflow: hidden; }
.conn-row .c-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-500), var(--coral-500)); border-radius: 4px; transition: width 1s var(--ease-out); }
.conn-row.is-visible .c-bar span { width: var(--fill, 40%); }
.conn-row .c-time { font-family: var(--font-body); font-weight: 700; font-size: 0.86rem; color: var(--gold-600); min-width: 62px; text-align: right; }

/* ---------- developer ---------- */
.developer-grid { max-width: 1120px; }
.developer-copy > .eyebrow, .developer-copy > h2 { text-align: center; justify-content: center; }
.developer-copy > p { max-width: 900px; margin: 0 auto; text-align: center; }
.pillar-list {
  list-style: none; margin: 42px 0 0; padding: 0; display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.pillar {
  display: flex; flex-direction: column; gap: 14px; min-height: 100%; padding: 28px;
  background: var(--sand-50); border: 1px solid var(--line-light); border-radius: 8px;
  box-shadow: 0 16px 38px rgba(10,42,39,0.07);
}
.pillar-num { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-600); }
.pillar h3 { font-size: 1.05rem; margin-bottom: 6px; }
.pillar p { font-size: 0.92rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; background: var(--teal-950); color: var(--sand-50);
  padding: 90px 0; text-align: center;
}
.cta-band h2 { color: var(--sand-50); font-size: clamp(1.8rem, 3.4vw, 2.5rem); max-width: 720px; margin: 0 auto 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 60px; align-items: stretch; }
.contact-copy { display: flex; flex-direction: column; min-width: 0; }
.contact-copy .eyebrow { align-self: flex-start; align-items: center; text-align: left; }
.contact-details { list-style: none; margin: 30px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line-light); display: grid; gap: 18px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.contact-details .c-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--sand-100); color: var(--gold-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.contact-details li:hover .c-icon { transform: scale(1.1) rotate(-6deg); }
.contact-details strong { display: block; color: var(--teal-950); font-size: 0.95rem; }
.contact-details span { font-size: 0.88rem; color: var(--ink-soft); }
.contact-map { position: relative; flex: 1; min-height: 222px; margin-top: 26px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line-light); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.qr-box { margin-top: 22px; display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px dashed var(--line-light); border-radius: 8px; }
.qr-placeholder { width: 64px; height: 64px; border-radius: 6px; background: var(--sand-100); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); flex-shrink: 0; }
.qr-box span { font-size: 0.84rem; color: var(--ink-soft); }

.contact-form-wrap { background: var(--sand-50); border: 1px solid var(--line-light); border-radius: 10px; padding: 36px; box-shadow: 0 24px 50px rgba(10,42,39,0.08); }
.contact-form-wrap h3 { font-size: 2.0rem;margin-bottom: 40px; }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--teal-950); margin-bottom: 7px; }
.field .optional { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-light); border-radius: 4px; padding: 12px 14px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); }
.field textarea { resize: vertical; min-height: 96px; }
.form-input.is-invalid { border-color: var(--coral-500); }
.form-input.is-valid { border-color: #4E8C6E; }
.form-error-msg { display: none; font-size: 0.78rem; color: var(--coral-600); margin-top: 6px; }
.form-error-msg.visible { display: block; }
.form-consent { font-size: 0.78rem; color: var(--ink-soft); margin: 4px 0 18px; }

/* ---------- enhanced content motion (hero excluded) ---------- */
#overview .overview-photo {
  transition: opacity 0.8s var(--ease-out), transform 0.65s var(--ease-out),
    clip-path 1.1s var(--ease-out), filter 1.1s ease, box-shadow 0.65s var(--ease-out);
}
#overview .overview-photo:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 38px 72px rgba(10,42,39,0.22);
}
.overview-facts li {
  transition: transform 0.3s var(--ease-out), background-color 0.3s ease;
}
.overview-facts li:hover { transform: translateY(-4px); }

.section-head.reveal-up.is-visible .eyebrow::after,
.developer-copy.reveal-up.is-visible > .eyebrow::after {
  animation: content-line-in 0.8s 0.25s var(--ease-out) both;
  transform-origin: center;
}
@keyframes content-line-in {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

.amenity-chip .a-icon {
  transition: transform 0.4s var(--ease-out), background-color 0.3s ease;
}
.amenity-chip:hover .a-icon {
  transform: rotate(-8deg) scale(1.12);
  background: rgba(245,190,94,0.24);
}
.config-table tr { transition: background-color 0.25s ease; }

.floorplan-card {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.floorplan-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-300);
  box-shadow: 0 22px 44px rgba(10,42,39,0.13);
}
.floorplan-photo { transition: transform 0.55s var(--ease-out); }
.floorplan-card:hover .floorplan-photo { transform: scale(1.025); }

.connectivity-image-wrap {
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}
.connectivity-image-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 65px rgba(10,42,39,0.16);
}
.conn-tab { overflow: hidden; }
.conn-tab .c-icon svg { transition: transform 0.4s var(--ease-out); }
.conn-tab:hover .c-icon svg { transform: rotate(8deg) scale(1.08); }

.pillar {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.pillar:hover {
  transform: translateY(-7px);
  border-color: var(--gold-300);
  box-shadow: 0 24px 48px rgba(10,42,39,0.12);
}
.pillar-num { display: inline-block; transition: transform 0.4s var(--ease-out); }
.pillar:hover .pillar-num { transform: translateX(6px); }

.contact-form-wrap {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.contact-form-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(10,42,39,0.12);
}
.field input, .field select, .field textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,42,39,0.08);
}

/* ---------- enquiry popup ---------- */
.popup-overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(10,42,39,0.7); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-card {
  position: relative; width: 100%; max-width: 460px; background: var(--sand-50); border-radius: 10px;
  padding: 40px 36px; box-shadow: 0 40px 80px rgba(10,42,39,0.35);
  transform: translateY(16px) scale(0.98); transition: transform 0.3s var(--ease-out);
}
.popup-overlay.active .popup-card { transform: translateY(0) scale(1); }
.popup-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-light); background: none; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; }
.popup-close:hover { border-color: var(--gold-500); color: var(--gold-600); }
.popup-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.popup-card > p { margin-bottom: 24px; font-size: 0.92rem; }

.form-success { padding: 28px 4px; text-align: center; }
.form-success .status-icon { margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 6px; }
.form-success p { margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: #071E1C; color: rgba(251,246,234,0.7); padding: 70px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1.3fr 1fr; gap: 50px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.footer-top > * { min-width: 0; }
.footer-brand .mark-text { color: var(--sand-50); }
.footer-brand p { color: rgba(251,246,234,0.6); font-size: 0.9rem; margin-top: 14px; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; color: var(--sand-100); }
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-300); }
.footer-col h4 { color: var(--sand-50); font-family: var(--font-body); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  column-gap: 34px;
  row-gap: 11px;
  width: 100%;
}
.footer-col--center {
  width: 100%;
  max-width: 300px;
  justify-self: center;
  text-align: center;
}
.footer-col--center h4 { text-align: left; }
.footer-col--center .footer-links-grid { text-align: left; }
.footer-col a, .footer-col span { font-size: 0.9rem; color: rgba(251,246,234,0.65); }
.footer-col a:hover { color: var(--gold-300); }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; }
.footer-contact-list a, .footer-contact-list li > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.footer-contact-list .footer-contact-icon {
  width: 28px; height: 28px; border-radius: 50%; flex: 0 0 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-300); background: rgba(245,190,94,0.1);
}
.footer-contact-list .footer-contact-icon svg { width: 14px; height: 14px; }
.footer-bottom { padding-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.footer-legal { font-size: 0.78rem; line-height: 1.7; color: rgba(251,246,234,0.5); }
.footer-legal strong { color: rgba(251,246,234,0.75); }
.footer-legal a { color: var(--gold-300); }
.footer-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: rgba(251,246,234,0.45); }
.footer-meta .footer-meta-link { color: #4da3ff; }
.footer-meta .footer-meta-link:hover { color: #82c1ff; }

/* ---------- sticky enquire ---------- */
.sticky-enquire {
  display: inline-flex;
  position: fixed; right: 26px; bottom: 26px; z-index: 40;
  width: 52px; height: 52px; padding: 0; border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 16px 34px rgba(10,42,39,0.32);
}
.sticky-enquire svg { width: 19px; height: 19px; }

.scroll-top {
  position: fixed; left: 26px; bottom: 26px; z-index: 40;
  width: 46px; height: 46px; padding: 0; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: var(--teal-950); color: var(--gold-300);
  box-shadow: 0 16px 34px rgba(10,42,39,0.32);
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out), visibility 0.3s;
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scroll-top:hover { transform: translateY(-4px) scale(1.05); }
@media (max-width: 720px) {
  .scroll-top { left: 18px; bottom: 18px; width: 40px; height: 40px; }
}

/* ---------- status pages ---------- */
.status-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--sand-100); padding: 40px 20px; font-family: var(--font-body); }
.status-card { max-width: 480px; width: 100%; background: var(--sand-50); border-radius: 12px; padding: 48px 40px; text-align: center; box-shadow: 0 30px 60px rgba(10,42,39,0.14); }
.status-card--wide { max-width: 680px; text-align: left; }
.status-card--wide .eyebrow, .status-card--wide h1 { text-align: center; display: block; }
.status-icon { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: rgba(78,140,110,0.15); color: #4E8C6E; margin: 0 auto 18px; }
.status-icon--error { background: rgba(225,101,63,0.15); color: var(--coral-500); }
.status-card h1 { font-size: 1.7rem; text-align: center; }
.status-card p { text-align: left; }
.status-card .btn { margin-top: 8px; }
.eyebrow--error { color: var(--coral-600); }
.policy-block { margin-bottom: 22px; }
.policy-block h3 { font-size: 1.05rem; }
.privacy-card { max-width: 760px; padding: 52px 56px; }
.status-card--wide.privacy-card .eyebrow {
  display: flex;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}
.privacy-card .policy-intro { max-width: 62ch; }
.privacy-card .policy-block { padding-bottom: 22px; border-bottom: 1px solid var(--line-light); }
.privacy-card .policy-block:last-of-type { margin-bottom: 28px; }
.privacy-card .policy-block h3 { margin-bottom: 10px; }
.privacy-card .policy-block p { margin: 0; text-align: left; }
.privacy-card .policy-block ul { margin: 12px 0 0; padding-left: 22px; color: var(--ink-soft); }
.privacy-card .policy-block li { padding-left: 4px; line-height: 1.7; }
.policy-actions { display: flex; justify-content: center; }

@media (max-width: 600px) {
  .privacy-page { align-items: flex-start; padding: 20px 14px; }
  .privacy-card { padding: 34px 22px; border-radius: 8px; }
  .privacy-card .policy-intro { margin-bottom: 28px; }
  .privacy-card .policy-block { margin-bottom: 20px; padding-bottom: 20px; }
  .privacy-card .policy-block h3 { font-size: 1rem; }
  .policy-actions .btn { width: 100%; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .highlight-card { flex-basis: calc(50% - 9px); }
  .floorplan-card { flex: 0 0 calc(50% - 11px); }
}

@media (max-width: 980px) {
  .site-nav, .header-actions .btn-gold span.long { display: none; }
  .header-actions { justify-self: end; }
  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--teal-950);
    background: rgba(251, 246, 234, 0.82);
    border-color: rgba(10, 42, 39, 0.2);
  }
  .menu-toggle svg { width: 20px; height: 20px; stroke-width: 2; }
  .overview-grid, .connectivity-layout, .contact-grid { grid-template-columns: 1fr; }
  .connectivity-showcase { grid-template-columns: 1fr; }
  .connectivity-visual { width: 100%; min-width: 0; }
  .connectivity-image-wrap { overflow: hidden; }
  .connectivity-image-wrap img { display: block; width: 100%; min-width: 0; height: auto; }
  .connectivity-tabs { position: static; flex-direction: row; flex-wrap: wrap; }
  .overview-photo { height: 340px; }
  .pillar-list { grid-template-columns: 1fr; gap: 16px; }
  .pillar { padding: 24px; }
}

@media (max-width: 720px) {
  .header-row { grid-template-columns: minmax(0, 1fr) auto; gap: 16px; }
  .header-actions .btn { display: none; }
  .sticky-enquire { display: inline-flex; }
  .hero { aspect-ratio: 3476 / 5214; }
  .highlight-card {
    flex-basis: 100%; grid-template-columns: 28px minmax(0, 1fr); gap: 12px; padding: 18px;
  }
  .highlight-card h3 { font-size: clamp(0.68rem, 3vw, 0.88rem); white-space: normal; overflow-wrap: anywhere; }
  .floorplan-card { flex: 0 0 100%; }
  .connectivity-showcase { gap: 20px; }
  .connectivity-details { padding: 16px; }
  .connectivity-details .connectivity-layout { gap: 18px; }
  .connectivity-details .connectivity-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .connectivity-details .conn-tab { min-width: 0; gap: 8px; padding: 9px; font-size: 0.76rem; }
  .connectivity-details .conn-tab .c-icon { width: 28px; height: 28px; }
  .connectivity-details .conn-row { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
  .connectivity-details .conn-row .c-name { min-width: 0; overflow-wrap: anywhere; }
  .connectivity-details .conn-row .c-bar-wrap { gap: 8px; }
  .connectivity-details .conn-row .c-bar { width: clamp(40px, 13vw, 70px); }
  .connectivity-details .conn-row .c-time { min-width: 54px; font-size: 0.78rem; }
  .config-table-wrap { font-size: 0.9rem; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stat-strip { gap: 10px; }
  .hero-stat { padding: 0 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .lightbox-img-wrap { width: 92vw; max-width: 92vw; height: 78vh; max-height: 78vh; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

@media (max-width: 767px) {
  .amenity-chip { flex: 0 0 100%; }
}

@media (max-width: 480px) {
  .config-tabs { flex-wrap: wrap; }
  .connectivity-details { padding: 12px; }
  .connectivity-details .connectivity-tabs { grid-template-columns: 1fr; }
  .connectivity-details .conn-row { align-items: start; }
  .connectivity-details .conn-row .c-bar { display: none; }
  .footer-col ul.footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
}


/* Use ForDummy's motion-child entrance without stacked parent transforms. */
.project-motion .reveal-up,
.project-motion #overview .overview-copy.reveal-up,
.project-motion #overview .overview-photo.reveal-up {
  opacity: 1; filter: none; transform: none; clip-path: none; animation: none; transition: none;
}
    .project-motion .motion-child { opacity: 0; filter: blur(6px); transform: translateY(110px); transition: opacity 2s cubic-bezier(.22,1,.36,1), transform 2s cubic-bezier(.22,1,.36,1), filter 2s cubic-bezier(.22,1,.36,1); transition-delay: var(--motion-delay, 0ms); will-change: transform, opacity, filter; }
    .project-motion .reveal-up.is-visible .motion-child,
    .project-motion .motion-child.reveal-up.is-visible { opacity: 1; filter: blur(0); transform: translate(0, 0) scale(1); }

/* The overview ID rules must not override an individual image entrance. */
.project-motion #overview .overview-photo.motion-child {
  opacity: 0; filter: blur(6px); transform: translateY(110px);
  transition: opacity 2s cubic-bezier(.22,1,.36,1), transform 2s cubic-bezier(.22,1,.36,1), filter 2s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--motion-delay, 0ms);
}
.project-motion #overview .overview-photo.motion-child.is-visible { opacity: 1; filter: none; transform: none; }
    @keyframes hero-arrival {
      from { opacity: .25; transform: translateY(40px) scale(1.12); filter: blur(8px) brightness(.68); }
      to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) brightness(1); }
    }
    @keyframes nav-arrival {
      from { opacity: 0; transform: translateY(-24px); }
      to { opacity: 1; transform: none; }
    }
    @keyframes nav-link-arrival {
      from { opacity: 0; transform: translateY(-12px); }
      to { opacity: 1; transform: none; }
    }
    @keyframes hero-light-sweep {
      from { transform: translateX(-120%); }
      to { transform: translateX(120%); }
    }
    @keyframes line-draw {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    @keyframes point-arrival {
      from { opacity: 0; filter: blur(5px); transform: translateY(48px) scale(.96); }
      to { opacity: 1; filter: blur(0); transform: none; }
    }
    @keyframes benefit-icon-arrival {
      from { opacity: 0; transform: scale(.45) rotate(-18deg); }
      to { opacity: 1; transform: scale(1) rotate(0); }
    }
    @keyframes legacy-badge-arrival {
      from { opacity: 0; transform: scale(.45) rotate(20deg); }
      to { opacity: 1; transform: scale(1) rotate(0); }
    }
    @keyframes ring-breathe {
      0%, 100% { transform: scale(1); opacity: .75; }
      50% { transform: scale(1.06); opacity: 1; }
    }
    @keyframes number-pulse {
      0%, 100% { transform: translateX(0); }
      45% { transform: translateX(7px); color: #fff; }
    }
    @keyframes collection-image-left {
      from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-80px) scale(.97); }
      to { opacity: 1; clip-path: inset(0); transform: none; }
    }
    @keyframes collection-image-right {
      from { opacity: 0; clip-path: inset(0 0 0 100%); transform: translateX(80px) scale(.97); }
      to { opacity: 1; clip-path: inset(0); transform: none; }
    }
    @keyframes collection-label-arrival {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: none; }
    }
    @keyframes collection-photo-arrival {
      from { filter: brightness(.72); transform: scale(1.12); }
      to { filter: brightness(1); transform: scale(1); }
    }
    @keyframes collection-light-sweep {
      from { transform: translateX(-130%); }
      to { transform: translateX(130%); }
    }


@media (prefers-reduced-motion: no-preference) {
  .hero-slide.is-active .hero-slide-img, .hero-bg-img { animation: hero-arrival 2.35s cubic-bezier(.22,1,.36,1) both; }
  .site-header { animation: nav-arrival .9s .25s cubic-bezier(.22,1,.36,1) both; }
  .site-nav a { animation: nav-link-arrival .7s cubic-bezier(.22,1,.36,1) both; }
  .site-nav a:nth-child(1) { animation-delay: .38s; }
  .site-nav a:nth-child(2) { animation-delay: .46s; }
  .site-nav a:nth-child(3) { animation-delay: .54s; }
  .site-nav a:nth-child(n+4) { animation-delay: .62s; }
  .hero::before { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%); transform: translateX(-120%); animation: hero-light-sweep 1.5s 1.1s cubic-bezier(.22,1,.36,1) both; }
}
@media (max-width: 980px) {
  .hero-slide.is-active .hero-slide-img, .hero-bg-img, .site-header { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up, #overview .overview-photo.reveal-up, #overview .overview-copy.reveal-up,
  .project-motion .reveal-up, .project-motion .motion-child, .project-motion .motion-title {
    opacity: 1 !important; filter: none !important; transform: none !important; clip-path: none !important;
    transition: none !important; animation: none !important;
  }
  .project-motion .motion-image::before { display: none; }
}

/* Restore normal text rendering after the entrance without changing typography. */
.project-motion .reveal-up.is-visible .motion-child,
.project-motion .motion-child.reveal-up.is-visible {
  filter: none;
  transform: none;
  will-change: auto;
}

@media (max-width: 720px) {
  .gallery-grid { height: 240px; margin: 0 28px; }
  .gallery-item { width: min(240px, 100%); height: auto; }
  .gallery-item.is-prev-1 { transform: translate(calc(-50% - 178px), -50%) scale(0.68); }
  .gallery-item.is-next-1 { transform: translate(calc(-50% + 178px), -50%) scale(0.68); }
  .gallery-item.is-prev-2,
  .gallery-item.is-next-2 { opacity: 0; pointer-events: none; }
  .gallery-arrow { width: 38px; height: 38px; }
}

/* Eleva footer branding and referral area; Explore retains its existing styles. */
.site-footer { background: #021421; }
.footer-logo-row { display: flex; align-items: center; gap: 18px; }
.footer-logo-row a { display: block; flex: 1; min-width: 0; }
.footer-logo-row img { width: 100%; height: auto; display: block; }
.footer-project-links { display: grid; gap: 10px; max-width: 260px; margin-top: 26px; }
.footer-project-links a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 5px; color: rgba(255,255,255,.66); font-size: .86rem; }
.footer-project-links span { color: #f0bd5f; font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.footer-project-links a:hover { border-color: #f0bd5f; color: white; }
.footer-eleva-info p { margin: 0; color: rgba(255,255,255,.62); font-size: .86rem; line-height: 1.75; }
.footer-eleva-info .footer-site-address { margin-top: 16px; }
.footer-referral-cta { display: inline-flex; align-items: center; justify-content: center; max-width: 100%; margin-top: 22px; padding: 14px 20px; border: 0; border-radius: 5px; color: #031c32; background: #f0bd5f; font-family: var(--font-body); font-size: .82rem; font-weight: 700; cursor: pointer; transition: background .2s ease; }
.footer-referral-cta:hover { background: #ffd078; }
.footer-referral-cta:focus-visible { outline: 2px solid white; outline-offset: 4px; }
@media (max-width: 720px) {
  .footer-logo-row { max-width: 420px; }
}

/* Aria navbar styling matched to the supplied glass-header reference. */
.site-header { padding: 22px 0 0; transition: padding .3s ease, background .3s ease, box-shadow .3s ease; animation-fill-mode: backwards; }
.site-header .header-row {
  width: calc(100% - 48px);
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 12px;
  background: linear-gradient(110deg, rgba(221,218,200,.48), rgba(112,108,105,.46) 55%, rgba(102,113,113,.44));
  box-shadow: 0 10px 28px rgba(10,42,39,.12), inset 0 1px 0 rgba(255,255,255,.25);
  backdrop-filter: blur(32px) saturate(85%); -webkit-backdrop-filter: blur(32px) saturate(85%);
}
.site-header .brand-logo--header { width: 124px; padding: 0; background: transparent; }
.site-header .site-nav { gap: 22px; }
.site-header .site-nav a {
  font-family: "Jost", var(--font-body) !important; font-size: 14px; font-weight: 700;
  line-height: 1.25; color: #fff; padding-bottom: 0; white-space: nowrap;
}
.site-header .site-nav a:hover { color: #f0bd5f; }
/* .site-header .header-actions .btn-gold {
  padding: 14px 23px; min-height: 50px; border-radius: 2px;
  font-family: "Jost", var(--font-body) !important; font-size: 16px; font-weight: 600;
  background: #f0a226; color: #0a2a27;
} */
.site-header.is-scrolled {
  padding: 8px 0; background: rgba(251,246,234,.92);
  box-shadow: 0 8px 24px rgba(10,42,39,.08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled .header-row {
  min-height: 0; border-color: transparent; border-radius: 0; background: transparent; box-shadow: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.site-header.is-scrolled .site-nav a { color: var(--ink-soft); }
.site-header.is-scrolled .site-nav a:hover { color: var(--gold-600); }
@media (max-width: 1200px) {
  .site-header .site-nav { gap: 14px; }
  .site-header .site-nav a { font-size: 14px; }
}
@media (max-width: 980px) {
  .site-header { padding: 12px 0 0; }
  .site-header .header-row { min-height: 68px; padding: 12px 16px; gap: 16px; }
  .site-header.is-scrolled { padding: 5px 0; }
}

/* Required consent for enquiry, contact and referral forms. */
.field .consent-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .78rem; font-weight: 400; line-height: 1.5; }
.field .consent-check input[type="checkbox"] { flex: 0 0 16px; width: 16px; height: 16px; margin: 3px 0 0; padding: 0; accent-color: #c97f14; cursor: pointer; }
.consent-check span { flex: 1; min-width: 0; text-align: left; }
.consent-field .form-error-msg { text-align: left; margin-left: 26px; }
.consent-check input:focus-visible { outline: 2px solid #c97f14; outline-offset: 3px; }

/* Overview entrances: image from the right, content from the left. */
@media (prefers-reduced-motion: no-preference) {
  #overview { overflow-x: clip; }
  .project-motion #overview .overview-photo.motion-child:not(.is-visible) {
    transform: translateX(80px);
  }
  .project-motion #overview .overview-copy.reveal-up:not(.is-visible) > .motion-child {
    transform: translateX(-80px);
  }
}

/* Connectivity entrances match the overview directions. */
@media (prefers-reduced-motion: no-preference) {
  #connectivity { overflow-x: clip; }
  .project-motion #connectivity .connectivity-visual.motion-child:not(.is-visible) {
    transform: translateX(80px);
  }
  .project-motion #connectivity .connectivity-details.motion-child:not(.is-visible),
  .project-motion #connectivity .connectivity-details .motion-child:not(.is-visible) {
    transform: translateX(-80px);
  }
}

/* Contact entrances: content from the left and form from the right. */
@media (prefers-reduced-motion: no-preference) {
  #contact { overflow-x: clip; }
  .project-motion #contact .contact-copy.motion-child:not(.is-visible) {
    transform: translateX(-80px);
  }
  .project-motion #contact .contact-form-wrap.motion-child:not(.is-visible) {
    transform: translateX(80px);
  }
}

/* Project highlights: a vertical feature list beside the project image. */
.highlights-showcase { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: stretch; }
#highlights .highlights-showcase .highlights-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
#highlights .highlights-showcase .highlight-card { display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: center; min-height: 76px; padding: 16px 20px; border: 1px solid rgba(138,106,47,.2); border-radius: 6px; background: rgba(255,255,255,.25); gap: 18px; }
#highlights .highlights-showcase .highlight-card::before,
#highlights .highlights-showcase .highlight-card::after { display: none; }
#highlights .highlights-showcase .highlight-card:hover { transform: none; box-shadow: none; border-color: rgba(138,106,47,.4); background: rgba(255,255,255,.4); }
#highlights .highlights-showcase .highlight-feature-icon { display: flex; width: 38px; height: 38px; border: 0; border-radius: 0; background: transparent; color: var(--gold-600); }
#highlights .highlights-showcase .highlight-feature-icon svg { width: 28px; height: 28px; }
#highlights .highlights-showcase .highlight-card:hover .highlight-feature-icon { transform: none; background: transparent; color: var(--gold-600); }
#highlights .highlights-showcase .highlight-card h3 { font-family: "Jost", var(--font-body); font-size: 1.12rem; font-weight: 500; line-height: 1.5; margin: 0; color: var(--teal-950); }
.highlights-visual { position: relative; margin: 0; overflow: hidden; border-radius: 12px; background: var(--sand-50); }
.highlights-visual img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; object-position: center center; }
@media (max-width: 720px) {
  .highlights-showcase { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .highlights-visual img { position: static; height: auto; }
  #highlights .highlights-showcase .highlight-card { min-height: 72px; padding: 14px 16px; gap: 14px; }
  #highlights .highlights-showcase .highlight-card h3 { font-size: 1rem; }
}


/* Project highlights enter from opposite sides. */
@media (prefers-reduced-motion: no-preference) {
  #highlights { overflow-x: clip; }
  .project-motion #highlights .highlights-visual.motion-child:not(.is-visible) {
    transform: translateX(80px);
  }
  .project-motion #highlights .highlight-card.motion-child:not(.is-visible) {
    transform: translateX(-80px);
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .highlights-showcase { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .highlights-visual img { position: static; height: auto; }
}

/* Additional mobile enquiry bar; existing floating controls remain available. */
.mobile-enquiry-bar { display: none; }
@media (max-width: 720px) {
  .mobile-enquiry-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(251, 247, 239, 0.95);
    box-shadow: 0 -4px 18px rgba(33, 26, 18, 0.08);
  }
  .mobile-enquiry-button {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid #f8d78f;
    border-radius: 5px;
    background: #f2bf60;
    color: #171710;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
  }
  .mobile-enquiry-button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
  body:has(.mobile-enquiry-bar) { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  body:has(.mobile-enquiry-bar) .sticky-enquire,
  body:has(.mobile-enquiry-bar) .scroll-top { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

.other-location-field { margin-top: 10px; }
.other-location-field[hidden] { display: none; }

/* Compact enquiry forms with paired fields on larger screens. */
#enquiry-popup .popup-card { max-width: 640px; max-height: calc(100dvh - 48px); overflow-y: auto; }
#contact-section-form .field, #enquiry-form .field { min-width: 0; }
@media (min-width: 641px) {
  #contact-section-form, #enquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    align-items: start;
  }
  #contact-section-form > .field-row,
  #enquiry-form > .field-row,
  #contact-section-form > .consent-field,
  #enquiry-form > .consent-field,
  #contact-section-form > button,
  #enquiry-form > button { grid-column: 1 / -1; }
  #contact-section-form > .field-row,
  #enquiry-form > .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (min-width: 1025px) {
  .contact-grid { grid-template-columns: .85fr 1.15fr; gap: 40px; }
}

/* Custom location begins on its own row at the left edge. */
.field.other-location-field { grid-column: 1 / -1; margin-top: 0; text-align: left; }
@media (min-width: 641px) {
  .field.other-location-field { width: calc((100% - 18px) / 2); }
}

/* Reduce vertical whitespace without changing content or motion. */
@media (min-width: 1025px) {
  .section { padding-block: clamp(40px, 6vh, 64px); }
  .section-tight, .developer-band { padding-block: clamp(36px, 5vh, 52px); }
  .section-head { margin-bottom: 28px; }
  .overview-grid { gap: 40px; }
  .overview-photo { height: clamp(340px, 48vh, 400px); }
  .overview-facts { margin-top: 20px; padding-top: 16px; gap: 16px; }
  .highlights-marquee { padding-block: 16px; margin-bottom: 28px; }
  .config-tabs { margin-bottom: 24px; }
  .config-table th, .config-table td { padding-top: 12px; padding-bottom: 12px; }
  .amenities-nav { margin-top: 18px; }
  .contact-form-wrap { padding: 28px; }
  .contact-form-wrap h3 { margin-bottom: 22px; }
  .contact-details { margin-top: 20px; padding-top: 18px; gap: 14px; }
  .contact-map { margin-top: 18px; min-height: 190px; }
}
@media (max-width: 1024px) {
  .section, .section-tight, .developer-band { padding-block: 48px; }
  .section-head { margin-bottom: 28px; }
}

/* Give section content and introductions a little more horizontal room. */
@media (min-width: 981px) {
  .section > .wrap, .section-tight > .wrap, .developer-band > .wrap { max-width: 1320px; }
  .section .section-head, .section-tight .section-head, .developer-band .section-head { max-width: 900px; }
  .section .developer-copy > p { max-width: 1000px; }
}

/* Compact highlight points while retaining the side-by-side presentation. */
@media (min-width: 981px) {
  #highlights .highlights-showcase .highlights-grid { gap: 12px; }
  #highlights .highlights-showcase .highlight-card {
    min-height: 88px;
    padding: 14px 20px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
  }
  #highlights .highlights-showcase .highlight-card h3 { font-size: 1rem; line-height: 1.4; }
  #highlights .highlights-showcase .hl-icon,
  #highlights .highlights-showcase .highlight-feature-icon { width: 32px; height: 32px; }
  #highlights .highlights-showcase .hl-icon svg,
  #highlights .highlights-showcase .highlight-feature-icon svg { width: 24px; height: 24px; }
  #highlights .highlights-visual { min-height: 0; }
}

/* Center the overview photo beside the copy; use a taller desktop frame. */
#overview .overview-photo { height: auto; align-self: center; }
#overview .overview-photo > img { display: block; width: 100%; height: auto; }
@media (min-width: 981px) {
  #overview .overview-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
  }
  #overview .overview-photo { aspect-ratio: 20 / 17; }
  #overview .overview-photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* Match Cloud's amenities arrows, scoped to this carousel. */
.amenities-nav .fp-nav-btn {
  border-color: rgba(251, 247, 239, 0.16);
  background: rgba(251, 247, 239, 0.06);
  color: #FBF7EF;
}
.amenities-nav .fp-nav-btn:hover {
  background: rgba(251, 247, 239, 0.06);
  border-color: #F0A226;
  color: #F5BE5E;
}
.amenities-nav .fp-nav-btn:focus-visible {
  outline: 2px solid #F0A226;
  outline-offset: 3px;
}
