/* ==========================================================================
   EUPHORA — Premium Luxury Design System
   Brand: #006CB4 Blue · #135D35 Green
   ========================================================================== */

:root {
  --blue: #006cb4;
  --blue-dark: #005a96;
  --blue-light: #e8f4fc;
  --green: #135d35;
  --green-dark: #0e4628;
  --green-light: #e8f2ec;
  --ink: #0c0c0c;
  --ink-soft: #2a2a2a;
  --muted: #6e6e6e;
  --cream: #faf9f7;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);

  --font-main: 'Montserrat', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-numbers: 'Montserrat', system-ui, sans-serif;

  /* Override Bootstrap / third-party font stacks */
  --bs-body-font-family: var(--font-main);
  --bs-font-sans-serif: var(--font-main);
  --bs-font-monospace: var(--font-main);

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 88px;
  --mobile-cta-h: 0px;
  --section-pad: clamp(5rem, 12vw, 9rem);
  --container: min(92vw, 1360px);
  --section-width: var(--container);
}

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

html {
  scroll-padding-top: var(--header-h);
  font-family: var(--font-main);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea,
.btn,
.form-control,
.form-select,
.nav-link,
.dropdown-item {
  font-family: var(--font-main);
}

.display-font { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; }
.font-numbers { font-family: var(--font-numbers); font-feature-settings: 'tnum'; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.lux-container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.lux-section { padding-block: var(--section-pad); position: relative; }
.lux-section--cream { background: var(--cream); }
.lux-section--dark { background: var(--ink); color: var(--white); }

#floor-plans,
.plans-showcase {
  z-index: 2;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  isolation: isolate;
}

.mt-lg-6 { margin-top: clamp(3rem, 6vw, 5rem); }
.mb-lg-6 { margin-bottom: clamp(3rem, 6vw, 5rem); }
.min-vh-60 { min-height: 60vh; }

/* Typography */
.lux-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.lux-eyebrow--dark { color: var(--green); }

.lux-heading, .section-heading {
  /* font-size: clamp(2.25rem, 5vw, 3.75rem); */
  font-size: 40px;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.lux-heading em, .section-heading em { font-style: normal; color: var(--blue); }
.lux-section--dark .lux-heading em { color: #5eb3e8; }

.lux-body, .section-body {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.85;
  color: var(--ink-soft);
}

.section-label { opacity: 0; } /* GSAP reveals */

/* Glass */
.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
}

.lux-section--cream .glass-panel,
.lux-form.glass-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
}

/* Buttons */
.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.5s var(--ease-lux), background 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
  will-change: transform;
}

.btn-lux--fill {
  background: var(--green);
  color: var(--white);
}

.btn-lux--fill:hover { background: var(--green-dark); color: var(--white); box-shadow: 0 12px 40px rgba(19, 93, 53, 0.35); }

.btn-lux--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-lux--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); color: var(--white); }

.btn-lux--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-lux--outline:hover { border-color: var(--blue); color: var(--blue); }

/* Cursor glow (desktop) */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 108, 180, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
}

@media (hover: hover) { .cursor-glow { opacity: 1; } }

/* ========== HEADER ========== */
.lux-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1050;
  transition: background 0.6s var(--ease-lux), backdrop-filter 0.6s, box-shadow 0.6s;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.48) 0%,
    rgba(255, 255, 255, 0.2) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(1px) saturate(2.1);
  -webkit-backdrop-filter: blur(1px) saturate(2.1);
}

.lux-header .navbar { padding-block: 0.85rem; }

.lux-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* DOM: brand → collapse → end. Visual desktop: brand | nav | end */
.lux-brand {
  order: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lux-header .navbar-collapse {
  order: 3;
}

.lux-header__end {
  order: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.lux-brand-pride {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lux-brand__pride {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.lux-brand__euphora {
  height: 34px;
  width: auto;
  max-width: min(46vw, 150px);
  object-fit: contain;
}

.lux-header__contact-mobile {
  display: none;
}

@media (min-width: 576px) {
  .lux-brand__euphora { height: 38px; }
  .lux-brand__pride { width: 48px; height: 48px; }
}

/* Desktop / large laptop — original placements */
@media (min-width: 1200px) {
  .lux-header .navbar { padding-block: 1rem; }

  .lux-brand__pride { width: 56px; height: 56px; }
  .lux-brand__euphora { height: 44px; max-width: none; }

  .lux-brand { order: 1; }

  .lux-header .navbar-collapse {
    order: 2;
    display: flex !important;
    flex: 1 1 auto;
    flex-basis: auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .lux-header__end {
    order: 3;
    margin-left: 0;
    gap: 1.25rem;
  }

  .lux-header .lux-toggler {
    display: none;
  }

  .lux-header .lux-nav {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto !important;
  }

  .lux-header__contact-desk { display: inline-flex; }
  .lux-header__contact-mobile { display: none !important; }
}

.lux-header--light .lux-nav .nav-link {
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #1a3a5c !important;
  padding: 0.45rem 0.5rem !important;
  white-space: nowrap;
}

@media (min-width: 1400px) {
  .lux-header--light .lux-nav .nav-link {
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem !important;
  }

  .lux-header__end { gap: 1.75rem; }
}

.lux-header--light .lux-nav .nav-link::after {
  background: var(--blue);
  height: 2px;
  bottom: 2px;
}

.lux-header--light .lux-toggler .lux-toggler__bar { background: #1a3a5c; }

.btn-contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.15rem;
  min-height: 40px;
  background: var(--white);
  color: #1a3a5c;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(26, 58, 92, 0.18);
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), transform 0.45s var(--ease-lux);
  will-change: transform;
}

.btn-contact-pill:hover {
  background: var(--white);
  color: #1a3a5c;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.lux-nav .nav-link {
  position: relative;
}

.lux-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  transition: width 0.5s var(--ease-lux), left 0.5s var(--ease-lux);
}

.lux-nav .nav-link:hover::after,
.lux-nav .nav-link.active::after { width: 50%; left: 25%; }

.lux-toggler {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 58, 92, 0.12);
  border-radius: 12px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.lux-toggler:focus,
.lux-toggler:focus-visible { outline: none; box-shadow: none; }

.lux-toggler__bar {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #1a3a5c;
  transform: translateX(-50%);
  transition: transform 0.4s var(--ease-lux), opacity 0.3s var(--ease-lux), background 0.4s;
}

.lux-toggler__bar:nth-child(1) { transform: translate(-50%, -6px); }
.lux-toggler__bar:nth-child(2) { transform: translateX(-50%); }
.lux-toggler__bar:nth-child(3) { transform: translate(-50%, 6px); }

.lux-toggler:not(.collapsed) .lux-toggler__bar:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.lux-toggler:not(.collapsed) .lux-toggler__bar:nth-child(2) { opacity: 0; }
.lux-toggler:not(.collapsed) .lux-toggler__bar:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

.lux-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  isolation: isolate;
}

.lux-header.is-scrolled .lux-nav .nav-link { color: var(--ink-soft) !important; }
.lux-header.is-scrolled .lux-nav .nav-link::after { background: var(--blue); }
.lux-header.is-scrolled .lux-toggler {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
.lux-header.is-scrolled .lux-toggler__bar { background: var(--ink); }

/* Tablet & mobile — hamburger (matches navbar-expand-xl) */
@media (max-width: 1199.98px) {
  .lux-header .navbar { padding-block: 0.65rem; }

  .lux-header__inner { gap: 0.5rem; }

  .lux-header__contact-desk { display: none; }

  .lux-header .navbar-collapse {
    flex-basis: 100%;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.65rem 0.85rem 1rem;
    margin-top: 0.65rem;
    border-radius: 14px;
    border: 1px solid rgba(26, 58, 92, 0.08);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
    max-height: calc(100dvh - 5.5rem);
    overflow-y: auto;
  }

  .lux-header .lux-nav {
    margin: 0 0 0.65rem !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .lux-header .lux-nav .nav-item { width: 100%; }

  .lux-header .lux-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(26, 58, 92, 0.08);
  }

  .lux-header .lux-nav .nav-link {
    display: block;
    width: 100%;
    padding: 0.9rem 0.5rem !important;
    font-size: 13px !important;
    text-align: left;
    color: #1a3a5c !important;
    white-space: normal;
  }

  .lux-header .lux-nav .nav-link::after { display: none; }

  .lux-header .lux-nav .nav-link.active {
    color: var(--blue) !important;
    font-weight: 700;
  }

  .lux-header__contact-mobile {
    display: flex !important;
    width: 100%;
    background: #1a3a5c;
    color: #fff;
    border-color: #1a3a5c;
    min-height: 46px;
  }

  .lux-header__contact-mobile:hover {
    background: #152f4a;
    color: #fff;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .lux-header__contact-desk { display: inline-flex; }
  .lux-header__contact-mobile { display: none !important; }
}

@media (max-width: 575.98px) {
  .lux-header__end { gap: 0.4rem; }

  .lux-brand__pride {
    width: 40px;
    height: 40px;
  }

  .lux-toggler {
    width: 42px;
    height: 42px;
  }
}

/* ========== HERO VIDEO ========== */
.lux-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #e8ecf0;
}

.lux-hero--video .lux-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #e8ecf0;
}

.lux-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  z-index: 0;
}

.lux-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lux-hero__video.is-ready {
  opacity: 1;
}

.lux-hero__top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.1) 48%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.lux-scroll--dark {
  color: rgba(26, 58, 92, 0.55);
}

.lux-scroll--dark .lux-scroll__line {
  background: linear-gradient(#1a3a5c, transparent);
}

/* ========== HERO PROMO STRIP ========== */
.hero-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 0px;
}

.hero-promo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.hero-promo__text {
  margin: 0;
  text-align: center;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 550;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #5e709a;
  text-transform: uppercase;
}

.hero-promo__lead {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}

.hero-promo__cta {
  appearance: none;
  border: 0;
  margin-top: 0.35rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 30px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 108, 180, 0.22);
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), filter 0.35s var(--ease-lux);
}

.hero-promo__cta:hover,
.hero-promo__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 28px rgba(0, 108, 180, 0.3);
  outline: none;
}

.hero-promo__cta:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .hero-promo {
    margin-top: 1.75rem;
  }

  .hero-promo__text {
    font-size: 0.875rem;
    letter-spacing: 0.01em;
  }

  .hero-promo__lead {
    font-size: 0.875rem;
  }

  .hero-promo__cta {
    width: 100%;
    max-width: 20rem;
    padding: 0.8rem 1.25rem;
    font-size: 0.75rem;
  }
}

/* ========== SECTION HEADING (Pride Euphora style) ========== */
.lux-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
}

.lux-section-heading--start {
  align-items: flex-start;
  text-align: left;
}

.lux-section-heading--start .lux-section-heading__rule {
  margin-left: 0;
  margin-right: auto;
}

.lux-section-heading--flush {
  margin-bottom: 0;
}

.lux-section-heading__kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-main);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
}

.lux-section-heading__title {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}

.lux-section-heading__plain {
  color: var(--ink);
}

.lux-section-heading__accent {
  color: var(--blue);
  font-style: normal;
}

.lux-section-heading__rule {
  position: relative;
  display: block;
  width: clamp(5.5rem, 12vw, 8rem);
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  border-radius: 2px;
}

.lux-section-heading__rule::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.lux-section-heading--light .lux-section-heading__kicker {
  color: #9fd0b5;
}

.lux-section-heading--light .lux-section-heading__plain {
  color: var(--white);
}

.lux-section-heading--light .lux-section-heading__accent {
  color: #7ec4ef;
}

.lux-section-heading--light .lux-section-heading__rule {
  background: linear-gradient(90deg, #7ec4ef 0%, #9fd0b5 100%);
}

.lux-section-heading--light .lux-section-heading__rule::after {
  background: #9fd0b5;
}

/* ========== ABOUT INTRO ========== */
.about-intro {
  background: var(--white);
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.about-intro__inner {
  /* max-width: 720px; */
  margin: 0 auto;
  text-align: center;
}

.about-intro__headline {
    font-size: clamp(1.5rem, 5vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin: 0.75rem 0 0.35rem;
    font-family: var(--font-main);
}

.about-intro__headline em {
  font-style: normal;
  color: var(--blue);
}

.about-intro__rera {
  margin: 0.35rem auto 1.25rem;
  font-family: var(--font-main);
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.about-intro__lead {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 auto 3rem;
  /* max-width: 620px; */
}

.about-intro__features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto 3.25rem;
  max-width: 1100px;
  padding: 0.35rem 0 0.5rem;
}

.about-intro__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
  padding: 0.85rem 1.1rem 1rem;
  text-align: center;
  isolation: isolate;
  transition: transform 0.5s var(--ease-lux);
}

.about-intro__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 108, 180, 0.18) 22%,
    rgba(19, 93, 53, 0.18) 78%,
    transparent 100%
  );
  pointer-events: none;
}

.about-intro__item:hover,
.about-intro__item:focus-within {
  transform: translateY(-4px);
}

.about-intro__icon {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--blue);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), transparent 55%),
    linear-gradient(145deg, rgba(0, 108, 180, 0.12), rgba(19, 93, 53, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 22px rgba(0, 108, 180, 0.08);
  transition:
    color 0.45s var(--ease-lux),
    background 0.45s var(--ease-lux),
    box-shadow 0.45s var(--ease-lux),
    transform 0.45s var(--ease-lux);
}

.about-intro__item:nth-child(even) .about-intro__icon {
  color: var(--green);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), transparent 55%),
    linear-gradient(145deg, rgba(19, 93, 53, 0.12), rgba(0, 108, 180, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 22px rgba(19, 93, 53, 0.08);
}

.about-intro__item:hover .about-intro__icon,
.about-intro__item:focus-within .about-intro__icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  box-shadow: 0 14px 28px rgba(0, 108, 180, 0.22);
  transform: scale(1.05);
}

.about-intro__icon-svg {
  width: 1.55em;
  height: auto;
  display: block;
}

.about-intro__icon i {
  line-height: 1;
  transition: transform 0.45s var(--ease-lux);
}

.about-intro__item:hover .about-intro__icon i,
.about-intro__item:focus-within .about-intro__icon i {
  transform: translateY(-1px);
}

.about-intro__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  max-width: 9.5rem;
}

.about-intro__value {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  color: #096579;
  transition: color 0.35s var(--ease-lux);
}

.about-intro__item:hover .about-intro__value,
.about-intro__item:focus-within .about-intro__value {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-intro__caption {
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--muted);
  transition: color 0.35s var(--ease-lux);
}

.about-intro__item:hover .about-intro__caption,
.about-intro__item:focus-within .about-intro__caption {
  color: var(--ink-soft);
}

@media (min-width: 768px) {
  .about-intro__icon {
    width: 4.75rem;
    height: 4.75rem;
    font-size: 1.55rem;
  }
}

@media (max-width: 991.98px) {
  .about-intro__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.75rem;
  }

  .about-intro__item:nth-child(3)::after,
  .about-intro__item:nth-child(5)::after,
  .about-intro__item:last-child::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .about-intro__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5rem;
  }

  .about-intro__item {
    padding: 0.5rem 0.65rem;
  }

  .about-intro__item:nth-child(even)::after {
    display: none;
  }

  .about-intro__item:last-child {
    grid-column: 1 / -1;
  }

  .about-intro__item:last-child::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-intro__item,
  .about-intro__icon,
  .about-intro__icon i,
  .about-intro__value,
  .about-intro__caption {
    transition: none;
  }

  .about-intro__item:hover,
  .about-intro__item:focus-within {
    transform: none;
  }
}

.btn-about-know {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 2.35rem;
  min-width: 168px;
  background: linear-gradient(90deg, #006cb4 0%, #135d35 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0, 108, 180, 0.22);
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-lux),
    box-shadow 0.4s var(--ease-lux),
    filter 0.4s var(--ease-lux);
  will-change: transform;
}

.btn-about-know::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease-lux);
  pointer-events: none;
}

.btn-about-know:hover {
  color: var(--white);
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow:
    0 10px 28px rgba(0, 108, 180, 0.32),
    0 4px 12px rgba(19, 93, 53, 0.22);
}

.btn-about-know:hover::after {
  left: 140%;
}

.btn-about-know:active {
  transform: translateY(-1px);
  filter: brightness(1);
  box-shadow: 0 5px 14px rgba(0, 108, 180, 0.26);
}

.btn-about-know:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn-about-know__icon {
  margin-left: 0.45rem;
  font-size: 0.9rem;
  transition: transform 0.4s var(--ease-lux);
}

.btn-about-know[aria-expanded="true"] .btn-about-know__icon {
  transform: rotate(180deg);
}

.about-intro__more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.7s var(--ease-lux), opacity 0.55s var(--ease-lux), margin 0.55s var(--ease-lux);
}

.about-intro__more.is-open {
  opacity: 1;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto clamp(2rem, 4vw, 2.75rem);
  overflow: visible;
}

.about-intro--expanded {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.about-intro__more-panel {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: clamp(1rem, 2.5vw, 1.5rem);
  scroll-margin-top: calc(var(--header-h) + 1rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 108, 180, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(19, 93, 53, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #f8fafb 0%, #f3f6f8 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
  text-align: left;
}

.about-intro__more-head {
  /* max-width: 720px; */
  margin: 0 auto 1.75rem;
  text-align: center;
}

.about-intro__more-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-main);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.about-intro__more-lead {
  font-family: var(--font-main);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
}

.about-intro__more-lead strong {
  color: var(--ink);
  font-weight: 600;
}

.about-intro__locations {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
}

.about-loc {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.15rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-soft);
  transition: transform 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux);
}

.about-loc:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 108, 180, 0.2);
  box-shadow: 0 14px 30px rgba(0, 108, 180, 0.08);
}

.about-loc__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0, 108, 180, 0.12), rgba(19, 93, 53, 0.1));
  color: var(--blue);
  font-size: 1.05rem;
  transition: background 0.4s var(--ease-lux), color 0.4s var(--ease-lux), transform 0.4s var(--ease-lux);
}

.about-loc:hover .about-loc__icon {
  background: linear-gradient(145deg, var(--blue), var(--green));
  color: var(--white);
  transform: scale(1.05);
}

.about-loc__text {
  min-width: 0;
}

.about-loc__text strong {
  color: var(--ink);
  font-weight: 600;
}

.about-intro__more-foot {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.about-intro__more-closing {
  font-family: var(--font-main);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 auto;
  text-align: center;
  /* max-width: 720px; */
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .about-intro__locations {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 575.98px) {
  .about-intro__lead {
    margin-bottom: 2.25rem;
  }
}

/* Legacy hero styles (other sections may reference) */
.lux-hero__media {
  position: absolute;
  inset: -10% 0 0;
  height: 120%;
  will-change: transform;
}

.lux-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.35) 0%, rgba(12, 12, 12, 0.15) 40%, rgba(12, 12, 12, 0.75) 100%),
    linear-gradient(90deg, rgba(12, 12, 12, 0.5) 0%, transparent 55%);
  z-index: 1;
}

.lux-hero__inner {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.lux-hero__title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 1.75rem;
}

.lux-hero__title em { color: #7ec4f0; font-style: italic; }

.lux-hero__title .line { display: block; overflow: hidden; }
.lux-hero__title .word { display: inline-block; will-change: transform, opacity; }

.lux-hero__desc {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.lux-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.lux-hero__tags span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
}

.lux-hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.reveal-text, .reveal-up { opacity: 0; }

/* Highlights card */
.lux-highlights {
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}

.lux-highlights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lux-highlight {
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-highlight span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.lux-highlight small {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll indicator */
.lux-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.lux-scroll__text {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.lux-scroll__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--white), transparent);
  animation: scrollLine 2.5s var(--ease-lux) infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ========== IMAGE REVEAL ========== */
.img-reveal-wrap { position: relative; }

.img-reveal-mask {
  overflow: hidden;
  border-radius: 2px;
}

.img-reveal-mask img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}

.img-reveal-frame {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  height: 45%;
  border: 1px solid var(--blue);
  z-index: -1;
  opacity: 0.4;
}

/* ========== STATS REVEAL — CLIP-PATH ARCH ========== */
.stats-reveal {
  position: relative;
  z-index: 1;
  background: var(--cream);
}

.stats-reveal__track {
  position: relative;
}

.stats-reveal__sticky {
  position: relative;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  min-height: 480px;
  overflow: hidden;
  background: var(--cream);
}

.stats-reveal__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.stats-reveal__clip {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0c1e32;
  transform: translateZ(0);
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.stats-reveal__clip-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.stats-reveal__content,
.stats-reveal__stat {
  will-change: opacity;
}

.stats-reveal__lede {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: min(40rem, calc(100% - 3rem));
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  letter-spacing: -0.01em;
  pointer-events: none;
  will-change: transform, top, opacity;
}

.stats-reveal__shell {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
}

.stats-reveal__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform-origin: center center;
  will-change: transform;
}

.stats-reveal__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 55, 110, 0.22) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

.stats-reveal__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding:
    max(88px, 10vh)
    clamp(1.5rem, 4vw, 3.5rem)
    clamp(1.5rem, 3vw, 2.5rem);
  pointer-events: none;
}

.stats-reveal__copy {
  flex: 0 1 16rem;
  max-width: 16rem;
  margin: 0;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.stats-reveal__stats {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-left: auto;
  padding-right: clamp(0.25rem, 1vw, 0.75rem);
}

.stats-reveal__stat {
  text-align: right;
  color: var(--white);
}

.stats-reveal__num {
  position: relative;
  display: inline-block;
  height: 1.15em;
  min-width: 5.5em;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-align: right;
}

.stats-reveal__num::before {
  content: attr(aria-label);
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  white-space: nowrap;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.stats-reveal__slice {
  position: absolute;
  right: 0;
  left: auto;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.stats-reveal__slice--top { top: 0; }
.stats-reveal__slice--bot { bottom: 0; }

.stats-reveal__slice-inner {
  display: block;
  white-space: nowrap;
  text-align: right;
}

.stats-reveal__slice--top .stats-reveal__slice-inner {
  transform: translateY(0);
}

.stats-reveal__slice--bot .stats-reveal__slice-inner {
  transform: translateY(-50%);
}

.stats-reveal__num--text {
  height: auto;
  min-width: 0;
}

/* Size to the visible value, not the full aria-label ("G+18 Floors") */
.stats-reveal__num--text::before {
  content: attr(data-stat-text);
}

.stats-reveal__num--text .stats-reveal__slice {
  display: none;
}

.stats-reveal__text {
  display: block;
  white-space: nowrap;
  text-align: right;
  line-height: 1.15;
}

.stats-reveal__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.92;
}

@media (max-width: 767.98px) {
  .stats-reveal__sticky {
    /* Use stable 100vh (not dvh) so the pinned height doesn't change as the
       mobile address bar shows/hides — a changing height re-pins and doubles
       the reveal image. */
    height: calc(100vh - var(--header-h) - var(--mobile-cta-h));
    min-height: 460px;
  }

  /* Mobile compositing fix: a clip-path element promoted to its own GPU layer
     (translateZ) inside a pinned position:fixed parent gets painted twice on
     iOS/Android (once in-flow, once fixed). Drop the layer promotion so the
     reveal image renders only once. */
  .stats-reveal__clip,
  .stats-reveal__clip-inner {
    transform: none;
  }

  .stats-reveal__bg {
    will-change: auto;
  }

  .stats-reveal__lede {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(40rem, calc(100% - 2rem));
    font-size: 1rem;
  }

  .stats-reveal__content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding-bottom: 2rem;
  }

  .stats-reveal__copy {
    display: none;
  }

  .stats-reveal__stats {
    align-items: flex-start;
    margin-left: 0;
    padding-right: 0;
  }

  .stats-reveal__stat {
    text-align: left;
  }

  .stats-reveal__num {
    font-size: clamp(1.5rem, 5.5vw, 2.25rem);
    min-width: 0;
    text-align: left;
  }

  .stats-reveal__text {
    text-align: left;
  }

  .stats-reveal__slice {
    left: 0;
    right: auto;
  }

  .stats-reveal__slice-inner {
    text-align: left;
  }
}

#why {
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

/* ========== WHY CHOOSE — wireframe layout ========== */
.why-choose {
  padding:
    clamp(3rem, 6vw, 4.5rem)
    0
    clamp(3rem, 6vw, 4.5rem);
  padding-left: 0;
  background: var(--white);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.why-choose__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.why-choose__title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--ink);
}

.why-choose__bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b0b0b0;
  flex-shrink: 0;
}

.why-choose__stage {
  --why-stage-h: 100vh;
  --why-hub-w: clamp(13rem, 15vw, 16rem);
  --why-preview-w: 400px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--why-hub-w) calc(var(--why-preview-w) + clamp(1.25rem, 3vw, 2.5rem));
  align-items: center;
  column-gap: 0;
  width: 100%;
  min-height: var(--why-stage-h);
}

.why-choose__video-col {
  position: relative;
  height: var(--why-stage-h);
  min-height: 100vh;
  background: #e8e8e8;
  overflow: hidden;
  z-index: 2;
  isolation: isolate;
}

.why-choose__video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.why-choose__video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: rgba(12, 30, 50, 0.18);
  cursor: pointer;
  transition: opacity 0.3s var(--ease-lux), visibility 0.3s var(--ease-lux), background 0.3s var(--ease-lux);
}

.why-choose__video-play:hover,
.why-choose__video-play:focus-visible {
  background: rgba(12, 30, 50, 0.28);
  outline: none;
}

.why-choose__video-play-icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  font-size: 1.75rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease-lux);
}

.why-choose__video-play:hover .why-choose__video-play-icon,
.why-choose__video-play:focus-visible .why-choose__video-play-icon {
  transform: scale(1.06);
}

.why-choose__video-wrap.is-playing .why-choose__video-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.why-choose__hub {
  position: relative;
  z-index: 3;
  width: 100%;
  height: var(--why-stage-h);
  min-height: 100vh;
  color: #c8c8c8;
  background: transparent;
  overflow: hidden;
}

.why-choose__orbit {
  position: absolute;
  left: 0;
  top: 50%;
  width: 220px;
  max-width: 100%;
  height: min(100%, 500px);
  transform: translateY(-50%);
}

.why-choose__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.why-choose__node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-lux);
}

.why-choose__node::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
}

.why-choose__node:hover,
.why-choose__node:focus-visible {
  outline: none;
}

.why-choose__node:hover .why-choose__node-dot,
.why-choose__node:focus-visible .why-choose__node-dot {
  transform: scale(1.06);
}

.why-choose__node-dot {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #e0e0e0;
  color: #9a9a9a;
  font-size: 0.85rem;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.why-choose__node:hover .why-choose__node-dot {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.06);
}

.why-choose__node.is-active .why-choose__node-dot {
  width: 2.35rem;
  height: 2.35rem;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--blue);
}

.why-choose__preview {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--why-preview-w);
  height: auto;
  margin-right: clamp(1.25rem, 3vw, 2.5rem);
  justify-self: stretch;
  align-self: center;
  background: var(--white);
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.why-choose__preview-media {
  width: 100%;
  background: #ececec;
  line-height: 0;
}

.why-choose__preview-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.why-choose__preview-copy {
  position: relative;
  z-index: 2;
  padding: clamp(0.9rem, 1.8vw, 1.15rem) clamp(1rem, 2vw, 1.25rem);
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-choose__preview-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--blue);
}

.why-choose__preview-text {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-soft);
}

.why-choose__connector {
  position: absolute;
  height: 2px;
  background: var(--blue);
  transform-origin: left center;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.why-choose__hub.is-ready ~ .why-choose__connector,
.why-choose__stage.is-ready .why-choose__connector {
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .why-choose__stage {
    --why-preview-w: 360px;
    grid-template-columns: minmax(0, 1fr) var(--why-hub-w) calc(var(--why-preview-w) + clamp(1.25rem, 3vw, 2.5rem));
  }
}

@media (max-width: 991.98px) {
  .why-choose {
    padding-left: 0;
  }

  .why-choose__stage {
    grid-template-columns: 1fr;
    min-height: auto;
    --why-stage-h: clamp(300px, 50vh, 440px);
    --why-hub-w: min(100%, 20rem);
    row-gap: 0;
  }

  .why-choose__video-col {
    width: 100%;
    height: var(--why-stage-h);
    min-height: 0;
  }

  .why-choose__hub {
    width: min(100%, 20rem);
    height: 13rem;
    min-height: 0;
    margin: 0.75rem auto 0;
  }

  .why-choose__orbit {
    left: 50%;
    width: min(220px, 88vw);
    height: 13rem;
    transform: translate(-50%, -50%);
  }

  .why-choose__preview {
    width: min(400px, calc(100% - 2.5rem));
    max-width: 400px;
    height: auto;
    margin: 1rem auto 0;
    justify-self: center;
  }

  .why-choose__connector {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .why-choose__node-dot {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }

  .why-choose__node {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* Legacy stats (unused) */
.lux-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.lux-stat-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  transition: background 0.5s var(--ease-lux);
}

.lux-stat-card:hover { background: var(--cream); }

.lux-stat-card__num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.lux-stat-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.lux-arch-wrap { display: flex; justify-content: center; }

.lux-arch {
  width: min(100%, 560px);
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.lux-arch img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* ========== FEATURE CARDS ========== */
.lux-feature {
  padding: 2.5rem 2rem;
  height: 100%;
  border-radius: 2px;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.lux-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
}

.lux-feature__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: transform 0.5s var(--ease-lux), background 0.5s;
}

.lux-feature:hover .lux-feature__icon {
  transform: scale(1.08);
  background: var(--green);
  color: var(--white);
}

.lux-feature h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.lux-feature p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ========== VIDEO SHOWCASE ========== */
.lux-video__stage {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 2px;
}

.lux-video__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-video__shade {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.35);
  transition: background 0.6s;
}

.lux-video__stage:hover .lux-video__shade { background: rgba(12, 12, 12, 0.25); }

.lux-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding-left: 4px;
  transition: background 0.5s, border-color 0.5s;
}

.lux-video__play:hover { background: var(--white); color: var(--ink); }

.lux-video__ring {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: ringPulse 3s var(--ease-lux) infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.4; }
}

.lux-video__caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* ========== AMENITY STACK — Azure-style clip cards ========== */
.amenity-stack {
  position: relative;
  background: var(--white);
  padding: 75px 0px;
}

.amenity-stack__intro {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.55rem, 1.4vh, 0.85rem);
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(0.65rem, 1.8vh, 1.1rem) 0 0;
}

.amenity-stack__intro .lux-section-heading {
  margin-bottom: 0;
}

.amenity-stack__lead {
  margin: 20px 0px;
  max-width: 52rem;
  font-family: var(--font-main);
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 500;
}

.amenity-stack__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: min(100%, 56rem);
  margin: 0 auto;
  padding: 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .amenity-stack__tabs {
    gap: 0.75rem;
  }
}

.amenity-stack__tab {
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(50% - 0.35rem);
  min-width: 8.5rem;
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border: 2px solid transparent;
  border-radius: 100px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(90deg, var(--blue) 0%, var(--green) 100%) border-box;
  color: var(--green);
  font-family: var(--font-main);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.4s var(--ease-lux),
    box-shadow 0.4s var(--ease-lux),
    color 0.3s ease,
    background 0.3s ease,
    filter 0.4s var(--ease-lux);
  will-change: transform;
}

@media (min-width: 768px) {
  .amenity-stack__tab {
    flex: 1 1 0;
    min-width: 9.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }
}

.amenity-stack__tab::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease-lux);
  pointer-events: none;
}

.amenity-stack__tab.is-active {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 108, 180, 0.22);
}

.amenity-stack__tab:hover:not(.is-active) {
  color: var(--blue);
  transform: translateY(-3px);
  filter: brightness(1.03);
  box-shadow:
    0 8px 22px rgba(0, 108, 180, 0.18),
    0 3px 10px rgba(19, 93, 53, 0.12);
}

.amenity-stack__tab.is-active:hover {
  color: var(--white);
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow:
    0 10px 28px rgba(0, 108, 180, 0.32),
    0 4px 12px rgba(19, 93, 53, 0.22);
}

.amenity-stack__tab:hover::after {
  left: 140%;
}

.amenity-stack__tab:active {
  transform: translateY(-1px);
  filter: brightness(1);
}

.amenity-stack__tab.is-active:active {
  box-shadow: 0 5px 14px rgba(0, 108, 180, 0.26);
}

.amenity-stack__tab:not(.is-active):active {
  box-shadow: 0 4px 12px rgba(0, 108, 180, 0.14);
}

.amenity-stack__tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.amenity-stack__track {
  position: relative;
}

.amenity-stack__pin {
  height: calc(100vh - var(--header-h) - var(--mobile-cta-h));
  height: calc(100dvh - var(--header-h) - var(--mobile-cta-h));
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.55rem, 1.5vh, 1rem);
  padding: 0 clamp(1rem, 4vw, 2.5rem) 0.35rem;
  box-sizing: border-box;
  overflow: hidden;
}

/* Stage fills leftover pin height and sizes the card to the image aspect */
.amenity-stack__stage {
  --amenity-img-w: 1150;
  --amenity-img-h: 313;
  --amenity-max-w: 1150;
  --amenity-caption-h: 4.75rem;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 1150px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  container-type: size;
}

.amenity-stack__decks {
  --amenity-frame-h: calc(var(--amenity-img-h) + 72);
  position: relative;
  /* Fit native image ratio inside available stage space — no letterboxing */
  width: min(
    100%,
    calc(var(--amenity-max-w) * 1px),
    calc(100cqh * var(--amenity-img-w) / var(--amenity-frame-h))
  );
  aspect-ratio: var(--amenity-img-w) / var(--amenity-frame-h);
  max-height: 100%;
  height: auto;
  overflow: hidden;
  isolation: isolate;
}

.amenity-stack__deck {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.amenity-stack__deck.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.amenity-stack__card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  will-change: transform, filter;
  transform-origin: center bottom;
  backface-visibility: hidden;
}

.amenity-stack__card-clip {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border-radius: clamp(1.25rem, 2.4vw, 2rem);
  clip-path: inset(0 round clamp(1.25rem, 2.4vw, 2rem));
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.amenity-stack__card-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: transparent;
}

.amenity-stack__card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.amenity-stack__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.amenity-stack__card-body {
  flex: 0 0 auto;
  padding: clamp(0.85rem, 1.6vw, 1.15rem) clamp(1.15rem, 2.8vw, 1.75rem) clamp(1rem, 1.8vw, 1.35rem);
  background: linear-gradient(180deg, #f7f9f8 0%, #eef3f0 100%);
  border-top: 1px solid rgba(19, 93, 53, 0.08);
}

.amenity-stack__card-num {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.amenity-stack__card-body h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
}

.amenity-stack__card-body p {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--muted);
}

/* Desktop / tablet — wide *-d.webp (1150×313) */
@media (min-width: 768px) {
  .amenity-stack__stage {
    --amenity-img-w: 1150;
    --amenity-img-h: 313;
    --amenity-max-w: 1150;
  }

  .amenity-stack__decks {
    --amenity-frame-h: 400;
  }
}

/* Mobile — square *.webp (1200×1200), full-width card */
@media (max-width: 767.98px) {
  .amenity-stack__stage {
    --amenity-img-w: 1200;
    --amenity-img-h: 1200;
    --amenity-max-w: 1200;
    max-width: none;
    width: 100%;
  }

  .amenity-stack__decks {
    --amenity-frame-h: 1392;
    width: 100%;
    max-width: 100%;
  }
}

/* ----- Tall / large desktops ----- */
@media (min-width: 1200px) and (min-height: 900px) {
  .amenity-stack__intro {
    gap: clamp(0.65rem, 1.5vh, 0.95rem);
    padding-top: clamp(0.85rem, 2vh, 1.25rem);
  }

  .amenity-stack__pin {
    gap: clamp(0.75rem, 1.8vh, 1.15rem);
  }
}

/* ----- Normal / shorter screens: tighter spacing only (keep paragraph) ----- */
@media (min-width: 768px) and (max-height: 899.98px) {
  .amenity-stack__intro {
    gap: 0.4rem;
    padding-top: 0.4rem;
  }

  .amenity-stack__intro .lux-section-heading__kicker {
    margin-bottom: 0.3rem;
  }

  .amenity-stack__intro .lux-section-heading__title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
  }

  .amenity-stack__intro .lux-section-heading__rule {
    margin-top: 0.5rem;
  }

  .amenity-stack__lead {
    display: block;
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .amenity-stack__pin {
    gap: 0.55rem;
    padding-bottom: 0.25rem;
  }

  .amenity-stack__tab {
    min-height: 42px;
    padding: 0.55rem 0.85rem;
  }

  .amenity-stack__card-body {
    padding: 0.65rem 1.15rem 0.85rem;
  }
}

/* ----- Tablet width: slightly smaller copy, still full text ----- */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .amenity-stack__intro {
    gap: 0.45rem;
    padding-top: 0.5rem;
  }

  .amenity-stack__lead {
    display: block;
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 44rem;
  }
}

/* ----- Mobile ----- */
@media (max-width: 767.98px) {
  .amenity-stack__intro {
    gap: 0.45rem;
    padding: 0.45rem 0.15rem 0;
  }

  .amenity-stack__intro .lux-section-heading__title {
    font-size: 1.05rem;
  }

  .amenity-stack__lead {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.5;
    overflow: visible;
  }

  .amenity-stack__pin {
    gap: 0.5rem;
    padding: 0 1rem 0.25rem;
  }

  .amenity-stack__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }

  .amenity-stack__tab {
    flex: none;
    min-width: 0;
    min-height: 42px;
    padding: 0.5rem 0.6rem;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
  }

  .amenity-stack__stage {
    width: 100%;
    max-width: none;
  }

  .amenity-stack__card-body {
    padding: 0.7rem 1rem 0.85rem;
  }

  .amenity-stack__card-num {
    margin-bottom: 0.2rem;
    font-size: 0.7rem;
  }

  .amenity-stack__card-body h3 {
    font-size: 1.125rem;
    line-height: 1.25;
  }
}

@media (max-width: 380px) {
  .amenity-stack__tab {
    font-size: 0.625rem;
    min-height: 40px;
  }
}

/* ========== ABOUT PRIDE ========== */
.about-pride {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(19, 93, 53, 0.05) 0%, transparent 60%),
    var(--white);
}

.about-pride__inner {
  margin: 0 auto;
  text-align: center;
}

.about-pride__heading {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.about-pride__heading .lux-section-heading__rule {
  margin-inline: auto;
}

.about-pride__copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.about-pride__copy p {
  margin: 0;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--ink-soft);
}

@media (max-width: 575.98px) {
  .about-pride__copy p {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

/* ========== TESTIMONIALS SHOWCASE ========== */
.testimonials-showcase {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #f8f7f5 0%, #f1f0ed 55%, #eceae6 100%);
  isolation: isolate;
}

.testimonials-showcase__track {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
}

.testimonials-showcase__pin {
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  min-height: 560px;
  max-height: calc(100dvh - var(--header-h));
  box-sizing: border-box;
  overflow: hidden;
  contain: layout style;
  backface-visibility: hidden;
}

.testimonials-showcase__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: clamp(1rem, 2.5vh, 1.75rem) 0 clamp(1.25rem, 2.5vh, 2rem);
  box-sizing: border-box;
}

.testimonials-showcase__header {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.2vw, 0.75rem);
  width: min(100%, 40rem);
  margin: 0 auto clamp(0.35rem, 1vh, 0.75rem);
  text-align: center;
}

.testimonials-showcase__side-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-align: center;
  opacity: 1;
}

.testimonials-showcase__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  opacity: 1;
}

.testimonials-showcase__heading em {
  font-style: italic;
  color: var(--blue);
}

.testimonials-showcase__lead {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

.testimonials-showcase__bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.testimonials-showcase__stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.testimonials-showcase__stage::before {
  content: '';
  position: absolute;
  inset: 6% 1.5%;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, #000 42%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, #000 42%, transparent 72%);
  pointer-events: none;
  opacity: 0.45;
}

.testimonials-showcase__wheel {
  position: relative;
  width: min(96vw, 80rem);
  height: min(calc(100dvh - var(--header-h) - 6rem), 76vh);
  max-height: calc(100dvh - var(--header-h) - 6rem);
  margin: 0 auto;
  --ts-content-max: 26rem;
  --ts-ring-r: 14rem;
  --ts-inner-pad: 1.75rem;
}

.testimonials-showcase__ring {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.testimonials-showcase__ring-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  will-change: transform;
}

.testimonials-showcase__radials {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.testimonials-showcase__radials span {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: var(--ts-ring-r, 7.5rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.03) 70%, transparent 100%);
  transform-origin: top center;
  opacity: 0;
}

.testimonials-showcase__avatar {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(3rem, 4.8vw, 4.25rem);
  height: clamp(3rem, 4.8vw, 4.25rem);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  will-change: transform;
}

.testimonials-showcase__avatar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 8px 22px rgba(0, 0, 0, 0.08);
  color: var(--muted);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  transition:
    border-color 0.35s var(--ease-lux),
    color 0.35s var(--ease-lux),
    transform 0.35s var(--ease-lux),
    box-shadow 0.35s var(--ease-lux);
}

.testimonials-showcase__avatar.is-active .testimonials-showcase__avatar-inner,
.testimonials-showcase__avatar:hover .testimonials-showcase__avatar-inner,
.testimonials-showcase__avatar:focus-visible .testimonials-showcase__avatar-inner {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow:
    0 0 0 4px var(--white),
    0 0 0 6px rgba(0, 108, 180, 0.45),
    0 0 28px rgba(0, 108, 180, 0.22);
}

.testimonials-showcase__avatar:not(.is-active) .testimonials-showcase__avatar-inner {
  opacity: 0.82;
}

.testimonials-showcase__avatar:focus-visible {
  outline: none;
}

.testimonials-showcase__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  /* width: min(100%, var(--ts-content-max));
  max-width: var(--ts-content-max); */
  min-height: 0;
  text-align: center;
  padding: var(--ts-inner-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.testimonials-showcase__quote-icon {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1;
  color: var(--blue);
  opacity: 0.9;
}

.testimonials-showcase__quote-icon .bi-quote {
  display: block;
  transform: scaleX(-1);
}

.testimonials-showcase__quote {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(0.9375rem, 1.75vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  border: none;
  padding: 0;
  min-height: 0;
  max-width: 100%;
  opacity: 1;
}

.testimonials-showcase__rule {
  width: min(100%, 14rem);
  height: 1px;
  margin: clamp(0.85rem, 2vh, 1.1rem) auto;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.14), transparent);
}

.testimonials-showcase__stars {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: clamp(0.65rem, 1.5vh, 0.9rem);
  color: var(--blue);
  font-size: clamp(0.7rem, 1.3vw, 0.8125rem);
  letter-spacing: 0.08em;
}

.testimonials-showcase__author {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(0.9375rem, 1.55vw, 1.0625rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.testimonials-showcase__role {
  margin: 0.35rem 0 0;
  font-size: clamp(0.8125rem, 1.25vw, 0.9375rem);
  line-height: 1.45;
  color: var(--muted);
  max-width: 100%;
}

.testimonials-showcase__role:empty {
  display: none;
}

@media (max-width: 767.98px) {
  .testimonials-showcase__track {
    min-height: auto;
  }

  .testimonials-showcase__pin {
    min-height: 0;
    max-height: none;
    height: auto;
    overflow: visible;
  }

  .testimonials-showcase__layout {
    height: auto;
    min-height: calc(100dvh - var(--header-h) - var(--mobile-cta-h));
    padding: clamp(0.75rem, 2vh, 1.25rem) 0 calc(clamp(1.25rem, 3vh, 2rem) + var(--mobile-cta-h));
  }

  .testimonials-showcase__header {
    width: 100%;
    margin-bottom: 0.5rem;
    gap: 0.45rem;
  }

  .testimonials-showcase__side-title {
    font-size: 1rem;
  }

  .testimonials-showcase__lead {
    font-size: 0.8125rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  .testimonials-showcase__stage {
    flex: 1 1 auto;
    align-items: stretch;
    min-height: clamp(22rem, 62vh, 34rem);
    padding: 0 0.75rem;
  }

  .testimonials-showcase__stage::before {
    inset: 14% 8% 28%;
    opacity: 0.28;
    mask-image: radial-gradient(circle at center, #000 30%, transparent 68%);
    -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 68%);
  }

  .testimonials-showcase__wheel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: clamp(22rem, 62vh, 34rem);
    max-height: none;
    --ts-content-max: 100%;
    --ts-inner-pad: 0.5rem;
  }

  .testimonials-showcase__ring {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    order: 2;
    margin-top: auto;
    padding-top: 0.75rem;
    pointer-events: auto;
  }

  .testimonials-showcase__ring-inner {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 4.25rem;
    transform: none !important;
  }

  .testimonials-showcase__radials {
    display: none;
  }

  .testimonials-showcase__avatar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.65rem;
    height: 2.65rem;
  }

  .testimonials-showcase__avatar-inner {
    font-size: 1.05rem;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.95),
      0 4px 14px rgba(0, 0, 0, 0.08);
  }

  .testimonials-showcase__avatar.is-active .testimonials-showcase__avatar-inner,
  .testimonials-showcase__avatar:hover .testimonials-showcase__avatar-inner,
  .testimonials-showcase__avatar:focus-visible .testimonials-showcase__avatar-inner {
    box-shadow:
      0 0 0 3px var(--white),
      0 0 0 5px rgba(0, 108, 180, 0.4),
      0 0 18px rgba(0, 108, 180, 0.18);
  }

  .testimonials-showcase__content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: 1;
    flex: 1 1 auto;
    width: min(100%, 22rem);
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0.25rem 1rem;
    z-index: 2;
    pointer-events: none;
    justify-content: center;
  }

  .testimonials-showcase__quote-icon {
    margin-bottom: 0.45rem;
    font-size: 1.75rem;
  }

  .testimonials-showcase__quote {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .testimonials-showcase__rule {
    width: min(100%, 10rem);
    margin: 0.7rem auto;
  }

  .testimonials-showcase__stars {
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
  }

  .testimonials-showcase__author {
    font-size: 0.9rem;
  }

  .testimonials-showcase__role {
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

@media (max-width: 380px) {
  .testimonials-showcase__avatar {
    width: 2.4rem;
    height: 2.4rem;
  }

  .testimonials-showcase__avatar-inner {
    font-size: 0.95rem;
  }

  .testimonials-showcase__quote {
    font-size: 0.85rem;
  }
}

/* ========== PARALLAX ========== */
.lux-parallax {
  position: relative;
  height: clamp(420px, 70vh, 640px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.lux-parallax__media {
  position: absolute;
  inset: -20% 0 0;
  height: 140%;
  will-change: transform;
}

.lux-parallax__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-parallax__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  background: linear-gradient(transparent, rgba(12, 12, 12, 0.6));
  width: 100%;
}

.lux-parallax__content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.lux-parallax__content em { color: #7ec4f0; font-style: italic; }

/* ========== PLANS SHOWCASE ========== */
.plans-showcase__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.plans-showcase__intro {
  flex: 1 1 20rem;
  /* max-width: 42rem; */
}

.plans-showcase__title {
  margin-bottom: 0.75rem;
}

.plans-showcase__lead {
  margin: 1.15rem 0 0;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: #222222;
  font-weight: 500;
  /* max-width: 34rem; */
}

.plans-showcase__brochure {
  flex-shrink: 0;
}

.plans-showcase__panel {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: clamp(1.25rem, 3vw, 1.75rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 108, 180, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(19, 93, 53, 0.05) 0%, transparent 38%),
    var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 64px rgba(15, 23, 42, 0.06);
}

.plans-showcase__tabs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 100px;
  background: #eef1f4;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.plans-showcase__tab-indicator {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  height: calc(100% - 0.7rem);
  border-radius: 100px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s var(--ease-lux), width 0.45s var(--ease-lux);
  pointer-events: none;
  z-index: 0;
}

.plans-showcase__tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.35rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.35s var(--ease-lux);
}

.plans-showcase__tab i {
  font-size: 0.95rem;
  opacity: 0.85;
}

.plans-showcase__tab.active,
.plans-showcase__tab:hover {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}

.plans-showcase__tab.active {
  color: var(--ink);
}

.plans-showcase__content .tab-pane {
  animation: plansPaneIn 0.45s var(--ease-lux) both;
}

@keyframes plansPaneIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.plans-showcase__grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plans-showcase__grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .plans-showcase__grid:not(.plans-showcase__grid--single) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .plans-showcase__grid:not(.plans-showcase__grid--single) {
    grid-template-columns: minmax(0, 1fr);
  }

  .plans-showcase__tabs {
    display: flex;
    width: 100%;
  }

  .plans-showcase__tab {
    flex: 1 1 0;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.7rem 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .plans-showcase__tab i {
    font-size: 0.85rem;
  }
}

/* Plan cards */
.plans-card {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
  border-radius: clamp(0.85rem, 2vw, 1.15rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.55s var(--ease-lux),
    box-shadow 0.55s var(--ease-lux),
    border-color 0.55s var(--ease-lux);
  height: 100%;
}

.plans-card:hover,
.plans-card:focus-visible {
  color: inherit;
  transform: translateY(-8px);
  border-color: rgba(0, 108, 180, 0.22);
  box-shadow:
    0 22px 50px rgba(0, 108, 180, 0.12),
    0 0 0 1px rgba(0, 108, 180, 0.08);
}

.plans-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.plans-card--featured {
  border-color: rgba(0, 108, 180, 0.14);
}

.plans-card__index {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.plans-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1f4;
}

.plans-card--featured .plans-card__media {
  aspect-ratio: 16 / 10;
}

.plans-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-lux);
}

.plans-card:hover .plans-card__media img,
.plans-card:focus-visible .plans-card__media img {
  transform: scale(1.07);
}

.plans-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(8, 18, 32, 0.05) 0%, rgba(8, 18, 32, 0.62) 100%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-lux);
}

.plans-card:hover .plans-card__overlay,
.plans-card:focus-visible .plans-card__overlay {
  opacity: 1;
}

.plans-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease-lux);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.plans-card:hover .plans-card__cta,
.plans-card:focus-visible .plans-card__cta {
  transform: translateY(0);
}

.floor-card__zoom {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease-lux), transform 0.35s var(--ease-lux);
}

.plans-card:hover .floor-card__zoom,
.plans-card:focus-visible .floor-card__zoom {
  opacity: 1;
  transform: translateY(0);
}

.plans-card__footer {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.plans-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.floor-card__type {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.2;
}

.plans-card__chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: rgba(0, 108, 180, 0.08);
  color: var(--blue);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floor-card__size {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}

/* Legacy lux-tab fallback (other sections) */
.lux-tabs:not(.plans-showcase__tabs) {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lux-tab:not(.plans-showcase__tab) {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.5s var(--ease-lux);
}

.lux-tab:not(.plans-showcase__tab).active,
.lux-tab:not(.plans-showcase__tab):hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* LightGallery overrides */
.lg-outer {
  z-index: 10100 !important;
}

.lg-backdrop {
  z-index: 10100 !important;
  background-color: rgba(0, 0, 0, 0.92) !important;
}

.lg-outer .lg-toolbar {
  z-index: 10105 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 72%, transparent 100%);
  padding-top: max(0.5rem, env(safe-area-inset-top));
}

.lg-outer .lg-content {
  top: 0;
}

.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
  background: transparent;
}

.lg-outer .lg-sub-html {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.lg-outer .lg-thumb-outer,
.lg-outer .lg-toolbar .lg-download {
  display: none;
}

.lg-outer .lg-sub-html h4 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.lg-outer .lg-sub-html p {
  margin: 0;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.88);
}

body.is-lightgallery-open .lux-header,
body.is-lightgallery-open .cursor-glow {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.is-lightgallery-open {
  overflow: hidden;
}

.floor-swiper .swiper-pagination-bullet-active { background: var(--green); }

/* ========== SPECIFICATIONS ========== */
.spec-sheet {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem) 0;
  background: var(--white);
}

.spec-sheet__panel {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4.5rem) clamp(3rem, 8vw, 5rem);
  background: #f6f4f0;
  border-radius: clamp(1.5rem, 5vw, 50px);
}

.spec-sheet__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.spec-sheet__title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
}

.spec-sheet__bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.spec-sheet__accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
}

.spec-sheet__accordion .accordion-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.spec-sheet__accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) 0;
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--green);
  background: transparent;
  box-shadow: none;
}

.spec-sheet__accordion .accordion-button::after {
  display: none;
}

.spec-sheet__accordion .accordion-button:not(.collapsed) {
  color: var(--green);
  background: transparent;
  box-shadow: none;
}

.spec-sheet__chevron {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--green);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-lux);
}

.spec-sheet__accordion .accordion-button:not(.collapsed) .spec-sheet__chevron {
  transform: rotate(90deg);
}

.spec-sheet__accordion .accordion-body {
  padding: 0 0 clamp(1.1rem, 2.5vw, 1.5rem) 1.6rem;
}

.spec-sheet__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spec-sheet__list li {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 500;
}

.spec-sheet__list li + li {
  margin-top: 0.15rem;
}

.spec-sheet__list strong {
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 575.98px) {
  .spec-sheet__panel {
    padding-inline: 1.25rem;
    border-radius: 2rem 2rem 0 0;
  }

  .spec-sheet__accordion .accordion-body {
    padding-left: 1.25rem;
  }
}

/* ========== CONNECTIVITY MAP ========== */
.connectivity-section {
  margin: clamp(2rem, 5vw, 3.125rem) 0;
}

.connectivity-section__copy {
  padding-right: clamp(0rem, 2vw, 1.5rem);
}

.connectivity-section__eyebrow {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
}

.connectivity-section__title {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  color: var(--green);
}

.connectivity-section__title em {
  font-style: normal;
  color: var(--ink);
}

.connectivity-section__lead {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 500;
}

.connectivity-section__site {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.connectivity-section__bullets {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.connectivity-section__bullets li {
  position: relative;
  padding-left: 1.15rem;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
}

.connectivity-section__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(19, 93, 53, 0.12);
}

.connectivity-section__list {
  margin-top: 1.5rem;
  max-height: clamp(320px, 46vh, 440px);
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.connectivity-section__list::-webkit-scrollbar {
  width: 6px;
}

.connectivity-section__list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 100px;
}

.connectivity-list__group + .connectivity-list__group {
  margin-top: 1.25rem;
}

.connectivity-list__cat {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.connectivity-list__items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.connectivity-list__item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.connectivity-list__item:hover,
.connectivity-list__item:focus-visible {
  color: var(--blue);
  padding-left: 0.35rem;
  outline: none;
}

.connectivity-list__name {
  flex: 1 1 auto;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--ink);
}

.connectivity-list__item:hover .connectivity-list__name,
.connectivity-list__item:focus-visible .connectivity-list__name {
  color: var(--blue);
}

.connectivity-list__time {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--muted);
}

.connectivity-list__item:hover .connectivity-list__time,
.connectivity-list__item:focus-visible .connectivity-list__time {
  color: var(--blue);
}

.connectivity-map {
  position: relative;
  min-height: clamp(420px, 62vh, 560px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
  background: #e8e6e2;
}

.connectivity-map__canvas {
  width: 100%;
  height: clamp(420px, 62vh, 560px);
  z-index: 1;
}

.connectivity-map__canvas .leaflet-control-zoom {
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.connectivity-map__canvas .leaflet-control-zoom a {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.08);
}

.connectivity-marker {
  background: transparent;
  border: none;
}

.connectivity-marker span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  color: var(--white);
  font-size: 0.9rem;
  box-shadow:
    0 0 0 2px var(--white),
    0 4px 12px rgba(0, 0, 0, 0.22);
}

.connectivity-marker span i {
  transform: rotate(45deg);
}

.connectivity-marker--project span {
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
  background: #e11d2e;
  box-shadow:
    0 0 0 3px var(--white),
    0 8px 20px rgba(225, 29, 46, 0.4);
}

.connectivity-marker--corporate span {
  background: #2f80ed;
}

.connectivity-marker--entertainment span {
  background: #c45a1a;
}

.connectivity-marker--education span {
  background: #7b3fe4;
}

.connectivity-marker--healthcare span {
  background: #0f766e;
}

.connectivity-marker--connectivity span {
  background: #166534;
}

.connectivity-marker--hotels span {
  background: #b45309;
}

.connectivity-marker--nearby span {
  background: var(--green);
}

.connectivity-map__tooltip {
  padding: 0.4rem 0.65rem;
  border: none;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.connectivity-map__tooltip::before {
  border-top-color: var(--ink);
}

.connectivity-map__tooltip--project {
  background: #e11d2e;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.35);
}

.connectivity-map__tooltip--project::before {
  border-top-color: #e11d2e;
}

@media (max-width: 991.98px) {
  .connectivity-section__copy {
    margin-bottom: 0.5rem;
  }

  .connectivity-map {
    min-height: auto;
  }

  .connectivity-map__canvas {
    height: clamp(320px, 52vh, 420px);
  }
}

/* Legacy timeline / static map (unused) */
.lux-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateX(-20px);
}

.lux-timeline__num {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue);
  min-width: 48px;
}

.lux-timeline__item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.lux-timeline__item p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

.lux-map {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.lux-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-map__card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 2px;
}

.lux-map__card i { font-size: 1.5rem; color: var(--green); }
.lux-map__card strong { display: block; font-size: 0.9375rem; }
.lux-map__card span { font-size: 0.8125rem; color: var(--muted); }

/* ========== APARTMENTS BANNER ========== */
.apartments-banner {
  position: relative;
  z-index: 3;
  background: var(--white);
  isolation: isolate;
}

.apartments-banner.is-pinned {
  z-index: 6;
}

.apartments-banner__track {
  position: relative;
}

.apartments-banner__pin {
  height: calc(100vh - var(--header-h) - var(--mobile-cta-h));
  height: calc(100dvh - var(--header-h) - var(--mobile-cta-h));
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(0.75rem, 1.5vh, 1.25rem);
  padding: clamp(1rem, 2.5vh, 1.75rem) clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
  overflow: hidden;
  background: var(--white);
}

.apartments-banner__header {
  flex-shrink: 0;
  text-align: center;
  width: 100%;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.apartments-banner__section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--ink);
}

.apartments-banner__bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.apartments-banner__stage {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  border-radius: clamp(1.25rem, 2.4vw, 2rem);
  overflow: hidden;
  isolation: isolate;
  background: #0a1520;
}

.apartments-banner__panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
  background: #0a1520;
  will-change: opacity, transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apartments-banner__panel img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  transform: none;
  transform-origin: center center;
}

.apartments-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.18) 0%,
    rgba(8, 8, 8, 0.04) 38%,
    rgba(8, 8, 8, 0.08) 62%,
    rgba(8, 8, 8, 0.34) 100%
  );
  pointer-events: none;
}

.apartments-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: start;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(5.5rem, 10vw, 7rem);
  pointer-events: none;
}

.apartments-banner__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  max-width: 16ch;
}

.apartments-banner__title-serif {
  display: block;
  font-size: clamp(2.35rem, 6.2vw, 4.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
}

.apartments-banner__title-sans {
  display: block;
  margin-top: 0.08em;
  font-family: var(--font-main);
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
}

.apartments-banner__text {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  margin: 0;
  max-width: 22rem;
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  line-height: 1.75;
  text-align: right;
  color: rgba(255, 255, 255, 0.92);
}

.apartments-banner__nav {
  display: none;
}

.apartments-banner__hint {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.apartments-banner__hint i {
  font-size: 0.9rem;
}

.apartments-banner__dock {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3.5vw, 2.25rem);
  z-index: 8;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  width: min(calc(100% - 2.5rem), 520px);
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  pointer-events: auto;
}

.apartments-banner__stage:hover .apartments-banner__dock {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.38);
}

.apartments-banner__meta {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.apartments-banner__counter {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
}

.apartments-banner__counter-sep {
  margin-inline: 0.2rem;
  opacity: 0.55;
}

.apartments-banner__progress {
  position: relative;
  height: 3px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.apartments-banner__progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.apartments-banner__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.apartments-banner__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition:
    width 0.4s var(--ease-lux),
    background 0.35s ease,
    transform 0.35s var(--ease-lux);
}

.apartments-banner__dot.is-active {
  width: 28px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}

.apartments-banner__dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.72);
  transform: scale(1.15);
}

@media (max-width: 767.98px) {
  .apartments-banner__content {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding-bottom: clamp(7.5rem, 18vw, 9rem);
  }

  .apartments-banner__title {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .apartments-banner__text {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    text-align: left;
    max-width: 28rem;
  }

  .apartments-banner__dock {
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 1.5rem);
    padding: 0.75rem 0.85rem;
    border-radius: 1.25rem;
    gap: 0.75rem;
  }

  .apartments-banner__meta {
    flex: 1 1 100%;
    order: 1;
  }

  .apartments-banner__dots {
    order: 2;
  }

  .apartments-banner__hint {
    order: 3;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apartments-banner__panel img {
    transform: scale(1);
  }
}

/* ========== LEGACY ========== */
.legacy-section {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 9vw, 6.5rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 108, 180, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 42%, var(--white) 100%);
  overflow: hidden;
}

.legacy-section__header {
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.legacy-section__title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--ink);
  opacity: 1;
}

.legacy-section__lead {
  margin: 0.85rem auto 0;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  color: #222222;
}

.legacy-section__bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.legacy-section__slider {
  position: relative;
  overflow: hidden;
}

.legacy-section__carousel.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.legacy-section__carousel .item {
  height: 100%;
}

.legacy-section__carousel .legacy-section__card {
  height: clamp(420px, 44vw, 500px);
}

.legacy-section__carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
  padding: 0 clamp(0.25rem, 1vw, 0.5rem);
}

.legacy-section__carousel .owl-nav button.owl-prev,
.legacy-section__carousel .owl-nav button.owl-next {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.legacy-section__carousel .owl-nav button.owl-prev:hover,
.legacy-section__carousel .owl-nav button.owl-next:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

.legacy-section__carousel .owl-dots {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.legacy-section__carousel .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px 6px;
  background: rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.legacy-section__carousel .owl-dot.active span,
.legacy-section__carousel .owl-dot:hover span {
  background: var(--green);
  transform: scale(1.15);
}

.legacy-section__card {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  perspective: 1200px;
}

.legacy-section__card-shell {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.55s var(--ease-lux),
    box-shadow 0.55s var(--ease-lux),
    border-color 0.45s var(--ease-lux);
  transform-style: preserve-3d;
  will-change: transform;
}

.legacy-section__card-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 108, 180, 0.55), rgba(19, 93, 53, 0.45));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s var(--ease-lux);
  pointer-events: none;
  z-index: 3;
}

.legacy-section__card.is-hovered .legacy-section__card-shell,
.legacy-section__card:hover .legacy-section__card-shell,
.legacy-section__card:focus-within .legacy-section__card-shell {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow:
    0 28px 56px rgba(0, 108, 180, 0.14),
    0 12px 28px rgba(19, 93, 53, 0.1);
}

.legacy-section__card.is-hovered .legacy-section__card-shell::before,
.legacy-section__card:hover .legacy-section__card-shell::before,
.legacy-section__card:focus-within .legacy-section__card-shell::before {
  opacity: 1;
}

.legacy-section__index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.4rem 0.7rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.legacy-section__media {
  position: relative;
  flex: 1 1 58%;
  min-height: 0;
  overflow: hidden;
  background: #e8e6e2;
}

.legacy-section__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.75s var(--ease-lux);
  will-change: transform;
}

.legacy-section__media-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.08) 0%,
    transparent 42%,
    rgba(8, 8, 8, 0.18) 100%
  );
  pointer-events: none;
  transition: opacity 0.45s var(--ease-lux);
}

.legacy-section__card:hover .legacy-section__media img,
.legacy-section__card.is-hovered .legacy-section__media img {
  transform: scale(1.08);
}

.legacy-section__card:hover .legacy-section__media-fade,
.legacy-section__card.is-hovered .legacy-section__media-fade {
  opacity: 0.75;
}

.legacy-section__card-body {
  position: relative;
  flex: 0 0 42%;
  min-height: clamp(7.5rem, 13vw, 8.75rem);
  max-height: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 2.6vw, 1.85rem) clamp(1.15rem, 2.2vw, 1.65rem) clamp(1.5rem, 2.8vw, 2rem);
  background: #f6f7f9;
  text-align: center;
  transition: background 0.45s var(--ease-lux);
}

.legacy-section__card:hover .legacy-section__card-body,
.legacy-section__card.is-hovered .legacy-section__card-body {
  background: #eceff3;
}

.legacy-section__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
}

.legacy-section__value {
  font-size: 30px;
  font-weight: 550;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.legacy-section__label {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 550;
  line-height: 1.35;
  color: var(--ink);
}

.legacy-section__copy {
  margin: 0.7rem 0 0;
  font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 22rem;
  margin-inline: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.35s ease;
}

.legacy-section__card:hover .legacy-section__copy,
.legacy-section__card.is-hovered .legacy-section__copy {
  color: var(--ink-soft);
}

.legacy-section__link-icon {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  transform: translate(6px, 6px) scale(0.85);
  transition:
    opacity 0.4s var(--ease-lux),
    transform 0.4s var(--ease-lux);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.legacy-section__card:hover .legacy-section__link-icon,
.legacy-section__card.is-hovered .legacy-section__link-icon,
.legacy-section__card:focus-within .legacy-section__link-icon {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (max-width: 991.98px) {
  .legacy-section__carousel .legacy-section__card {
    height: clamp(380px, 92vw, 440px);
    max-width: 480px;
    margin-inline: auto;
  }

  .legacy-section__carousel .owl-nav {
    display: none;
  }

  .legacy-section__link-icon {
    opacity: 1;
    transform: none;
  }
}

/* ========== GALLERY ========== */
.gallery-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: clamp(0.35rem, 0.8vw, 0.5rem);
  cursor: pointer;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-lux);
  will-change: transform;
}

.gallery-cell:hover img { transform: scale(1.08); }

.gallery-cell span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(12, 12, 12, 0.65));
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-lux);
}

.gallery-cell:hover span { transform: translateY(0); }

/* ========== CONSTRUCTION PROGRESS ========== */
.construction-progress {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--white);
}

.construction-progress__heading {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.construction-progress__heading .lux-section-heading__rule {
  margin-inline: auto;
}

.construction-progress__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  padding: 0;
}

.construction-progress__tab {
  min-height: 46px;
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--green);
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--green);
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 0.3s var(--ease-lux),
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease-lux),
    box-shadow 0.3s var(--ease-lux);
}

.construction-progress__tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(19, 93, 53, 0.12);
}

.construction-progress__tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(19, 93, 53, 0.2);
}

.construction-progress__tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.construction-progress__panel[hidden] {
  display: none;
}

.construction-progress__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem) clamp(0.85rem, 1.8vw, 1.25rem);
}

.construction-progress__item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.construction-progress__item figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.construction-progress__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: clamp(1rem, 2vw, 1.35rem);
  aspect-ratio: 4 / 3;
  background: #eef2ef;
}

.construction-progress__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-lux);
}

.construction-progress__item:hover .construction-progress__media img,
.construction-progress__video-link:hover .construction-progress__media img {
  transform: scale(1.04);
}

.construction-progress__item figcaption,
.construction-progress__caption {
  display: block;
  text-align: center;
  font-family: var(--font-main);
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.construction-progress__video {
  margin: 0;
}

.construction-progress__video-link {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
  font: inherit;
}

.construction-progress__media--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 12, 12, 0.28) 100%);
  pointer-events: none;
}

.construction-progress__play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green);
  font-size: 1.35rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-lux), background 0.3s ease, color 0.3s ease;
}

.construction-progress__video-link:hover .construction-progress__play {
  background: var(--green);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.06);
}

.construction-progress__grid--videos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-modal__frame {
  background: #000;
}

.video-modal__iframe,
.video-modal__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-modal__player {
  display: none;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .construction-progress__grid,
  .construction-progress__grid--videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .construction-progress__tabs {
    width: 100%;
  }

  .construction-progress__tab {
    flex: 1 1 calc(50% - 0.4rem);
    padding: 0.65rem 0.75rem;
    font-size: 0.75rem;
  }

  .construction-progress__grid,
  .construction-progress__grid--videos {
    gap: 1.15rem 0.75rem;
  }
}

/* ========== POPULAR SEARCHES + ENQUIRY ========== */
.enquiry-wrap {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3.5rem, 9vw, 6rem);
  background: var(--white);
}

.enquiry-wrap__inner {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.popular-searches {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.popular-searches__title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-main);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--ink);
  opacity: 1;
}

.popular-searches__bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.popular-searches__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 0.9rem);
  /* max-width: 72rem; */
  margin-inline: auto;
}

.popular-searches__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.7rem 1.35rem;
  border: 1px solid var(--green);
  border-radius: 100px;
  background: var(--white);
  color: var(--green);
  font-family: var(--font-main);
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: background 0.35s var(--ease-lux), color 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), transform 0.35s var(--ease-lux);
}

.popular-searches__tag:hover,
.popular-searches__tag.is-active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(19, 93, 53, 0.18);
}

.popular-searches__tag:active {
  transform: scale(0.98);
}

.popular-searches__answer {
  display: flex;
  align-items: flex-start;
  /* max-width: 80rem; */
  min-height: clamp(8.5rem, 18vw, 10.5rem);
  margin: clamp(1.5rem, 3.5vw, 2rem) auto 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.35rem, 3vw, 2rem);
  text-align: left;
  border-radius: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(19, 93, 53, 0.14);
  background:
    linear-gradient(135deg, rgba(19, 93, 53, 0.04) 0%, rgba(0, 108, 180, 0.03) 100%),
    var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.popular-searches__answer-text {
  margin: 0;
  width: 100%;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: var(--muted);
}

/* Inline per-question answer (mobile accordion only) */
.popular-searches__inline-answer {
  display: none;
}

.enquiry-panel {
  position: relative;
  overflow: hidden;
  border-radius: clamp(2rem, 5vw, 4.5rem);
  min-height: clamp(560px, 62vw, 700px);
}

.enquiry-panel__bg {
  position: absolute;
  inset: 0;
}

.enquiry-panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.enquiry-panel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.62) 48%, rgba(8, 8, 8, 0.74) 100%);
}

.enquiry-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: inherit;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
}

.enquiry-panel__content {
  color: var(--white);
  padding: clamp(0.5rem, 2vw, 1.5rem) clamp(0.25rem, 2vw, 2rem);
}

.enquiry-panel__content .lux-section-heading {
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
}

.enquiry-panel__content .lux-section-heading__title {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
}

.enquiry-panel__details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 30rem;
}

.enquiry-panel__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: inherit;
  text-decoration: none;
  transition:
    background 0.3s var(--ease-lux),
    border-color 0.3s var(--ease-lux),
    transform 0.3s var(--ease-lux);
}

a.enquiry-panel__detail:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.enquiry-panel__detail-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(19, 93, 53, 0.28);
}

.enquiry-panel__detail--phone .enquiry-panel__detail-icon {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 8px 18px rgba(0, 108, 180, 0.28);
}

.enquiry-panel__detail--email .enquiry-panel__detail-icon {
  background: linear-gradient(145deg, #1780c4 0%, var(--blue-dark) 100%);
  box-shadow: 0 8px 18px rgba(0, 108, 180, 0.24);
}

.enquiry-panel__detail--email .enquiry-panel__detail-value {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
  word-break: break-word;
  color: var(--white);
}

.enquiry-panel__detail-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding-top: 0.1rem;
}

.enquiry-panel__detail-label {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.enquiry-panel__detail--address .enquiry-panel__detail-label {
  color: var(--white);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.enquiry-panel__detail-value {
  font-family: var(--font-main);
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.enquiry-panel__detail--address .enquiry-panel__detail-value {
  font-size: clamp(0.8rem, 1.2vw, 0.875rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.enquiry-panel__detail--phone .enquiry-panel__detail-value {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--white);
}

.enquiry-panel__form-card {
  justify-self: end;
  width: 100%;
  max-width: 420px;
  padding: clamp(1.75rem, 3.5vw, 2.25rem);
  background: var(--white);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.enquiry-panel__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.enquiry-panel__brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.enquiry-panel__brand-wordmark {
  width: auto;
  height: clamp(28px, 4vw, 34px);
  object-fit: contain;
}

.enquiry-panel__form-title {
  margin: 0 0 1.35rem;
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
}

.enquiry-form {
  display: grid;
  gap: 0.75rem;
}

.enquiry-field input,
.enquiry-field select,
.enquiry-field textarea {
  width: 100%;
  border: none;
  background: #e8e8e8;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  padding: 0.95rem 1.25rem;
  color: var(--ink);
  outline: none;
  transition: background 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
}

.enquiry-field input,
.enquiry-field select {
  border-radius: 999px;
}

.enquiry-field textarea {
  border-radius: 1.25rem;
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.5;
}

.enquiry-field select {
  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='%23135D35' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.enquiry-field select:invalid {
  color: #8a8a8a;
}

.enquiry-field input::placeholder,
.enquiry-field textarea::placeholder {
  color: #8a8a8a;
}

.enquiry-field input:focus,
.enquiry-field select:focus,
.enquiry-field textarea:focus {
  background: #efefef;
  box-shadow: 0 0 0 2px rgba(19, 93, 53, 0.18);
}

.enquiry-form__submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #1a1a1a;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.35s var(--ease-lux), transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux);
}

.enquiry-form__submit:hover {
  background: #000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.enquiry-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 991.98px) {
  .enquiry-panel {
    min-height: auto;
  }

  .enquiry-panel__inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 1.75rem);
  }

  .enquiry-panel__form-card {
    justify-self: stretch;
    max-width: none;
  }

  .enquiry-panel__content {
    padding-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .popular-searches__tags {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .popular-searches__tag {
    width: 100%;
    max-width: 100%;
  }

  /* Hide the shared answer box; answers appear inline below each question */
  .popular-searches__answer {
    display: none;
  }

  .popular-searches__inline-answer {
    display: block;
    max-height: 0;
    margin: 0;
    padding: 0 1.1rem;
    opacity: 0;
    overflow: hidden;
    text-align: left;
    border-radius: 0.9rem;
    border: 1px solid rgba(19, 93, 53, 0.14);
    background:
      linear-gradient(135deg, rgba(19, 93, 53, 0.05) 0%, rgba(0, 108, 180, 0.04) 100%),
      var(--white);
    transition:
      max-height 0.45s var(--ease-lux),
      opacity 0.35s var(--ease-lux),
      margin 0.35s var(--ease-lux),
      padding 0.35s var(--ease-lux);
  }

  .popular-searches__inline-answer.is-open {
    max-height: 40rem;
    margin: 0.15rem 0 0.35rem;
    padding: 0.9rem 1.1rem;
    opacity: 1;
  }

  .popular-searches__inline-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--muted);
  }
}

@media (max-width: 575.98px) {
  .enquiry-wrap__inner {
    padding-inline: clamp(1rem, 4vw, 1.25rem);
  }

  .popular-searches__tag {
    width: 100%;
  }

  .enquiry-panel {
    border-radius: clamp(1.5rem, 6vw, 2rem);
  }
}

/* ========== FAQ (legacy) ========== */
.lux-faq .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
}

.lux-faq .accordion-button {
  font-family: var(--font-display);
  font-size: 1.125rem;
  padding: 1.5rem 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.lux-faq .accordion-button:not(.collapsed) { color: var(--blue); background: transparent; }

.lux-faq .accordion-body {
  padding: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ========== TESTIMONIALS ========== */
.testimonial-swiper { max-width: 820px; margin-inline: auto; padding-bottom: 3.5rem; }

.testimonial-quote {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.5;
  text-align: center;
  color: var(--ink-soft);
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.testimonial-swiper cite {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-pagination .swiper-pagination-bullet-active { background: var(--green); width: 28px; border-radius: 4px; }

/* ========== CONTACT (legacy) ========== */
.lux-contact {
  position: relative;
  overflow: hidden;
}

.lux-contact__bg {
  position: absolute;
  inset: 0;
}

.lux-contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-contact__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.88) 0%, rgba(19, 93, 53, 0.75) 100%);
}

.lux-contact__phone {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.4s;
}

.lux-contact__phone:hover { color: #7ec4f0; }

.lux-contact__note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
}

.lux-form {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 4px;
}

.lux-field {
  position: relative;
  margin-bottom: 1.75rem;
}

.lux-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.lux-field input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 0.5rem 0;
  color: var(--ink);
  outline: none;
}

.lux-field input::placeholder { color: #bbb; }

.lux-field__line {
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  transform-origin: left;
  transition: background 0.4s, transform 0.4s var(--ease-lux);
}

.lux-field input:focus + .lux-field__line {
  background: var(--blue);
  transform: scaleX(1);
}

.lux-field input:not(:placeholder-shown) + .lux-field__line,
.lux-field input:focus + .lux-field__line { background: var(--green); }

/* ========== FOOTER ========== */
.site-footer {
  position: relative;
  background: #e6e6e6;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
}

/* ========== FLOATING PHONE CTA (right side) ========== */
.float-phone {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1045;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem 0.85rem 1rem;
  border-radius: 100px 0 0 100px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 108, 180, 0.35);
  transform: translateY(-50%);
  transition: padding 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), filter 0.35s var(--ease-lux);
}

.float-phone i {
  font-size: 1.15rem;
  line-height: 1;
}

.float-phone__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: max-width 0.35s var(--ease-lux), opacity 0.25s ease, margin 0.35s var(--ease-lux);
}

.float-phone:hover,
.float-phone:focus-visible {
  padding-right: 1.15rem;
  filter: brightness(1.05);
  box-shadow: 0 14px 34px rgba(0, 108, 180, 0.42);
  color: var(--white);
  outline: none;
}

.float-phone:hover .float-phone__label,
.float-phone:focus-visible .float-phone__label {
  max-width: 8rem;
  opacity: 1;
  margin-right: 0.15rem;
}

body.modal-open .float-phone,
body.is-lightgallery-open .float-phone {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .float-phone {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    padding: 0.9rem;
  }

  .float-phone__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-phone,
  .float-phone__label {
    transition: none;
  }
}

/* ========== MOBILE STICKY CTA ========== */
.mobile-cta {
  display: none;
}

@media (max-width: 991.98px) {
  :root {
    --mobile-cta-h: calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }

  body {
    padding-bottom: var(--mobile-cta-h);
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 0.5rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 0.4rem 0.6rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.08);
  }

  .mobile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
    opacity: 0.85;
  }

  .mobile-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 100px;
    font-family: var(--font-main);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux), background 0.3s var(--ease-lux);
  }

  .mobile-cta__btn i {
    font-size: 0.9em;
  }

  .mobile-cta__btn:active {
    transform: scale(0.98);
  }

  .mobile-cta__btn--call {
    background: var(--white);
    color: #1a3a5c;
    border: 1.5px solid rgba(26, 58, 92, 0.22);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

  .mobile-cta__btn--enquire {
    background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(0, 108, 180, 0.28);
  }

  body.modal-open .mobile-cta,
  body.is-lightgallery-open .mobile-cta {
    display: none;
  }

  body.modal-open,
  body.is-lightgallery-open {
    padding-bottom: 0;
  }
}

@media (max-width: 380px) {
  .mobile-cta {
    gap: 0.4rem;
    padding-inline: 0.5rem;
  }

  .mobile-cta__btn {
    font-size: 0.75rem;
    min-height: 2.15rem;
    padding-inline: 0.65rem;
  }
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  opacity: 0.85;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: none;
}

.site-footer__left {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  justify-self: start;
}

.site-footer__center {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  justify-self: center;
  text-align: center;
  min-width: min(100%, 20rem);
  padding: 1rem 1.35rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer__social-link {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-footer__social-link:hover {
  background: var(--white);
  border-color: var(--green);
  color: var(--green);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
}

.site-footer__legal-link {
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
  color: var(--green);
}

.site-footer__legal-sep {
  color: rgba(0, 0, 0, 0.28);
  font-size: 0.875rem;
  line-height: 1;
  user-select: none;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.site-footer__phone {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__phone:hover {
  color: var(--blue);
}

.site-footer__brand .lux-brand__pride {
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  object-fit: contain;
}

.site-footer__brand .lux-brand__euphora {
  width: auto;
  height: clamp(36px, 4.5vw, 48px);
  object-fit: contain;
  mix-blend-mode: normal;
}

@media (max-width: 767.98px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer__left {
    grid-column: 1;
    align-items: center;
    justify-self: center;
    text-align: center;
  }

  .site-footer__center {
    grid-column: 1;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .site-footer__brand {
    gap: 0.65rem;
  }
}

/* ========== MODALS ========== */
.lux-modal .modal-content {
  background: var(--ink);
  border: none;
  border-radius: 4px;
  overflow: hidden;
}

.lux-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lux-modal__close--dark {
  border-color: rgba(0, 0, 0, 0.1);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.lux-modal--legal .modal-dialog {
  max-width: min(92vw, 42rem);
}

.lux-modal--legal .modal-content,
.lux-modal__shell {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: clamp(1rem, 2.2vw, 1.35rem);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.18);
}

.lux-modal__header {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 2rem) clamp(1.5rem, 3.5vw, 2rem) clamp(1.15rem, 2.5vw, 1.5rem);
  background:
    linear-gradient(135deg, rgba(0, 108, 180, 0.06) 0%, rgba(19, 93, 53, 0.05) 100%),
    var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lux-modal__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}

.lux-modal__label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.lux-modal__title {
  margin: 0 0 0.4rem;
  padding-right: 2.5rem;
  font-family: var(--font-main);
  font-size: clamp(1.375rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.lux-modal__updated {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.lux-modal__close--legal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lux-modal__close--legal:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.lux-modal__content {
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 3.5vw, 2rem);
  max-height: min(52vh, 28rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.lux-modal--form .modal-dialog {
  max-width: min(94vw, 32rem);
}

.lux-modal__form-body {
  padding: clamp(1.35rem, 3.5vw, 1.85rem) clamp(1.5rem, 3.5vw, 2rem) clamp(1.5rem, 3.5vw, 2rem);
  max-height: min(70vh, 40rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.lux-modal__form-body::-webkit-scrollbar {
  width: 6px;
}

.lux-modal__form-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 100px;
}

.lux-modal__form-body .enquiry-form__submit {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lux-modal__form-body .enquiry-form__submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(0, 108, 180, 0.28);
}

@media (max-width: 575.98px) {
  .lux-modal--form .modal-dialog {
    max-width: 100%;
    margin: 0.5rem;
  }

  .lux-modal--form .lux-modal__header {
    padding: 1.1rem 1.15rem 0.85rem;
  }

  .lux-modal--form .lux-modal__label {
    font-size: 0.625rem;
    margin-bottom: 0.25rem;
  }

  .lux-modal--form .lux-modal__title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .lux-modal--form .lux-modal__updated {
    font-size: 0.75rem;
  }

  .lux-modal--form .lux-modal__close--legal {
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  .lux-modal__form-body {
    padding: 1rem 1.15rem 1.25rem;
    max-height: min(72vh, 34rem);
  }

  .lux-modal__form-body .enquiry-form {
    gap: 0.5rem;
  }

  .lux-modal__form-body .enquiry-field input,
  .lux-modal__form-body .enquiry-field select {
    height: 2.75rem;
    padding: 0 1rem;
    font-size: 0.875rem;
  }

  .lux-modal__form-body .enquiry-field select {
    padding-right: 2.25rem;
    background-position: right 1rem center;
  }

  .lux-modal__form-body .enquiry-field textarea {
    min-height: 3.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
  }

  .lux-modal__form-body .enquiry-form__submit {
    margin-top: 0.2rem;
    padding: 0.7rem 1.25rem;
    font-size: 0.9375rem;
  }
}

.lux-modal__content::-webkit-scrollbar {
  width: 6px;
}

.lux-modal__content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 100px;
}

.lux-modal__intro {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.lux-modal__section {
  padding: 0.95rem 0 0.95rem 0.9rem;
  border-left: 2px solid rgba(0, 108, 180, 0.22);
}

.lux-modal__section + .lux-modal__section {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lux-modal__section h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}

.lux-modal__section p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
}

.lux-modal__section p a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lux-modal__section p a:hover {
  color: var(--green);
}

.lux-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem clamp(1.5rem, 3.5vw, 2rem) 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8f8f7;
}

.lux-modal__footer-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lux-modal__footer-link:hover {
  color: var(--green);
}

.lux-modal__footer-btn {
  padding: 0.55rem 1.15rem;
  border: none;
  border-radius: 100px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lux-modal__footer-btn:hover {
  background: var(--green);
}

.lux-modal__footer-btn:active {
  transform: scale(0.98);
}

@media (max-width: 575.98px) {
  .lux-modal__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .lux-modal__footer-btn {
    width: 100%;
  }

  .lux-brand { gap: 0.5rem; }
  .lux-brand__pride { width: 42px; height: 42px; }
  .lux-brand__euphora { height: 30px; }
}

#floorModal .modal-content { background: var(--white); }

/* ========== BOOTSTRAP OVERRIDES — hide template feel ========== */
.navbar { --bs-navbar-padding-y: 0; }
.modal-backdrop { backdrop-filter: blur(8px); }
.accordion-button::after { filter: none; opacity: 0.4; }
.form-control:focus { box-shadow: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1199.98px) {
  :root { --header-h: 80px; }
}

@media (max-width: 991.98px) {
  :root { --header-h: 72px; }

  .lux-scroll { display: none; }
  .amenity-visual--tall { min-height: 280px; }
  .lux-stats__grid { grid-template-columns: 1fr; }

  .apartments-banner__hint {
    display: none;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-h: 68px;
    --section-pad: clamp(3.5rem, 10vw, 5.5rem);
  }

  .lux-hero__cta { flex-direction: column; }
  .lux-hero__cta .btn-lux { width: 100%; }
  .amenity-grid { min-height: auto; }

  .lux-heading, .section-heading {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .floor-card__body {
    padding: 1.15rem;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .spec-sheet {
    padding-inline: 0;
  }

  .spec-sheet__panel {
    border-radius: clamp(1.25rem, 4vw, 2rem) clamp(1.25rem, 4vw, 2rem) 0 0;
  }

  .legacy-section {
    padding-inline: 0;
  }

  .legacy-section__header.lux-container,
  .legacy-section__slider.lux-container {
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  }
}

@media (max-width: 575.98px) {
  .btn-lux,
  .btn-about-know,
  .btn-contact-pill {
    font-size: 0.8125rem;
  }

  .lux-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (hover: none), (pointer: coarse) {
  .plans-card__overlay {
    opacity: 0.72;
  }

  .plans-card__cta,
  .plans-card .floor-card__zoom {
    opacity: 1;
    transform: translateY(0);
  }

  .apartments-banner__hint,
  .cursor-glow {
    display: none !important;
  }

  .gallery-cell span {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .cursor-glow { display: none; }
}


@media screen and (max-width: 1199.98px) {
  .lux-header--light .lux-nav .nav-link {
    font-size: 12px;
  }
  .amenity-stack__tab {
    flex: 1 1 0;
    min-width: 9.5rem;
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 0.6px;
}
}


@media (min-width: 1200px) and (max-width: 1299.98px) {
  .amenity-stack__tab {
    padding: 5px 10px;
    font-size: 11px;
    min-height: 30px;
}

.amenity-stack__lead {
  font-size: 12px;
}
.amenity-stack__card-body h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.lux-header--light .lux-nav .nav-link {
  font-size: 12px;
}

.btn-contact-pill {
  padding: 5px 20px;
  min-height: 30px;
  font-size: 13px;
}
.about-intro__lead {
  font-family: var(--font-main);
  font-size: 13px;
}
.lux-section-heading__title {
  font-size: 20px;
  font-weight: 550;
}

.lux-section-heading__kicker {
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.6px;
}

.about-intro__rera {
  margin: 0.35rem auto 1rem;
  font-size: 12px;
  font-weight: 550;
}

.about-intro__value {
  font-size: 18px;
}

.about-intro__caption {
  font-size: 12px;
}

.btn-about-know {
  min-height: 40px;
  font-size: 12px;
  font-weight: 550;
}

.about-intro__more-title {
  font-size: 19px;
}

.about-intro__more-lead {
  font-size: 12px;
}

.about-loc {
  padding: 12px 20px;
  font-size: 12px;
}
.about-intro__more-closing {
  font-size: 12px;
}
.stats-reveal__lede {
  font-size: 16px;
}

.stats-reveal__num {
  font-size: 22px;
}

.why-choose__preview-text {
  font-size: 12px;
}

.plans-showcase__lead {
  font-size: 12px;
}

.btn-lux {
  font-size: 11px;
  letter-spacing: 0.6px;
  padding: 10px 30px;
}

.plans-showcase__tab {
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.6px;
}

.spec-sheet__list li {
  font-size: 13px;
}

.spec-sheet__accordion .accordion-button {
  font-size: 15px;
  font-weight: 550;
}

.connectivity-section__lead {
  font-size: 12px;
}

.legacy-section__lead {
  font-size: 12px;
}

.legacy-section__copy {
  font-size: 12px;
}

.legacy-section__value {
  font-size: 26px;
  font-weight: 550;
}

.legacy-section__label {
  font-size: 16px;
  font-weight: 500;
}

.testimonials-showcase__lead {
  font-size: 12px;
}

.testimonials-showcase__quote {
  font-size: 15px;
}

.testimonials-showcase__author {
  font-size: 15px;
  font-weight: 550;
}

.testimonials-showcase__role {
  font-size: 12px;
}

.popular-searches__tag {
  font-size: 11px;
}

.popular-searches__answer-text {
  font-size: 12px;
}

.popular-searches__answer {
  min-height: clamp(7.5rem, 8vw, 3.5rem);
}

.enquiry-panel__form-title {
  font-size: 14px;
}

.enquiry-panel__content .lux-section-heading__title {
  font-size: 18px;
}

.enquiry-panel__detail {
  padding: 0.8rem 0.9rem;
}

.enquiry-panel__detail-icon {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.95rem;
}

.enquiry-panel__detail-label {
  font-size: 0.7rem;
}

.enquiry-panel__detail--address .enquiry-panel__detail-label {
  font-size: 15px;
}

.enquiry-panel__detail-value {
  font-size: 12px;
}

.enquiry-panel__detail--address .enquiry-panel__detail-value {
  font-size: 11px;
}

.enquiry-panel__detail--phone .enquiry-panel__detail-value {
  font-size: 15px;
}

.enquiry-field input, .enquiry-field select, .enquiry-field textarea {
  font-size: 12px;
  padding: 6px 20px;
}

.enquiry-form__submit {
  padding: 6px 1.5rem;
  font-size: 15px;
  font-weight: 550;
}



}

/* ========== THANK YOU PAGE ========== */
.thankyou-page {
  background: var(--white);
}

.thankyou-page .lux-header {
  position: sticky;
  top: 0;
}

.thankyou-banner {
  position: relative;
  width: 100%;
  min-height: min(72vh, 640px);
  overflow: hidden;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thankyou-banner__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.55) 0%, rgba(12, 12, 12, 0.62) 55%, rgba(12, 12, 12, 0.72) 100%);
  pointer-events: none;
}

.thankyou--on-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  background: transparent;
}

.thankyou__inner {
  width: min(100%, 40rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thankyou__icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  font-size: 1.85rem;
  box-shadow: 0 12px 32px rgba(19, 93, 53, 0.35);
}

.thankyou__heading {
  margin-bottom: 1.15rem;
}

.thankyou__heading .lux-section-heading__rule {
  margin-inline: auto;
}

.thankyou__text {
  margin: 0 0 1.35rem;
  max-width: 28rem;
  font-family: var(--font-main);
  font-size: clamp(0.975rem, 1.6vw, 1.075rem);
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.thankyou-offer {
  width: 100%;
  max-width: 36rem;
  margin: 0 0 1.75rem;
  padding: 1.25rem 1.35rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  text-align: center;
}

.thankyou-offer__lead {
  margin: 0 0 0.75rem;
  font-family: var(--font-main);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.thankyou-offer__hl {
  font-weight: 700;
  color: #9fd4b8;
}

.thankyou-offer__hl--nowrap {
  white-space: nowrap;
}

.thankyou-offer__note {
  margin: 0 0 0.55rem;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.thankyou-offer__validity {
  margin: 0 0 1rem;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.thankyou-offer__validity span {
  color: #9fd4b8;
}

.thankyou-offer__connect {
  margin: 0 0 0.35rem;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.thankyou-offer__phone {
  display: inline-block;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s ease;
}

.thankyou-offer__phone:hover,
.thankyou-offer__phone:focus-visible {
  color: #9fd4b8;
  outline: none;
}

.thankyou__cta {
  min-width: 10.5rem;
}

@media (max-width: 767.98px) {
  .thankyou-banner {
    min-height: min(68vh, 520px);
  }
}
