/* ============================================================
   JAD 288 — Landing Page
   Palette: navy #133448 · text #707070 · light bg #f4f7fa
   Font: Hanken Grotesk
   ============================================================ */

:root {
  --navy: #133448;
  --navy-dark: #0e2636;
  --accent: #133448;
  --accent-dark: #0e2636;
  --text: #707070;
  --ink: #133448;
  --light: #f4f7fa;
  --light-2: #eef2f6;
  --beige: #e5ded5;
  --white: #ffffff;
  --border: #e3e1dc;
  --footer-bg: #d8e2e9;
  --maxw: 1240px;
  --radius: 10px;
  --section-pad: clamp(96px, 13vw, 152px);
  --section-pad-sm: clamp(72px, 9vw, 112px);
  --section-pad-tight: clamp(40px, 5vw, 64px);
  --section-pad-transition: clamp(28px, 3.5vw, 44px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #707070;
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 40px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); }

/* Primary CTA — navy fill, luxury elevation */
.btn-enquire,
.btn-cta,
.btn-cta-primary {
  display: inline-block;
  margin-top: 0;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(19, 52, 72, 0.2);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}
.btn-enquire:hover,
.btn-cta:hover,
.btn-cta-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(19, 52, 72, 0.32);
  transform: translateY(-2px);
}
.btn-enquire:active,
.btn-cta:active,
.btn-cta-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(19, 52, 72, 0.24);
}

/* Secondary CTA — refined outline */
.btn-cta-secondary {
  display: inline-block;
  margin-top: 0;
  padding: 14px 32px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(19, 52, 72, 0.85);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}
.btn-cta-secondary:hover {
  background: rgba(19, 52, 72, 0.06);
  border-color: var(--navy);
  color: var(--navy-dark);
}

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost,
.btn-cta-secondary--on-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-ghost:hover,
.btn-cta-secondary--on-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.hero .btn-cta-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}
.hero .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}
.hero .btn-cta-primary {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.btn-block { width: 100%; padding: 17px; font-size: 14px; }

/* ---------- Section titles ---------- */
.section-title {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-title.center { text-align: center; }
.section-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  color: #707070;
  margin-bottom: 20px;
}
.section-lead {
  font-size: clamp(17px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.75;
  max-width: 640px;
  margin: 24px auto 0;
  color: #707070;
}
.section-lead.center { text-align: center; }
.muted {
  color: #707070;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}
.rule { display: block; width: 48px; height: 1px; background: var(--navy); margin-bottom: 28px; }

/* ---------- Section transitions (tighter rhythm between blocks) ---------- */
.connectivity + .investment-advantage,
.investment-advantage + .payment-plan,
.story-bridge + .enclave,
.interiors + .lookbook-gallery {
  padding-top: var(--section-pad-transition);
}
.connectivity,
.investment-advantage,
.payment-plan,
.interiors {
  padding-bottom: var(--section-pad-transition);
}
.payment-plan + .story-bridge {
  padding-top: var(--section-pad-tight);
  padding-bottom: var(--section-pad-tight);
}

/* ---------- Full-bleed visual break ---------- */
.visual-break {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

/* ============ STORY BRIDGE ============ */
.story-bridge {
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: center;
  background: var(--white);
}
.story-bridge--alt { background: var(--light); }
.story-bridge--dark {
  background: linear-gradient(165deg, #f4f8fb 0%, #e8f1f7 48%, #dce9f2 100%);
}
.story-bridge--dark .story-bridge-eyebrow {
  color: rgba(19, 52, 72, 0.45);
}
.story-bridge--dark .story-bridge-title {
  color: var(--navy);
}
.story-bridge--dark .story-bridge-text {
  color: rgba(19, 52, 72, 0.58);
}
.story-bridge-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.story-bridge-title {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 24px;
}
.story-bridge-text {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.75;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto;
}

/* ============ VISUAL PAUSE ============ */
.visual-pause {
  width: 100%;
  overflow: hidden;
  background: var(--white);
}
.visual-pause img {
  width: 100%;
  height: clamp(340px, 56vh, 640px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ============ STORY CHAPTER ============ */
.story-chapter {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

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

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(19, 52, 72, 0.08);
  box-shadow: 0 8px 32px rgba(14, 38, 54, 0.06);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  height: clamp(84px, 10vw, 96px);
}
.brand {
  display: flex;
  align-items: center;
  line-height: 1;
  justify-self: start;
  z-index: 2;
}
.brand-logo {
  display: block;
  height: clamp(56px, 5.5vw, 72px);
  width: auto;
  max-width: min(280px, 34vw);
  object-fit: contain;
  transition: filter 0.45s ease, opacity 0.45s ease;
}
.site-header:not(.is-scrolled) .brand-logo:not(.brand-logo--keep-color) {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.site-header.is-scrolled .brand-logo {
  filter: none;
  opacity: 1;
}
.brand-logo--footer {
  filter: none !important;
  opacity: 1 !important;
}
.site-footer .brand-logo--footer {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.8vw, 52px);
  justify-self: center;
}
.main-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 0;
  white-space: nowrap;
  transition: color 0.35s ease, opacity 0.35s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.85;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}
.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 0.88;
}
.site-header:not(.is-scrolled) .main-nav a {
  color: rgba(255, 255, 255, 0.94);
}
.site-header:not(.is-scrolled) .main-nav a:hover,
.site-header:not(.is-scrolled) .main-nav a:focus-visible {
  color: var(--white);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
  z-index: 2;
}
.header-cta {
  padding: 13px 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.site-header:not(.is-scrolled) .header-cta {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.nav-drawer-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  display: block;
  transition: background 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}
.site-header:not(.is-scrolled) .nav-toggle span {
  background: rgba(255, 255, 255, 0.92);
}

.connectivity,
.investment-advantage,
.enclave,
.residences,
.lead {
  scroll-margin-top: clamp(84px, 10vw, 96px);
}

@media (min-width: 1101px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .site-header > .main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 3.8vw, 52px);
    z-index: 1;
    width: max-content;
    max-width: calc(100% - 560px);
  }
  .header-inner {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1100px) {
  .site-header .container {
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
  }
  .header-actions .header-cta {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: clamp(72px, 10vw, 96px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    bottom: 0;
    z-index: 110;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-top: 1px solid rgba(19, 52, 72, 0.08);
    padding: 12px clamp(20px, 4vw, 40px) 32px;
    box-shadow: 0 12px 32px rgba(14, 38, 54, 0.08);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open a:not(.nav-drawer-cta) {
    padding: 16px 0;
    border-bottom: 1px solid rgba(19, 52, 72, 0.08);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--navy);
  }
  .main-nav.open .nav-drawer-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 16px;
    padding: 14px 24px;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--white) !important;
    border-bottom: none;
  }
  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: 0;
  overflow: hidden;
  color: var(--white);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: rgba(10, 25, 38, 0.32);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 24px 64px;
  gap: 32px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  display: block;
  width: min(560px, 80vw);
  height: auto;
  margin-bottom: 0.5rem;
  object-fit: contain;
}
.hero-title {
  font-size: clamp(64px, 11vw, 132px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
}
.hero-num { font-weight: 400; }
.hero-subtitle {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--white);
}
.hero-tagline {
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 16px;
  max-width: 680px;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-chevron { font-size: 1.3em; line-height: 1; }

/* ============ STATS ============ */
.stats { padding: 110px 0 48px; background: var(--white); }
.stats-grid {
  display: none; /* hidden for now */
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
}
.stat { text-align: center; padding: 0 40px; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat-value { font-size: clamp(48px, 5.5vw, 72px); font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { margin-top: 16px; text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 600; color: var(--text); }

/* ============ PROJECT HIGHLIGHTS ============ */
.project-highlights {
  padding: 0;
  background: transparent;
  text-align: center;
}
.project-highlights .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project-highlights-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 760px;
  border: 1.5px solid rgba(19, 52, 72, 0.85);
  background: transparent;
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 56px);
}
.highlight-block {
  text-align: center;
}
.highlight-divider {
  width: 1px;
  height: clamp(72px, 11vw, 96px);
  background: rgba(19, 52, 72, 0.22);
  margin: 0 clamp(20px, 3vw, 40px);
  flex-shrink: 0;
}
.highlight-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 14px;
}
.highlight-value {
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0.02em;
}
.section-cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}
.section-cta--compact {
  margin-top: clamp(32px, 4vw, 44px);
}
.connectivity .section-cta {
  margin-bottom: clamp(8px, 1vw, 16px);
}
.interiors .section-cta {
  margin-top: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.lookbook-gallery .section-cta {
  margin-top: clamp(24px, 3vw, 36px);
  margin-bottom: 0;
}
.residences .section-cta {
  margin-top: clamp(40px, 5vw, 56px);
}
.footer-cta {
  margin-top: 20px;
}
.enclave .section-cta {
  margin-top: clamp(40px, 5vw, 56px);
  margin-bottom: clamp(8px, 1vw, 16px);
}

/* ============ CONCEPT ============ */
.concept { padding: var(--section-pad) 0; background: var(--white); }
.concept-heading {
  margin-bottom: 32px;
}
.concept-lead {
  font-size: clamp(17px, 1.6vw, 19px);
  font-weight: 400;
  color: #707070;
  line-height: 1.75;
  margin-bottom: clamp(48px, 6vw, 72px);
  max-width: 640px;
}
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 96px); align-items: start; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.feature-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: clamp(24px, 3vw, 32px) 0;
}
.feature-list li:last-child { border-bottom: none; padding-bottom: 0; }
.feature-list li:first-child { padding-top: 0; }
.feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list h3 { color: var(--navy); font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.25; letter-spacing: 0.02em; }
.feature-list p { font-size: 15px; line-height: 1.7; color: #707070; }

.concept-right { position: relative; }
.concept-image { width: 100%; height: clamp(520px, 58vw, 720px); object-fit: cover; border-radius: var(--radius); }
.concept-card {
  position: absolute;
  right: -14px;
  bottom: -22px;
  background: var(--navy);
  color: var(--white);
  padding: 28px 30px;
  max-width: 310px;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(15,38,54,0.30);
}
.concept-card h4 { font-size: 12px; letter-spacing: 0.18em; margin-bottom: 12px; font-weight: 600; }
.concept-card p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* ============ INTERIORS — Editorial showcase ============ */
.interiors {
  padding: var(--section-pad) 0 0;
  background: #faf8f5;
  color: var(--navy);
  overflow: hidden;
}

.interiors-intro {
  text-align: center;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.interiors-intro-inner {
  max-width: 720px;
}

.interiors-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.45);
  margin: 0 0 clamp(20px, 2.5vw, 28px);
}

.interiors-headline {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-transform: none;
  color: var(--navy);
  margin: 0 0 clamp(24px, 3vw, 32px);
}

.interiors-headline-accent {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0.15em;
}

.interiors-deck {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.75;
  color: rgba(19, 52, 72, 0.58);
  max-width: 42ch;
  margin: 0 auto;
}

/* Full-width interior showcases */
.interiors-showcase {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin: 0 0 0 calc(50% - 50vw);
  overflow: hidden;
}

.interiors-showcase img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.interiors-showcase--hero img {
  height: clamp(380px, 68vh, 780px);
  object-position: center 42%;
}

.interiors-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 62%,
    rgba(14, 38, 54, 0.18) 100%
  );
  pointer-events: none;
}

.interiors-showcase-caption {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  left: clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  z-index: 2;
}

.interiors-showcase-index {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
}

/* Editorial image + principle spreads */
.interiors-editorial {
  padding: clamp(64px, 8vw, 112px) 0 clamp(24px, 3vw, 40px);
}

.interiors-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto clamp(64px, 8vw, 96px);
  padding: 0 clamp(20px, 4vw, 48px);
}

.interiors-spread:last-child {
  margin-bottom: 0;
}

.interiors-spread--reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.interiors-spread--reverse .interiors-spread-media {
  order: 2;
}

.interiors-spread--reverse .interiors-spread-copy {
  order: 1;
}

.interiors-spread-media {
  margin: 0;
  overflow: hidden;
}

.interiors-spread-media img {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  object-position: center center;
}

.interiors-spread-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.42);
  margin: 0 0 clamp(28px, 3.5vw, 40px);
}

.interiors-principles {
  list-style: none;
  margin: 0;
  padding: 0;
}

.interiors-principle {
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-top: 1px solid rgba(19, 52, 72, 0.1);
}

.interiors-principle:last-child {
  border-bottom: 1px solid rgba(19, 52, 72, 0.1);
}

.interiors-principle-title {
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.3;
}

.interiors-principle-text {
  font-size: clamp(14px, 1.2vw, 15px);
  line-height: 1.7;
  color: rgba(19, 52, 72, 0.55);
  margin: 0;
  max-width: 34ch;
}

.interiors-closing {
  text-align: center;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.85;
  color: rgba(19, 52, 72, 0.55);
  max-width: 46ch;
  margin: clamp(28px, 3.5vw, 40px) auto clamp(12px, 1.5vw, 20px);
  padding: 0 20px;
}

/* ============ CONNECTIVITY ============ */
.connectivity { padding: var(--section-pad) 0 var(--section-pad-transition); background: var(--light); }
.connectivity .rule {
  margin-left: auto;
  margin-right: auto;
}
.connectivity-title {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 32px);
}
.connectivity-lead {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.connectivity-map {
  width: 100%;
  margin-bottom: 0;
}
.connectivity-map--full {
  margin-top: clamp(8px, 2vw, 16px);
  background: var(--light);
}
.connectivity-map--full .map-image {
  border-radius: 0;
  width: 100%;
  height: auto;
  max-width: 1377px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}
.map-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

/* Destination marquee strip */
.destination-marquee {
  margin-top: clamp(40px, 5vw, 56px);
  padding: clamp(28px, 3.5vw, 40px) 0 clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.destination-marquee-viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.destination-marquee-track {
  display: flex;
  align-items: flex-start;
  gap: clamp(48px, 6vw, 96px);
  width: max-content;
  padding: 0 clamp(20px, 3vw, 36px);
  animation: destination-marquee 100s linear infinite;
  will-change: transform;
}
.destination-marquee:hover .destination-marquee-track {
  animation-play-state: paused;
}
@keyframes destination-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.destination-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  column-gap: clamp(14px, 1.8vw, 22px);
  flex-shrink: 0;
  min-width: min(200px, 55vw);
}
.destination-time {
  grid-row: 1 / -1;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
.destination-rule {
  grid-row: 1;
  align-self: center;
  width: clamp(28px, 4vw, 48px);
  height: 1px;
  background: rgba(19, 52, 72, 0.22);
}
.destination-names {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.destination-primary {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
@media (prefers-reduced-motion: reduce) {
  .destination-marquee-viewport {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .destination-marquee-track {
    animation: none;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
}

/* ============ LOOKBOOK GALLERY ============ */
.lookbook-gallery {
  padding: var(--section-pad) 0 clamp(24px, 3vw, 40px);
  background: var(--light);
  overflow: hidden;
}
.lookbook-gallery + .residences {
  padding-top: clamp(32px, 4vw, 56px);
}
.lookbook-head {
  margin-bottom: clamp(40px, 5vw, 56px);
}
.lookbook-head .rule {
  margin-left: auto;
  margin-right: auto;
}
.lookbook-gallery .section-title {
  margin-bottom: 20px;
  text-align: center;
}
.lookbook-intro {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.75;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

/* SEO archive — all pages crawlable, visually hidden */
.lookbook-archive {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lookbook-archive figure { margin: 0; }
.lookbook-archive img { max-width: none; width: auto; height: auto; }

/* Stage */
.lookbook-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 40px);
  padding: 0 clamp(16px, 3vw, 24px);
}
.lookbook-app {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 40px);
}

/* Open book */
.lookbook-book {
  position: relative;
  width: min(100%, 1400px);
  height: 800px;
  max-height: 85vh;
  perspective: 2600px;
  perspective-origin: 50% 44%;
}
.lookbook-book-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  border-radius: 3px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 56px 110px rgba(14, 38, 54, 0.18),
    0 20px 40px rgba(14, 38, 54, 0.1),
    0 6px 14px rgba(14, 38, 54, 0.06);
}
.lookbook-book-surface {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 18%),
    linear-gradient(145deg, #faf6ef 0%, #ece6dc 100%);
  border: 1px solid rgba(19, 52, 72, 0.1);
  border-radius: 3px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 18px 36px rgba(14, 38, 54, 0.04);
}
.lookbook-book-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 4;
  opacity: 0.65;
  mix-blend-mode: multiply;
}

/* Spine & gutter */
.lookbook-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: clamp(10px, 1.2vw, 16px);
  transform: translateX(-50%);
  z-index: 6;
  background: linear-gradient(
    90deg,
    #c4bdb2 0%,
    #ebe5dc 18%,
    #f7f3ec 50%,
    #ebe5dc 82%,
    #c4bdb2 100%
  );
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.12),
    -6px 0 14px rgba(0, 0, 0, 0.06),
    6px 0 14px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}
.lookbook-gutter-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: clamp(48px, 6vw, 80px);
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(14, 38, 54, 0.1) 0%,
    rgba(14, 38, 54, 0.02) 35%,
    rgba(14, 38, 54, 0.02) 65%,
    rgba(14, 38, 54, 0.1) 100%
  );
}

/* Pages */
.lookbook-page {
  position: relative;
  height: 100%;
  padding: clamp(22px, 2.8vw, 38px) clamp(20px, 2.5vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, transparent 22%),
    linear-gradient(145deg, #fbf8f3 0%, #eee8df 100%);
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  z-index: 2;
  box-shadow: inset -8px 0 18px rgba(14, 38, 54, 0.03);
}
.lookbook-page--left {
  padding-right: clamp(28px, 3.5vw, 44px);
  box-shadow: inset -12px 0 20px rgba(14, 38, 54, 0.05);
}
.lookbook-page--right {
  padding-left: clamp(28px, 3.5vw, 44px);
  box-shadow: inset 12px 0 20px rgba(14, 38, 54, 0.05);
}
.lookbook-page-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  flex-shrink: 0;
}
.lookbook-page-heading {
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: clamp(14px, 1.8vw, 20px);
  flex-shrink: 0;
}
.lookbook-page-figure {
  flex: 1 1 0;
  margin: 0;
  min-height: 0;
  display: flex;
  overflow: hidden;
  border-radius: 2px;
  box-shadow:
    0 10px 32px rgba(14, 38, 54, 0.12),
    inset 0 0 0 1px rgba(19, 52, 72, 0.06);
  background: #e8e4dc;
}
.lookbook-page-figure img {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}
.lookbook-placeholder {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  min-height: 0;
  background:
    linear-gradient(135deg, #e6e0d6 0%, #d4cdc2 45%, #ece6dc 100%);
  position: relative;
}
.lookbook-placeholder::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(19, 52, 72, 0.12);
  opacity: 0.65;
}

/* 3D page flipper */
.lookbook-flip-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 10;
  transform-style: preserve-3d;
  pointer-events: none;
  will-change: transform;
}
.lookbook-flip-layer--next {
  right: 0;
  transform-origin: left center;
}
.lookbook-flip-layer--prev {
  left: 0;
  transform-origin: right center;
}
.lookbook-flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  background: linear-gradient(145deg, #faf7f2 0%, #f0ebe3 100%);
  border: 1px solid rgba(19, 52, 72, 0.06);
  padding: clamp(20px, 2.8vw, 36px) clamp(18px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.lookbook-flip-face--back {
  transform: rotateY(180deg);
}
.lookbook-flip-layer--next .lookbook-flip-face--front {
  padding-left: clamp(24px, 3vw, 40px);
  box-shadow: -8px 0 24px rgba(14, 38, 54, 0.08);
}
.lookbook-flip-layer--prev .lookbook-flip-face--front {
  padding-right: clamp(24px, 3vw, 40px);
  box-shadow: 8px 0 24px rgba(14, 38, 54, 0.08);
}
.lookbook-flip-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 9;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lookbook-flip-shadow--next {
  right: 0;
  background: linear-gradient(270deg, rgba(14, 38, 54, 0.28) 0%, transparent 70%);
}
.lookbook-flip-shadow--prev {
  left: 0;
  background: linear-gradient(90deg, rgba(14, 38, 54, 0.28) 0%, transparent 70%);
}
.lookbook-flip-shadow.is-active {
  opacity: 1;
}

/* Navigation */
.lookbook-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}
.lookbook-nav-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  padding: 8px 4px;
  transition: opacity 0.2s ease, color 0.2s ease;
  opacity: 0.72;
}
.lookbook-nav-btn:hover:not(:disabled) {
  opacity: 1;
  color: var(--navy-dark);
}
.lookbook-nav-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.lookbook-nav-counter {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  min-width: 120px;
  text-align: center;
}

/* Reduced motion + mobile */
.lookbook-gallery.lookbook-reduced-motion .lookbook-flip-layer {
  display: none;
}
.lookbook-book--mobile .lookbook-book-surface {
  grid-template-columns: 1fr;
}
.lookbook-book--mobile .lookbook-page--right {
  display: none;
}
.lookbook-book--mobile .lookbook-spine,
.lookbook-book--mobile .lookbook-gutter-shadow {
  display: none;
}
.lookbook-book--mobile {
  height: clamp(480px, 72vw, 680px);
}

@media (max-width: 1024px) {
  .lookbook-book {
    height: clamp(520px, 62vw, 720px);
  }
}

@media (max-width: 768px) {
  .lookbook-book {
    height: clamp(460px, 88vw, 620px);
    perspective: 1800px;
  }
}

/* ============ RESIDENCES — Luxury selector ============ */
.residences {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
  overflow: hidden;
}

.residences-inner {
  max-width: 1180px;
}

.residences-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.residences-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.42);
  margin: 0 0 clamp(20px, 2.5vw, 28px);
}

.residences-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.12;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
}

.residences-deck {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.75;
  color: rgba(19, 52, 72, 0.55);
  margin: 0;
}

.residence-selector {
  border-top: 1px solid rgba(19, 52, 72, 0.08);
}

.residence-selector-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 16px);
  padding: clamp(24px, 3vw, 32px) 0 clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(19, 52, 72, 0.08);
  position: relative;
  z-index: 3;
}

.residence-selector-tab {
  appearance: none;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.38);
  padding: 12px clamp(20px, 3vw, 36px);
  cursor: pointer;
  position: relative;
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.residence-selector-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.residence-selector-tab:hover {
  color: rgba(19, 52, 72, 0.72);
}

.residence-selector-tab.is-active {
  color: var(--navy);
}

.residence-selector-tab.is-active::after {
  width: calc(100% - 24px);
}

.residence-selector-panels {
  position: relative;
}

.residence-selector-panel {
  display: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 72px);
}

.residence-selector-panel.is-active {
  display: grid;
  animation: residence-panel-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes residence-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.residence-gallery {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 16px);
  min-height: clamp(420px, 44vw, 560px);
}

.residence-gallery-main {
  margin: 0;
  flex: 1;
  background: #f0f2f4;
  border: 1px solid rgba(19, 52, 72, 0.06);
  overflow: hidden;
  min-height: clamp(320px, 36vw, 460px);
}

.residence-gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 36vw, 460px);
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.residence-gallery-main img.is-fading {
  opacity: 0;
}

.residence-gallery-thumbs {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.residence-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.residence-gallery-thumb {
  flex: 0 0 clamp(72px, 8vw, 96px);
  appearance: none;
  border: 1px solid rgba(19, 52, 72, 0.1);
  background: #f0f2f4;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.residence-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.residence-gallery-thumb:hover {
  border-color: rgba(19, 52, 72, 0.28);
}

.residence-gallery-thumb.is-active {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
}

.residence-selector-panel.is-active .residence-gallery-main img {
  animation: residence-gallery-in 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes residence-gallery-in {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.residence-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 1vw, 16px) 0;
}

.residence-detail-type {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 clamp(16px, 2vw, 24px);
  line-height: 1.15;
}

.residence-detail-desc {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.8;
  color: rgba(19, 52, 72, 0.58);
  margin: 0 0 clamp(28px, 3.5vw, 40px);
  max-width: 38ch;
}

.residence-detail-price {
  margin: 0 0 clamp(32px, 4vw, 48px);
  padding-bottom: clamp(28px, 3.5vw, 36px);
  border-bottom: 1px solid rgba(19, 52, 72, 0.08);
}

.residence-detail-price-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.4);
  margin-bottom: 8px;
}

.residence-detail-price-value {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
}

.residence-advantages {
  list-style: none;
  margin: 0 0 clamp(36px, 4.5vw, 48px);
  padding: 0;
}

.residence-advantages li {
  font-size: clamp(13px, 1.15vw, 14px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.62);
  padding: 14px 0;
  border-top: 1px solid rgba(19, 52, 72, 0.08);
  line-height: 1.4;
}

.residence-advantages li:last-child {
  border-bottom: 1px solid rgba(19, 52, 72, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .residence-selector-panel.is-active {
    animation: none;
  }

  .residence-selector-panel.is-active .residence-gallery-main img {
    transition: none;
    animation: none;
    transform: none;
  }
}

@media (max-width: 900px) {
  .residence-selector-nav {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .residence-selector-nav::-webkit-scrollbar {
    display: none;
  }

  .residence-selector-tab {
    flex-shrink: 0;
  }

  .residence-selector-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
  }

  .residence-selector-panels {
    min-height: 0;
  }

  .residence-gallery {
    min-height: 0;
  }

  .residence-gallery-main,
  .residence-gallery-main img {
    min-height: clamp(240px, 56vw, 340px);
  }

  .residence-detail {
    padding: 0;
  }
}

/* ============ ENCLAVE — Lifestyle Editorial ============ */
.enclave {
  padding: var(--section-pad) 0 var(--section-pad-transition);
  background: var(--white);
  overflow: hidden;
}

.enclave-intro {
  max-width: none;
}

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

.enclave-header .rule {
  margin-left: auto;
  margin-right: auto;
}

.enclave-title {
  text-align: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(24px, 3vw, 32px);
  line-height: 1.06;
  text-transform: none;
  letter-spacing: 0.02em;
}

.enclave-lead {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.85;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Lifestyle pillars — symmetrical editorial grid */
.enclave-pillars-wrap {
  max-width: none;
  margin-top: clamp(48px, 6vw, 72px);
}

.enclave-pillars-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  margin: 0 0 clamp(40px, 5vw, 56px);
  padding-bottom: clamp(16px, 2vw, 20px);
  border-bottom: 1px solid rgba(19, 52, 72, 0.1);
}

.enclave-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.enclave-pillar {
  display: flex;
  flex-direction: column;
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(19, 52, 72, 0.14);
}

.enclave-pillar-index {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(19, 52, 72, 0.07);
  margin: 0 0 clamp(16px, 2vw, 20px);
  user-select: none;
}

.enclave-pillar-title {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 clamp(16px, 2vw, 20px);
  min-height: 2.7em;
}

.enclave-pillar-text {
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.85;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.connectivity-eyebrow {
  text-align: center;
  margin-bottom: 12px;
}

/* ============ PAYMENT PLAN — Ownership Journey ============ */
.payment-plan {
  --journey-gold: #b8a574;
  --journey-gold-light: #c4b48a;
  --journey-gold-soft: rgba(184, 165, 116, 0.22);
  --journey-gold-glow: rgba(184, 165, 116, 0.38);
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(165deg, #f4f8fb 0%, #e8f1f7 48%, #dce9f2 100%);
  color: rgba(19, 52, 72, 0.82);
}

.payment-plan-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.payment-plan-header {
  margin-bottom: clamp(32px, 4vw, 44px);
}

.payment-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.45);
  margin: 0;
}

/* Large 60 / 40 hero */
.payment-hero-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(40px, 5vw, 56px) 0;
  margin-bottom: clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(19, 52, 72, 0.1);
  border-bottom: 1px solid rgba(19, 52, 72, 0.1);
}

.payment-hero-col {
  text-align: center;
}

.payment-hero-value {
  font-size: clamp(88px, 12vw, 148px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--navy);
  margin: 0 0 12px;
}

.payment-hero-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.45);
  margin: 0;
  line-height: 1.5;
}

.payment-hero-rule {
  width: 1px;
  height: clamp(64px, 9vw, 96px);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(184, 165, 116, 0.55),
    transparent
  );
}

/* Horizontal ownership roadmap */
.ownership-roadmap {
  position: relative;
  width: 100%;
  margin: 0 auto clamp(40px, 5vw, 56px);
  padding: clamp(12px, 2vw, 20px) 0 clamp(8px, 1vw, 12px);
}

.ownership-roadmap-track {
  position: absolute;
  left: clamp(24px, 3.5vw, 40px);
  right: clamp(24px, 3.5vw, 40px);
  top: 11px;
  height: 2px;
  pointer-events: none;
}

.ownership-roadmap-line {
  position: absolute;
  inset: 0;
  background: rgba(19, 52, 72, 0.12);
  border-radius: 1px;
}

.ownership-roadmap-line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--journey-gold-light) 0%,
    var(--journey-gold) 70%,
    rgba(196, 180, 138, 0.85) 100%
  );
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: 1px;
  box-shadow: 0 0 16px var(--journey-gold-soft);
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.ownership-roadmap-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(4px, 0.8vw, 8px);
  position: relative;
}

.ownership-roadmap-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.38;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ownership-roadmap-node {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #eef4f8;
  border: 1.5px solid rgba(19, 52, 72, 0.22);
  margin-bottom: clamp(16px, 2vw, 22px);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition:
    background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ownership-roadmap-name {
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(19, 52, 72, 0.42);
  margin: 0 0 6px;
  line-height: 1.35;
  transition: color 0.5s ease;
}

.ownership-roadmap-pct {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(19, 52, 72, 0.32);
  margin: 0;
  transition: color 0.5s ease;
}

.ownership-roadmap-step.is-reached,
.ownership-roadmap-step.is-active {
  opacity: 1;
}

.ownership-roadmap-step.is-reached .ownership-roadmap-node,
.ownership-roadmap-step.is-active .ownership-roadmap-node {
  background: var(--journey-gold);
  border-color: var(--journey-gold-light);
  box-shadow:
    0 0 0 4px var(--journey-gold-soft),
    0 0 16px var(--journey-gold-glow);
}

.ownership-roadmap-step.is-reached .ownership-roadmap-name {
  color: rgba(19, 52, 72, 0.78);
}

.ownership-roadmap-step.is-reached .ownership-roadmap-pct {
  color: var(--journey-gold);
}

.ownership-roadmap-step.is-active .ownership-roadmap-node {
  transform: scale(1.15);
  box-shadow:
    0 0 0 6px rgba(184, 165, 116, 0.18),
    0 0 24px rgba(184, 165, 116, 0.38);
  animation: roadmap-glow 2.6s ease-in-out infinite;
}

.ownership-roadmap-step.is-active .ownership-roadmap-name {
  color: var(--navy);
}

.ownership-roadmap-step.is-active .ownership-roadmap-pct {
  color: var(--journey-gold);
}

@keyframes roadmap-glow {
  0%, 100% {
    box-shadow:
      0 0 0 5px rgba(184, 165, 116, 0.14),
      0 0 20px rgba(184, 165, 116, 0.32);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(184, 165, 116, 0.24),
      0 0 32px rgba(184, 165, 116, 0.48);
  }
}

/* Completion finale */
.ownership-roadmap-step--finale .ownership-roadmap-node {
  width: 16px;
  height: 16px;
  margin-top: -2px;
}

.ownership-roadmap-step--finale .ownership-roadmap-name {
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.16em;
}

.ownership-roadmap-step--finale .ownership-roadmap-pct {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
}

.ownership-roadmap-step--finale.is-reached .ownership-roadmap-node,
.ownership-roadmap-step--finale.is-active .ownership-roadmap-node {
  background: var(--journey-gold-light);
  border-color: var(--journey-gold);
  box-shadow:
    0 0 0 8px rgba(184, 165, 116, 0.2),
    0 0 28px rgba(184, 165, 116, 0.42);
}

.ownership-roadmap-step--finale.is-active .ownership-roadmap-node {
  animation: roadmap-glow-finale 2.8s ease-in-out infinite;
}

@keyframes roadmap-glow-finale {
  0%, 100% {
    box-shadow:
      0 0 0 10px rgba(184, 165, 116, 0.16),
      0 0 32px rgba(184, 165, 116, 0.38);
  }
  50% {
    box-shadow:
      0 0 0 14px rgba(184, 165, 116, 0.26),
      0 0 48px rgba(184, 165, 116, 0.55);
  }
}

.payment-summary {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.85;
  color: rgba(19, 52, 72, 0.58);
  max-width: 46ch;
  margin: 0 auto;
}

.payment-plan-cta {
  text-align: center;
  margin-top: clamp(56px, 7vw, 72px);
}

.btn-payment {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-payment:hover {
  background: transparent;
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .ownership-roadmap-line-fill {
    transition: none;
  }

  .ownership-roadmap-step {
    transition: opacity 0.2s ease;
  }

  .ownership-roadmap-step.is-active .ownership-roadmap-node,
  .ownership-roadmap-step--finale.is-active .ownership-roadmap-node {
    animation: none;
  }
}

@media (max-width: 900px) {
  .ownership-roadmap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ownership-roadmap::-webkit-scrollbar {
    display: none;
  }

  .ownership-roadmap-steps {
    min-width: 720px;
    justify-content: flex-start;
    gap: 12px;
  }

  .ownership-roadmap-step {
    flex: 0 0 88px;
  }

  .ownership-roadmap-track {
    left: 44px;
    right: 44px;
  }
}

@media (max-width: 640px) {
  .payment-hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
    margin-bottom: 40px;
  }

  .payment-hero-rule {
    width: clamp(48px, 20vw, 80px);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(196, 180, 138, 0.5),
      transparent
    );
  }

  .payment-hero-value {
    font-size: clamp(72px, 20vw, 104px);
  }

  .ownership-roadmap-steps {
    min-width: 640px;
  }

  .ownership-roadmap-step {
    flex: 0 0 76px;
  }

  .payment-plan-cta .btn-payment {
    width: 100%;
    max-width: 320px;
  }
}

/* ============ INVESTMENT ADVANTAGE ============ */
.investment-advantage {
  padding: var(--section-pad) 0 var(--section-pad-transition);
  background:
    linear-gradient(165deg, #eef2f6 0%, #f8fafb 38%, #ffffff 100%);
  color: var(--text);
  overflow: hidden;
}
.investment-advantage .section-title {
  color: var(--navy);
}
.investment-advantage .story-chapter {
  color: var(--text);
  margin-bottom: 20px;
}

/* Editorial composition */
.investment-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
  min-height: clamp(520px, 52vw, 640px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.investment-editorial-visual {
  position: relative;
  margin: 0;
  min-height: clamp(420px, 48vw, 600px);
  align-self: stretch;
}
.investment-editorial-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 48vw, 600px);
  object-fit: cover;
  object-position: center 18%;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow:
    0 28px 64px rgba(14, 38, 54, 0.14),
    0 8px 24px rgba(14, 38, 54, 0.08);
}
.investment-editorial-frame {
  position: absolute;
  inset: clamp(14px, 2vw, 22px) clamp(-14px, -1.5vw, -10px) clamp(-14px, -1.5vw, -10px) clamp(14px, 2vw, 22px);
  border: 1px solid rgba(19, 52, 72, 0.14);
  z-index: 1;
  pointer-events: none;
}
.investment-editorial-visual::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -6%;
  width: 42%;
  height: 72%;
  background: linear-gradient(135deg, rgba(19, 52, 72, 0.06) 0%, transparent 70%);
  z-index: 3;
  pointer-events: none;
}

.investment-editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 2vw, 28px) 0 clamp(16px, 2vw, 28px) clamp(8px, 1.5vw, 20px);
}

.investment-editorial-title {
  margin: 0 0 clamp(24px, 3vw, 32px);
  line-height: 1.06;
  max-width: 11ch;
}

.investment-advantage-lead {
  font-size: clamp(16px, 1.45vw, 18px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  max-width: 38ch;
}

/* Premium metrics — editorial stack */
.investment-metrics {
  margin-top: clamp(36px, 4.5vw, 52px);
  padding-top: clamp(28px, 3.5vw, 36px);
  border-top: 1px solid rgba(19, 52, 72, 0.14);
  display: grid;
  gap: 0;
}
.investment-metric {
  padding: clamp(18px, 2.2vw, 24px) 0;
  border-bottom: 1px solid rgba(19, 52, 72, 0.1);
  position: relative;
}
.investment-metric--featured {
  padding-top: 0;
  padding-bottom: clamp(22px, 2.8vw, 28px);
}
.investment-metric-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.investment-metric-value {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}
.investment-metric--featured .investment-metric-value {
  font-size: clamp(34px, 3.8vw, 46px);
  letter-spacing: 0.02em;
  font-weight: 800;
}
.investment-metric-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.72;
  transition: opacity 0.2s ease;
}
.investment-metric-note:hover {
  opacity: 1;
}

.investment-editorial-cta {
  margin-top: clamp(32px, 4vw, 44px);
}
.investment-editorial-cta .btn-cta-primary {
  margin-top: 0;
}

.investment-advantage .btn-cta-primary {
  border-color: var(--navy);
  color: var(--white);
}
.investment-advantage .btn-cta-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

.investment-advantage-strip {
  overflow: hidden;
  margin-top: 0;
}

@media (min-width: 900px) {
  .investment-editorial-visual {
    margin-left: calc(-1 * clamp(20px, 3vw, 36px));
  }
}
.investment-advantage-viewport {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 4vw, 44px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.investment-advantage-track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 48px);
  width: max-content;
  padding: 0 clamp(16px, 3vw, 32px);
  animation: investment-marquee 90s linear infinite;
  will-change: transform;
}
.investment-advantage-strip:hover .investment-advantage-track {
  animation-play-state: paused;
}
@keyframes investment-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.investment-benefit {
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  white-space: nowrap;
  flex-shrink: 0;
}
.investment-divider {
  width: 1px;
  height: 18px;
  background: rgba(19, 52, 72, 0.16);
  flex-shrink: 0;
}

/* ---------- ROI calculator ---------- */
.roi-calculator {
  padding: var(--section-pad-sm) 0;
  background: var(--light);
}
.roi-calculator .section-title {
  margin-bottom: clamp(16px, 2vw, 22px);
}
.roi-calculator .section-lead {
  max-width: 640px;
  margin: 0 auto clamp(36px, 4vw, 48px);
}
.calc-card {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(32px, 4.5vw, 48px);
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(19, 52, 72, 0.08);
}
.calc-amount label {
  display: block;
  font-size: clamp(15px, 1.5vw, 16px);
  color: var(--ink);
  margin-bottom: 18px;
}
.calc-amount label strong {
  color: var(--navy);
  font-weight: 800;
}
.calc-amount input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: var(--beige);
  outline: none;
}
.calc-amount input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(19, 52, 72, 0.35);
}
.calc-amount input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(19, 52, 72, 0.35);
}
.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.calc-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 18px);
  margin: clamp(32px, 4vw, 40px) 0 clamp(24px, 3vw, 30px);
}
.calc-box {
  background: var(--light-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 2.5vw, 24px) clamp(14px, 2vw, 18px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-box-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.calc-box-value {
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.calc-box-note {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
}
.calc-footer {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Investment advantage tabs ---------- */
.investment-tabs {
  padding: var(--section-pad-sm) 0 var(--section-pad);
  background: var(--white);
}
.investment-tabs .section-title {
  margin-bottom: clamp(16px, 2vw, 22px);
}
.investment-tabs .section-lead {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 54px);
}
.tabs-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
  gap: clamp(28px, 4vw, 40px);
  align-items: start;
}
.tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tab-btn {
  text-align: left;
  background: var(--light-2);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(18px, 2.2vw, 22px) clamp(20px, 2.5vw, 24px);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
  line-height: 1.35;
}
.tab-btn:hover { border-color: var(--navy); }
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.tabs-content {
  background: var(--light-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 44px);
  min-height: min(280px, 50vw);
}
.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  animation: tab-fade-in 0.3s ease;
}
.tab-panel h3 {
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 24px);
  font-weight: 700;
  margin-bottom: 18px;
}
.tab-panel p {
  font-size: clamp(15px, 1.5vw, 16px);
  margin-bottom: 16px;
  max-width: 560px;
  line-height: 1.65;
}
.tab-panel .btn { margin-top: clamp(12px, 2vw, 14px); }
@keyframes tab-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .calc-results { grid-template-columns: repeat(2, 1fr); }
  .tabs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .calc-results { grid-template-columns: 1fr; }
  .tab-btn { font-size: 14px; padding: 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .investment-advantage-viewport {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .investment-advantage-track {
    animation: none;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }
}

/* ============ LEAD FORM ============ */
.lead {
  padding: var(--section-pad) 0;
  background: var(--navy-dark);
  color: var(--white);
}
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.lead-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
}
.lead-copy .lead-title {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.lead-intro {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 440px;
  margin: 0;
}
.lead-form {
  background: transparent;
  border-radius: 0;
  padding: 0;
  max-width: none;
  margin: 0;
  box-shadow: none;
}
.lead-form .field {
  margin-bottom: 20px;
}
.lead-form .field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.92);
}
.lead-form .field input,
.lead-form .field select,
.lead-form .field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--white);
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-form .field input::placeholder,
.lead-form .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.lead-form .field select {
  color: rgba(255, 255, 255, 0.82);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lead-form .field select option {
  color: var(--navy);
  background: var(--white);
}
.lead-form .field textarea {
  resize: vertical;
  min-height: 112px;
}
.lead-form .field input:focus,
.lead-form .field select:focus,
.lead-form .field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
}
.phone-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}
.phone-code {
  padding-right: 28px !important;
  background-position: right 10px center !important;
}
.btn-lead-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  background: var(--white);
  border: 1.5px solid var(--white);
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}
.btn-lead-submit:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}
.lead-note {
  font-size: 13px;
  text-align: left;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}
.lead-form .form-error {
  color: #ffc9c9 !important;
  text-align: left !important;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--footer-bg);
  color: var(--navy);
  padding: clamp(56px, 7vw, 80px) 0 clamp(40px, 5vw, 56px);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.2fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand .brand-logo--footer {
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 4px;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(19, 52, 72, 0.62);
  margin: 18px 0 22px;
  line-height: 1.5;
}
.footer-lang-select {
  appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23133448' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1px solid rgba(19, 52, 72, 0.22);
  border-radius: 2px;
  padding: 11px 40px 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  min-width: 148px;
  cursor: pointer;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.footer-col h4 {
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  color: rgba(19, 52, 72, 0.78);
  transition: color 0.2s;
  line-height: 1.45;
}
.footer-col a:hover { color: var(--navy); }

/* ============ RESPONSIVE ============ */

/* ---- Tablet (≤ 980px) ---- */
@media (max-width: 980px) {
  .concept-grid { grid-template-columns: 1fr; gap: 40px; }
  .investment-editorial {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: clamp(28px, 5vw, 40px);
    margin-bottom: clamp(36px, 5vw, 48px);
  }
  .investment-editorial-visual {
    min-height: clamp(280px, 52vw, 380px);
    margin-left: 0;
  }
  .investment-editorial-visual img {
    min-height: clamp(280px, 52vw, 380px);
  }
  .investment-editorial-content {
    padding: 0;
  }
  .investment-editorial-title {
    max-width: none;
  }
  .investment-advantage-lead {
    max-width: none;
  }
  .enclave-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(32px, 4vw, 40px);
  }
  .investment-advantage-viewport { padding: 22px 0; }
  .concept-image { height: 380px; }
  .concept-card { right: 16px; bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .footer-brand { align-items: flex-start; }
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .destination-marquee { margin-top: 36px; padding: 28px 0 20px; }
  .destination-marquee-track { gap: 40px; animation-duration: 85s; }
}

/* ---- Mobile (≤ 760px) ---- */
@media (max-width: 760px) {
  /* Container */
  .container { padding: 0 20px; }

  /* Header & nav */
  .header-inner {
    height: 72px;
  }
  .main-nav.open {
    top: 72px;
  }
  .main-nav.open a::after {
    bottom: 12px;
  }
  .brand-logo {
    height: 40px;
    max-width: min(150px, 38vw);
  }

  /* Section spacing */
  .stats, .enclave, .interiors, .connectivity,
  .lookbook-gallery, .investment-advantage, .lead, .payment-plan,
  .residences, .story-bridge, .enclave { padding: clamp(64px, 12vw, 88px) 0; }
  .connectivity + .investment-advantage,
  .investment-advantage + .payment-plan,
  .story-bridge + .enclave,
  .interiors + .lookbook-gallery {
    padding-top: clamp(24px, 5vw, 36px);
  }
  .connectivity,
  .investment-advantage,
  .payment-plan,
  .interiors {
    padding-bottom: clamp(24px, 5vw, 36px);
  }
  .payment-plan + .story-bridge {
    padding-top: clamp(32px, 6vw, 48px);
    padding-bottom: clamp(32px, 6vw, 48px);
  }
  .connectivity-map--full .map-image { height: auto; max-width: 100%; }
  .visual-pause img { height: clamp(240px, 48vh, 400px); }

  /* Global section titles on mobile */
  .section-title { font-size: clamp(22px, 5vw, 42px); letter-spacing: 0.01em; }
  .section-lead { font-size: 17px; line-height: 1.6; }
  .section-eyebrow { font-size: 11px; letter-spacing: 0.16em; margin-bottom: 12px; }

  /* Hero */
  .hero-inner { padding: 32px 16px 48px; gap: 24px; }
  .hero-logo { width: min(220px, 72vw); margin-bottom: 0; }
  .hero-subtitle { font-size: clamp(16px, 4.8vw, 28px); letter-spacing: 0.12em; }
  .hero-tagline {
    font-size: clamp(9px, 2.6vw, 11px);
    letter-spacing: 0.12em;
    line-height: 1.65;
    padding: 0 4px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 340px;
  }
  .hero-actions .btn {
    flex: none;
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 11px;
    padding: 14px 18px;
    min-width: 0;
    letter-spacing: 0.1em;
    white-space: normal;
    line-height: 1.35;
  }

  /* Stats */
  .stats { padding: 56px 0 20px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
  .stat { padding: 0 8px; text-align: center; }
  .stat + .stat { border-left: 1px solid var(--border); border-top: none; }
  .stat-value { font-size: clamp(28px, 7.5vw, 48px); }
  .stat-label { font-size: 11px; letter-spacing: 0.1em; margin-top: 10px; }

  .lookbook-book { height: clamp(460px, 88vw, 620px); perspective: 1600px; }
  .lookbook-page-label { font-size: 9px; letter-spacing: 0.22em; }
  .lookbook-page-heading { font-size: 12px; letter-spacing: 0.14em; margin-bottom: 12px; }
  .lookbook-page { padding: 16px 14px; }
  .lookbook-flip-face { padding: 16px 14px; }
  .story-bridge { padding: 48px 0; }
  .story-bridge-title { font-size: clamp(18px, 4.5vw, 28px); }
  .rule { width: 40px; height: 1px; margin-bottom: 24px; }
  .project-highlights { padding: 48px 0 52px; }
  .project-highlights-card {
    grid-template-columns: 1fr auto 1fr;
    padding: 32px 20px;
    max-width: 100%;
  }
  .highlight-divider {
    height: 64px;
    margin: 0 12px;
  }
  .highlight-label { font-size: 10px; letter-spacing: 0.16em; margin-bottom: 10px; }
  .highlight-value { font-size: clamp(26px, 7vw, 38px); }
  .btn-cta-primary { margin-top: 28px; padding: 15px 36px; width: 100%; max-width: 320px; }

  /* Enclave — lifestyle editorial */
  .enclave-title { max-width: none; font-size: clamp(26px, 6.5vw, 42px); }
  .enclave-pillars { grid-template-columns: 1fr; gap: 40px; }
  .enclave-pillar-title { min-height: 0; }
  .enclave-pillar-index { font-size: clamp(40px, 12vw, 56px); }

  /* Interiors — editorial */
  .interiors-spread,
  .interiors-spread--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .interiors-spread--reverse .interiors-spread-media,
  .interiors-spread--reverse .interiors-spread-copy {
    order: unset;
  }

  .interiors-spread-media img {
    height: clamp(260px, 52vw, 380px);
  }

  .interiors-showcase--hero img {
    height: clamp(280px, 52vh, 420px);
  }

  .interiors-closing {
    margin: 24px auto 12px;
  }

  /* Connectivity */
  .connectivity-title { margin-bottom: 24px; }
  .connectivity { padding: 28px 0 24px; }
  .connectivity-map { margin-bottom: 0; }
  .destination-marquee { margin-top: 32px; padding: 24px 0 16px; }
  .destination-marquee-track { gap: 32px; animation-duration: 75s; }
  .destination-item { min-width: min(180px, 50vw); column-gap: 12px; }
  .destination-time { font-size: clamp(18px, 4.5vw, 24px); }
  .destination-rule { width: 24px; }
  .destination-primary { font-size: 12px; }

  /* Lookbook */
  .lookbook-gallery .section-title { margin-bottom: 32px; }
  .lookbook-nav { gap: 16px; }
  .lookbook-nav-btn { font-size: 11px; }
  .lookbook-nav-counter { font-size: 10px; min-width: 100px; }

  /* Payment plan — dark editorial */
  .payment-hero-value { font-size: clamp(72px, 22vw, 112px); }
  .payment-plan-cta .btn-payment { width: 100%; max-width: 320px; }

  /* Investment advantage */
  .investment-advantage-viewport { padding: 22px 0; }
  .investment-advantage-track { gap: 24px; animation-duration: 75s; }
  .investment-benefit { font-size: 14px; }

  /* Lead form */
  .lead-grid { gap: 32px; }
  .lead-copy .lead-title { margin-bottom: 16px; }
  .lead-intro { max-width: none; font-size: 16px; }
  .lead-form .field input,
  .lead-form .field select,
  .lead-form .field textarea { font-size: 14px; padding: 12px 14px; }
  .phone-row { grid-template-columns: 84px 1fr; gap: 10px; }
  .lead-note { font-size: 12px; }

  /* Footer */
  .site-footer { padding: 48px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-brand { align-items: flex-start; }
  .footer-brand .brand-logo--footer { width: min(200px, 70vw); }
  .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .footer-col a { font-size: 14px; margin-bottom: 8px; }
  .footer-copyright { font-size: 12px; margin: 14px 0 18px; }
}

/* ---- Small mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .lookbook-book { height: clamp(420px, 92vw, 560px); }
  .hero-logo { width: min(200px, 68vw); }
  .brand-logo {
    height: 36px;
    max-width: min(130px, 36vw);
  }
  .site-header .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ---- Very small mobile (≤ 380px) ---- */
@media (max-width: 380px) {
  .section-title { font-size: clamp(20px, 5.5vw, 34px); }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
}
