/* ═══════════════════════════════════════════════════════════
   SVA REALTORS — Main Stylesheet v1.0
   svarealtors.in · Built June 2025
═══════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ────────────────────────────────────────── */

:root {
  --pine:     #1B3A2D;
  --stone:    #C5A47E;
  --gold:     #B0893F;
  --cream:    #F5F0E8;
  --charcoal: #1A1A1A;
  --mist:     #E8E3D8;
  --white:    #FFFFFF;

  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;
  --label:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:    88px;
  --nav-h-sm: 68px;
  --wrap:     1200px;
  --px:       clamp(24px, 5vw, 64px);
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. RESET ─────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── 3. LAYOUT ────────────────────────────────────────── */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

/* ── 4. TYPE SCALE ────────────────────────────────────── */

.eyebrow {
  font-family: var(--label);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--pine);
  display: block;
  margin-bottom: 12px;
}

.eyebrow--cream { color: rgba(245,240,232,0.85); }

.display {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.02;
}

.h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.15;
}

.h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.2;
}

.body-lg {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: #666;
}

.body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #666;
}

.label-sm {
  font-family: var(--label);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ── 5. NAVBAR ────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  color: var(--cream);
  transition: height .4s var(--ease), background .4s, box-shadow .4s;
}

.navbar.scrolled,
.navbar--solid {
  background: var(--white);
  height: var(--nav-h-sm);
  box-shadow: 0 1px 0 var(--mist);
  color: var(--charcoal);
}

.navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — The Horizon (Concept 01) */
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

.logo-sva {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  color: inherit;
}

.logo-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--stone);
  margin: 5px 0 3px;
}

.logo-realtors {
  font-family: var(--label);
  font-size: 7.5px;
  font-weight: 300;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--stone);
}

.navbar.scrolled .logo-sva,
.navbar--solid  .logo-sva { color: var(--pine); }

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

.nav-link {
  font-family: var(--label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.85;
  position: relative;
  transition: opacity .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--stone);
  transition: width .3s var(--ease);
}

.nav-link:hover          { opacity: 1; }
.nav-link:hover::after,
.nav-link.active::after  { width: 100%; }

.nav-enquire {
  font-family: var(--label);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid currentColor;
  opacity: 0.75;
  transition: background .3s, color .3s, opacity .3s;
}

.nav-enquire:hover { opacity: 1; background: rgba(255,255,255,0.12); }

.navbar.scrolled .nav-enquire,
.navbar--solid   .nav-enquire {
  border-color: var(--pine);
  color: var(--pine);
  opacity: 1;
}

.navbar.scrolled .nav-enquire:hover,
.navbar--solid   .nav-enquire:hover {
  background: var(--pine);
  color: var(--cream);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  color: inherit;
}

.hb-line {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .35s;
  transform-origin: center;
}

.nav-hamburger.active .hb-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active .hb-line:nth-child(2) { opacity: 0; }
.nav-hamburger.active .hb-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--pine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease-out);
  pointer-events: none;
}

.nav-mobile.open {
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile-link {
  font-family: var(--serif);
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 400;
  color: var(--cream);
  transition: color .2s;
}

.nav-mobile-link:hover { color: var(--stone); }

.nav-mobile-cta {
  margin-top: 12px;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid var(--stone);
  color: var(--stone);
  transition: background .3s, color .3s;
}

.nav-mobile-cta:hover { background: var(--stone); color: var(--pine); }

/* ── 6. HERO ──────────────────────────────────────────── */

.hero {
  height: 100svh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(0,0,0,0.06) 0%,
    rgba(27,58,45,0.25) 45%,
    rgba(27,58,45,0.72) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: 0 var(--px) clamp(60px, 8vh, 96px);
  max-width: 840px;
}

.hero-eyebrow {
  font-family: var(--label);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.9);
  display: block;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 100px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,240,232,0.72);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: var(--px);
  bottom: clamp(32px, 5vh, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,0.4);
  z-index: 1;
}

.hero-scroll-word {
  font-family: var(--label);
  font-size: 7.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
  animation: lineDrop 2.4s ease-in-out infinite;
}

@keyframes lineDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform-origin: bottom; }
  95%  { transform: scaleY(0); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* Inner page hero (short, dark bg) */
.page-hero {
  background: var(--pine);
  padding-top: var(--nav-h);
  padding-bottom: 72px;
  color: var(--cream);
}

.page-hero .wrap { padding-top: 56px; }

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,240,232,0.6);
  max-width: 520px;
  line-height: 1.75;
}

/* ── 7. BUTTONS ───────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--label);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-gold:hover { background: #9a7535; border-color: #9a7535; transform: translateY(-1px); }

.btn-cream {
  padding: 13px 31px;
  border: 1px solid rgba(245,240,232,0.55);
  color: var(--cream);
}

.btn-cream:hover { border-color: var(--cream); background: rgba(245,240,232,0.08); }

.btn-pine {
  padding: 13px 31px;
  border: 1px solid var(--pine);
  color: var(--pine);
}

.btn-pine:hover { background: var(--pine); color: var(--cream); }

.btn-stone {
  padding: 13px 31px;
  border: 1px solid var(--stone);
  color: var(--stone);
}

.btn-stone:hover { background: var(--stone); color: var(--white); }

/* ── 8. TICKER STRIP ──────────────────────────────────── */

.ticker {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker-inner:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  font-family: var(--label);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  flex-shrink: 0;
}

.ticker-dot {
  color: var(--stone);
  opacity: 0.5;
  margin: 0 0 0 64px;
}

/* ── 9. PHILOSOPHY ────────────────────────────────────── */

.philosophy { background: var(--cream); }

.philosophy-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
}

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--pine);
  line-height: 1.55;
  font-style: italic;
}

.philosophy-quote em { color: var(--stone); font-style: normal; font-weight: 500; }

.philosophy-body {
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.9;
  margin-top: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.stat {
  padding: 28px 0;
  border-top: 1px solid var(--mist);
}

.stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--pine);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num sup {
  font-size: 0.45em;
  vertical-align: super;
}

.stat-tag {
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pine);
}

/* ── 10. PROJECTS SHOWCASE ────────────────────────────── */

.projects-showcase { background: var(--pine); }

.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.projects-head .h2 { color: var(--cream); }

.projects-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  min-height: 640px;
}

.pcard {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}

.pcard--feat { grid-row: 1 / 3; }

.pcard-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}

.pcard:hover .pcard-bg { transform: scale(1.05); }

.pcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(27,58,45,0.92) 0%,
    rgba(27,58,45,0.25) 55%,
    rgba(0,0,0,0.04) 100%
  );
}

.pcard-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transition: transform .5s var(--ease);
}

.pcard--feat .pcard-body { padding: 40px 36px; }
.pcard:hover .pcard-body { transform: translateY(-4px); }

.pcard-status {
  font-family: var(--label);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.pcard-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 4px;
}

.pcard-loc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  margin-bottom: 16px;
}

.pcard-arrow {
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .4s, transform .4s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pcard:hover .pcard-arrow { opacity: 1; transform: translateX(0); }

/* ── 11. HP TEASER ────────────────────────────────────── */

.hp-teaser { background: var(--cream); }

.hp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
}

.hp-image {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hp-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}

.hp-image:hover .hp-img-bg { transform: scale(1.04); }

.hp-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.hp-title { margin-bottom: 20px; }

.hp-body {
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 32px;
}

/* ── 12. CTA BAND ─────────────────────────────────────── */

.cta-band {
  background: var(--pine);
  padding: 96px 0;
  text-align: center;
}

.cta-band-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 14px;
}

.cta-band-sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  margin-bottom: 40px;
}

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── 13. LEADERSHIP ───────────────────────────────────── */

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mist);
}

.lead-card {
  background: var(--white);
  padding: 48px 36px;
}

.lead-initial {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 24px;
}

.lead-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 4px;
}

.lead-role {
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.lead-bio {
  font-size: 14px;
  font-weight: 300;
  color: #777;
  line-height: 1.85;
}

/* ── 14. PARTNER STRIP ────────────────────────────────── */

.partners {
  padding: 56px 0;
  background: var(--mist);
}

.partners-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partner { text-align: center; }

.partner-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--pine);
}

.partner-role {
  font-family: var(--label);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
}

/* ── 15. UNIT CARDS ───────────────────────────────────── */

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mist);
}

.unit-card {
  background: var(--cream);
  padding: 48px 36px;
  border-top: 2px solid transparent;
  transition: background .3s, border-color .3s;
}

.unit-card:hover {
  background: var(--white);
  border-top-color: var(--stone);
}

.unit-bhk {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 2px;
}

.unit-area {
  font-family: var(--label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}

.unit-features { border-top: 1px solid var(--mist); padding-top: 20px; }

.unit-feat-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--mist);
  font-family: var(--sans);
  font-size: 13px;
}

.unit-feat-row .key { font-weight: 300; color: #888; }
.unit-feat-row .val { font-weight: 400; color: var(--pine); }

/* ── 16. AMENITIES ────────────────────────────────────── */

.amenities-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--mist);
  margin-top: 48px;
}

.amenity {
  background: var(--cream);
  padding: 28px 20px;
  text-align: center;
  transition: background .3s;
}

.amenity:hover { background: var(--white); }

.amenity-icon { font-size: 24px; margin-bottom: 10px; }

.amenity-label {
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pine);
  line-height: 1.4;
}

/* ── 17. LOCATION ─────────────────────────────────────── */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--mist);
}

.distances {
  background: var(--pine);
  padding: 64px;
  color: var(--cream);
}

.dist-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.dist-city {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
}

.dist-km {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--stone);
}

.dist-km span {
  font-family: var(--label);
  font-size: 9px;
  font-weight: 300;
  color: rgba(245,240,232,0.35);
  margin-left: 4px;
  letter-spacing: 0.15em;
}

.map-frame {
  background: var(--mist);
  min-height: 400px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* ── 18. ENQUIRE FORM ─────────────────────────────────── */

.enquire-section { background: var(--cream); }

.enquire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-row { margin-bottom: 28px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-label {
  display: block;
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--mist);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color .3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--pine); }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(26,26,26,0.28); }

.form-textarea { resize: none; height: 88px; }

.form-select option { background: var(--white); }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--pine);
  color: var(--cream);
  font-family: var(--label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
  margin-top: 8px;
}

.form-submit:hover { background: #0e2319; transform: translateY(-1px); }
.form-submit:disabled { background: #aaa; cursor: not-allowed; transform: none; }

.enquire-info { display: flex; flex-direction: column; gap: 2px; }

.info-block {
  padding: 32px 36px;
  background: var(--pine);
  color: var(--cream);
}

.info-block + .info-block { background: var(--charcoal); }

.info-label {
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}

.info-value {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,240,232,0.8);
  line-height: 1.7;
}

.info-value a { color: rgba(245,240,232,0.8); transition: color .2s; }
.info-value a:hover { color: var(--stone); }

/* ── 19. WHY HP ───────────────────────────────────────── */

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mist);
  margin-top: 48px;
}

.reason-card {
  background: var(--cream);
  padding: 48px 36px;
  transition: background .3s;
}

.reason-card:hover { background: var(--white); }

.reason-num {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 20px;
}

.reason-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 12px;
}

.reason-body {
  font-size: 14px;
  font-weight: 300;
  color: #777;
  line-height: 1.85;
}

/* Climate table */
.climate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--mist);
  margin-top: 48px;
}

.season-card {
  background: var(--cream);
  padding: 36px 28px;
  text-align: center;
}

.season-name {
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}

.season-temp {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 8px;
}

.season-desc {
  font-size: 12px;
  font-weight: 300;
  color: #888;
  line-height: 1.6;
}

/* ── 20. GALLERY GRID ─────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 2px;
  background: var(--mist);
}

.gallery-item {
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.gallery-item:hover .gallery-img { transform: scale(1.04); }

/* ── 21. FOOTER ───────────────────────────────────────── */

.footer {
  background: var(--charcoal);
  padding: 72px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo-sva  { color: var(--cream); }
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.35);
  line-height: 1.8;
  margin-top: 16px;
}

.footer-col-head {
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: color .2s;
}

.footer-link:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,240,232,0.22);
}

/* ── 22. WHATSAPP ─────────────────────────────────────── */

.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.wa-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.44);
}

.wa-btn svg { width: 28px; height: 28px; }

/* ── 23. ANIMATIONS ───────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: translate(0);
}

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ── 24. MISC ─────────────────────────────────────────── */

.divider { height: 1px; background: var(--mist); }

.tag {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 2px;
}

.tag-pine    { background: var(--pine);  color: var(--cream); }
.tag-stone   { border: 1px solid var(--stone); color: var(--stone); }
.tag-gold    { background: var(--gold);  color: var(--white); }
.tag-mist    { background: var(--mist);  color: var(--pine); }

/* ── 25. RESPONSIVE ───────────────────────────────────── */

@media (max-width: 1024px) {
  .projects-grid     { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pcard--feat       { grid-row: auto; min-height: 480px; }
  .philosophy-grid   { grid-template-columns: 1fr; gap: 48px; }
  .hp-grid           { grid-template-columns: 1fr; }
  .hp-image          { min-height: 360px; }
  .hp-content        { padding: 56px var(--px); }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .enquire-grid      { grid-template-columns: 1fr; gap: 48px; }
  .lead-grid         { grid-template-columns: 1fr; }
  .units-grid        { grid-template-columns: 1fr; }
  .location-grid     { grid-template-columns: 1fr; }
  .reasons-grid      { grid-template-columns: 1fr 1fr; }
  .climate-grid      { grid-template-columns: 1fr 1fr; }
  .gallery-grid      { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .amenities-list    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; --nav-h-sm: 60px; }

  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }

  .hero-title     { font-size: clamp(42px, 12vw, 64px); }
  .hero-scroll    { display: none; }

  .ticker-inner   { animation-duration: 18s; }

  .stats-grid     { grid-template-columns: 1fr 1fr; }

  .lead-grid      { grid-template-columns: 1fr; }
  .units-grid     { grid-template-columns: 1fr; }
  .reasons-grid   { grid-template-columns: 1fr; }
  .climate-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-grid   { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.tall { grid-row: span 1; }
  .amenities-list { grid-template-columns: repeat(2, 1fr); }

  .distances      { padding: 40px var(--px); }
  .form-row-2     { grid-template-columns: 1fr; }

  .footer-top     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }

  .cta-btns       { flex-direction: column; align-items: center; }
  .partners-inner { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .climate-grid { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr 1fr; }
}
