/* ==========================================================================
   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;

  --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); }

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);
  /* clip keeps horizontal overflow contained without breaking ScrollTrigger pin (fixed) */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.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(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lux-heading em, .section-heading em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lux-section--dark .lux-heading em,
.lux-section--dark .section-heading em {
  background: linear-gradient(90deg, #7ec4f0 0%, #9adfb8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.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 */

/* Section headings — unified premium title block */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.section-head--center {
  align-items: center;
  text-align: center;
}

.section-head--left {
  align-items: flex-start;
  text-align: left;
}

.section-head__label {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.section-head__title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 550;
  line-height: 1.12;
  color: var(--ink);
  text-transform: uppercase;
}

.section-head__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head__rule {
  display: block;
  width: clamp(56px, 8vw, 88px);
  height: 3px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  position: relative;
}

.section-head--center .section-head__rule::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.section-head--light .section-head__label {
  color: rgba(255, 255, 255, 0.72);
}

.section-head--light .section-head__title {
  color: var(--white);
}

.section-head--light .section-head__title em {
  background: linear-gradient(90deg, #7ec4f0 0%, #9adfb8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head--light .section-head__rule {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.35) 100%);
}

.section-head--light .section-head__rule::after {
  background: var(--white);
}

/* 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;
}

.lux-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.lux-brand--euphora {
  margin-right: auto;
}

.lux-brand__pride {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.lux-brand__euphora {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.lux-header__end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
  order: 2;
}

.lux-header__collapse {
  order: 3;
  width: 100%;
}

.lux-header__contact-mobile {
  display: none;
}

/* Contact Us pill */
.btn-contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.15rem;
  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.14);
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  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-header--light .lux-nav .nav-link {
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #1a3a5c !important;
  padding: 0.45rem 0.55rem !important;
}

.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;
}

.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: none;
  border: none;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lux-toggler:focus,
.lux-toggler:focus-visible {
  outline: none;
  box-shadow: none;
}

.lux-toggler__bar {
  position: absolute;
  left: 50%;
  width: 22px;
  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) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  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__bar {
  background: var(--ink);
}

/* Desktop / large tablet — full bar layout */
@media (min-width: 1200px) {
  .lux-header .navbar {
    padding-block: 1rem;
  }

  .lux-header__inner {
    flex-wrap: nowrap;
    gap: 1rem 1.25rem;
  }

  .lux-brand--euphora {
    margin-right: 0;
    order: 1;
  }

  .lux-header__collapse {
    display: flex !important;
    flex: 1 1 auto;
    order: 2;
    width: auto;
    align-items: center;
    justify-content: center;
  }

  .lux-header__end {
    order: 3;
    margin-left: 0;
    gap: 0.85rem;
  }

  .lux-toggler {
    display: none !important;
  }

  .lux-header__contact-mobile {
    display: none !important;
  }

  .lux-header__contact-desktop {
    display: inline-flex;
  }

  .lux-brand__pride {
    width: 54px;
    height: 54px;
  }

  .lux-brand__euphora {
    height: 44px;
  }

  .lux-nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.1rem;
  }

  .lux-header--light .lux-nav .nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 0.7rem !important;
  }
}

@media (min-width: 1400px) {
  .lux-header--light .lux-nav .nav-link {
    padding: 0.5rem 0.95rem !important;
  }
}

/* Below xl — hamburger + compact bar */
@media (max-width: 1199.98px) {
  .lux-header .navbar {
    padding-block: 1rem;
  }

  .lux-brand--euphora {
    order: 1;
    margin-right: auto;
  }

  .lux-header__end {
    order: 2;
    margin-left: 0;
  }

  .lux-header__collapse {
    order: 3;
  }

  .lux-toggler {
    display: flex;
  }

  .lux-header__contact-desktop {
    display: none;
  }

  .lux-header__contact-mobile {
    display: flex;
  }

  .lux-header .navbar-collapse {
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.5rem 0.75rem 1rem;
    margin-top: 0.75rem;
    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 - 6rem);
    overflow-y: auto;
  }

  .lux-header .lux-nav {
    margin: 0 0 0.5rem !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;
  }

  .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 .lux-header__contact-mobile {
    width: 100%;
    margin-top: 0.35rem;
    background: #1a3a5c;
    color: #fff;
    border-color: #1a3a5c;
  }
}

@media (max-width: 767.98px) {
  .lux-header .navbar {
    padding-block: 1.1rem;
  }

  .lux-brand__pride {
    width: 54px;
    height: 54px;
  }

  .lux-brand__euphora {
    height: 42px;
  }

  .lux-toggler {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 499.98px) {
  .lux-header .navbar {
    padding-block: 1rem;
  }

  .lux-brand__pride {
    width: 50px;
    height: 50px;
  }

  .lux-brand__euphora {
    height: 40px;
  }

  .lux-header__end {
    gap: 0.45rem;
  }

  .lux-toggler {
    width: 44px;
    height: 44px;
  }
}

/* ========== HERO CAROUSEL ========== */
.lux-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #0c1a28;
}

.lux-hero--carousel .lux-hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  --swiper-wrapper-transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

.lux-hero__carousel .swiper-wrapper {
  opacity: 1;
}

.lux-hero__carousel .swiper-wrapper,
.lux-hero__carousel .swiper-slide,
.lux-hero__slide {
  height: 100%;
}

.lux-hero__slide {
  position: relative;
  overflow: hidden;
}

.lux-hero__slide-media {
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
}

.lux-hero__slide-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lux-hero__slide-media img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

.lux-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: clamp(44px, 4.5vw, 56px);
  height: clamp(44px, 4.5vw, 56px);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #1a3a5c;
  box-shadow: 0 10px 28px rgba(26, 58, 92, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease-lux),
    transform 0.35s var(--ease-lux),
    background 0.35s var(--ease-lux),
    color 0.35s var(--ease-lux),
    border-color 0.35s var(--ease-lux),
    box-shadow 0.35s var(--ease-lux);
}

.lux-hero__nav--prev { left: clamp(1rem, 3vw, 2.5rem); }
.lux-hero__nav--next { right: clamp(1rem, 3vw, 2.5rem); }

.lux-hero__nav-icon {
  display: inline-flex;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1;
}

.lux-hero--carousel:hover .lux-hero__nav,
.lux-hero--carousel:focus-within .lux-hero__nav {
  opacity: 0.55;
  pointer-events: auto;
}

.lux-hero__nav:hover,
.lux-hero__nav:focus-visible {
  opacity: 1;
  background: #1a3a5c;
  border-color: #1a3a5c;
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 36px rgba(26, 58, 92, 0.24);
  pointer-events: auto;
}

.lux-hero__nav:active {
  transform: translateY(-50%) scale(0.98);
}

.lux-hero__nav.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none;
}

@media (hover: none) {
  .lux-hero__nav {
    opacity: 0.55;
    pointer-events: auto;
  }

  .lux-hero__nav:active {
    opacity: 1;
    background: #1a3a5c;
    border-color: #1a3a5c;
    color: var(--white);
  }
}

.lux-hero__top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, 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);
}

/* ========== ABOUT INTRO ========== */
.about-intro {
  position: relative;
  z-index: 2;
  isolation: isolate;
  background-color: #f2f7fb;
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.about-intro__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-intro__track {
  position: relative;
}

.about-intro__pin {
  position: relative;
  background-color: #f2f7fb;
}

.about-intro__stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  width: 100%;
}

.about-intro__content-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.about-intro--desktop .about-intro__content-col {
  height: var(--about-stage-h, 520px);
}

.about-intro__content-viewport {
  position: relative;
  min-width: 0;
  overflow: visible;
  background-color: transparent;
}

.about-intro--desktop .about-intro__content-viewport {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background-color: #f2f7fb;
}

/* Only fade the bottom edge while scrolling — a top fade was covering the heading */
.about-intro--desktop .about-intro__content-viewport::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, #f2f7fb 0%, rgba(242, 247, 251, 0));
}

.about-intro__cta {
  flex-shrink: 0;
  padding-top: clamp(1rem, 2vw, 1.35rem);
  background-color: #f2f7fb;
}

.about-intro__visual {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: clamp(360px, 52vw, 560px);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(19, 93, 53, 0.12);
  align-self: start;
}

.about-intro__visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 52vw, 560px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-intro--desktop .about-intro__visual,
.about-intro--desktop .about-intro__visual img {
  height: var(--about-stage-h, 520px);
  min-height: var(--about-stage-h, 520px);
  max-height: var(--about-stage-h, 520px);
}

.about-intro__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.08) 0%, rgba(12, 12, 12, 0.02) 45%, rgba(12, 12, 12, 0.42) 100%);
  pointer-events: none;
}

.about-intro__content {
  text-align: left;
  padding-top: 0.15rem;
  padding-bottom: 0.5rem;
  min-width: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.abh {
  margin: 0 0 1.15rem;
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--green);
  position: relative;
  z-index: 1;
}

.about-intro__lead {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  color: var(--ink-soft);
  margin: 0 0 1.15rem;
}

.about-intro__lead--secondary {
  margin-bottom: 2rem;
}

.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: var(--green);
  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 8px 24px rgba(19, 93, 53, 0.22);
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-lux),
    box-shadow 0.4s var(--ease-lux),
    background 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.28),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease-lux);
  pointer-events: none;
}

.btn-about-know:hover {
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(19, 93, 53, 0.28);
}

.btn-about-know:hover::after {
  left: 140%;
}

.btn-about-know:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(19, 93, 53, 0.24);
}

.btn-about-know:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.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(2rem, 4vw, 3rem) 0 0;
  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.35rem 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-intro__locations .about-loc {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  padding-left: 0;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
}

.about-intro__locations .about-loc::before {
  content: '';
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--green);
  position: static;
  left: auto;
  top: auto;
}

.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: 575.98px) {
  .about-intro__lead--secondary {
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .about-intro__stage,
  .about-intro__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .about-intro--desktop .about-intro__content-col,
  .about-intro__content-col {
    height: auto !important;
  }

  .about-intro--desktop .about-intro__content-viewport,
  .about-intro__content-viewport {
    overflow: visible !important;
    height: auto !important;
    flex: none;
  }

  .about-intro--desktop .about-intro__content-viewport::after {
    display: none;
  }

  .about-intro__visual,
  .about-intro--desktop .about-intro__visual,
  .about-intro--desktop .about-intro__visual img {
    position: relative;
    top: auto;
    height: auto;
    max-height: none;
    min-height: clamp(280px, 62vw, 420px);
  }

  .about-intro__visual img {
    min-height: clamp(280px, 62vw, 420px);
  }
}

/* ========== PROJECT HIGHLIGHTS ========== */
.project-highlights {
  background:
    radial-gradient(ellipse 42% 70% at 8% 45%, rgba(0, 108, 180, 0.06) 0%, transparent 60%),
    var(--white);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.project-highlights__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.project-highlights__rera {
  margin: clamp(0.85rem, 2vw, 1.15rem) auto 0;
  max-width: 52rem;
  font-family: var(--font-main);
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--ink-soft);
}

.project-highlights__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
  margin-inline: auto;
  align-items: start;
}

.project-highlights__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;
  outline: none;
  transition: transform 0.5s var(--ease-lux);
}

.project-highlights__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;
}

.project-highlights__item:hover,
.project-highlights__item:focus-within {
  transform: translateY(-4px);
}

.project-highlights__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);
}

.project-highlights__item:nth-child(even) .project-highlights__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);
}

.project-highlights__item:hover .project-highlights__icon,
.project-highlights__item:focus-within .project-highlights__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);
}

.project-highlights__icon i {
  line-height: 1;
  transition: transform 0.45s var(--ease-lux);
}

.project-highlights__item:hover .project-highlights__icon i,
.project-highlights__item:focus-within .project-highlights__icon i {
  transform: translateY(-1px);
}

.project-highlights__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  max-width: 9.5rem;
}

.project-highlights__value {
  margin: 0;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #096579;
  transition: color 0.35s var(--ease-lux);
}

.project-highlights__item:hover .project-highlights__value,
.project-highlights__item:focus-within .project-highlights__value {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.project-highlights__caption {
  margin: 0;
  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);
}

.project-highlights__item:hover .project-highlights__caption,
.project-highlights__item:focus-within .project-highlights__caption {
  color: var(--ink-soft);
}

@media (min-width: 768px) {
  .project-highlights__icon {
    width: 4.75rem;
    height: 4.75rem;
    font-size: 1.55rem;
  }
}

@media (max-width: 991.98px) {
  .project-highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.75rem;
  }

  .project-highlights__item:nth-child(3)::after,
  .project-highlights__item:nth-child(5)::after,
  .project-highlights__item:last-child::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .project-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5rem;
  }

  .project-highlights__item {
    padding: 0.5rem 0.65rem;
  }

  .project-highlights__item:nth-child(even)::after {
    display: none;
  }

  .project-highlights__item:last-child {
    grid-column: 1 / -1;
    max-width: 11rem;
    margin-inline: auto;
    width: 100%;
  }

  .project-highlights__item:last-child::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-highlights__item,
  .project-highlights__icon,
  .project-highlights__icon i,
  .project-highlights__value,
  .project-highlights__caption {
    transition: none;
  }

  .project-highlights__item:hover,
  .project-highlights__item:focus-within {
    transform: none;
  }
}

/* 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 — PARALLAX BACKGROUND ========== */
.stats-reveal {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  overflow: hidden;
  background-color: #0c1e32;
}

.stats-reveal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  background-image: url('../images/revealer.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform-origin: center center;
  pointer-events: none;
}

.stats-reveal__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 55, 110, 0.16) 0%,
    rgba(0, 0, 0, 0.04) 42%,
    rgba(0, 0, 0, 0.24) 100%
  );
  pointer-events: none;
}

.stats-reveal__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: inherit;
  padding:
    clamp(3rem, 8vh, 5rem)
    clamp(1.5rem, 4vw, 3.5rem);
}

.stats-reveal__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  pointer-events: none;
}

.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: 4.25em;
  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__num--text {
  height: auto;
  min-width: 0;
}

.stats-reveal__num--text::before {
  content: attr(data-stat-value);
}

.stats-reveal__text {
  display: block;
  white-space: nowrap;
  text-align: inherit;
  line-height: 1.15;
}

.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__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 {
    min-height: calc(100vh - var(--header-h) - var(--mobile-cta-h));
  }

  .stats-reveal__bg {
    height: 100vh;
    height: 100dvh;
  }

  .stats-reveal__inner {
    align-items: flex-end;
    padding-bottom: 2rem;
  }

  .stats-reveal__content {
    justify-content: flex-start;
  }

  .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;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-reveal__bg {
    inset: 0;
    height: 100%;
    transform: none !important;
  }
}

#why {
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

/* ========== WHY CHOOSE ========== */
.why-choose {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 55% 55% at 12% 40%, rgba(0, 108, 180, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 92% 70%, rgba(19, 93, 53, 0.05) 0%, transparent 55%),
    var(--white);
  overflow: hidden;
}

.why-choose__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.why-choose__section-head {
  margin-inline: auto;
}

.why-choose__layout {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 3fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: stretch;
  max-width: 1040px;
  margin-inline: auto;
}

.why-choose__media {
  margin: 0;
  width: 100%;
}

.why-choose__media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #edf2f6;
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(0, 108, 180, 0.06);
  transition: box-shadow 0.45s var(--ease-lux);
}

.why-choose__media-frame.is-active {
  box-shadow:
    0 24px 56px rgba(0, 108, 180, 0.14),
    0 0 0 1px rgba(0, 108, 180, 0.1);
}

.why-choose__media-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-choose__media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.08) 0%, transparent 42%, rgba(12, 12, 12, 0.55) 100%);
  pointer-events: none;
}

.why-choose__media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
}

.why-choose__media-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #004b5e;
}

.why-choose__panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.why-choose__panel-hint {
  margin: 0 0 0.85rem;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9399;
}

.why-choose__features {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.75rem;
  min-height: 0;
}

.why-choose__feature {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.85rem 1rem;
  flex: 1 1 0;
  width: 100%;
  min-height: 0;
  padding: 1rem 1.15rem 1rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.35s var(--ease-lux),
    box-shadow 0.35s var(--ease-lux),
    background 0.35s var(--ease-lux),
    transform 0.35s var(--ease-lux);
}

.why-choose__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--green) 100%);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-lux);
}

.why-choose__feature:hover,

.why-choose__feature:focus-visible {
  outline: none;
  border-color: rgba(0, 108, 180, 0.2);
  background: rgba(0, 108, 180, 0.03);
  transform: translateX(3px);
}

.why-choose__feature.is-active {
  border-color: rgba(0, 108, 180, 0.22);
  background: linear-gradient(135deg, rgba(0, 108, 180, 0.07) 0%, rgba(19, 93, 53, 0.05) 100%);
  box-shadow: 0 12px 28px rgba(0, 108, 180, 0.1);
}

.why-choose__feature.is-active::before {
  transform: scaleY(1);
}

.why-choose__feature-index {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #a0a8ae;
  min-width: 1.4rem;
  transition: color 0.35s var(--ease-lux);
}

.why-choose__feature.is-active .why-choose__feature-index {
  color: var(--blue);
}

.why-choose__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: #eef2f5;
  color: #5c6770;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition:
    background 0.35s var(--ease-lux),
    color 0.35s var(--ease-lux),
    box-shadow 0.35s var(--ease-lux);
}

.why-choose__feature:hover .why-choose__feature-icon,

.why-choose__feature.is-active .why-choose__feature-icon {
  background: linear-gradient(145deg, var(--blue) 0%, var(--green) 100%);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 108, 180, 0.22);
}

.why-choose__feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.why-choose__feature-title {
  font-family: var(--font-main);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.why-choose__feature.is-active .why-choose__feature-title {
  color: #004b5e;
}

.why-choose__feature-text {
  font-family: var(--font-main);
  font-size: clamp(0.8rem, 1.15vw, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
}

.why-choose__feature.is-active .why-choose__feature-text {
  color: var(--ink-soft);
}

@media (max-width: 991.98px) {
  .why-choose__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    max-width: 520px;
  }
  .why-choose__media {
    max-width: 360px;
    margin-inline: auto;
  }
  .why-choose__panel-hint {
    text-align: center;
  }
  .why-choose__feature {
    flex: 0 0 auto;
  }
  .why-choose__feature:hover,
  .why-choose__feature.is-active {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .why-choose__feature {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
  }
  .why-choose__feature-index {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-choose__feature,
  .why-choose__feature-icon,
  .why-choose__media-frame {
    transition: none;
  }
  .why-choose__feature:hover,
  .why-choose__feature.is-active {
    transform: none;
  }
}

/* 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;
}

/* ========== SPACE CTA ========== */
.space-cta {
  --space-cta-accent: #3da9e0;
  --space-cta-accent-soft: #7bc4eb;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0c1620;
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.space-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.space-cta__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.85) brightness(0.58) contrast(1.05);
  transform: scale(1.06);
  animation: space-cta-drift 28s ease-in-out infinite alternate;
}

.space-cta__veil {
  position: absolute;
  inset: 0;
  background:rgba(0,0,0,0.4);
}

@keyframes space-cta-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .space-cta__bg-img {
    animation: none;
    transform: scale(1.04);
  }
}

.space-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.25rem);
}

.space-cta__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-family: 'Cinzel', var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.space-cta__copy {
  min-width: 0;
  max-width: 46rem;
}

.space-cta__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-main);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--space-cta-accent);
}

.space-cta__text {
  margin: 0 0 0.85rem;
  font-family: var(--font-main);
  font-size: clamp(0.85rem, 1.35vw, 0.98rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.space-cta__prompt {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--space-cta-accent-soft);
}

.space-cta__action {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.space-cta__action::before {
  content: '';
  width: 1px;
  height: clamp(4.5rem, 9vw, 6.5rem);
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--blue) 18%,
    var(--green) 82%,
    transparent 100%
  );
  opacity: 0.95;
  flex-shrink: 0;
}

.space-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(10.5rem, 15vw, 12.75rem);
  min-height: clamp(4.5rem, 9vw, 5.75rem);
  padding: 0.95rem 1.15rem;
  border: none;
  border-radius: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-size: clamp(0.6875rem, 1.05vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 108, 180, 0.28);
  transition:
    background 0.3s var(--ease-lux),
    transform 0.3s var(--ease-lux),
    color 0.3s var(--ease-lux),
    box-shadow 0.3s var(--ease-lux),
    filter 0.3s var(--ease-lux);
}

.space-cta__btn:hover,
.space-cta__btn:focus-visible {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--green-dark) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(19, 93, 53, 0.32);
  filter: brightness(1.05);
}

@media (max-width: 991.98px) {
  .space-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .space-cta__brand {
    order: 0;
  }

  .space-cta__copy {
    order: 1;
    max-width: 40rem;
    margin-inline: auto;
  }

  .space-cta__text,
  .space-cta__prompt {
    margin-inline: auto;
  }

  .space-cta__action {
    order: 2;
    justify-content: center;
  }

  .space-cta__action::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .space-cta {
    padding: 2.15rem 0;
  }

  .space-cta__btn {
    width: 100%;
    max-width: 18rem;
  }
}

.amenity-stack {
  position: relative;
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

/* ========== AMENITIES — TAB GRID ========== */

.amenity-stack__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  text-align: center;
  width: 100%;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.amenity-stack__section-head {
  margin-bottom: 0.15rem;
}

.amenity-stack__lead {
  margin: 0;
  /* max-width: 42rem; */
  font-family: var(--font-main);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  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-inline: auto;
  padding: 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__stage {
  width: 100%;
}

.amenity-stack__decks {
  position: relative;
  width: 100%;
}

.amenity-stack__deck {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
}

.amenity-stack__deck.is-active {
  display: grid;
  animation: amenityDeckIn 0.42s var(--ease-lux) both;
}

@keyframes amenityDeckIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .amenity-stack__deck.is-active {
    animation: none;
  }
}

.amenity-stack__card {
  position: relative;
  height: 100%;
}

.amenity-stack__card-clip {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: clamp(0.85rem, 1.5vw, 1rem);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.35s var(--ease-lux),
    box-shadow 0.35s var(--ease-lux),
    border-color 0.35s var(--ease-lux);
}

.amenity-stack__card:hover .amenity-stack__card-clip,
.amenity-stack__card:focus-within .amenity-stack__card-clip {
  transform: translateY(-4px);
  border-color: rgba(0, 108, 180, 0.18);
  box-shadow: 0 14px 32px rgba(0, 108, 180, 0.12);
}

.amenity-stack__card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.amenity-stack__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-lux);
}

.amenity-stack__card:hover .amenity-stack__card-media img,
.amenity-stack__card:focus-within .amenity-stack__card-media img {
  transform: scale(1.05);
}

.amenity-stack__card-body {
  flex: 0 0 auto;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(0.85rem, 1.6vw, 1.1rem);
  background: var(--white);
}

.amenity-stack__card-body h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 550;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
}

.amenity-stack__card-body p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (min-width: 768px) {
  .amenity-stack__deck {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .amenity-stack__deck {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .amenity-stack__header {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .amenity-stack__lead {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .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__deck {
    gap: 0.75rem;
  }

  .amenity-stack__card-body h3 {
    font-size: 0.8125rem;
  }
}

@media (max-width: 380px) {
  .amenity-stack__tab {
    font-size: 0.625rem;
    min-height: 40px;
  }
}

/* Legacy amenity tiles (unused) */

.legacy-section + .about-pride {
  margin-top: -1px;
}

/* ========== ABOUT PRIDE ========== */
.about-pride {
  position: relative;
  z-index: 3;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--white);
  overflow: hidden;
}

.about-pride__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.about-pride__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  margin-inline: auto;
  text-align: center;
}

.about-pride__lead,
.about-pride__text {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.8;
  color: var(--ink-soft);
}

.about-pride + .testimonials-showcase {
  margin-top: -1px;
}

/* ========== TESTIMONIALS SHOWCASE ========== */
.testimonials-showcase {
  position: relative;
  z-index: 3;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(180deg, #f8f7f5 0%, #f1f0ed 55%, #eceae6 100%);
  overflow: hidden;
}

.testimonials-showcase__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 0.75rem);
  width: min(100%, 40rem);
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.testimonials-showcase__lead {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: var(--muted);
}

.testimonials-showcase__slider {
  position: relative;
  display: grid;
  grid-template-columns: minmax(3rem, 5.5rem) minmax(0, 1fr) minmax(3rem, 5.5rem);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 clamp(1.5rem, 4vw, 3rem);
  max-width: 76rem;
  margin-inline: auto;
  padding-bottom: 3rem;
}

.testimonial-swiper {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  overflow: hidden;
  transform: translateZ(0);
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
  backface-visibility: hidden;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

.testimonial-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.testimonial-slide__quote-icon {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1;
  color: var(--blue);
  opacity: 0.9;
}

.testimonial-slide__quote-icon .bi-quote {
  display: block;
  transform: scaleX(-1);
}

.testimonial-slide__quote {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  border: none;
  padding: 0;
}

.testimonial-slide__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);
}

.testimonial-slide__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;
}

.testimonial-slide__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;
}

.testimonial-slide__role {
  margin: 0.35rem 0 0;
  font-size: clamp(0.8125rem, 1.25vw, 0.9375rem);
  line-height: 1.45;
  color: var(--muted);
}

.testimonial-swiper__arrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.75rem, 4vw, 3.25rem);
  height: clamp(2.75rem, 4vw, 3.25rem);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  justify-self: center;
  transition:
    transform 0.3s var(--ease-lux),
    border-color 0.3s var(--ease-lux),
    color 0.3s var(--ease-lux),
    box-shadow 0.3s var(--ease-lux),
    background 0.3s var(--ease-lux);
}

.testimonial-swiper__arrow--prev {
  grid-column: 1;
  grid-row: 1;
}

.testimonial-swiper__arrow--next {
  grid-column: 3;
  grid-row: 1;
}

.testimonial-swiper__arrow:hover,
.testimonial-swiper__arrow:focus-visible {
  outline: none;
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(0, 108, 180, 0.22);
  color: var(--blue);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 108, 180, 0.14);
}

.testimonial-swiper__arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.testimonial-pagination {
  grid-column: 1 / -1;
  grid-row: 2;
  position: static;
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(0, 0, 0, 0.18);
  opacity: 1;
  transition: width 0.3s var(--ease-lux), background 0.3s var(--ease-lux);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: var(--green);
}

@media (max-width: 767.98px) {
  .testimonials-showcase__slider {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-bottom: 2.75rem;
  }

  .testimonial-swiper {
    grid-column: 1;
    max-width: none;
  }

  .testimonial-swiper__arrow {
    display: none;
  }

  .testimonial-slide__quote {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .testimonials-showcase__lead {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
}
/* ========== 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__section-head {
  margin-bottom: 0.75rem;
}

.plans-showcase__lead {
  margin: 20px 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(4, 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__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__section-head {
  margin-bottom: 1.25rem;
}

.connectivity-section__title {
  margin: 0;
}

.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 0 1.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.connectivity-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.connectivity-highlights li {
  position: relative;
  padding-left: 1.15rem;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-soft);
}

.connectivity-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.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--project span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #e53935;
  color: var(--white);
  font-size: 1.15rem;
  box-shadow:
    0 0 0 3px var(--white),
    0 8px 20px rgba(229, 57, 53, 0.4);
}

.connectivity-marker--project span i {
  transform: rotate(45deg);
}

.connectivity-marker--nearby span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  box-shadow:
    0 0 0 2px var(--white),
    0 4px 12px rgba(19, 93, 53, 0.28);
}

.connectivity-marker--nearby span i {
  transform: rotate(45deg);
}

.connectivity-marker--corporate span { background: var(--blue); box-shadow: 0 0 0 2px var(--white), 0 4px 12px rgba(0, 108, 180, 0.28); }
.connectivity-marker--entertainment span { background: #c47a22; box-shadow: 0 0 0 2px var(--white), 0 4px 12px rgba(196, 122, 34, 0.28); }
.connectivity-marker--education span { background: #5a4fcf; box-shadow: 0 0 0 2px var(--white), 0 4px 12px rgba(90, 79, 207, 0.28); }
.connectivity-marker--healthcare span { background: #2a7a9b; box-shadow: 0 0 0 2px var(--white), 0 4px 12px rgba(42, 122, 155, 0.28); }
.connectivity-marker--connectivity span { background: #0f766e; box-shadow: 0 0 0 2px var(--white), 0 4px 12px rgba(15, 118, 110, 0.28); }
.connectivity-marker--hotels span { background: #7a4e2d; box-shadow: 0 0 0 2px var(--white), 0 4px 12px rgba(122, 78, 45, 0.28); }

.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: #e53935;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.connectivity-map__tooltip--project::before {
  border-top-color: #e53935;
}

@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;
  width: 100%;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  margin-bottom: 0.35rem;
}

.apartments-banner__section-title {
  margin: 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;
}

.apartments-banner__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  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);
  }
}

.apartments-banner + .legacy-section {
  margin-top: -1px;
}

/* ========== LEGACY ========== */
.legacy-section {
  position: relative;
  z-index: 3;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 9vw, 6.5rem);
  background:
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(0, 108, 180, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  overflow: hidden;
}

.legacy-section__header {
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.legacy-section__title {
  margin: 0;
}

.legacy-section__lead {
  margin: 0.85rem auto 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  font-weight: 500;
  color: #222222;
}

.legacy-section__showcase {
  position: relative;
  margin-inline: auto;
}

.legacy-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
}

.legacy-section__pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: clamp(9.5rem, 16vw, 11rem);
  padding: clamp(1.15rem, 2vw, 1.5rem) clamp(0.75rem, 1.4vw, 1rem);
  border-radius: clamp(1rem, 1.8vw, 1.25rem);
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(0, 108, 180, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--white) 0%, #f8fafb 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 12px 32px rgba(0, 108, 180, 0.06),
    0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.45s var(--ease-lux),
    border-color 0.45s var(--ease-lux),
    box-shadow 0.45s var(--ease-lux);
}

.legacy-section__pillar:hover,
.legacy-section__pillar:focus-within {
  transform: translateY(-6px);
  border-color: rgba(0, 108, 180, 0.14);
  box-shadow:
    0 20px 44px rgba(0, 108, 180, 0.1),
    0 8px 20px rgba(15, 23, 42, 0.06);
}

.legacy-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.65rem, 4.8vw, 3rem);
  height: clamp(2.65rem, 4.8vw, 3rem);
  margin-bottom: clamp(0.75rem, 1.6vw, 1rem);
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #f3f7fb 0%, #e9f1f8 100%);
  border: 1px solid rgba(0, 108, 180, 0.12);
  color: var(--blue);
  font-size: clamp(1.05rem, 1.95vw, 1.25rem);
  box-shadow:
    0 8px 20px rgba(0, 108, 180, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.45s var(--ease-lux),
    border-color 0.45s var(--ease-lux),
    color 0.45s var(--ease-lux),
    background 0.45s var(--ease-lux),
    box-shadow 0.45s var(--ease-lux);
}

.legacy-section__pillar:hover .legacy-section__icon,
.legacy-section__pillar:focus-within .legacy-section__icon {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(0, 108, 180, 0.28);
  background: linear-gradient(145deg, var(--blue) 0%, var(--green) 100%);
  color: var(--white);
  box-shadow:
    0 14px 28px rgba(0, 108, 180, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.legacy-section__value {
  margin: 10px 0px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #023f68;
}

.legacy-section__label {
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 550;
  line-height: 24px;
  text-transform: uppercase;
  color: #444;
  transition: color 0.35s ease;
  max-width: 11rem;
}

.legacy-section__pillar:hover .legacy-section__label,
.legacy-section__pillar:focus-within .legacy-section__label {
  color: var(--ink-soft);
}

@media (max-width: 1199.98px) {
  .legacy-section__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.1rem);
  }

  .legacy-section__pillar {
    grid-column: span 2;
  }

  .legacy-section__pillar:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .legacy-section__pillar:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 767.98px) {
  .legacy-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .legacy-section__pillar,
  .legacy-section__pillar:nth-child(4),
  .legacy-section__pillar:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    padding: 1.15rem 0.85rem;
    max-width: none;
    margin-inline: 0;
    width: auto;
  }

  .legacy-section__value {
    font-size: clamp(1.49rem, 5.4vw, 1.8rem);
  }

  .legacy-section__label {
    max-width: none;
    font-size: 0.8125rem;
    line-height: 1.4;
  }
}

/* ========== 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 ========== */
.testimonials-showcase + .progress-section {
  margin-top: -1px;
}

.progress-section {
  position: relative;
  z-index: 3;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--white);
  overflow: hidden;
}

.progress-section__header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.progress-section__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.progress-section__tab {
  min-width: clamp(10.5rem, 18vw, 13rem);
  padding: 0.7rem 1.35rem;
  border: 1px solid var(--green);
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--green-dark);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition:
    background 0.3s var(--ease-lux),
    color 0.3s var(--ease-lux),
    border-color 0.3s var(--ease-lux),
    box-shadow 0.3s var(--ease-lux);
}

.progress-section__tab:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
  box-shadow: 0 8px 20px rgba(19, 93, 53, 0.1);
}

.progress-section__tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(19, 93, 53, 0.18);
}

.progress-section__tab.is-active:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.progress-section__panel {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem) clamp(0.85rem, 1.8vw, 1.25rem);
}

.progress-section__panel.is-active {
  display: grid;
}

.progress-section__panel[data-progress-panel="videos"].is-active {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin-inline: 0;
}

.progress-card {
  margin: 0;
  min-width: 0;
}

.progress-card__link,
.progress-card__media,
.progress-card__play {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: clamp(0.85rem, 1.8vw, 1.15rem);
  background: #e8ecef;
  aspect-ratio: 4 / 3;
  width: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
}

.progress-card__link img,
.progress-card__media video,
.progress-card__play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-lux);
}

.progress-card__link:hover img,
.progress-card__play:hover img {
  transform: scale(1.04);
}

.progress-card__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(3rem, 5vw, 3.75rem);
  height: clamp(3rem, 5vw, 3.75rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s var(--ease-lux),
    background 0.35s var(--ease-lux),
    color 0.35s var(--ease-lux);
}

.progress-card__play:hover .progress-card__play-icon,
.progress-card__play:focus-visible .progress-card__play-icon {
  background: var(--green);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.06);
}

.progress-card__play::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.18);
  pointer-events: none;
  transition: background 0.35s var(--ease-lux);
}

.progress-card__play:hover::after,
.progress-card__play:focus-visible::after {
  background: rgba(12, 12, 12, 0.28);
}

.progress-card__caption {
  margin: 0.7rem 0 0;
  text-align: center;
  font-family: var(--font-main);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-soft);
}

.progress-video-modal {
  position: relative;
  border: none;
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  overflow: hidden;
  background: #0c0c0c;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.progress-video-modal__title {
  margin: 0;
  padding: 1rem 3.5rem 0.65rem 1.25rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.progress-video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.progress-video-modal__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.lux-modal--video .lux-modal__close--dark {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
}

@media (max-width: 991.98px) {
  .progress-section__panel.is-active,
  .progress-section__panel[data-progress-panel="videos"].is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .progress-section__tab {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 0;
    padding-inline: 0.75rem;
    font-size: 0.8125rem;
  }

  .progress-section__panel.is-active,
  .progress-section__panel[data-progress-panel="videos"].is-active {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

.progress-section + .enquiry-wrap {
  margin-top: -1px;
}

/* ========== POPULAR SEARCHES + ENQUIRY ========== */
.enquiry-wrap {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3.5rem, 9vw, 6rem);
  background: var(--white);
  overflow: hidden;
}

.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 {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
}

.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);
  transition: opacity 0.3s var(--ease-lux);
}

.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.78) 0%, rgba(8, 8, 8, 0.58) 48%, rgba(8, 8, 8, 0.7) 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__section-head {
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.enquiry-panel__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9adfb8;
}

.enquiry-panel__title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.enquiry-panel__title em {
  font-style: normal;
  color: #7ec4f0;
}

.enquiry-panel__rule {
  display: block;
  width: clamp(72px, 12vw, 110px);
  height: 2px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #9adfb8 0%, var(--green) 100%);
  position: relative;
}

.enquiry-panel__rule::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9adfb8;
  transform: translateY(-50%);
}

.enquiry-panel__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 28rem;
}

.enquiry-glass {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  color: #fff;
  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-glass:hover,
a.enquiry-glass:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

.enquiry-glass__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  font-size: 1.15rem;
  color: #fff;
}

.enquiry-glass__icon--call {
  background: var(--blue);
}

.enquiry-glass__icon--mail {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
}

.enquiry-glass__icon--pin {
  background: var(--green);
}

.enquiry-glass__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding-top: 0.1rem;
}

.enquiry-glass__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.enquiry-glass__value {
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  font-weight: 550;
  line-height: 1.3;
  color: #fff;
  word-break: break-word;
}

.enquiry-glass__detail {
  margin-top: 0.15rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.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;
}

/* ========== 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) ========== */
.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%;
  }
}

#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: 76px; }
}

@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; }

  .lux-hero__slide-media img {
    object-position: center 30%;
  }

  .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__showcase.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 (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 overridden in .about-intro__locations for bullet alignment */
  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;
  line-height: 26px;
}

.legacy-section__copy {
  font-size: 12px;
}

.legacy-section__value {
  font-size: 20px;
  font-weight: 550;
}

.legacy-section__label {
  font-size: 12px;
  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__eyebrow {
  font-size: 11px;
}

.enquiry-panel__title {
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.enquiry-glass__value {
  font-size: 1.05rem;
}

.enquiry-glass__detail {
  font-size: 0.78rem;
}

.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;
}

.abh {
  font-size: 20px;
}

.section-head__title {
  font-size: 26px;
}

.project-highlights__rera {
  font-size: 12px;
  font-weight: 550;
}

.section-head__label {
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.8px;
}

.section-head__title {
  font-size: 22px;
}

.project-highlights__value {
  font-size: 20px;
}

.space-cta__text {
  font-size: 13px;
  font-weight: 500;
}

.space-cta__btn {
  width: 250px;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 550;
  line-height: 23px;
}

.space-cta__title{
    font-size: 17px;
    font-weight: 550;
}

.connectivity-highlights li {
  font-size: 12px;
}

.about-pride__lead, .about-pride__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
}

.testimonial-slide__quote {
  font-size: 14px;
}

.progress-section__tab {
  font-size: 12px;
  font-weight: 550;
}

.progress-card__caption {
  font-size: 13px;
  font-weight: 500;
}

.about-intro__locations .about-loc {
  font-size: 13px;
}




}

/* ========== THANK YOU PAGE ========== */
.thankyou-page .lux-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.thank-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0c1a28;
}

.thank-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.thank-banner__media picture,
.thank-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thank-banner__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 20, 32, 0.62) 0%, rgba(8, 20, 32, 0.45) 40%, rgba(8, 20, 32, 0.72) 100%);
  pointer-events: none;
}

.thank-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  padding-block: clamp(6rem, 12vw, 8.5rem) clamp(3rem, 6vw, 4.5rem);
  color: #fff;
}

.thank-banner__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 10px 28px rgba(19, 93, 53, 0.35);
}

.thank-banner__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.thank-banner__title {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}

.thank-banner__title em {
  font-style: normal;
  color: #7ec4f0;
}

.thank-banner__rule {
  display: block;
  width: clamp(64px, 10vw, 96px);
  height: 2px;
  margin: 1.15rem auto 1.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, var(--green) 100%);
  position: relative;
}

.thank-banner__rule::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.thank-banner__text {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-family: var(--font-main);
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.thank-banner__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(19, 93, 53, 0.28);
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), background 0.35s var(--ease-lux);
}

.thank-banner__home:hover,
.thank-banner__home:focus-visible {
  color: #fff;
  background: #0f4a2a;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(19, 93, 53, 0.34);
}

@media (max-width: 575.98px) {
  .thank-banner__check {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}




