/* ============================================
   Inspired Custom Homes - Main Stylesheet
   ============================================ */

:root {
  --blue:       #1565C0;
  --blue-dark:  #0D47A1;
  --blue-mid:   #1976D2;
  --green:      #6AB04C;
  --green-dark: #4E8A35;
  --green-light:#8BC34A;
  --yellow:     #F5C842;
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --cream:      #F2F5F0;
  --charcoal:   #1A1F2B;
  --mid:        #3D4452;
  --muted:      #6B7280;
  --border:     rgba(21,101,192,0.12);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--charcoal); overflow-x: hidden; }

/* ── SKIP-TO-CONTENT LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 300;
  font-size: 0.85rem;
}
.skip-link:focus { top: 0.5rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 3.5rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--blue);
  box-shadow: 0 2px 24px rgba(21,101,192,0.10);
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled { padding: 0.5rem 3.5rem; box-shadow: 0 4px 30px rgba(21,101,192,0.18); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 64px; width: auto; transition: height 0.3s; }
nav.scrolled .nav-logo img { height: 50px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--blue); border-bottom-color: var(--green); }
.nav-cta {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--blue); padding: 0.7rem 1.5rem;
  border: none; cursor: pointer; text-decoration: none; border-radius: 2px;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--green-dark); }

/* Hamburger button - visible only on mobile */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s;
}
/* When menu is open */
nav.nav-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
}
nav.nav-open + .nav-overlay { display: block; }

/* ── CINEMATIC HERO BANNER ── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 520px;
  margin-top: 86px; /* nav height */
  overflow: hidden;
  background: var(--charcoal);
}

/* Slideshow of 5 home images */
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  z-index: 0;
  overflow: hidden;
  transition: opacity 1.2s ease;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.0);
  transition: transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide.active img {
  transform: scale(1.06);
}
.hero-slide.exiting {
  opacity: 0;
  z-index: 0;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  pointer-events: none;
}

/* Dark gradient overlays */
.hero-banner::before {
  content: '';
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(
    to bottom,
    rgba(10,20,50,0.28) 0%,
    rgba(10,20,50,0.15) 40%,
    rgba(10,20,50,0.55) 75%,
    rgba(10,20,50,0.85) 100%
  );
}
.hero-banner::after {
  content: '';
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(90deg, rgba(13,71,161,0.35) 0%, transparent 60%);
}

/* Hero content overlay */
.hero-content {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  padding: 0 4rem 4rem 4rem;
  box-sizing: border-box;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--green-light);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.9s ease forwards 0.3s;
}
.hero-eyebrow::before {
  content: ''; width: 2.5rem; height: 2px; background: var(--green);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 5rem);
  font-weight: 600; line-height: 1.1;
  color: var(--white); max-width: 18ch;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards 0.55s;
  word-break: normal; overflow-wrap: break-word;
}
.hero-headline em { font-style: italic; color: var(--green-light); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.82);
  max-width: 52ch; margin-bottom: 2.5rem; font-weight: 400;
  opacity: 0; transform: translateY(24px);
  animation: heroFadeUp 1s ease forwards 0.8s;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.9s ease forwards 1.05s;
}
.btn-primary {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--blue); padding: 1rem 2.25rem;
  border: none; cursor: pointer; text-decoration: none; border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(21,101,192,0.4);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(21,101,192,0.5); }
.btn-ghost-white {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); padding: 1rem 2.25rem;
  border: 2px solid rgba(255,255,255,0.6); cursor: pointer; text-decoration: none;
  border-radius: 2px; transition: all 0.25s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-ghost {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); padding: 1rem 2rem; border: 2px solid var(--blue);
  cursor: pointer; text-decoration: none; border-radius: 2px; transition: all 0.25s;
}
.btn-ghost:hover { background: var(--blue); color: white; }
.btn-green {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: white; background: var(--green); padding: 1rem 2rem;
  border: none; cursor: pointer; text-decoration: none; border-radius: 2px; transition: background 0.25s;
}
.btn-green:hover { background: var(--green-dark); }

/* Hero stats bar */
.hero-stats-bar {
  display: flex; gap: 0; margin-top: 3rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.9s ease forwards 1.3s;
}
.hero-stat {
  padding: 1rem 2rem 0 0; margin-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 600; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--green-light); }
.hero-stat-label {
  font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 0.3rem; font-weight: 600;
}

/* Slide indicators */
.slide-dots {
  position: absolute; bottom: 2.5rem; right: 5rem; z-index: 30;
  display: flex; gap: 0.5rem; align-items: center;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none; padding: 0;
}
.slide-dot.active { background: var(--green-light); transform: scale(1.35); }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 30; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  opacity: 0; animation: heroFadeUp 1s ease forwards 1.8s;
}
.scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600;
}
.scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--green-light);
  animation: scrollDrop 1.6s ease infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 200%; }
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── SERVICES STRIP (marquee) ── */
.strip {
  background: var(--blue-dark); padding: 1.1rem 0;
  overflow: hidden; position: relative;
}
.strip-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.strip:hover .strip-track { animation-play-state: paused; }
.strip-item {
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  padding: 0 2rem; white-space: nowrap; display: flex; align-items: center; gap: 2rem;
}
.strip-sep { color: var(--green-light); font-size: 1rem; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION SHARED ── */
section { padding: 6rem 4.5rem; }
.section-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 0.6rem; font-weight: 700;
}
.section-eyebrow::before { content: ''; width: 1.5rem; height: 2px; background: var(--green); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 600; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-body {
  font-size: 0.975rem; line-height: 1.85; color: var(--mid);
  font-weight: 400; max-width: 54ch;
}

/* ── SCROLL ANIMATIONS ── */
/* Base hidden state */
.reveal {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.from-bottom { transform: translateY(48px); }
.reveal.from-left   { transform: translateX(-56px); }
.reveal.from-right  { transform: translateX(56px); }
.reveal.from-scale  { transform: scale(0.92); }
.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
/* Stagger children */
.stagger-children > * {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.stagger-children.visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(7)  { opacity:1; transform:none; transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(8)  { opacity:1; transform:none; transition-delay: 0.65s; }
.stagger-children.visible > *:nth-child(9)  { opacity:1; transform:none; transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(10) { opacity:1; transform:none; transition-delay: 0.75s; }
.stagger-children.visible > *:nth-child(11) { opacity:1; transform:none; transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(12) { opacity:1; transform:none; transition-delay: 0.85s; }
.stagger-children.visible > *:nth-child(13) { opacity:1; transform:none; transition-delay: 0.9s; }
.stagger-children.visible > *:nth-child(14) { opacity:1; transform:none; transition-delay: 0.95s; }
.stagger-children.visible > *:nth-child(15) { opacity:1; transform:none; transition-delay: 1s; }
.stagger-children.visible > *:nth-child(n+16) { opacity:1; transform:none; transition-delay: 1s; }

/* Count-up numbers */
.count-up { display: inline-block; }

/* Parallax image */
.parallax-img {
  will-change: transform;
}

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  background: var(--cream);
}
.about-images { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 100%; height: 82%;
  overflow: hidden;
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.about-img-sec {
  position: absolute; bottom: 0; right: 0; width: 50%; height: 32%;
  border: 6px solid var(--cream); overflow: hidden;
}
.about-img-sec img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block;
}
.about-ribbon {
  position: absolute; bottom: 0; left: 44%;
  transform: translateX(-100%);
  background: var(--blue); padding: 1rem 1.25rem; text-align: center;
  z-index: 2;
}
.ribbon-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; color: white; line-height: 1; }
.ribbon-txt { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); font-weight: 600; }
.about-list { list-style: none; margin: 1.75rem 0; display: flex; flex-direction: column; gap: 0.65rem; }
.about-list li { font-size: 0.88rem; color: var(--mid); display: flex; align-items: center; gap: 0.6rem; font-weight: 400; }
.about-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.owner-block {
  display: flex; align-items: center; gap: 1rem; margin-top: 2rem;
  padding: 1.25rem; background: white; border-left: 3px solid var(--blue);
}
.owner-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; color: white;
  font-weight: 600; flex-shrink: 0;
}
.owner-name { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }
.owner-title { font-size: 0.72rem; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.owner-years { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.service-card {
  background: var(--white); padding: 2.25rem 1.75rem;
  cursor: default; position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--off-white); }
.service-num {
  font-size: 0.65rem; color: rgba(21,101,192,0.25); font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.service-num::after { content: ''; flex: 1; max-width: 2rem; height: 1px; background: rgba(21,101,192,0.15); }
.service-title {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.65rem; line-height: 1.25;
}
.service-body { font-size: 0.85rem; line-height: 1.8; color: var(--mid); font-weight: 400; }

/* ── GALLERY ── */
.gallery { background: var(--cream); }
.gallery-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 0.5rem; flex-wrap: wrap; gap: 1rem; }
.vr-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue); color: white; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 1rem; font-weight: 600; border-radius: 2px; margin-top: 0.5rem;
}
.gallery-tabs { display: flex; gap: 0; margin: 2rem 0 1.5rem; border-bottom: 2px solid var(--border); }
.gallery-tab {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem 1.5rem; cursor: pointer; color: var(--muted);
  border: none; background: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.2s;
}
.gallery-tab.active, .gallery-tab:hover { color: var(--blue); border-bottom-color: var(--blue); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; gap: 0.75rem;
}
.gal-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,71,161,0.72) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.gal-item:hover::after { opacity: 1; }
.gal-item:hover img { transform: scale(1.07); }
.gal-label {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: white; opacity: 0; z-index: 2; transition: opacity 0.3s; font-weight: 600;
}
.gal-item:hover .gal-label { opacity: 1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gal-item.wide { grid-column: span 2; }
.gal-item.tall { grid-row: span 2; }
.gal-hidden {
  width: 0 !important; height: 0 !important;
  opacity: 0 !important; overflow: hidden !important;
  padding: 0 !important; margin: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
}
.gallery-grid.collapsed .gal-item:not(.gal-initial) { display: none !important; }
.gallery-see-more { display: flex; justify-content: center; margin-top: 2.25rem; }
.gallery-see-more.is-hidden { display: none; }

/* ── PROCESS ── */
.process { background: var(--blue-dark); }
.process .section-eyebrow { color: var(--green-light); }
.process .section-eyebrow::before { background: var(--green-light); }
.process .section-title { color: white; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.process-step { padding: 2rem 1.75rem; border-right: 1px solid rgba(255,255,255,0.08); position: relative; }
.process-step:last-child { border-right: none; }
.ps-connector {
  display: none;
  position: absolute; top: 3.5rem; right: -1.5rem; z-index: 2;
  width: 3rem; height: 1px; background: var(--green-light); opacity: 0.4;
}
.ps-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 600; color: rgba(255,255,255,0.07); line-height: 1; margin-bottom: -0.5rem; display: block; }
.ps-step-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(106,176,76,0.2); border: 1.5px solid var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.ps-step-icon svg { width: 18px; height: 18px; stroke: var(--green-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ps-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 0.65rem; }
.ps-body { font-size: 0.83rem; line-height: 1.75; color: rgba(255,255,255,0.5); font-weight: 400; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  padding: 2rem; background: var(--off-white);
  border-top: 3px solid var(--blue);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(21,101,192,0.1); }
.testi-stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testi-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; line-height: 1.7; color: var(--charcoal); margin-bottom: 1.25rem; }
.testi-author { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); font-weight: 600; }

/* ── LEAD FORM ── */
.lead-section { display: grid; grid-template-columns: 55% 45%; min-height: 480px; padding: 0; }
.lead-image {
  position: relative; overflow: hidden;
}
.lead-image > img.lead-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 65% 25%;
}
.lead-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,71,161,0.5) 0%, rgba(10,30,60,0.35) 100%);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-end; padding: 3rem;
}
.lead-trust { display: flex; flex-direction: column; gap: 0.85rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; color: white; }
.trust-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.trust-text { font-size: 0.87rem; font-weight: 500; }
.lead-form-panel { padding: 4.5rem 3.5rem; background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.lead-form { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  font-family: 'Montserrat', sans-serif; font-size: 0.875rem;
  color: var(--charcoal); background: var(--white);
  border: 1.5px solid rgba(21,101,192,0.2); padding: 0.8rem 0.9rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; border-radius: 2px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.form-field textarea { resize: vertical; min-height: 85px; }
.form-submit {
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: white;
  background: var(--blue); border: none; padding: 1rem 2rem;
  cursor: pointer; margin-top: 0.25rem; transition: background 0.25s, transform 0.2s;
  align-self: flex-start; border-radius: 2px;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-disclaimer { font-size: 0.7rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 4rem 4.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 72px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.4); max-width: 28ch; }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-contact-item { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; }
.footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--green-light); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(106,176,76,0.15); color: var(--green-light);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; font-weight: 600; margin-top: 0.75rem;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.75rem; font-size: 0.72rem; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0.75rem 1.5rem; }
  nav.scrolled { padding: 0.5rem 1.5rem; }
  .nav-hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    flex-direction: column;
    background: white;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 205;
  }
  nav.nav-open .nav-links { right: 0; }
  .nav-cta { width: 100%; text-align: center; margin-top: 1rem; }
  .hero-content { padding: 0 1.5rem 3rem 1.5rem; }
  .hero-banner { margin-top: 80px; height: 80vh; }
  .about { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
  .about-images { height: 380px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .lead-section { grid-template-columns: 1fr; }
  .lead-image { min-height: 280px; }
  .lead-form-panel { padding: 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 4.5rem 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal-item.wide { grid-column: span 2; }
  .gal-item.tall { grid-row: auto; }
}
@media (max-width: 640px) {
  .hero-headline { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.wide { grid-column: span 1; }
  .slide-dots { right: 1.5rem; }
  .hero-content { padding: 0 1.5rem 3.5rem; }
}
