/*
Theme Name: Ganges Growth Partners
Theme URI: https://gangesgrowthpartners.com
Author: Ganges Growth Partners Pvt. Ltd.
Author URI: https://gangesgrowthpartners.com
Description: Premium commercial real estate and investment advisory theme for Ganges Growth Partners — India's trusted CRE specialists. Features luxury dark navy aesthetic with gold accents, animated hero, stats counter, services grid, market intelligence tabs, insights section, and contact form.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: ggp
Tags: business, real-estate, one-page, investment, luxury, dark
*/

/* ─────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────── */
:root {
  --navy:    #080F1E;
  --navy2:   #0D1A2E;
  --navy3:   #112240;
  --gold:    #C4973A;
  --gold2:   #E8B84B;
  --gold-lt: #F5D98B;
  --cream:   #F4EFE6;
  --white:   #FFFFFF;
  --muted:   #8899AA;
  --border:  rgba(196,151,58,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .4;
}

/* ─────────────────────────────────────
   NAVIGATION
───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: rgba(8,15,30,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-icon { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--cream); letter-spacing: 0.04em;
}
.logo-tag {
  font-size: 0.55rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--cream); transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(8,15,30,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 32px 5% 40px;
  flex-direction: column; gap: 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--cream); text-decoration: none;
  font-size: 1.1rem; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-cta { align-self: flex-start; margin-top: 8px; }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 5% 8%;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(8,15,30,0.55) 0%, rgba(8,15,30,0.85) 60%, var(--navy) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
}

.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(196,151,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,151,58,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow span {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 50px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
  font-size: 1rem; line-height: 1.8;
  color: var(--muted); max-width: 560px;
  margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-ghost {
  padding: 16px 36px;
  background: transparent;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(244,239,230,0.3); cursor: pointer; text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--cream); }

.hero-scroll {
  position: absolute; bottom: 48px; right: 5%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100%{opacity:1;transform:scaleY(1)}
  50%{opacity:.4;transform:scaleY(0.6)}
}

/* ─────────────────────────────────────
   STATS BAND
───────────────────────────────────── */
.stats-band {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 600;
  color: var(--gold); display: block;
  line-height: 1;
}
.stat-unit { font-size: 1.6rem; }
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 10px; display: block;
}

/* ─────────────────────────────────────
   SECTIONS SHARED
───────────────────────────────────── */
section { position: relative; }
.section-inner { padding: 120px 5%; }

.section-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.section-eyebrow span {
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.15;
  color: var(--white);
}
h2 em { font-style: italic; color: var(--gold-lt); }

/* ─────────────────────────────────────
   ABOUT
───────────────────────────────────── */
.about { background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%);
  display: block;
}
.about-image-frame {
  position: absolute;
  top: 24px; left: 24px;
  right: -24px; bottom: -24px;
  border: 1px solid var(--border);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px 28px;
  text-align: center;
}
.about-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600;
  display: block; line-height: 1;
}
.about-badge span {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500;
}
.about-text h2 { margin-bottom: 28px; }
.about-text p {
  color: var(--muted); line-height: 1.9;
  margin-bottom: 20px; font-size: 0.96rem;
}
.about-pillars { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.pillar {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pillar:last-child { border-bottom: none; }
.pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--cream); margin-bottom: 6px;
}
.pillar p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
.services { background: var(--navy2); }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 72px;
  flex-wrap: wrap; gap: 32px;
}
.services-header p {
  max-width: 380px;
  color: var(--muted); line-height: 1.8;
  font-size: 0.92rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--navy2);
  padding: 48px 36px;
  transition: background 0.4s;
  cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { background: var(--navy3); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; color: var(--border);
  letter-spacing: 0.1em; margin-bottom: 32px;
  display: block;
}
.service-card:hover .service-num { color: var(--gold); }
.service-icon { width: 48px; height: 48px; margin-bottom: 24px; }
.service-icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--cream); margin-bottom: 16px;
  line-height: 1.2;
}
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; }
.service-arrow {
  margin-top: 32px;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; }
.service-arrow::after { content: '→'; font-size: 1rem; }

/* ─────────────────────────────────────
   WHY GGP
───────────────────────────────────── */
.why { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-visual {
  background: var(--navy2);
  border: 1px solid var(--border);
  padding: 60px 48px;
  position: relative;
}
.why-visual::before {
  content: '"';
  position: absolute; top: -20px; left: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem; color: var(--gold);
  line-height: 1; opacity: 0.3;
}
.why-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 300;
  line-height: 1.55; color: var(--cream);
  font-style: italic;
  margin-bottom: 32px;
}
.why-author { display: flex; gap: 14px; align-items: center; }
.why-author-line { width: 30px; height: 1px; background: var(--gold); }
.why-author span { font-size: 0.75rem; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 24px; align-items: flex-start;
}
.why-point:first-child { padding-top: 0; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; color: var(--gold);
  flex-shrink: 0; min-width: 28px;
}
.why-point-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--cream); margin-bottom: 8px;
}
.why-point-text p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }

/* ─────────────────────────────────────
   MARKETS
───────────────────────────────────── */
.markets { background: var(--navy2); }
.markets-header { margin-bottom: 64px; }
.markets-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.tab {
  padding: 14px 28px;
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all 0.3s;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: 'DM Sans', sans-serif;
}
.tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab:hover { color: var(--cream); }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.market-card {
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: border-color 0.3s;
}
.market-card:hover { border-color: var(--gold); }
.market-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--cream); margin-bottom: 6px;
}
.market-type {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: block;
}
.market-stats { display: flex; flex-direction: column; gap: 12px; }
.market-stat { display: flex; justify-content: space-between; font-size: 0.8rem; }
.market-stat span:first-child { color: var(--muted); }
.market-stat span:last-child { color: var(--cream); font-weight: 500; }
.market-trend { margin-top: 20px; font-size: 0.72rem; color: #4CAF50; letter-spacing: 0.1em; }

/* Panels */
.market-panel { display: none; }
.market-panel.active { display: block; }

/* ─────────────────────────────────────
   INSIGHTS
───────────────────────────────────── */
.insights { background: var(--navy); }
.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px; background: var(--border);
  margin-top: 64px;
}
.insight-card {
  background: var(--navy);
  padding: 44px 36px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  transition: background 0.3s;
}
.insight-card:hover { background: var(--navy3); }
.insight-card.featured { background: var(--navy2); }
.insight-tag {
  display: inline-flex;
  padding: 5px 14px;
  border: 1px solid var(--border);
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; width: fit-content;
}
.insight-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--cream); line-height: 1.35;
  margin-bottom: 20px;
}
.insight-card.featured h3 { font-size: 2rem; }
.insight-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; }
.insight-footer {
  margin-top: 32px;
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.05em;
}
.insight-read {
  color: var(--gold); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none;
}
.insight-read:hover { color: var(--gold2); }

/* ─────────────────────────────────────
   CTA BAND
───────────────────────────────────── */
.cta-band {
  padding: 140px 5%;
  background: var(--navy3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'GGP';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22vw; font-weight: 700;
  color: rgba(196,151,58,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none;
  letter-spacing: -0.05em;
}
.cta-band h2 { margin-bottom: 24px; }
.cta-band p {
  font-size: 1rem; color: var(--muted);
  max-width: 520px; margin: 0 auto 48px;
  line-height: 1.8;
}
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
.contact { background: var(--navy2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-info > p { color: var(--muted); line-height: 1.9; margin-bottom: 48px; font-size: 0.93rem; }
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.c-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-item h5 {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px;
}
.contact-item p { font-size: 0.88rem; color: var(--cream); margin: 0; }
.contact-item a { color: var(--cream); text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); }
.form-submit {
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
.form-submit:hover { background: var(--gold2); }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 72px 5% 36px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 64px;
}
.footer-brand p {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.85; margin-top: 20px;
}
.footer-col h5 {
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.84rem; color: var(--muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-size: 0.72rem; color: var(--muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ─────────────────────────────────────
   FADE IN ANIMATION
───────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); background: var(--navy2); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-scroll { display: none; }
}
