/* ============================================================
   VISTA PALENCIA — main.css
   Global design tokens, resets, typography, shared utilities,
   animations, and responsive breakpoints.
   All inner pages and index.html link to this file.
   ============================================================ */


/* ────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
──────────────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --deep-green:   #0d3325;
  --mid-green:    #1a5c3e;
  --light-green:  #2d7a55;
  --gold:         #c9a96e;
  --gold-light:   #e8d5a3;
  --cream:        #f5f0e8;
  --warm-white:   #faf8f4;

  /* Neutrals */
  --charcoal:     #1a1a1a;
  --ink-dark:     #111111;
  --ink-mid:      #0a0a0a;
  --text-muted:   #6b6b6b;

  /* Utility */
  --glass:        rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', sans-serif;

  /* Spacing scale */
  --section-pad:  140px;
  --container:    1400px;
  --gutter:       60px;
}


/* ────────────────────────────────────────────────────────────
   2. RESET & BASE
──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Use lining (even-height) figures everywhere so numbers don't sit unevenly */
  font-variant-numeric: lining-nums proportional-nums;
  -moz-font-feature-settings: "lnum" 1;
  -webkit-font-feature-settings: "lnum" 1;
  font-feature-settings: "lnum" 1;
}

/* Numbers that should also align vertically (phone, pincode, prices, stats) */
.footer-contact, .footer-bottom, .cd-value, .contact-detail-item,
[class*="price"], [class*="stat"], [class*="number"], address, time, .rera {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}


/* ────────────────────────────────────────────────────────────
   3. CUSTOM CURSOR
──────────────────────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 20px;
  height: 20px;
}


/* ────────────────────────────────────────────────────────────
   4. NAVIGATION
──────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: rgba(13, 51, 37, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .vista {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.5em;
  font-weight: 300;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-logo .palencia {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.12em;
}

/* Links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
}

/* CTA button */
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.5);
  padding: 10px 18px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--deep-green);
}

/* Loader logo — global size override */
.loader-logo { height: 72px !important; width: auto; display: block; }

/* ────────────────────────────────────────────────────────────
   NAV OVERLAY — global, so no page needs to inline it
──────────────────────────────────────────────────────────── */
#navOverlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--deep-green);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}
#navOverlay.open { opacity: 1; visibility: visible; }
.nav-overlay-link {
  font-family: var(--font-serif); font-size: clamp(34px,5.5vw,66px);
  font-weight: 300; color: var(--warm-white); letter-spacing: .04em;
  transition: color .3s; text-align: center; line-height: 1.3; text-decoration: none;
}
.nav-overlay-link:hover { color: var(--gold); }
.nav-overlay-sub {
  margin-top: 40px; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.nav-overlay-detail {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245,240,232,.4); text-align: center; line-height: 2;
}
.nav-overlay-rera {
  font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(245,240,232,.22); margin-top: 14px; text-align: center;
}

/* ────────────────────────────────────────────────────────────
   5. HERO
──────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(45, 122, 85, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(13, 51, 37, 0.8) 0%, transparent 50%),
    linear-gradient(160deg, #0a2a1c 0%, #0d3325 40%, #1a3a28 70%, #0d3325 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.12;
}

.hero-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--warm-white);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}

.scroll-label {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ────────────────────────────────────────────────────────────
   6. STATS BAR
──────────────────────────────────────────────────────────── */
#stats {
  background: var(--deep-green);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}

.stat-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 8px;
  display: block;
  font-weight: 300;
}


/* ────────────────────────────────────────────────────────────
   7. SECTION SHARED STYLES
──────────────────────────────────────────────────────────── */
section {
  position: relative;
}

/* Section tag — small gold label above headings */
.section-tag {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
  display: block;
}

/* Centered section header block */
.section-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 80px;
}

.section-header .section-tag {
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-header p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
  max-width: 560px;
  margin: 24px auto 0;
}

/* Gold rule */
.gold-hr {
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin: 28px 0;
}

.gold-hr.center {
  margin: 28px auto;
}


/* ────────────────────────────────────────────────────────────
   8. ABOUT / STORY SECTION
──────────────────────────────────────────────────────────── */
#about {
  background: var(--warm-white);
  color: var(--charcoal);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.about-visual {
  position: relative;
  background: var(--mid-green);
  overflow: hidden;
  min-height: 600px;
}

.about-visual-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(45, 122, 85, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13, 51, 37, 0.9) 0%, transparent 40%),
    #0d3325;
}

.about-ornament {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px;
}

.about-ornament .ornament-logo {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  display: block;
  letter-spacing: 0.05em;
}

.about-ornament .ornament-subtitle {
  font-size: 10px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  display: block;
}

.about-ornament-ring {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.about-ornament-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep-green);
  margin-bottom: 36px;
}

.about-text h2 em {
  font-style: italic;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 520px;
}

.about-architect {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.arch-item .arch-role {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.arch-item .arch-name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--deep-green);
  display: block;
  font-weight: 400;
}

.arch-item .arch-firm {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  font-weight: 300;
  margin-top: 2px;
}


/* ────────────────────────────────────────────────────────────
   9. RESIDENCES / FLOOR PLANS
──────────────────────────────────────────────────────────── */
#residences {
  background: var(--charcoal);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.floor-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 2px;
}

.plan-card {
  background: #1e1e1e;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.plan-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s ease 0.3s;
}

.plan-card.visible::before {
  height: 100%;
}

.plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.plan-num {
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.06);
  position: absolute;
  top: 10px;
  right: 30px;
  line-height: 1;
}

.plan-type {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 16px;
}

.plan-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.plan-detail {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}

.plan-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
}

.spec-item span:first-child {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.spec-item span:last-child {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  display: block;
  margin-top: 6px;
}


/* ────────────────────────────────────────────────────────────
   10. AMENITIES
──────────────────────────────────────────────────────────── */
#amenities {
  background: var(--warm-white);
  color: var(--charcoal);
  position: relative;
}

.amenities-driver {
  height: 600vh;
  position: relative;
}

.amenities-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.amenities-left {
  background: var(--deep-green);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenities-left h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 48px;
}

.amenities-left h2 em {
  font-style: italic;
  color: var(--gold);
}

.amenity-list {
  display: flex;
  flex-direction: column;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.amenity-item::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(201, 169, 110, 0.06);
  transition: left 0.3s ease;
}

.amenity-item:hover::before,
.amenity-item.active::before {
  left: 0;
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: all 0.3s;
}

.amenity-item:hover .amenity-icon,
.amenity-item.active .amenity-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.amenity-name {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amenity-item.active .amenity-name {
  color: var(--warm-white);
}

.amenity-indicator {
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  transition: all 0.3s;
}

.amenity-item.active .amenity-indicator {
  background: var(--gold);
  border-color: var(--gold);
}

.amenities-right {
  position: relative;
  overflow: hidden;
}

.amenity-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.6s ease;
  display: flex;
  align-items: flex-end;
}

.amenity-panel.active {
  opacity: 1;
  transform: scale(1);
}

.amenity-panel-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}

.amenity-panel-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  width: 100%;
}

.amenity-panel-content h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.amenity-panel-content p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  font-weight: 300;
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────
   11. GALLERY MARQUEE
──────────────────────────────────────────────────────────── */
#gallery {
  background: var(--charcoal);
  padding: 120px 0;
  overflow: hidden;
}

.gallery-marquee-wrap {
  overflow: hidden;
  margin-bottom: 12px;
}

.gallery-marquee {
  display: flex;
  gap: 12px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.gallery-marquee.reverse {
  animation-direction: reverse;
}

.gallery-card {
  flex-shrink: 0;
  width: 340px;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--deep-green);
}

.gallery-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-inner {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 51, 37, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-card-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
}


/* ────────────────────────────────────────────────────────────
   12. LOCATION
──────────────────────────────────────────────────────────── */
#location {
  background: var(--warm-white);
  color: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.location-info {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep-green);
  color: var(--warm-white);
}

.location-info h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}

.location-info h2 em {
  font-style: italic;
  color: var(--gold);
}

.location-address {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
  margin-bottom: 48px;
}

.distance-list {
  display: flex;
  flex-direction: column;
}

.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.distance-item .dest {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
}

.distance-item .time {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.distance-item .time span {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.15em;
}

#map {
  position: relative;
  height: 100%;
  min-height: 600px;
}


/* ────────────────────────────────────────────────────────────
   13. SPECIFICATIONS
──────────────────────────────────────────────────────────── */
#specs {
  background: #111;
  padding: 120px 0;
}

.specs-grid {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.spec-group {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.spec-group.visible {
  opacity: 1;
  transform: translateY(0);
}

.spec-group-title {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  display: block;
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-row .spec-key {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  font-weight: 300;
}

.spec-row .spec-val {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.75);
  font-weight: 300;
}


/* ────────────────────────────────────────────────────────────
   14. CONTACT / CTA
──────────────────────────────────────────────────────────── */
#contact {
  background: var(--deep-green);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45, 122, 85, 0.3) 0%, transparent 60%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-inner h2 em {
  font-style: italic;
  color: var(--gold);
}

.contact-inner > p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 56px;
}

/* Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--warm-white);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select option {
  background: var(--deep-green);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.25);
}

.form-submit {
  grid-column: 1 / -1;
  background: var(--gold);
  color: var(--deep-green);
  border: none;
  padding: 20px;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  transition: all 0.3s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-light);
}

/* Contact details row */
.contact-details {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.contact-detail-item {
  text-align: center;
}

.contact-detail-item .cd-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.contact-detail-item .cd-value {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--warm-white);
  display: block;
  font-weight: 300;
}
/* Keep the phone number on a single line */
.contact-detail-item a[href^="tel:"].cd-value { white-space: nowrap; }


/* ────────────────────────────────────────────────────────────
   15. FOOTER
──────────────────────────────────────────────────────────── */
footer {
  background: var(--deep-green);
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: clamp(40px,6vw,80px);
  padding: clamp(60px,8vh,96px) var(--gutter) clamp(36px,5vh,52px);
}

.footer-brand a { display: block; }

.footer-logo-img {
  height: 64px; width: auto;
  display: block; margin-bottom: 22px; opacity: .9;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 16px; line-height: 1.75;
  color: rgba(201,169,110,.7); letter-spacing: .01em;
  margin-bottom: 26px;
}

.footer-social {
  display: flex; gap: 18px; align-items: center;
}

.footer-social a {
  color: rgba(245,240,232,.6);
  transition: color .3s;
  display: flex; align-items: center;
}

.footer-social svg { width: 20px; height: 20px; }

.footer-social a:hover { color: var(--gold); }

.footer-col-heading {
  font-family: var(--font-sans);
  font-size: 9px; letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold); opacity: .7;
  margin-bottom: 22px;
  display: block;
}

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: .1em;
  color: rgba(245,240,232,.45);
  text-decoration: none; transition: color .3s;
}

.footer-nav a:hover { color: var(--warm-white); }

.footer-contact p {
  font-size: 12px; line-height: 2;
  color: rgba(245,240,232,.48); margin-bottom: 2px;
}

.footer-contact a {
  color: rgba(245,240,232,.65);
  text-decoration: none; transition: color .3s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-rera {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 10px !important;
  color: rgba(245,240,232,.5) !important;
  line-height: 1.7 !important;
}

.footer-rera a { color: inherit !important; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px var(--gutter);
  text-align: center;
}

.footer-copy,
.footer-disclaimer,
.footer-credit {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 10px; line-height: 1.9;
  letter-spacing: .06em;
}

.footer-copy { color: rgba(245,240,232,.3); }
.footer-disclaimer { color: rgba(245,240,232,.2); }
.footer-credit { color: rgba(245,240,232,.18); }

/* WhatsApp button */
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600;
  background: rgb(37,211,102); color: #fff;
  border: none; padding: 18px 44px;
  text-decoration: none; transition: background .3s, transform .3s;
}

.btn-wa:hover { background: rgb(25,180,85); transform: translateY(-2px); }


/* ────────────────────────────────────────────────────────────
   16. SCROLL REVEAL UTILITY
──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ────────────────────────────────────────────────────────────
   17. KEYFRAME ANIMATIONS
──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%       { transform: scale(1.3); opacity: 0.1; }
}


/* ────────────────────────────────────────────────────────────
   18. HEADING WEIGHT — slight boost (300 → 400)
──────────────────────────────────────────────────────────── */
h1, h2, h3,
.hero-title,
.section-header h2,
.about-text h2,
.amenities-left h2,
.location-info h2,
.contact-inner h2 {
  font-weight: 400;
}


/* ────────────────────────────────────────────────────────────
   18. RESPONSIVE BREAKPOINTS
──────────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-pad: 100px;
    --gutter: 30px;
  }

  nav               { padding: 20px 30px; }
  nav.scrolled      { padding: 14px 30px; }
  .nav-links        { display: none; }

  #about            { grid-template-columns: 1fr; }
  .about-visual     { display: none; }
  .about-text       { padding: 80px 40px; }

  #location         { grid-template-columns: 1fr; }
  #map              { min-height: 400px; height: 400px; }

  .stats-inner                { grid-template-columns: repeat(3, 1fr); }
  .floor-plans                { grid-template-columns: 1fr; }
  .specs-grid                 { grid-template-columns: 1fr 1fr; padding: 0 30px; }
  .amenities-sticky-container { grid-template-columns: 1fr; }
  .amenities-right            { display: none; }
  .contact-details            { flex-direction: column; gap: 30px; align-items: center; }

  .footer-inner     { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom    { flex-direction: column; text-align: center; gap: 10px; }
  .footer-disclaimer { text-align: center; }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-title       { font-size: 52px; }
  .contact-form     { grid-template-columns: 1fr; }
  .stats-inner      { grid-template-columns: repeat(2, 1fr); }
  .specs-grid       { grid-template-columns: 1fr; }
  .contact-inner    { padding: 0 20px; }
  #contact          { padding: 80px 20px; }
  .amenities-left   { padding: 60px 30px; }
}
