/* ============================================
   DEVIKA GROUP — Luxury Real Estate
   Design System: Obsidian & Champagne
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

:root {
  /* ── Palette ── */
  --gold:          #B8913F;
  --gold-light:    #D4AE6A;
  --gold-pale:     #E8D5A3;
  --gold-shimmer:  #F5EDD4;
  --obsidian:      #0D0D0D;
  --obsidian-soft: #141414;
  --charcoal:      #1C1C1C;
  --smoke:         #2A2A2A;
  --ivory:         #FAF7F2;
  --ivory-warm:    #F3EEE6;
  --stone:         #8A8680;
  --ash:           #C4BFB8;
  --white:         #FFFFFF;

  /* ── Typography ── */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* ── Spacing ── */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  2rem;
  --gap-lg:  4rem;
  --gap-xl:  7rem;

  /* ── Transitions ── */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --slow:   0.6s var(--ease);
  --medium: 0.35s var(--ease);
  --fast:   0.18s var(--ease);
}

/* ─── RESET ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--smoke);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.75;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color var(--fast); }
p { margin-bottom: 1rem; }

/* ─── TYPOGRAPHY ────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--obsidian);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; }

/* ─── LAYOUT ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section-padding { padding: var(--gap-xl) 0; }
.section-padding-sm { padding: var(--gap-lg) 0; }

/* ─── UTILITIES ─────────────────────────── */
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold); }
.bg-dark    { background: var(--obsidian); }
.bg-cream   { background: var(--ivory-warm); }

/* Gold rule decoration */
.rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.rule.left { margin-left: 0; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ─── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--medium);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(184,145,63,0.28);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,145,63,0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark {
  background: var(--obsidian);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn-lg { padding: 1.15rem 3.4rem; font-size: 0.82rem; }
.btn-sm { padding: 0.7rem 1.8rem; font-size: 0.72rem; }

/* ─── HEADER ────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,145,63,0.08);
  transition: background var(--medium), border-color var(--medium), box-shadow var(--medium);
}
.header.scrolled {
  background: rgba(13,13,13,0.97);
  border-bottom-color: rgba(184,145,63,0.2);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.header.scrolled .header-inner { padding-top: 1rem; padding-bottom: 1rem; }

/* Logo */
.logo { display: flex; align-items: center; gap: 0.9rem; }
.logo-monogram {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  flex-shrink: 0;
  transition: background var(--fast);
}
.logo:hover .logo-monogram { background: var(--gold); color: var(--white); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo-text span { color: var(--gold); }

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  position: relative;
  transition: color var(--fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--medium);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold-light); }
.nav-link.active::after { background: var(--gold-light); width: 100%; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all var(--fast);
}

/* ─── HERO ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--obsidian);
}

/* Architectural grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,145,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,145,63,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

/* Dramatic gradient veil */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(13,13,13,0.97) 0%,
    rgba(13,13,13,0.6) 50%,
    rgba(13,13,13,0.85) 100%
  );
  z-index: 2;
}

/* Decorative circles */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(184,145,63,0.08) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: 100px; right: 200px;
  background: radial-gradient(circle, rgba(184,145,63,0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 14rem 2.5rem 10rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 2rem;
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(184,145,63,0.1);
  border-top: 1px solid rgba(184,145,63,0.2);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.hero-stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: stretch;
}
.hero-stat {
  flex: 1;
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(184,145,63,0.15);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

/* ─── PAGE HEADER (inner pages) ─────────── */
.page-header {
  position: relative;
  padding: 180px 0 110px;
  background: var(--obsidian);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,145,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,145,63,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,63,0.07) 0%, transparent 70%);
}
.page-header-content {
  position: relative;
  z-index: 2;
}
/* Gold vertical accent */
.page-header-content::before {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin-bottom: 2rem;
}
.page-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.page-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.8;
}

/* Badge (replaces old page-badge) */
.page-badge {
  display: inline-flex;
  margin-bottom: 1.5rem;
}
.page-badge span,
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── SECTION HEADER ────────────────────── */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
}
.section-header.text-left { text-align: left; }
.section-header.text-left .rule { margin-left: 0; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--obsidian);
  margin-bottom: 1.2rem;
}
.section-subtitle {
  font-size: 0.98rem;
  color: var(--stone);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
}
.section-header.text-left .section-subtitle { margin: 0; }

/* ─── FEATURE CARDS ─────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--ash);
  border: 1.5px solid var(--ash);
  overflow: hidden;
}
.feature-card {
  background: var(--ivory);
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: background var(--medium);
}
.feature-card:hover { background: var(--white); }
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.2rem; right: 2.2rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--medium);
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1.2rem;
  display: block;
}
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: all var(--medium);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}
.feature-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}
.feature-description {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.75;
}

/* ─── PROJECT CARDS ─────────────────────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--ash);
}
.project-card {
  background: var(--ivory);
  overflow: hidden;
  position: relative;
  transition: background var(--medium);
}
.project-card:hover { background: var(--white); }

.project-image {
  position: relative;
  height: 320px;
  background: var(--charcoal);
  overflow: hidden;
}
.project-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Architectural photo stand-in */
.project-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}
.project-image-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(184,145,63,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,145,63,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}
.project-image-label {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--gold-pale);
}
.project-image-label-main {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
  display: block;
}
.project-image-label-sub {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,213,163,0.5);
  display: block;
  margin-top: 0.5rem;
}

.project-tag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  z-index: 3;
  padding: 0.4rem 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.project-content { padding: 2.5rem; }
.project-location {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.project-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.project-description {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--fast);
}
.project-link::after {
  content: '→';
  transition: transform var(--fast);
}
.project-link:hover { gap: 1.1rem; }
.project-link:hover::after { transform: translateX(4px); }

/* ─── STATS GRID ────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(184,145,63,0.2);
}
.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(184,145,63,0.15);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 0;
  background: var(--gold);
  transition: height var(--slow);
}
.stat-item:hover::before { height: 100%; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── REVIEW CARDS ──────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--ash);
}
.review-card {
  background: var(--ivory);
  padding: 3rem 2.8rem;
  position: relative;
  transition: background var(--medium);
}
.review-card:hover { background: var(--white); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold-pale);
  pointer-events: none;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.review-avatar {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  background: var(--gold-shimmer);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
}
.review-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 0.2rem;
}
.review-role {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.05em;
}
.review-rating {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
}
.review-text {
  font-size: 0.92rem;
  color: var(--smoke);
  line-height: 1.85;
  font-style: italic;
  font-weight: 300;
}

/* ─── CTA SECTION ───────────────────────── */
.cta-section {
  background: var(--obsidian);
  padding: var(--gap-xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,145,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,145,63,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,63,0.06) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.cta-divider {
  width: 100%;
  height: 1px;
  background: rgba(184,145,63,0.15);
  margin-bottom: 2.5rem;
}
.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.contact-icon { color: var(--gold); font-size: 1rem; }

/* ─── FOOTER ────────────────────────────── */
.footer {
  background: var(--obsidian-soft);
  border-top: 1px solid rgba(184,145,63,0.12);
  padding: 5rem 0 0;
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-text { color: var(--white); margin-bottom: 1.2rem; display: block; }
.footer-description { font-size: 0.88rem; line-height: 1.8; margin-bottom: 2rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--fast);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--fast);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }

/* ─── DETAIL LIST ───────────────────────── */
.details-list { display: flex; flex-direction: column; gap: 1px; background: var(--ash); }
.detail-item {
  background: var(--ivory);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: background var(--fast);
}
.detail-item:hover { background: var(--white); }
.detail-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.detail-content h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.detail-content p { font-size: 0.9rem; color: var(--stone); margin: 0; }

/* ─── LOCATION ITEMS ────────────────────── */
.location-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--ash);
}
.location-item {
  background: var(--ivory);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background var(--fast);
}
.location-item:hover { background: var(--white); }
.location-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; }
.location-text { font-size: 0.9rem; color: var(--smoke); font-weight: 300; }

/* ─── HIGHLIGHTS ────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--ash);
}
.highlight-item {
  background: var(--ivory);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background var(--fast);
}
.highlight-item:hover { background: var(--white); }
.highlight-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.15rem;
}
.highlight-text { font-size: 0.9rem; color: var(--smoke); line-height: 1.6; font-weight: 300; }

/* ─── NUMBERS GRID ──────────────────────── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(184,145,63,0.18);
}
.number-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(184,145,63,0.12);
  background: var(--ivory-warm);
}
.number-item:last-child { border-right: none; }
.number-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.number-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ─── RERA BLOCK ────────────────────────── */
.rera-block {
  border: 1px solid rgba(184,145,63,0.25);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  background: var(--ivory-warm);
  position: relative;
}
.rera-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-pale));
}
.rera-checkmark {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.rera-block h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.rera-block p { font-size: 0.9rem; color: var(--stone); margin: 0; }

/* ─── ANIMATIONS ────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--slow), transform var(--slow);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── INTRO TEXT SECTION ────────────────── */
.intro-text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--smoke);
  max-width: 860px;
  margin-bottom: 1.2rem;
}
.intro-large {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--obsidian);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 720px;
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 1200px) {
  :root { --gap-xl: 5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 992px) {
  .nav-menu      { display: none; }
  .mobile-toggle { display: flex; }
  .hero-stats-inner  { flex-wrap: wrap; }
  .hero-stat     { flex: 1 1 50%; border-bottom: 1px solid rgba(184,145,63,0.12); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .project-grid  { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .location-list { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-content  { padding: 10rem 1.5rem 8rem; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .page-header   { padding: 140px 0 70px; }
  .features-grid { grid-template-columns: 1fr; }
  .numbers-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-info  { flex-direction: column; align-items: center; gap: 1rem; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-buttons   { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .numbers-grid { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr; }
}

/* Mobile Nav Open State */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-menu.open .nav-link { font-size: 1.5rem; letter-spacing: 0.1em; }
.nav-close {
  display: none;
  position: fixed;
  top: 1.5rem; right: 2rem;
  z-index: 1001;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-menu.open ~ .nav-close { display: block; }
