.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--dark-green); }
.section-mid { background: var(--mid-green); }
.section-light { background: var(--light-green); }
.section-white { background: var(--white); }
.section-off { background: var(--off-white); }

.section-header { margin-bottom: clamp(32px, 5vw, 60px); }
.section-header.centered { text-align: center; }
.section-header.centered .section-kicker::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--accent-green);
  margin: 12px auto 0;
}

.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { max-width: 560px; }
.section-header.centered p { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-green);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,31,20,0.3) 0%,
    rgba(15,31,20,0.15) 40%,
    rgba(15,31,20,0.6) 80%,
    rgba(15,31,20,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 20px 0;
  max-width: 900px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-green);
  margin-bottom: 1.5rem;
}
.hero-kicker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bright-green);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-headline em { color: var(--bright-green); font-style: italic; }

.hero-subline {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%; height: 100%;
  background: var(--bright-green);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

.story-section {
  position: relative;
  overflow: hidden;
}
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.story-left, .story-right {
  padding: var(--section-pad) clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-left { background: var(--before-bg); border-right: 1px solid #edd8d8; }
.story-right { background: var(--pale-green); }
.story-split-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.story-left .story-split-label { color: #a04040; }
.story-right .story-split-label { color: var(--accent-green); }
.story-left h3, .story-right h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin-bottom: 0.8rem;
}
.story-left h3 { color: #5a2020; }
.story-right h3 { color: var(--dark-green); }

.intro-section {
  background: var(--dark-green);
  position: relative;
  overflow: hidden;
}
.intro-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(42,106,58,0.12);
}

.intro-content {
  max-width: 700px;
}
.intro-headline {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.intro-headline em { color: var(--bright-green); font-style: italic; }
.intro-body {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted-green);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.amenities-section { background: var(--off-white); }

.gallery-section { background: var(--dark-green); }
.gallery-label-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.testimonials-section { background: var(--light-green); }

.location-section { background: var(--white); }
.map-placeholder {
  width: 100%; height: 340px;
  background: var(--mid-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--muted-green);
  font-size: 13px;
  border: 1px solid var(--border-green);
  margin-bottom: 12px;
}
.map-placeholder-icon { font-size: 32px; opacity: 0.5; }

.plots-section { background: var(--off-white); }

.villa-callout {
  background: var(--dark-green);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}
.villa-callout-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--bright-green);
  line-height: 1;
  margin-bottom: 4px;
}
.villa-callout-label { font-size: 11px; color: var(--muted-green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.villa-callout h3 { color: var(--white); margin-bottom: 0.5rem; }
.villa-callout p { color: var(--muted-green); max-width: 480px; }
.villa-scarcity {
  display: inline-block;
  background: rgba(192,64,64,0.2);
  color: #f09898;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 0.5px solid rgba(192,64,64,0.3);
  margin-bottom: 12px;
}

.final-cta-section {
  background: var(--dark-green);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(42,106,58,0.1);
}
.final-cta-headline { color: var(--white); margin-bottom: 0.8rem; }
.final-cta-headline em { color: var(--bright-green); font-style: italic; }
.final-cta-sub { color: var(--muted-green); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.final-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,224,184,0.15);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-green);
}
.contact-item a { color: var(--muted-green); transition: color var(--transition-fast); }
.contact-item a:hover { color: var(--bright-green); }

.footer {
  background: #080f0a;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.footer-meta { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.footer-rera { font-size: 11px; color: rgba(255,255,255,0.25); }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .story-split { grid-template-columns: 1fr; }
  .villa-callout { grid-template-columns: 1fr; text-align: center; }
  .footer-inner { justify-content: center; text-align: center; }
  .contact-strip { flex-direction: column; gap: 12px; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-strip-item { padding: 14px 8px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}
