/* ============================================
   INFINITY KITCHEN & BATH — LIGHT THEME
   White & Forest Green Brand Palette
   ============================================ */

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

/* ---- Variables ---- */
:root {
  /* Brand greens */
  --green-900: #071A10;
  --green-800: #0D2A1A;
  --green-700: #133624;
  --green-600: #1D5535;
  --green-500: #2B7A42;   /* PRIMARY BRAND */
  --green-400: #389E57;
  --green-300: #5BBD76;
  --green-200: #A2D9B1;
  --green-100: #D1EDD9;
  --green-50:  #EAF5ED;
  --green-25:  #F4FAF6;

  /* Semantic aliases (used by existing class names) */
  --dark:       #071A10;
  --dark-2:     #0D2A1A;
  --dark-3:     #133624;
  --dark-4:     #1D5535;
  --gold:       #2B7A42;
  --gold-light: #389E57;
  --gold-dark:  #1D5535;

  --white:  #FFFFFF;
  --cream:  #F4FAF6;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;

  --border-dark:  rgba(255,255,255,0.09);
  --border-light: rgba(43,122,66,0.14);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1280px;
  --nav-height: 118px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --shadow-sm: 0 2px 12px rgba(43,122,66,0.07);
  --shadow:    0 4px 24px rgba(43,122,66,0.1);
  --shadow-lg: 0 8px 48px rgba(43,122,66,0.15);
  --shadow-xl: 0 16px 64px rgba(43,122,66,0.18);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ---- Base ---- */
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--green-800);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* Light alternating sections */
.section-dark {
  background: var(--green-25);
  color: var(--gray-700);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--green-800);
}
.section-dark-2 {
  background: var(--green-50);
  color: var(--gray-700);
}
.section-dark-2 h1, .section-dark-2 h2, .section-dark-2 h3, .section-dark-2 h4 {
  color: var(--green-800);
}

/* Forest green "punch" sections */
.section-forest {
  background: var(--green-700);
  color: var(--white);
}
.section-forest h1, .section-forest h2, .section-forest h3, .section-forest h4 {
  color: var(--white);
}

.section-cream { background: var(--cream); }
.section-gray  { background: var(--gray-50); }
.section-gray:not(.section) { padding: 5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.text-center { text-align: center; }
.text-gold    { color: var(--green-500); }
.text-muted   { color: var(--gray-500); }
.text-white   { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 1rem;
}

.section-header { margin-bottom: 3.5rem; }
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0.75rem auto 0;
}
.section-header.left p { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  border-radius: 5px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--green-500);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,122,66,0.35);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 1.5px solid var(--green-500);
  color: var(--green-600);
}
.btn-outline-dark:hover {
  background: var(--green-500);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--green-700);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#navbar.transparent {
  background: transparent;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(43,122,66,0.12);
}

/* Default (scrolled / inner pages) — dark text */
.nav-logo { color: var(--green-800); }
.nav-links a { color: var(--gray-700); }
.nav-links a:hover, .nav-links a.active { color: var(--green-500); }
.nav-phone { color: var(--gray-700); }

/* Transparent (over hero) — white text */
#navbar.transparent .nav-logo { color: var(--white); }
#navbar.transparent .nav-links a { color: rgba(255,255,255,0.88); }
#navbar.transparent .nav-links a:hover { color: var(--white); }
#navbar.transparent .nav-phone { color: rgba(255,255,255,0.88); }
#navbar.transparent .hamburger span { background: var(--white); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  transition: var(--transition);
}
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--green-500);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-serif);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text span:first-child {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav-logo-text span:last-child {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-500);
}
#navbar.transparent .nav-logo-text span:last-child { color: var(--green-300); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: var(--transition);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > a svg { width: 14px; height: 14px; transition: transform 0.25s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: var(--green-25);
  color: var(--green-600);
}

/* Announce bar inside nav */
.nav-announce {
  background: var(--green-900);
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 38px;
  gap: 1rem;
}
.nav-announce .na-left { display: flex; align-items: center; gap: 1.25rem; }
.nav-announce .na-left span { display: flex; align-items: center; gap: 0.35rem; }
.nav-announce .na-left span svg { color: var(--green-300); flex-shrink: 0; }
.nav-announce a { color: rgba(255,255,255,0.88); display: flex; align-items: center; gap: 0.4rem; text-decoration: none; }
.nav-announce a:hover { color: #fff; }
.na-sep { color: rgba(255,255,255,0.2); }
@media (max-width: 680px) { .nav-announce .na-left { display: none; } .nav-announce { justify-content: center; } }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 660px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
  z-index: 100;
}
.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-col {
  flex: 1;
  min-width: 240px;
}
.mega-col:first-child {
  border-right: 1px solid var(--green-50);
  padding-right: 1rem;
  margin-right: 1rem;
}
.mega-col-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0.15rem 0.5rem 0.75rem;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none;
}
.mega-item:hover { background: var(--green-25); }
.mega-thumb {
  width: 58px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.mega-item-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mega-item-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.1rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.nav-phone:hover { color: var(--green-500) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--gray-700); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem;
  z-index: 999;
  border-top: 2px solid var(--green-100);
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(43,122,66,0.12);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--gray-700);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--green-100);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--green-500); padding-left: 0.5rem; }
.mobile-nav .mobile-sub { padding-left: 1rem; }
.mobile-nav .mobile-sub a { font-size: 0.9rem; color: var(--gray-500); }
.mobile-nav-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,26,16,0.80) 0%,
    rgba(7,26,16,0.55) 55%,
    rgba(7,26,16,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 4rem) 1.5rem 4rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--green-300); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.hero-stat { color: var(--white); }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-300);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  background: var(--green-700);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,158,87,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(56,158,87,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.breadcrumb a:hover { color: var(--green-300); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green-700);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-item svg { color: var(--green-500); flex-shrink: 0; }

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-200);
}
.service-card-img { aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--green-800); }
.service-card-body p { font-size: 0.9rem; color: var(--gray-500); flex: 1; margin-bottom: 1.25rem; }
.service-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-500);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}
.service-card-link:hover { gap: 0.6rem; color: var(--green-400); }
a.service-card { text-decoration: none; color: inherit; }

/* Simplified service cards — h4/p direct children, no .service-card-body wrapper */
.service-card:not(:has(.service-card-body)):not(:has(.service-card-img)) {
  padding: 1.5rem;
}
.service-card:not(:has(.service-card-body)):not(:has(.service-card-img)) h4,
.service-card:not(:has(.service-card-body)):not(:has(.service-card-img)) h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--green-800);
}
.service-card:not(:has(.service-card-body)):not(:has(.service-card-img)) p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}
a.service-card:not(:has(.service-card-body)):not(:has(.service-card-img))::after {
  content: 'Learn More \2192';
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-500);
  margin-top: 1rem;
}
a.service-card:not(:has(.service-card-body)):not(:has(.service-card-img)):hover::after {
  color: var(--green-400);
}

/* ---- Pillar process blocks ---- */
.pillar-process {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.pillar-block {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  text-align: right;
  padding-top: 0.125rem;
  user-select: none;
}
.pillar-block-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.75rem;
  font-family: var(--font-serif);
}
.pillar-block-content p { color: var(--gray-600); line-height: 1.85; font-size: 0.9375rem; }
.pillar-block-content p + p { margin-top: 0.7rem; }
@media (max-width: 600px) {
  .pillar-block { grid-template-columns: 1fr; gap: 0.5rem; }
  .pillar-num { font-size: 2.5rem; text-align: left; }
}

/* ---- Pillar FAQ ---- */
.pillar-faq { display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; }
.pillar-faq-item { border-bottom: 1px solid var(--border-light); padding: 1.75rem 0; }
.pillar-faq-item:first-child { border-top: 1px solid var(--border-light); }
.pillar-faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.7rem;
  font-family: var(--font-serif);
}
.pillar-faq-a { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.8; }

/* ---- Universal design / bullet list ---- */
.ud-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.9rem; }
.ud-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; }
.ud-list li::before { content: ''; display: block; width: 9px; height: 9px; min-width: 9px; border-radius: 50%; background: var(--gold); margin-top: 6px; }

/* ---- Feature Block ---- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}
.feature-block-img { position: relative; overflow: hidden; }
.feature-block-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-block-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-block-content.dark {
  background: var(--green-700);
  color: var(--white);
}
.feature-block-content.dark h2 { color: var(--white); }
.feature-block-content.dark p { color: rgba(255,255,255,0.78); }

/* ---- Check List ---- */
.check-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.check-list li svg { color: var(--green-500); flex-shrink: 0; margin-top: 3px; }
.check-list.light li { color: rgba(255,255,255,0.85); }

/* ---- Stats Row ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  background: var(--green-600);
}
.stat-block {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
  transform: translateY(-3px);
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { color: var(--green-500); width: 16px; height: 16px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--green-800); font-size: 0.9rem; }
.testimonial-source { font-size: 0.78rem; color: var(--gray-400); }

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; position: relative; cursor: pointer; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
/* Masonry gallery — images at natural aspect ratio, no cropping */
.gallery-masonry { columns: 4; column-gap: 0.75rem; }
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  aspect-ratio: auto;
}
.gallery-masonry .gallery-item img { height: auto; }
.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(7,26,16,0.75), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }
@media (max-width: 1100px) { .gallery-masonry { columns: 3; } }
@media (max-width: 700px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,26,16,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(7,26,16,0.45); }
.gallery-item-overlay svg { opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--green-200);
  color: var(--green-600);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--green-600);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.cta-phone-link {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4);
}
.cta-phone-link:hover { color: var(--green-200); }

.btn-cta-white {
  background: var(--white);
  color: var(--green-600);
}
.btn-cta-white:hover {
  background: var(--green-25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ---- Contact Form ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-500);
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.25rem;
}
.contact-info-text a, .contact-info-text p {
  font-size: 0.95rem;
  color: var(--green-800);
  margin: 0;
  transition: var(--transition);
  font-weight: 500;
}
.contact-info-text a:hover { color: var(--green-500); }

.form-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--green-25);
  border: 1.5px solid var(--green-100);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--green-900);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(43,122,66,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--white); color: var(--green-900); }

/* ---- Service Areas ---- */
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.area-tag {
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--green-200);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--green-700);
  font-weight: 600;
  transition: var(--transition);
}
.area-tag:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-200), var(--green-400), var(--green-200), transparent);
}
.process-step { text-align: center; position: relative; padding-top: 0.5rem; }
.step-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--green-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-500);
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
}
.process-step h4 { color: var(--green-800); margin-bottom: 0.5rem; font-size: 1rem; }
.process-step p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* ---- Footer ---- */
footer {
  background: var(--white);
  border-top: 3px solid var(--green-500);
  padding-top: 4rem;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.6rem;
  border: 1.5px solid var(--green-500);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
  transition: var(--transition);
  background: var(--white);
}
.area-pill:hover { background: var(--green-500); color: var(--white); }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--green-800);
  font-family: var(--font-serif);
}
.footer-logo img { filter: none !important; }
.footer-logo .nav-logo-text span:last-child { color: var(--green-500); }
.footer-about { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray-600);
  background: var(--green-25);
  border: 1px solid var(--green-100);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
}
.footer-badge svg { color: var(--green-500); }
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--gray-500); transition: var(--transition); }
.footer-col ul a:hover { color: var(--green-500); padding-left: 0.25rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; color: var(--gray-500);
  margin-bottom: 0.85rem;
}
.footer-contact-item svg { color: var(--green-500); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--gray-500); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--green-500); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1rem; font-size: 0.8rem; color: var(--gray-400);
}
.footer-bottom a { color: var(--gray-400); transition: var(--transition); }
.footer-bottom a:hover { color: var(--green-500); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ---- Values / About Cards ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.value-card:hover { border-color: var(--green-400); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 52px; height: 52px;
  background: var(--green-50);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-500);
  margin-bottom: 1.25rem;
  border: 1px solid var(--green-100);
}
.value-card h4 { color: var(--green-800); margin-bottom: 0.5rem; font-size: 1.05rem; }
.value-card p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* ---- Blog ---- */
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card-link:hover .blog-card { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.blog-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-500); margin-bottom: 0.5rem; display: block;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; transition: var(--transition); color: var(--green-800); }
.blog-card:hover .blog-card-body h3 { color: var(--green-500); }
.blog-card-body p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* ---- Dividers ---- */
.gold-divider {
  width: 48px; height: 3px;
  background: linear-gradient(to right, var(--green-500), var(--green-300));
  border-radius: 2px;
  margin: 1.25rem 0;
}
.gold-divider.center { margin: 1.25rem auto; }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s var(--ease); }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7,26,16,0.92);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 94vw; max-height: 92vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  transition: var(--transition); font-size: 1.3rem;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ---- Utilities ---- */
.mt-0{margin-top:0}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.hidden{display:none!important}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--green-25); }
::-webkit-scrollbar-thumb { background: var(--green-200); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-400); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .feature-block-content { padding: 3rem; }
}
@media (max-width: 768px) {
  :root { --nav-height: 108px; }
  .nav-inner { height: 70px; }
  .nav-logo-img { height: 38px; }
  .section { padding: 4rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .feature-block { grid-template-columns: 1fr; }
  .feature-block-img { min-height: 280px; }
  .feature-block-content { padding: 2.5rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: auto; }
  .hero-stats { gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   ELEVATED HOMEPAGE COMPONENTS
   ============================================ */

/* ---- Nav logo image ---- */
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Force nav to be white/solid on split-hero pages */
.nav-solid #navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 16px rgba(43,122,66,0.1) !important;
}
.nav-solid #navbar .nav-logo { color: var(--green-800) !important; }
.nav-solid #navbar .nav-links a { color: var(--gray-700) !important; }
.nav-solid #navbar .nav-links a:hover { color: var(--green-500) !important; }
.nav-solid #navbar .nav-phone { color: var(--gray-700) !important; }
.nav-solid #navbar .hamburger span { background: var(--gray-700) !important; }

/* ---- Split Hero ---- */
.hero-split {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 100vh;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-split-left {
  background: var(--white);
  padding: 5rem 4rem 4rem max(4rem, 5vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-split-left::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--green-500), transparent);
}
.hero-split-right {
  position: relative;
  overflow: hidden;
}
.hero-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-split-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 1.5rem;
}
.hero-split-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--green-500);
  flex-shrink: 0;
}
.hero-split-left h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 1.25rem;
}
.hero-split-left h1 em {
  color: var(--green-500);
  font-style: normal;
}
.hero-split-desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 400px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.hero-split-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--green-100);
}
.hero-split-stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-600);
  line-height: 1;
}
.hero-split-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 0.2rem;
}
.hero-split-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-split-badge-stars { color: var(--green-500); font-size: 0.85rem; }
.hero-split-badge-text strong { display: block; font-size: 0.85rem; color: var(--green-800); }
.hero-split-badge-text span { font-size: 0.72rem; color: var(--gray-400); }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-right { height: 55vw; min-height: 320px; }
  .hero-split-left { padding: 3rem 1.5rem; }
  .hero-split-left::after { display: none; }
  .hero-split-badge { bottom: 1rem; right: 1rem; }
}
@media (max-width: 480px) {
  .hero-split-right { height: 70vw; }
  .hero-split-stats { flex-direction: column; gap: 1rem; }
}

/* ---- Trust Bar Elevated ---- */
.trust-bar-elevated {
  background: var(--white);
  border-bottom: 1px solid var(--green-100);
  padding: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(43,122,66,0.05);
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 2.5rem;
  border-right: 1px solid var(--green-100);
  flex: 1;
  min-width: 180px;
  max-width: 300px;
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-icon {
  width: 40px; height: 40px;
  background: var(--green-50);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-500);
  flex-shrink: 0;
  border: 1px solid var(--green-100);
}
.trust-bar-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.1rem;
}
.trust-bar-text span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ---- Featured Projects Mosaic ---- */
.featured-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: center;
}
.project-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.75rem;
}
.mosaic-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.mosaic-item.tall {
  grid-row: span 2;
}
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(7,26,16,0.78) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .featured-section { grid-template-columns: 1fr; gap: 2rem; }
  .project-mosaic { grid-template-rows: 200px 200px; }
}
@media (max-width: 480px) {
  .project-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mosaic-item { aspect-ratio: 4/3; height: auto; }
  .mosaic-item.tall { grid-row: auto; }
}

/* ---- Why Choose — elevated ---- */
.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  border-top: 4px solid var(--green-500);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--green-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-500);
  border: 2px solid var(--green-100);
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--green-800); }
.why-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* ---- Before / After ---- */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: 12px;
  overflow: hidden;
}
.ba-item { position: relative; aspect-ratio: 4/3; }
.ba-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--white);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.ba-label.after { background: var(--green-500); color: var(--white); }

/* ---- Service Areas Checklist ---- */
.areas-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin: 1.5rem 0;
}
.area-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}
.area-check-item svg { color: var(--green-500); flex-shrink: 0; }

/* ---- Bottom Photo CTA ---- */
.bottom-cta {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.bottom-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bottom-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,26,16,0.72);
}
.bottom-cta .container {
  position: relative;
  z-index: 1;
}
.bottom-cta h2 { color: var(--white); }
.bottom-cta p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.bottom-cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.bottom-cta-meta span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.bottom-cta-meta span svg { color: var(--green-400); }

/* ---- Google Rating badge ---- */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.google-badge-stars { display: flex; gap: 2px; }
.google-badge-stars svg { color: #FBBC04; width: 14px; height: 14px; }
.google-badge-text { font-size: 0.8rem; color: var(--gray-600); }
.google-badge-text strong { color: var(--green-700); }

/* ---- Financing Banner ---- */
.financing-strip {
  background: var(--green-600);
  padding: 1.5rem 0;
}
.financing-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.financing-strip-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.financing-strip-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.financing-strip-text strong { display: block; font-size: 1.05rem; font-weight: 700; }
.financing-strip-text span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ---- Testimonials elevated ---- */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card-elevated {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
}
.testimonial-card-elevated:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.testimonial-quote-icon { color: var(--green-200); }
.testimonial-body-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-600);
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--green-50);
}
.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-800);
}
.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.testimonial-rating { display: flex; gap: 2px; }
.testimonial-rating svg { color: var(--green-500); width: 13px; height: 13px; }

@media (max-width: 900px) {
  .testimonials-wrap { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .ba-item { aspect-ratio: 16/9; }
  .financing-strip-inner { justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  .trust-bar-item { border-right: none; border-bottom: 1px solid var(--green-100); }
  .areas-checklist { grid-template-columns: 1fr; }
}
