/* ═══════════════════════════════════════════════════
   Ambuja Utpalaa Kolkata — Main Stylesheet
   style.css
   ═══════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --gold:       #b8975a;
  --gold-light: #d4b07a;
  --gold-dark:  #8a6e3e;
  --cream:      #f8f4ed;
  --dark:       #1a1710;
  --text:       #3a3525;
  --muted:      #7a7260;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(26, 23, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 151, 90, 0.25);
  transition: all 0.3s;
}
nav.scrolled {
  padding: 12px 48px;
  background: rgba(26, 23, 16, 0.98);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-logo .brand {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
.nav-logo .sub {
  font-family: 'Jost', sans-serif;
  color: rgba(184, 151, 90, 0.65);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 9px 24px;
  border-radius: 1px;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 11, 7, 0.98);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0e0c08 0%, #1e1a10 40%, #2a2210 100%);
}

.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8975a' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10, 8, 4, 0.3) 0%,
    rgba(10, 8, 4, 0.2) 50%,
    rgba(10, 8, 4, 0.7) 100%);
}

.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  animation: heroFadeIn 1.4s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(184, 151, 90, 0.3);
  height: 48px;
  align-self: center;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 151, 90, 0.35);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 13px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════ */
section { padding: 100px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 560px;
  font-weight: 300;
}

.gold-rule {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

/* ═══════════════════════════════════════════════════
   OVERVIEW / ABOUT
   ═══════════════════════════════════════════════════ */
#overview { background: var(--cream); }

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

.overview-image-wrap { position: relative; }
.overview-image-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  display: block;
}

.overview-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--dark);
  padding: 28px 32px;
  text-align: center;
}
.overview-badge .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.overview-badge .small {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.highlight-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.highlight-text {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   KEY FEATURES STRIP
   ═══════════════════════════════════════════════════ */
#features-strip {
  background: var(--dark);
  padding: 60px 0;
}

.features-row {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.features-row::-webkit-scrollbar { display: none; }

.feature-item {
  flex: 1;
  min-width: 180px;
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid rgba(184, 151, 90, 0.15);
  transition: background 0.3s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(184, 151, 90, 0.05); }

.feature-icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-item .f-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.feature-item .f-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   RESIDENCES
   ═══════════════════════════════════════════════════ */
#residences { background: #f0ebe0; }

.residences-header { text-align: center; margin-bottom: 60px; }
.residences-header .section-label { justify-content: center; }
.residences-header .gold-rule { margin: 28px auto; }
.residences-header .section-desc { margin: 0 auto; text-align: center; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.residence-card {
  background: #fff;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(184, 151, 90, 0.15);
}
.residence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(26, 23, 16, 0.12);
}

.card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.residence-card:hover .card-image img { transform: scale(1.06); }

/* ── Floor Plan Blur / Reveal ── */
.plan-blur-wrap {
  width: 100%; height: 100%;
  transition: filter 0.6s ease;
}
.plan-blur-wrap.blurred-plan {
  filter: blur(6px) brightness(0.85);
  pointer-events: none;
  user-select: none;
}
.plan-blur-wrap.revealed {
  filter: none;
}

/* Reveal Overlay — covers the card-image when blurred */
.reveal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(26, 23, 16, 0.28);
  backdrop-filter: blur(1px);
  transition: opacity 0.4s;
}
.reveal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Reveal Button */
.btn-reveal {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: #fff;
  padding: 10px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  animation: revealPulse 2.5s ease-in-out infinite;
}
.btn-reveal:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(184, 151, 90, 0.45);
  animation: none;
}
@keyframes revealPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,151,90,0.0); }
  50%       { box-shadow: 0 0 0 8px rgba(184,151,90,0.25); }
}

.card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.card-body { padding: 28px; }

.card-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 6px;
}
.card-area {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-dark);
  font-weight: 500;
}
.card-price span {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 2px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 18px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.card-link:hover { border-color: var(--gold); }

/* ═══════════════════════════════════════════════════
   AMENITIES
   ═══════════════════════════════════════════════════ */
#amenities { background: var(--dark); color: #fff; }

.amenities-header { margin-bottom: 60px; }
.amenities-header .section-title { color: #fff; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.amenity-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 151, 90, 0.12);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.amenity-box:hover {
  background: rgba(184, 151, 90, 0.08);
  border-color: rgba(184, 151, 90, 0.4);
  transform: translateY(-4px);
}
.amenity-icon { font-size: 2rem; margin-bottom: 12px; }
.amenity-name {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.5;
}

.amenities-count { text-align: center; margin-top: 48px; }
.amenities-count .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.amenities-count .text {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */
#gallery { background: #f0ebe0; padding-bottom: 80px; }

.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .gold-rule { margin: 20px auto; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:first-child { grid-column: span 2; }

.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(26, 23, 16, 0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .overlay { background: rgba(26, 23, 16, 0.25); }

.overlay-icon {
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s;
}
.gallery-item:hover .overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════ */
#location { background: var(--cream); }

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

.location-map {
  height: 420px;
  background: #d4cfc4;
  position: relative;
  overflow: hidden;
}
.location-map iframe {
  width: 100%; height: 100%;
  border: none;
}

.location-list { list-style: none; }
.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 151, 90, 0.2);
}
.location-list li:first-child { padding-top: 0; }

.loc-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.loc-name { font-size: 0.9rem; font-weight: 400; color: var(--dark); }
.loc-dist { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

.map-address {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-address-icon { color: var(--gold); font-size: 1rem; }
.map-address-name {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
}
.map-address-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════
   DEVELOPER
   ═══════════════════════════════════════════════════ */
#developer { background: var(--dark); }

.developer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.developer-grid .section-title { color: #fff; }
.developer-grid .section-desc {
  color: rgba(255, 255, 255, 0.5);
  max-width: none;
}

.dev-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.dev-stat {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.dev-stat .ds-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.dev-stat .ds-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.dev-logo-area { text-align: center; }
.dev-logo-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(184, 151, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  letter-spacing: 0.1em;
  flex-direction: column;
  gap: 4px;
}
.dev-logo-circle .an-big {
  font-size: 2.8rem;
  font-weight: 300;
}
.dev-logo-circle .an-small {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(184, 151, 90, 0.6);
  text-transform: uppercase;
}
.dev-trust {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.dev-sectors {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.65rem;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   ENQUIRY FORM
   ═══════════════════════════════════════════════════ */
#enquire {
  background: linear-gradient(135deg, #13100a 0%, #1e1a10 100%);
  padding: 80px 0;
}

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.form-wrap .section-label { justify-content: center; }
.form-wrap .section-title { color: #fff; }
.form-wrap .section-desc {
  color: rgba(255, 255, 255, 0.45);
  margin: 0 auto 40px;
}
.form-wrap .gold-rule { margin: 20px auto; }

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group.full { grid-template-columns: 1fr; }

.form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 151, 90, 0.25);
  color: #fff;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-control:focus { border-color: var(--gold); }
select.form-control option { background: #1a1710; }

.form-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  padding: 16px 56px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 8px;
  width: 100%;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 151, 90, 0.3);
}
.form-submit.success {
  background: #4caf50;
  transform: none;
  box-shadow: none;
}

.form-note {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 16px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
  background: #0d0b07;
  padding: 60px 0 32px;
}

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

.footer-brand .brand {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 400;
}
.footer-brand .tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.15em;
  margin-top: 4px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(184, 151, 90, 0.12);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}
.footer-bottom .disclaimer {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.15);
}

.rera {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(184, 151, 90, 0.25);
  padding: 6px 14px;
  margin-top: 16px;
}
.rera-dot {
  width: 6px; height: 6px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════
   STICKY CTA STRIP
   ═══════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--gold);
  display: flex;
  justify-content: center;
  gap: 0;
  transform: translateY(100%);
  transition: transform 0.4s;
}
.sticky-cta.visible { transform: translateY(0); }

.sticky-btn {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-right: 1px solid rgba(26, 23, 16, 0.15);
  transition: background 0.2s;
}
.sticky-btn:last-child { border-right: none; }
.sticky-btn:hover { background: var(--gold-light); }

.sticky-icon {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.10s; }
.fade-up:nth-child(3) { transition-delay: 0.20s; }
.fade-up:nth-child(4) { transition-delay: 0.30s; }
.fade-up:nth-child(5) { transition-delay: 0.40s; }
.fade-up:nth-child(6) { transition-delay: 0.50s; }


/* ═══════════════════════════════════════════════════
   LEAD POPUP MODAL
   ═══════════════════════════════════════════════════ */

/* Overlay */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 8, 4, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lead-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.lead-modal {
  background: var(--cream);
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 52px 48px 44px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 40px 100px rgba(10, 8, 4, 0.55);
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-modal-overlay.active .lead-modal {
  transform: translateY(0);
}

/* Close Button */
.lead-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 4px 8px;
}
.lead-modal-close:hover { color: var(--dark); }

/* Eyebrow */
.lead-modal-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lead-modal-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

/* Title */
.lead-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0;
}
.lead-modal-title em {
  font-style: italic;
  color: var(--gold-dark);
}

/* Gold rule */
.lead-modal-rule {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

/* Description */
.lead-modal-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

/* Field Group */
.lead-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

/* Inputs */
.lead-input {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(184, 151, 90, 0.3);
  border-radius: 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.25s;
}
.lead-input::placeholder { color: rgba(122, 114, 96, 0.6); }
.lead-input:focus  { border-color: var(--gold); }
.lead-input.error  { border-color: #c0392b !important; }

/* Submit Button */
.lead-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  margin-top: 4px;
}
.lead-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 151, 90, 0.35);
}
.lead-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Fine print */
.lead-modal-note {
  font-size: 0.62rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  letter-spacing: 0.03em;
}

/* Mobile adjustments */
@media (max-width: 540px) {
  .lead-modal {
    padding: 40px 28px 36px;
  }
  .lead-modal-title { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — max-width: 900px
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .overview-grid,
  .location-grid,
  .developer-grid { grid-template-columns: 1fr; gap: 48px; }

  .overview-badge { bottom: -12px; right: 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 24px; }
  .form-group { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  section { padding: 72px 0; }
}
