﻿/* =========================================================
   GLOBAL DESIGN TOKENS & RESET
   ========================================================= */
:root {
  --navy-950: #0a0e1a;
  --navy-900: #111a2c;
  --navy-800: #1c2740;
  --gold-400: #dcb679;
  --gold-500: #c9a15a;
  --gold-600: #a9803e;
  --surface-0: #ffffff;
  --surface-50: #f6f7f9;
  --surface-100: #edeff2;
  --ink-900: #12151f;
  --ink-600: #4c5468;
  --ink-400: #8b93a5;
  --line-on-dark: rgba(255, 255, 255, 0.14);
  --line-on-light: rgba(18, 21, 31, 0.09);
  --status-ready: #2f9e5c;
  --status-progress: #3b6fa0;

  --font-display: 'Literata', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --container-w: 1440px;

  --shadow-card: 0 16px 40px -18px rgba(10, 14, 26, 0.5);
  --shadow-gold: 0 10px 26px -10px rgba(201, 161, 90, 0.55);
  --navbar-h: 76px;
  --navbar-h-mobile: 64px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--surface-0);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
select,
input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}
.icon--fill {
  fill: currentColor;
  stroke: none;
}

/* Global Animations */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .feature-card,
  .stats-bar__inner,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Global Reusables */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px;
  border-top: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-600);
}
.trust-item .icon {
  color: var(--gold-600);
  width: 19px;
  height: 19px;
}

/* =========================================================
   1. NAVBAR
   ========================================================= */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: var(--navy-950);
  box-shadow: 0 4px 18px -10px rgba(0, 0, 0, 0.4);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
  /* Legacy styles.css sets `header { overflow-x: hidden }`, which would clip this header —
     and with it the absolutely-positioned .mobile-panel and .dropdown-panel anchored here. */
  overflow: visible;
}
.site-navbar.is-hero:not(.is-scrolled) {
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 26, 0.6),
    rgba(10, 14, 26, 0)
  );
  box-shadow: none;
  backdrop-filter: blur(1px);
}
.site-navbar.is-scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.55);
}

.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo sup {
  color: var(--gold-400);
  font-size: 0.65em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-item {
  position: relative;
}
.nav-item > a,
.nav-item > .nav-link-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: #c6cbdb;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.nav-item > a:hover,
.nav-item > .nav-link-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-item.is-active > a {
  color: var(--gold-400);
}
.nav-item .icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.nav-item.has-dropdown:hover .icon,
.nav-item.has-dropdown:focus-within .icon {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--navy-900);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.nav-item.has-dropdown:hover .dropdown-panel,
.nav-item.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 0.86rem;
  color: #c6cbdb;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.dropdown-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #e7eaf1;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.nav-phone:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 11px 20px;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.nav-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid var(--line-on-dark);
}
.nav-burger .icon {
  width: 19px;
  height: 19px;
}
.nav-burger .icon-close {
  display: none;
}
.nav-toggle:checked ~ .nav-burger .icon-menu {
  display: none;
}
.nav-toggle:checked ~ .nav-burger .icon-close {
  display: block;
}

/* position:absolute, NOT fixed: the header carries backdrop-filter, which makes it the
     containing block for fixed descendants — a compositing path where Chrome lays out and
     hit-tests the fixed panel but never paints it (menu opens invisibly). Anchoring
     absolutely to the fixed header lands it in the identical spot, reliably composited. */
.mobile-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--navbar-h-mobile));
  max-height: calc(100dvh - var(--navbar-h-mobile));
  overflow-y: auto;
  background: var(--navy-950);
  border-top: 1px solid var(--line-on-dark);
  padding: 20px clamp(20px, 5vw, 32px) 32px;
  z-index: 5;
}
.nav-toggle:checked ~ .mobile-panel {
  display: block;
}
.mobile-links {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.mobile-links > li {
  border-bottom: 1px solid var(--line-on-dark);
}
.mobile-links > li > a {
  display: block;
  padding: 16px 4px;
  font-size: 0.98rem;
  font-weight: 500;
  color: #e7eaf1;
}
.mobile-links details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-size: 0.98rem;
  font-weight: 500;
  color: #e7eaf1;
  cursor: pointer;
  list-style: none;
}
.mobile-links details summary::-webkit-details-marker {
  display: none;
}
.mobile-links details summary .icon {
  width: 15px;
  height: 15px;
  color: #8b93ab;
  transition: transform 0.2s ease;
}
.mobile-links details[open] summary .icon {
  transform: rotate(180deg);
}
.mobile-links .sub-links {
  list-style: none;
  margin: 0 0 14px;
  padding: 0 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-links .sub-links a {
  display: block;
  padding: 11px 4px;
  font-size: 0.9rem;
  color: #8b93ab;
}
.mobile-links .sub-links a:hover {
  color: var(--gold-400);
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .site-navbar {
    height: var(--navbar-h-mobile);
  }
  .nav-links,
  .navbar-actions {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}

/* =========================================================
   2. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 28px;
  background:
    linear-gradient(
      100deg,
      rgba(9, 13, 23, 0.94) 8%,
      rgba(9, 13, 23, 0.68) 45%,
      rgba(9, 13, 23, 0.32) 78%
    ),
    url('https://images.pexels.com/photos/34926700/pexels-photo-34926700.jpeg')
      center/cover no-repeat;
  color: #e7eaf1;
}

.hero-body {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 56px;
  align-items: start;
  padding-block: 8px 14px;
}
.hero-copy {
  opacity: 0;
  animation: rise 0.7s 0.18s ease-out forwards;
}
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.eyebrow-line::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-400);
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 4.6vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 22px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--gold-400);
}
.hero-copy p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #b9c0d1;
  max-width: 64ch;
  margin: 0 0 40px;
}

.mode-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 0;
}
.mode-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #a7aec2;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}
.mode-tab:hover {
  color: #fff;
}
.mode-tab.is-active {
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.05);
  border-bottom-color: var(--gold-400);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.search-panel {
  background: rgba(17, 26, 44, 0.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-on-dark);
  border-top: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 18px;
  align-items: end;
}
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #8b93ab;
  margin-bottom: 9px;
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 12px 38px 12px 14px;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.select-wrap select:focus {
  outline: none;
  border-color: var(--gold-400);
}
.select-wrap select option {
  color: #12151f;
  background: #fff;
}
.select-wrap .icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b93ab;
  pointer-events: none;
}
.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  white-space: nowrap;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.search-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.feature-card {
  opacity: 0;
  animation: rise 0.7s 0.3s ease-out forwards;
  background: rgba(17, 26, 44, 0.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.feature-card__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
}
.feature-card__media img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}
.feature-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 4px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}
.feature-card__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: #9aa2b8;
  margin: 0 0 18px;
}
.feature-card__loc .icon {
  color: var(--gold-400);
}
.feature-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 18px;
  margin-bottom: 18px;
}
.feature-card__stats strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-card__stats span {
  font-size: 0.78rem;
  color: #8b93ab;
}
.feature-card__amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  font-size: 0.85rem;
  color: #c6cbdb;
  margin-bottom: 22px;
}
.feature-card__amenities li {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.feature-card__amenities .icon {
  color: var(--gold-400);
  flex-shrink: 0;
}
.btn-ghost-block {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-on-dark);
  color: #fff;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 13px;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn-ghost-block:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
}

.side-actions {
  position: fixed;
  right: 0;
  top: 52%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 40;
}
.side-actions button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 26, 44, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-on-dark);
  border-right: none;
  color: #e7eaf1;
  padding: 14px 16px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  overflow: hidden;
  width: 48px;
  transition:
    width 0.25s ease,
    background 0.2s ease;
}
.side-actions button span {
  font-size: 0.84rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.side-actions button:hover {
  width: 168px;
  background: rgba(28, 39, 64, 0.92);
}
.side-actions button:hover span {
  opacity: 1;
}
.side-actions .icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.side-actions button:nth-child(2) .icon {
  color: #3fbf78;
}

.stats-bar {
  padding-bottom: 8px;
}
.stats-bar__inner {
  opacity: 0;
  animation: rise 0.7s 0.42s ease-out forwards;
  background: rgba(17, 26, 44, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 12px;
}
.stat {
  text-align: center;
  padding-inline: 12px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line-on-dark);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 4px;
}
.stat span {
  font-size: 0.84rem;
  color: #b9c0d1;
}

.section-light {
  background: var(--surface-0);
  padding-block: 88px;
}
.section-heading {
  margin-bottom: 44px;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 600;
  margin: 0 0 10px;
}
.section-heading p {
  color: var(--ink-400);
  font-size: 1.02rem;
  margin: 0;
}
.district-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.district-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-md);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.district-card:hover {
  border-bottom-color: var(--gold-500);
  transform: translateY(-2px);
}
.district-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-sm);
  color: var(--gold-600);
}
.district-card h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 600;
}
.district-card span {
  font-size: 0.8rem;
  color: var(--ink-400);
}

@media (max-width: 1080px) {
  .hero-body {
    grid-template-columns: 1fr;
  }
  .feature-card {
    max-width: 420px;
  }
  .district-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .search-panel {
    grid-template-columns: 1fr 1fr;
  }
  .search-btn {
    grid-column: 1 / -1;
  }
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
  .stat:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .search-panel {
    grid-template-columns: 1fr;
  }
  .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-row {
    justify-content: flex-start;
  }
  .side-actions {
    display: none;
  }
}

/* =========================================================
   3. TIMELINE / SPACES
   ========================================================= */
.spaces-section {
  position: relative;
  background: var(--surface-50);
  padding-top: 60px;
  overflow: hidden;
}
.spaces-section__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(18, 21, 31, 0.14) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 55%);
  mask-image: linear-gradient(to bottom, black, transparent 55%);
  pointer-events: none;
}
.spaces-section > .container {
  position: relative;
  z-index: 1;
}

.section-heading--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.eyebrow-line--center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold-600);
  margin-bottom: 20px;
}
.eyebrow-line--center::before,
.eyebrow-line--center::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.55;
}
.eyebrow-line--center .icon {
  color: var(--gold-500);
  width: 1.05em;
  height: 1.05em;
}
.section-heading--center h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 16px;
}
.section-heading--center p {
  font-size: 1.03rem;
  line-height: 1.6;
  color: var(--ink-600);
  margin: 0;
}

.timeline-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 14px;
}
.timeline-rail::before {
  content: '';
  position: absolute;
  top: 9px;
  left: calc(12.5% - 1px);
  right: calc(12.5% - 1px);
  height: 1px;
  background: var(--line-on-light);
}
.timeline-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.timeline-node__dot {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--surface-50);
  border: 2px solid #c7cbd6;
}
.timeline-node.is-current .timeline-node__dot {
  background: var(--gold-500);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(201, 161, 90, 0.2);
}
.timeline-node span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-400);
}
.timeline-node.is-current span {
  color: var(--gold-600);
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.space-card {
  background: var(--surface-0);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.space-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.space-card__media {
  position: relative;
  height: 176px;
}
.space-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  box-shadow: 0 8px 18px -6px rgba(10, 14, 26, 0.4);
}
.space-card__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.space-card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 10px;
}
.space-card__body p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0 0 18px;
}
.space-card__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.space-card__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--ink-600);
}
.space-card__list .icon {
  color: var(--gold-600);
  flex-shrink: 0;
}
.space-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-600);
  padding-top: 16px;
  border-top: 1px solid var(--line-on-light);
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}
.space-card:hover .space-card__cta {
  gap: 11px;
  color: var(--gold-500);
}

.reveal {
  opacity: 0;
  animation: rise 0.7s ease-out forwards;
}
.reveal--1 {
  animation-delay: 0.05s;
}
.reveal--2 {
  animation-delay: 0.16s;
}
.reveal--3 {
  animation-delay: 0.27s;
}

@media (max-width: 960px) {
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-rail {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }
  .timeline-rail::before {
    display: none;
  }
}
@media (max-width: 560px) {
  .spaces-grid {
    grid-template-columns: 1fr;
  }
  .timeline-rail {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
  }
  .timeline-rail::before {
    display: block;
  }
  .timeline-node span {
    display: none;
  }
}

/* =========================================================
   4. SEARCH STRATEGY
   ========================================================= */
.search-section {
  background: var(--surface-0);
  padding-block: 96px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}
.eyebrow-stack {
  margin-bottom: 28px;
}
.eyebrow-stack p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.eyebrow-stack .dash {
  width: 44px;
  height: 2px;
  background: var(--gold-500);
}
.intro-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0 0 28px;
}
.intro-copy h2 em {
  font-style: normal;
  color: var(--gold-600);
}
.intro-copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-600);
  margin: 0 0 20px;
}
.intro-copy p strong {
  color: var(--ink-900);
  font-weight: 600;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
  margin: 36px 0 40px;
}
.feature-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 161, 90, 0.09);
  border: 1px solid rgba(201, 161, 90, 0.32);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-item h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.feature-item p {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--ink-400);
  margin: 0;
}

.cta-strip {
  background: var(--surface-0);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 10px 28px -18px rgba(10, 14, 26, 0.25);
}
.cta-strip__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-strip__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 161, 90, 0.09);
  border: 1px solid rgba(201, 161, 90, 0.32);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-strip h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--ink-900);
}
.cta-strip p {
  font-size: 0.8rem;
  color: var(--ink-400);
  margin: 0;
}
.cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
}
.cta-strip__btn:hover {
  background: var(--navy-800);
}

.intro-media {
  position: relative;
}
.intro-media__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.intro-media__frame img {
  width: 100%;
  height: clamp(380px, 42vw, 580px);
  object-fit: cover;
}
.pull-quote {
  position: absolute;
  left: -24px;
  bottom: -36px;
  max-width: 320px;
  background: var(--navy-900);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
  color: #fff;
}
.pull-quote__mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-500);
  margin-bottom: 6px;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 16px;
  color: #fff;
}
.pull-quote .dash {
  width: 32px;
  height: 3px;
  background: var(--gold-500);
}

.proof-bar {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 44px clamp(20px, 4vw, 56px);
  box-shadow: var(--shadow-card);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-inline: 22px;
  position: relative;
}
.proof-item:first-child {
  padding-left: 0;
}
.proof-item + .proof-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-on-dark);
}
.proof-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 90, 0.4);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 2px;
}
.proof-item .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c6cbdb;
}
.proof-item .sub {
  font-size: 0.74rem;
  color: #7c869e;
}

@media (max-width: 980px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .intro-media {
    order: -1;
  }
  .pull-quote {
    position: static;
    max-width: none;
    margin-top: -40px;
    margin-inline: 24px;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
  .proof-item:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .cta-strip__btn {
    width: 100%;
    justify-content: center;
  }
  .proof-grid {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }
  .proof-item::before {
    display: none !important;
  }
  .proof-item {
    padding-left: 0;
  }
}

/* =========================================================
   5. PUNE REAL ESTATE
   ========================================================= */
.market-section {
  background: var(--navy-950);
  padding-block: 104px;
  color: #c6cbdb;
}
.market-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  margin-bottom: 64px;
}
.eyebrow-icon-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.eyebrow-icon-line .icon {
  color: var(--gold-500);
  width: 22px;
  height: 22px;
}
.eyebrow-icon-line span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold-500);
  text-transform: uppercase;
}
.eyebrow-icon-line::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: #2f3a52;
}
.market-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  line-height: 1.14;
  color: #fff;
  margin: 0 0 22px;
}
.market-copy h2 em {
  font-style: italic;
  color: var(--gold-400);
}
.market-copy .lede {
  font-size: 1.08rem;
  font-weight: 500;
  color: #dfe2ea;
  margin: 0 0 22px;
}
.market-copy .body-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-400);
  margin: 0 0 32px;
}
.highlight-box {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 161, 90, 0.22);
  border-radius: var(--radius-lg);
  padding: 26px 28px 26px 32px;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-500);
}
.highlight-box__inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.highlight-box__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid rgba(201, 161, 90, 0.35);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-400);
  margin: 0 0 8px;
}
.highlight-box p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--ink-400);
  margin: 0 0 14px;
}
.highlight-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-500);
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.highlight-box a:hover {
  color: #fff;
  gap: 11px;
}

.market-media img {
  width: 100%;
  height: clamp(220px, 24vw, 300px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
}
.point-list {
  display: flex;
  flex-direction: column;
}
.point {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-block: 24px;
  border-bottom: 1px solid #1f2941;
}
.point:first-child {
  padding-top: 0;
}
.point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.point__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 1px solid rgba(201, 161, 90, 0.32);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.point h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.point p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-400);
  margin: 0;
}

.glance-panel {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 44px clamp(20px, 4vw, 56px);
  box-shadow: var(--shadow-card);
}
.panel-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.panel-caption .dash {
  height: 1px;
  background: #334063;
  width: clamp(32px, 6vw, 96px);
}
.panel-caption span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.glance-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-inline: 22px;
  position: relative;
}
.glance-item:first-child {
  padding-left: 0;
}
.glance-item + .glance-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #263252;
}
.glance-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 90, 0.4);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.glance-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: 2px;
}
.glance-item .label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #c6cbdb;
}
.glance-item .sub {
  font-size: 0.73rem;
  color: #6d7893;
  margin-top: 1px;
}

@media (max-width: 980px) {
  .market-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .glance-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .glance-item:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .point {
    gap: 16px;
  }
  .glance-grid {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }
  .glance-item::before {
    display: none !important;
  }
  .glance-item {
    padding-left: 0;
  }
  .panel-caption .dash {
    display: none;
  }
}

/* =========================================================
   6. FEATURED PROPERTIES
   ========================================================= */
.properties-section {
  background: var(--surface-50);
  padding-block: 96px;
}
.properties-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.properties-header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  margin: 0;
  color: var(--ink-900);
}
.properties-header h2 em {
  font-style: normal;
  color: var(--gold-600);
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-pill {
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--line-on-light);
  background: var(--surface-0);
  color: var(--ink-600);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.filter-pill:hover {
  border-color: var(--gold-500);
  color: var(--ink-900);
}
.filter-pill.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.property-card {
  background: var(--surface-0);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.property-card__media {
  position: relative;
  height: 230px;
  width: 100%;
  overflow: hidden;
}
.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 9, 16, 0.82),
    rgba(6, 9, 16, 0.05) 55%
  );
}
.status-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
}
.status-pill.ready {
  background: var(--gold-600);
}
.status-pill.progress {
  background: var(--status-progress);
}
.status-pill.launch {
  background: var(--gold-500);
  color: var(--navy-950);
}
.tag-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  border-radius: 999px;
}
.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.property-card__price {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
}
.property-card__price span {
  display: block;
  font-size: 0.72rem;
  color: #c6cbdb;
}
.property-card__price strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.property-card__price em {
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 400;
  color: #c6cbdb;
  margin-left: 4px;
}
.property-card__body {
  width: 100%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.property-card__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.property-card__loc .icon {
  width: 14px;
  height: 14px;
}
.property-card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.property-card__body p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-400);
  margin: 0 0 18px;
}
.property-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--surface-50);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 18px;
}
.property-card__stats span {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-400);
  margin-bottom: 2px;
}
.property-card__stats strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-900);
}
.property-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.btn-outline-dark {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.btn-outline-dark:hover {
  background: var(--navy-900);
  color: #fff;
}
.btn-solid-gold {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--gold-500);
  transition: background 0.2s ease;
}
.btn-solid-gold:hover {
  background: var(--gold-600);
}
.properties-cta {
  text-align: center;
}
.properties-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}
.properties-cta a:hover {
  background: var(--navy-800);
}
.properties-cta .icon {
  color: var(--gold-500);
}

@media (max-width: 980px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .properties-grid {
    grid-template-columns: 1fr;
  }
  .filter-pills {
    width: 100%;
  }
}

/* =========================================================
   7. CTA & TRUST STRIP
   ========================================================= */
.cta-section {
  position: relative;
  padding-block: 100px 64px;
  background:
    linear-gradient(
      100deg,
      rgba(10, 14, 26, 0.95) 20%,
      rgba(10, 14, 26, 0.82) 55%,
      rgba(10, 14, 26, 0.6) 100%
    ),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000&auto=format&fit=crop')
      center/cover no-repeat;
}
.cta-section > .container {
  position: relative;
  z-index: 1;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.cta-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  line-height: 1.14;
  color: #fff;
  margin: 0 0 24px;
}
.cta-copy h2 em {
  font-style: normal;
  color: var(--gold-400);
}
.cta-copy > p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b9c0d1;
  max-width: 52ch;
  margin: 0 0 42px;
}
.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line-on-dark);
}
.benefit-row .icon {
  color: var(--gold-500);
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
}
.benefit-row h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.benefit-row p {
  font-size: 0.76rem;
  line-height: 1.5;
  color: #8b93ab;
  margin: 0;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mini-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mini-stat .icon {
  flex-shrink: 0;
  color: var(--gold-500);
  width: 28px;
  height: 28px;
}
.mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}
.mini-stat span {
  font-size: 0.72rem;
  color: #8b93ab;
  line-height: 1.4;
}

.form-card {
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-card__head {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.form-card__head-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 161, 90, 0.35);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-card__head h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.form-card__head p {
  font-size: 0.8rem;
  color: #8b93ab;
  margin: 0;
  line-height: 1.5;
}
.field-group {
  margin-bottom: 14px;
}
.field-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c6cbdb;
  margin-bottom: 8px;
}
.field-group label .icon {
  color: #8b93ab;
  width: 15px;
  height: 15px;
}
.field-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.85rem;
  color: #fff;
  transition: border-color 0.2s ease;
}
.field-group input::placeholder {
  color: #5c6478;
}
.field-group input:focus {
  outline: none;
  border-color: var(--gold-500);
}
.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 10px 26px -10px rgba(201, 161, 90, 0.5);
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.form-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.reassure-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-on-dark);
}
.reassure-item {
  text-align: center;
}
.reassure-item .icon {
  color: var(--status-ready);
  width: 19px;
  height: 19px;
  margin-bottom: 8px;
}
.reassure-item p {
  font-size: 0.68rem;
  line-height: 1.4;
  color: #8b93ab;
  margin: 0;
}

.contact-card {
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 24px 56px -20px rgba(10, 14, 26, 0.35);
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 32px;
  align-items: center;
  color: var(--ink-900);
}
.contact-card__divider {
  background: var(--line-on-light);
  height: 100%;
}
.contact-col {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-col__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.contact-col__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 161, 90, 0.1);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-col__icon.is-whatsapp {
  background: rgba(47, 158, 92, 0.1);
  color: var(--status-ready);
}
.contact-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 5px;
}
.contact-col p {
  font-size: 0.78rem;
  color: var(--ink-400);
  line-height: 1.5;
  margin: 0 0 8px;
}
.contact-col .link-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.contact-col .tel-link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 2px;
}
.contact-col .sub {
  font-size: 0.74rem;
  color: var(--ink-400);
}
.btn-outline-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--status-ready);
  color: var(--status-ready);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.btn-outline-whatsapp:hover {
  background: rgba(47, 158, 92, 0.08);
}

.trust-strip {
  background: var(--surface-50);
  padding-block: 26px;
}

@media (max-width: 980px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-card__divider {
    display: none;
  }
  .benefit-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
@media (max-width: 640px) {
  .reassure-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================================================
   8. FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-950);
  padding-top: 72px;
  color: #8b93ab;
}
.newsletter {
  background: var(--navy-900);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: 32px clamp(20px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.newsletter__copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 6px;
}
.newsletter__copy p {
  font-size: 0.85rem;
  color: #8b93ab;
  margin: 0;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.newsletter__form input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.85rem;
  color: #fff;
  min-width: 240px;
}
.newsletter__form input::placeholder {
  color: #5c6478;
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--gold-500);
}
.newsletter__form button {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 13px 22px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}
.newsletter__form button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand .logo sup {
  color: var(--gold-400);
  font-size: 0.65em;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #8b93ab;
  max-width: 34ch;
  margin: 0 0 22px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  color: #c6cbdb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.social-row a:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(201, 161, 90, 0.08);
}
.social-row .icon {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col a {
  font-size: 0.87rem;
  color: #8b93ab;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--gold-400);
}
.footer-contact ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #8b93ab;
}
.footer-contact .icon {
  flex-shrink: 0;
  color: var(--gold-500);
  width: 17px;
  height: 17px;
  margin-top: 2px;
}
.footer-contact a:hover {
  color: var(--gold-400);
}
.btn-callback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201, 161, 90, 0.4);
  /* color: var(--gold-400); */
  font-size: 0.8rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  -webkit-border-radius: var(--radius-sm);
  -moz-border-radius: var(--radius-sm);
  -ms-border-radius: var(--radius-sm);
  -o-border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: #080808;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}
.btn-callback:hover {
  background: rgba(201, 161, 90, 0.08);
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-block: 24px;
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #6d7893;
  margin: 0;
  line-height: 1.6;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: #8b93ab;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: var(--gold-400);
}
.rera-note {
  font-size: 0.72rem;
  color: #5c6478;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .newsletter__form {
    justify-content: center;
  }
  .newsletter__form input {
    min-width: 0;
    flex: 1;
  }
  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   MOBILE HERO OVERFLOW FIX
   ========================================================= */
@media (max-width: 640px) {
  .hero {
    overflow-x: clip;
  }

  .hero-body,
  .hero-copy,
  .search-panel {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 9vw, 2.5rem);
    overflow-wrap: break-word;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .mode-tabs {
    width: 100%;
    gap: 0;
  }

  .mode-tab {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-inline: 8px;
    font-size: 0.82rem;
    gap: 6px;
  }

  .search-panel {
    width: 100%;
  }

  /* Prevent two-column district cards from overflowing on narrow screens. */
  .district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
  }

  .district-card {
    min-width: 0;
    padding-inline: 14px;
  }

  .district-card > div:last-child {
    min-width: 0;
  }

  .district-card h4,
  .district-card span {
    overflow-wrap: anywhere;
  }
}

/* =========================================================
   FOOTER MODAL & SCROLL ICONS (preserved from footer.inc.php)
   ========================================================= */

/* Playfair Display Import for the elegant serif accent */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400..700&display=swap');

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.modal-content {
  position: fixed;
  /* background-color: #111111; */
  background-color: var(--navy-950);
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  border: 1px solid #222222;
  width: 90%;
  max-width: 460px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  /* Initial state for animation */
  opacity: 0;
}

.modal-content.is-showing {
  opacity: 1;
  animation: modal-show-animation 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
}

.modal-content.is-hiding {
  opacity: 0;
  animation: modal-hide-animation 1.5s cubic-bezier(0.55, 0.085, 0.68, 0.53)
    forwards;
}

.modal.is-opening {
  animation: fadeIn 1.5s ease-out forwards;
}

/* Close Button Styling */
.close-btn {
  color: #ffffff;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  font-weight: 300;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 32px;
  height: 32px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

/* Banner Image */
.modal-banner-img {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-bottom: 2px solid #c5a880; /* Subtle gold divider line */
}

.modal-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container for form & titles */
.modal-form-container {
  padding: 28px 32px 32px;
}

/* Titles */
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0 0 6px 0;
  text-align: left;
  color: #ffffff;
}

.modal-title .accent-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #c5a880; /* Luxurious Gold accent */
  margin-left: 2px;
}

.modal-subtitle {
  font-size: 13px;
  color: #a0a0a0;
  margin: 0 0 24px 0;
  text-align: left;
  line-height: 1.4;
}

/* Form Fields Styling */
.modal-lead-form {
  margin: 0;
}

.modal-form-group {
  margin-bottom: 18px;
  text-align: left;
}

.modal-form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c5a880; /* Gold labels */
  margin-bottom: 8px;
}

.modal-form-input,
.modal-form-textarea {
  width: 100%;
  /* background-color: #080808; */
  background-color: var(--navy-900);
  border: 1px solid #222222;
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.modal-form-input:focus,
.modal-form-textarea:focus {
  border-color: #c5a880;
  background-color: #0c0c0c;
  outline: none;
}

.modal-form-textarea {
  height: 70px;
  resize: vertical;
}

/* Submit Button (Gold Pillow/Pill shaped) */
.modal-submit-btn {
  width: 100%;
  /* background-color: hsl(35, 37%, 64%); */
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: #080808;
  border: none;
  border-radius: 30px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.modal-submit-btn:hover {
  background-color: #b59870;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.modal-submit-btn:active {
  transform: scale(0.98);
}

/* Response Div Styling */
.modal-form-container .inquiry-response {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
  background-color: #161616;
  color: #c5a880;
  border: 1px solid #c5a880;
}

/* Keyframe Animations */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-show-animation {
  from {
    transform: translate(-50%, -80%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes modal-hide-animation {
  from {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -80%);
    opacity: 0;
  }
}

/* =========================================================
   NEW HOMEPAGE ADDITIONS (forms feedback, fav btn guard, utilities)
   ========================================================= */
.form-card .consultation-response,
.newsletter .newsletter-response {
  margin-top: 12px;
  padding: Ì„10px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-400);
  border: Ì„1px solid rgba(201, 161, 90, 0.35);
}
.newsletter .newsletter-response {
  width: 100%;
  font-size: 0.82rem;
  text-align: left;
}
.f2i-home .fav-btn {
  position: absolute;
  top: Ì„14px;
  right: Ì„14px;
  z-index: Ì„2;
  width: Ì„30px;
  height: Ì„30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
}
.f2i-home .fav-btn:hover {
  transform: scale(1.08);
}
.f2i-home .fav-btn .icon {
  width: 13px;
  height: 13px;
}
.f2i-home button,
.f2i-home select,
.f2i-home input {
  font-family: inherit;
}
.f2i-home .contact-card a {
  text-decoration: none;
}
@media (max-width: 640px) {
  .f2i-home .properties-cta a {
    white-space: normal;
  }
}
