/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1d4b5d;
  --primary-dark: #132f3a;
  --primary-light: #2a6b84;
  --accent: #c9a96e;
  --accent-light: #e8d5b0;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --cream: #f2ede4;
  --text-dark: #0d1f27;
  --text-mid: #3a5a6a;
  --text-light: #7a9aaa;
  --border: rgba(29, 75, 93, 0.12);
  --shadow-sm: 0 4px 20px rgba(29, 75, 93, 0.08);
  --shadow-md: 0 12px 48px rgba(29, 75, 93, 0.14);
  --shadow-lg: 0 24px 80px rgba(29, 75, 93, 0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== SKELETON LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.loader-logo-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.15em;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}
.loader-logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.5s forwards;
}
.loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  animation: loaderProgress 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.skeleton-cards {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.2s forwards;
}
.skel-card {
  width: 80px;
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.skel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: shimmer 1.4s infinite;
}
.skel-card:nth-child(2) { width: 120px; animation-delay: 0.2s; }
.skel-card:nth-child(3) { width: 60px; animation-delay: 0.4s; }

@keyframes loaderProgress { to { width: 100%; } }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ===== HEADER / NAV ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
#main-header.scrolled {
  background: rgba(13, 31, 39, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.logo-line {
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.logo-line:nth-child(1) { width: 22px; }
.logo-line:nth-child(2) { width: 16px; }
.logo-line:nth-child(3) { width: 10px; }
.nav-logo:hover .logo-line:nth-child(1) { width: 10px; }
.nav-logo:hover .logo-line:nth-child(2) { width: 16px; }
.nav-logo:hover .logo-line:nth-child(3) { width: 22px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 0.15em !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-cta {
  margin-top: 16px;
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 2px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1e26 0%, #1d4b5d 50%, #0d2b38 100%);
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29, 75, 93, 0.4) 0%, transparent 50%);
  z-index: 1;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-grid-lines::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.15), transparent);
}
.hero-grid-lines::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.1), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.4s forwards;
}
.badge-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.badge-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 1.6s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.8s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 2s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.35); }
.btn-primary svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost .play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.btn-ghost:hover .play-icon { border-color: var(--accent); background: rgba(201,169,110,0.1); }
.hero-visual {
  opacity: 0;
  animation: fadeSlideLeft 1s ease 1.5s forwards;
}
.hero-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 4px;
  z-index: -1;
}
.hero-building-illustration {
  width: 100%;
  height: 420px;
  background: linear-gradient(160deg, rgba(29,75,93,0.6) 0%, rgba(13,43,56,0.9) 100%);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.15);
}
.building-svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-stats-strip {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(13, 31, 39, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,169,110,0.2);
  opacity: 0;
  animation: fadeIn 0.8s ease 2.2s forwards;
}
.stat-item {
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
}
.scroll-text {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideLeft { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ===== SECTION BASE ===== */
section { position: relative; }
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-tag span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: block;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.section-headline em { font-style: italic; color: var(--primary); }
.section-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 520px;
}

/* ===== LOCATION SECTION ===== */
#location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.location-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.loc-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.loc-feature:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.loc-icon {
  width: 36px;
  height: 36px;
  background: rgba(29,75,93,0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.loc-icon svg { width: 18px; height: 18px; }
.loc-text h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.loc-text p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}
.location-map-card {
  background: var(--primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.map-header {
  padding: 24px 28px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.map-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.map-badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
}
.map-visual {
  height: 300px;
  background: linear-gradient(145deg, #1a3d4a 0%, #243f4d 50%, #1d4b5d 100%);
  position: relative;
  overflow: hidden;
}
.map-dots { position: absolute; inset: 0; }
.map-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,169,110,0.25);
  animation: pulseDot 3s ease infinite;
}
.map-dot.main {
  width: 24px; height: 24px;
  top: 50%; left: 52%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(201,169,110,0.25);
}
.map-dot.d1 { width: 10px; height: 10px; top: 30%; left: 30%; animation-delay: 0.5s; }
.map-dot.d2 { width: 8px; height: 8px; top: 65%; left: 70%; animation-delay: 1s; }
.map-dot.d3 { width: 12px; height: 12px; top: 25%; left: 68%; animation-delay: 1.5s; }
.map-dot.d4 { width: 8px; height: 8px; top: 75%; left: 35%; animation-delay: 0.8s; }
@keyframes pulseDot {
  0%, 100% { opacity: 0.6; transform: scale(1) translate(-50%,-50%); }
  50% { opacity: 1; transform: scale(1.3) translate(-40%,-40%); }
}
.map-road {
  position: absolute;
  background: rgba(255,255,255,0.08);
}
.map-road.h { height: 2px; left: 0; right: 0; top: 52%; }
.map-road.v { width: 2px; top: 0; bottom: 0; left: 52%; }
.map-label {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(13,31,39,0.85);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 4px;
  border-left: 2px solid var(--accent);
}
.map-label h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.map-label p {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.map-proximity {
  padding: 24px 28px;
  display: flex;
  gap: 24px;
}
.prox-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prox-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}
.prox-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===== FEATURES SECTION ===== */
#features { background: var(--off-white); }
.features-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}
.features-header .section-tag { justify-content: center; }
.features-header .section-desc { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29,75,93,0.2);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(29,75,93,0.08), rgba(29,75,93,0.04));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: background var(--transition-fast);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.feature-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}
.feature-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.feature-card.featured .feature-icon {
  background: rgba(255,255,255,0.12);
  color: var(--accent);
}
.feature-card.featured .feature-title { color: var(--white); }
.feature-card.featured .feature-desc { color: rgba(255,255,255,0.6); }
.feature-card.featured::before { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }

/* ===== OFFERINGS SECTION ===== */
#offerings { background: var(--primary-dark); }
.offerings-header { color: var(--white); margin-bottom: 56px; }
.offerings-header .section-headline { color: var(--white); }
.offerings-header .section-desc { color: rgba(255,255,255,0.55); }
.offerings-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 48px;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 14px 28px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
.tab-btn:hover { color: rgba(255,255,255,0.8); }
.tab-btn.active { color: var(--accent); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.offering-list { display: flex; flex-direction: column; gap: 16px; }
.offering-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color var(--transition-fast);
}
.offering-row:hover { border-color: rgba(201,169,110,0.3); }
.offering-row:last-child { border-bottom: none; }
.off-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}
.off-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
}
.offering-visual-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 32px;
}
.ov-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.fp-cell {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition-fast);
  cursor: default;
}
.fp-cell:hover {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.25);
  color: var(--accent);
}
.fp-cell span:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}
.fp-cell:hover span:first-child { color: var(--accent); }

/* ===== INVESTMENT SECTION ===== */
#investment { background: var(--white); }
.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.investment-cards { display: flex; flex-direction: column; gap: 20px; }
.inv-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 6px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}
.inv-card:hover {
  background: var(--cream);
  border-color: rgba(29,75,93,0.2);
  transform: translateX(6px);
}
.inv-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--primary);
  min-width: 80px;
  line-height: 1;
}
.inv-num sup {
  font-size: 1.2rem;
  font-weight: 400;
  vertical-align: super;
}
.inv-info h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.inv-info p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}
.inv-note {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-style: italic;
}
.investment-highlights { display: flex; flex-direction: column; gap: 32px; }
.inv-h-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.inv-h-title em { font-style: italic; color: var(--primary); }
.inv-bullets { display: flex; flex-direction: column; gap: 16px; }
.inv-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.inv-bullet:last-child { border-bottom: none; }
.bullet-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.inv-bullet p {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== AMENITIES SECTION ===== */
#amenities { background: var(--cream); }
.amenities-header { margin-bottom: 56px; }
.amenities-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.amenity-block {
  background: var(--white);
  border-radius: 6px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-fast);
}
.amenity-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.amenity-block.large { grid-row: 1 / 3; padding: 40px; }
.amenity-block.accent-bg {
  background: var(--primary);
  border-color: var(--primary);
}
.ab-icon {
  width: 44px; height: 44px;
  background: rgba(29,75,93,0.08);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.amenity-block.accent-bg .ab-icon {
  background: rgba(255,255,255,0.12);
  color: var(--accent);
}
.ab-icon svg { width: 22px; height: 22px; }
.ab-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.amenity-block.accent-bg .ab-title { color: var(--white); }
.ab-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}
.amenity-block.accent-bg .ab-desc { color: rgba(255,255,255,0.55); }
.ab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.ab-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-mid);
}
.ab-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ===== SUSTAINABILITY SECTION ===== */
#sustainability {
  background: var(--primary);
  overflow: hidden;
}
.sust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sust-header .section-headline { color: var(--white); }
.sust-header .section-desc { color: rgba(255,255,255,0.55); margin-top: 16px; }
.sust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 28px 24px;
  transition: all var(--transition-fast);
}
.sust-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,169,110,0.3);
}
.sust-card-icon {
  width: 40px; height: 40px;
  background: rgba(201,169,110,0.15);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.sust-card-icon svg { width: 20px; height: 20px; }
.sust-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.sust-card p {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ===== CTA SECTION ===== */
#cta { background: var(--off-white); }
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-content .section-headline { margin-bottom: 16px; }
.cta-content .section-desc { margin-bottom: 36px; }
.cta-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.cta-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}
.meta-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
}
.cta-actions { display: flex; align-items: center; gap: 20px; }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid var(--primary);
  transition: all var(--transition-fast);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
/* Contact Form Card */
.cta-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.form-card-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,75,93,0.08);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}
.form-group textarea { resize: none; height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-submit svg { width: 16px; height: 16px; }
.form-note {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  padding: 56px 48px 28px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo-brand { font-size: 1.3rem; }
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 260px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: rgba(201,169,110,0.4);
  flex-shrink: 0;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-address {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}
.footer-address strong {
  display: block;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: 6px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-legal {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer-rera {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  text-align: right;
}
.footer-rera strong { color: rgba(255,255,255,0.35); }

/* ===== BACK TO TOP ===== */
#back-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-fast);
  z-index: 500;
  color: var(--primary-dark);
  border: none;
}
#back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-top:hover { background: var(--accent-light); transform: translateY(-3px); }
#back-top svg { width: 18px; height: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-inner { padding: 80px 32px; }
  .hero-content { gap: 40px; padding: 0 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-showcase { grid-template-columns: 1fr 1fr; }
  .amenity-block.large { grid-column: 1 / 3; grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  #main-header { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 0 24px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .hero-stats-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 16px 16px; }
  .section-inner { padding: 64px 24px; }
  .location-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .tab-content.active { grid-template-columns: 1fr; }
  .investment-grid { grid-template-columns: 1fr; gap: 48px; }
  .amenities-showcase { grid-template-columns: 1fr; }
  .amenity-block.large { grid-column: auto; }
  .sust-inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .sust-cards { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .footer-top { grid-template-columns: 1fr; padding: 0 0 32px; }
  footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-rera { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  #back-top { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .hero-stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sust-cards { grid-template-columns: 1fr; }
  .cta-meta { flex-direction: column; gap: 16px; }
}