/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A1610 0%, #2C2419 50%, #1A1610 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,169,110,0.03) 0px, rgba(201,169,110,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(201,169,110,0.03) 0px, rgba(201,169,110,0.03) 1px, transparent 1px, transparent 40px);
}
.hero-content {
  position: relative;
  max-width: 620px;
  z-index: 1;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}

/* ── SERVICES ── */
.services { background: var(--white); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border);
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-accent {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  width: 60%; height: 60%;
  border: 1px solid var(--gold-lt);
  z-index: 0;
  pointer-events: none;
}
.about-portrait {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #E8D5B0, #C9A96E);
  overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-fallback {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 3.5rem;
  color: rgba(26,22,16,0.3);
  font-style: italic;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  z-index: 2;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  min-width: 130px;
}
.about-badge-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.about-badge-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.35rem;
  line-height: 1.4;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-body {
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ── WHY ── */
.why { background: var(--dark); }
.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.45); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 4rem;
  background: rgba(255,255,255,0.04);
}

/* ── VASTU ── */
.vastu { background: var(--cream); }
.vastu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vastu-benefits {
  list-style: none;
  margin-top: 1.5rem;
}
.vastu-benefits li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  align-items: flex-start;
}
.vastu-benefits li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.42rem;
  flex-shrink: 0;
}

/* ── PORTFOLIO ── */
.portfolio { background: var(--white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.portfolio-item.tall { grid-row: span 2; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark); }
.testimonials .section-title { color: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  margin-top: 4rem;
  background: rgba(255,255,255,0.04);
}

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-list { margin-top: 3rem; max-width: 800px; }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}
.contact-items { margin-top: 2.5rem; }
