/* ============================================================
   AAYAAN INFRATECH — Premium Real Estate
   style.css  |  Luxury Cream · Gold · Forest Green Palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --cream:       #F9F4EE;
  --cream-dark:  #EFE6D8;
  --parchment:   #E8DDD0;
  --gold:        #B8914A;
  --gold-light:  #D4AE6A;
  --gold-dark:   #8C6A2F;
  --charcoal:    #1C1A18;
  --stone:       #5A5248;
  --mist:        #8A837A;
  --white:       #FFFFFF;
  --forest:      #2D4A3E;
  --forest-lt:   #3D6455;

  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Jost', sans-serif;

  --nav-h:       80px;
  --section-gap: 110px;

  --shadow-sm:   0 2px 12px rgba(28,26,24,.08);
  --shadow-md:   0 8px 40px rgba(28,26,24,.14);
  --shadow-lg:   0 20px 60px rgba(28,26,24,.18);

  --radius:      4px;
  --radius-lg:   10px;

  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--charcoal);
}

.section-title span { color: var(--gold); font-style: italic; }

.section-sub {
  font-size: 1rem;
  color: var(--stone);
  max-width: 580px;
  margin-top: .75rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Divider line */
.gold-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.1rem;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,145,74,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,145,74,.45);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(249,244,238,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,145,74,.15);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(28,26,24,.1);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .02em;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-tag {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  padding-block: .25rem;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: .78rem;
  padding: .65rem 1.6rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 850;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
  padding-block: .5rem;
  border-bottom: 1px solid var(--parchment);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ────────────────────────────────────────────
   HERO — HOME
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(28,26,24,.7) 0%,
      rgba(28,26,24,.3) 55%,
      rgba(184,145,74,.12) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}

/* Animated gradient mesh overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%,
    rgba(184,145,74,.08) 0%,
    transparent 70%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem;
  background: rgba(184,145,74,.15);
  border: 1px solid rgba(184,145,74,.35);
  border-radius: 2px;
  margin-bottom: 1.8rem;
}
.hero-badge span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.4rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Floating stats card */
.hero-stats {
  position: absolute;
  right: 0;
  bottom: 90px;
  z-index: 2;
  display: flex;
  gap: 0;
  background: rgba(249,244,238,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-stat {
  padding: 1.6rem 2rem;
  text-align: center;
  border-right: 1px solid var(--parchment);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: .35rem;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  z-index: 2;
  opacity: .7;
}
.scroll-hint span {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ────────────────────────────────────────────
   FEATURED PROJECTS — HOME
──────────────────────────────────────────── */
.featured-projects {
  padding-block: var(--section-gap);
  background: var(--cream);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.project-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.project-card-img img {
  transition: transform .6s ease;
}
.project-card:hover .project-card-img img {
  transform: scale(1.06);
}
.project-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: .3rem .8rem;
  background: var(--gold);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 2px;
}

.project-card-body {
  padding: 1.5rem;
}
.project-card-loc {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: .6rem;
}
.project-card-loc svg { flex-shrink: 0; }

.project-card-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.project-card-desc {
  font-size: .88rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.project-card-link:hover { gap: .75rem; }

/* ────────────────────────────────────────────
   WHY CHOOSE US — HOME
──────────────────────────────────────────── */
.why-section {
  padding-block: var(--section-gap);
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(184,145,74,.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='30' cy='30' r='.5' fill='rgba(184,145,74,.2)'/%3E%3C/svg%3E") repeat;
}

.why-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-left .section-title { color: var(--cream); }
.why-left .section-sub   { color: rgba(239,230,216,.7); }

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.why-feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,145,74,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.15rem;
}
.why-feature-text h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .2rem;
}
.why-feature-text p {
  font-size: .8rem;
  color: rgba(239,230,216,.6);
  line-height: 1.6;
  font-weight: 300;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-img-main {
  grid-column: span 2;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-img-sm {
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ────────────────────────────────────────────
   TESTIMONIALS — HOME
──────────────────────────────────────────── */
.testimonials {
  padding-block: var(--section-gap);
  background: var(--cream-dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem; right: 1.6rem;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold-light);
  opacity: .2;
  line-height: 1;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: .9rem;
}
.testi-text {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.testi-place {
  font-size: .72rem;
  color: var(--mist);
  font-weight: 400;
}

/* ────────────────────────────────────────────
   CTA SECTION
──────────────────────────────────────────── */
.cta-section {
  padding-block: var(--section-gap);
  background:
    linear-gradient(135deg, rgba(28,26,24,.85) 0%, rgba(28,26,24,.7) 100%),
    url('images/cta-bg.jpg') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,
    rgba(184,145,74,.12) 0%, transparent 70%);
}
.cta-inner { position: relative; max-width: 680px; margin-inline: auto; }
.cta-section .section-label { display: block; text-align: center; }
.cta-section .section-title { color: var(--white); text-align: center; }
.cta-section .section-sub {
  color: rgba(255,255,255,.72);
  margin-inline: auto;
  text-align: center;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: 70px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.6rem;
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-tag {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mist);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: .85rem;
  color: rgba(249,244,238,.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.footer-socials {
  display: flex;
  gap: .7rem;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,145,74,.1);
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer-col ul li {
  margin-bottom: .65rem;
}
.footer-col ul li a {
  font-size: .86rem;
  color: rgba(249,244,238,.55);
  transition: color var(--transition);
  font-weight: 300;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1rem;
  font-size: .86rem;
  color: rgba(249,244,238,.55);
  font-weight: 300;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: .15rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  color: rgba(249,244,238,.35);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ────────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────────── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(28,26,24,.8) 0%, rgba(28,26,24,.5) 100%),
    url('images/about-hero.jpg') center/cover no-repeat;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-label { display: block; }
.page-hero-content .section-title { color: var(--white); }
.page-hero-content .section-sub   { color: rgba(255,255,255,.72); }

.about-intro {
  padding-block: var(--section-gap);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: .8rem;
}
.about-img-collage .img-a {
  grid-row: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-collage .img-b,
.about-img-collage .img-c {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-mvv {
  padding-block: var(--section-gap);
  background: var(--cream-dark);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mvv-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.mvv-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.mvv-card p {
  font-size: .88rem;
  color: var(--stone);
  line-height: 1.75;
  font-weight: 300;
}

.about-stats {
  padding-block: var(--section-gap);
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.about-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,
    rgba(184,145,74,.07) 0%, transparent 70%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: rgba(249,244,238,.04);
  padding: 3rem 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(239,230,216,.6);
}

.trust-section {
  padding-block: var(--section-gap);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.trust-item {
  padding: 2rem;
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.trust-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}
.trust-icon {
  flex-shrink: 0;
  font-size: 1.6rem;
}
.trust-item h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .4rem;
}
.trust-item p {
  font-size: .84rem;
  color: var(--stone);
  line-height: 1.7;
  font-weight: 300;
}

/* Journey timeline */
.journey-section {
  padding-block: var(--section-gap);
  background: var(--cream-dark);
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: .3rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-dark);
  box-shadow: 0 0 0 2px var(--gold);
  transform: translateX(-5px);
}
.timeline-year {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.timeline-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .35rem;
}
.timeline-desc {
  font-size: .88rem;
  color: var(--stone);
  line-height: 1.7;
  font-weight: 300;
}

/* ────────────────────────────────────────────
   PROJECTS PAGE
──────────────────────────────────────────── */
.projects-page {
  padding-block: var(--section-gap);
}

.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 5rem;
  border-bottom: 1px solid var(--parchment);
}
.project-showcase:last-child { border-bottom: none; }
.project-showcase.reverse { direction: rtl; }
.project-showcase.reverse > * { direction: ltr; }

.showcase-img {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.showcase-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(28,26,24,.8) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.showcase-loc {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.showcase-content {}
.showcase-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: -.5rem;
}
.showcase-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .75rem;
  margin-top: .25rem;
}
.showcase-desc {
  font-size: .92rem;
  color: var(--stone);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.amenities-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: var(--stone);
  font-weight: 400;
}
.amenity-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(184,145,74,.12);
  border: 1px solid rgba(184,145,74,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: .6rem;
}

/* ────────────────────────────────────────────
   SERVICES PAGE
──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(184,145,74,.12), rgba(184,145,74,.05));
  border: 1px solid rgba(184,145,74,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .7rem;
}
.service-card p {
  font-size: .88rem;
  color: var(--stone);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.service-benefits {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.service-benefit {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  color: var(--mist);
}
.service-benefit::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Process steps */
.process-section {
  padding-block: var(--section-gap);
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%,
    rgba(184,145,74,.06) 0%, transparent 70%);
}
.process-steps {
  position: relative;
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
  padding-inline: 1rem;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 0;
  width: 50%;
  height: 1px;
  background: rgba(184,145,74,.3);
}
.process-step:last-child::after { display: none; }
.process-step::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 50%;
  height: 1px;
  background: rgba(184,145,74,.3);
}
.process-step:first-child::before { display: none; }

.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(184,145,74,.15);
  border: 2px solid rgba(184,145,74,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .4rem;
}
.process-step p {
  font-size: .78rem;
  color: rgba(239,230,216,.55);
  line-height: 1.6;
  font-weight: 300;
}

/* ────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────── */
.contact-section {
  padding-block: var(--section-gap);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-item h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: .92rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .4rem;
}
.contact-form-wrap p {
  font-size: .88rem;
  color: var(--stone);
  margin-bottom: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .85rem 1rem;
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--ff-body);
  font-size: .92rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--forest);
  font-family: var(--ff-display);
  font-size: 1.2rem;
}
.form-success.show { display: block; }

/* Map placeholder */
.map-section {
  padding-block: var(--section-gap);
  background: var(--cream-dark);
}
.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed rgba(184,145,74,.3);
  margin-top: 2rem;
  position: relative;
}
.map-placeholder iframe {
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}
.map-overlay-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(249,244,238,.9);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

/* FAQ */
.faq-section {
  padding-block: var(--section-gap);
}
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--parchment);
  margin-bottom: .6rem;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding var(--transition);
  padding-inline: 1.5rem;
}
.faq-answer p {
  font-size: .9rem;
  color: var(--stone);
  line-height: 1.8;
  padding-bottom: 1.3rem;
  font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ────────────────────────────────────────────
   SHARED PAGE ELEMENTS
──────────────────────────────────────────── */
.spacer { height: var(--nav-h); }

/* Section decorative line before label */
.section-label-wrap {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.section-label-wrap .label-line {
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: .12s; }
.fade-in.delay-2 { transition-delay: .24s; }
.fade-in.delay-3 { transition-delay: .36s; }
.fade-in.delay-4 { transition-delay: .48s; }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-right { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
  .about-intro-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .project-showcase { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    position: static;
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }
  .hero-stat { flex: 1; min-width: 100px; }

  .about-intro-grid,
  .project-showcase,
  .contact-grid,
  .why-inner,
  .mvv-grid,
  .trust-grid { grid-template-columns: 1fr; }

  .project-showcase.reverse { direction: ltr; }

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

  .process-steps { gap: .5rem; }
  .process-step { min-width: 140px; }

  .hero-btns { flex-direction: column; }
  .cta-btns  { flex-direction: column; align-items: center; }

  .about-img-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-img-collage .img-a { height: 240px; }
  .about-img-collage .img-b,
  .about-img-collage .img-c { display: none; }

  .showcase-img { height: 300px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.8rem; }
  .section-header { flex-direction: column; align-items: flex-start; }
}
