:root {
  --green-dark: #1C3A2A;
  --green-mid: #2D5A3D;
  --green-light: #4A8C5C;
  --green-pale: #E8F5EC;
  --gold: #C8962A;
  --gold-light: #F0C060;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --muted: #6B7280;
  --border: #E5E7EB;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 58, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: white;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* ── NAV DROPDOWNS ── */
.nav-links li { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 210px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.40);
  z-index: 300;
  animation: dropFade 0.18s ease both;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px; height: 12px;
  background: var(--green-dark);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
}
/* invisible bridge across the 14px gap so the dropdown doesn't vanish when the cursor moves down to it */
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -16px;
  height: 16px;
}
.nav-links li:hover .nav-dropdown,
.nav-links li:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  white-space: nowrap;
  font-weight: 400;
}
.nav-dropdown a:hover {
  background: rgba(255,255,255,0.07);
  color: white !important;
  padding-left: 22px;
}
.nav-dropdown .drop-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold) !important;
  padding: 6px 18px 4px;
  pointer-events: none;
}
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.55; }
@keyframes dropFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── STICKY MOBILE CALL BAR ── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 250;
  background: var(--gold);
  padding: 13px 20px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-call a {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

/* ── HERO (homepage) ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '🌿';
  position: absolute;
  right: -80px;
  bottom: -80px;
  font-size: 400px;
  opacity: 0.04;
  pointer-events: none;
  transform: rotate(-20deg);
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,42,0.2);
  border: 1px solid rgba(200,150,42,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-badge::before { content: '✓'; font-weight: 700; }

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 68px);
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,42,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
}

.trust-item::before {
  content: '✓';
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--gold);
  padding: 14px 40px;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.strip-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  padding: 0 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.strip-item::after { content: '✦'; opacity: 0.5; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 88px 40px; }

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green-light);
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--green-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ── SERVICES GRID ── */
.services-section { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.service-card:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,58,42,0.1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.service-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.service-link:hover { color: var(--green-dark); }

/* ── WHY CHOOSE ── */
.why-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,150,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .section-tag { color: var(--gold-light); }
.why-section .section-tag::before { background: var(--gold-light); }
.why-section h2 { color: white; }
.why-section .section-lead { color: rgba(255,255,255,0.6); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  transition: background 0.2s;
}

.why-card:hover { background: rgba(255,255,255,0.08); }

.why-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.why-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── QUOTE FORM ── */
.form-section { background: var(--cream); }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.form-info .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.form-info .contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
}

.contact-value:hover { color: var(--green-light); }

.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(28,58,42,0.06);
}

.form-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── AREAS ── */
.areas-section {
  background: var(--green-pale);
  text-align: center;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.area-pill {
  background: white;
  border: 1px solid rgba(28,58,42,0.15);
  color: var(--green-dark);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-block;
}

.area-pill:hover {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

/* ── FAQ ── */
.faq-section { background: white; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.faq-q {
  font-weight: 700;
  font-size: 15px;
  color: var(--green-dark);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.faq-q::before {
  content: 'Q';
  background: var(--green-dark);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 32px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner h2 { color: white; margin-bottom: 12px; }

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.cta-phone:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,150,42,0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.footer-logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-top: 2px;
}

.footer-mid {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.footer-right {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-align: right;
}

.footer-right a { color: var(--gold-light); text-decoration: none; }

/* ── FOOTER BOTTOM BAR (quick links + social) ── */
.footer-bottom {
  flex-basis: 100%;
  width: 100%;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; justify-content: center; gap: 20px; }
.footer-social a { color: var(--gold-light); text-decoration: none; font-size: 13px; font-weight: 600; }
.footer-social a:hover { color: #fff; }

/* ── INNER HERO (area / service / blog sub-pages) ── */
.inner-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  padding: 120px 40px 72px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.inner-hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}

.inner-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.inner-hero h1 em { font-style: italic; color: var(--gold-light); }

.inner-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold-light); }

/* ── NEARBY AREAS ── */
.nearby-section { background: var(--green-pale); padding: 60px 40px; }
.nearby-section h2 { font-size: 28px; margin-bottom: 8px; }
.nearby-section .section-lead { margin-bottom: 24px; }
.nearby-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── BLOG GRID ── */
.blog-section { background: var(--cream); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: all 0.25s;
}

.blog-card:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,58,42,0.1);
}

.blog-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-light);
}

/* ── PROSE (blog post body) ── */
.prose-section {
  background: white;
  padding: 56px 20px 80px;
}

.prose-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.prose-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.prose-main h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--green-dark);
  margin: 40px 0 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.prose-main h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green-dark);
  margin: 28px 0 10px;
}

.prose-main p {
  font-size: 16px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 18px;
}

.prose-main ul, .prose-main ol {
  margin: 0 0 20px 22px;
}

.prose-main li {
  font-size: 15.5px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 7px;
}

.prose-main strong { color: var(--green-dark); font-weight: 700; }
.prose-main a { color: var(--green-light); }
.prose-main a:hover { color: var(--green-dark); }
.prose-main hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* faq items inside prose */
.prose-main .faq-item { background: var(--green-pale); border-radius: 10px; padding: 18px 20px; }
.prose-main .faq-q { font-weight: 600; color: var(--green-dark); margin-bottom: 8px; font-size: 15px; }
.prose-main .faq-a { color: #374151; font-size: 15px; line-height: 1.7; }

/* ── INLINE CTA BOX ── */
.cta-box {
  background: var(--green-pale);
  border: 1px solid rgba(28,58,42,0.15);
  border-left: 4px solid var(--green-mid);
  border-radius: 10px;
  padding: 28px 28px 24px;
  margin: 32px 0;
}

.cta-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.cta-box p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

/* ── SIDEBAR ── */
.sidebar-card {
  background: var(--green-dark);
  border-radius: 14px;
  padding: 32px;
  position: sticky;
  top: 90px;
}

.sidebar-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}

.sidebar-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sidebar-card .btn-primary { width: 100%; justify-content: center; margin-bottom: 12px; }

.sidebar-links { margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--gold-light); }

/* ── SERVICE CHIPS ── */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.service-chip {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-block;
}

.service-chip:hover { background: var(--green-dark); color: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE MENU ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  z-index: 99;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .sticky-call { display: block; }
  body { padding-bottom: 56px; }
  .hero { padding: 100px 20px 60px; }
  h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  .services-strip { padding: 12px 20px; }
  .cta-banner { padding: 52px 20px; }
  .cta-phone { font-size: 18px; padding: 14px 28px; }
  .inner-hero { padding: 100px 20px 52px; }
  .blog-grid { grid-template-columns: 1fr; }
  .prose-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .nearby-section { padding: 48px 20px; }
  .answer-wrap { padding: 20px 20px 0; }
  .stats-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ── ANSWER BLOCK ── */
.answer-wrap {
  background: white;
  padding: 28px 40px 0;
}
.answer-block {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--green-pale);
  border-left: 4px solid var(--green-light);
  border-radius: 0 10px 10px 0;
  padding: 18px 24px;
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
}
.answer-block p { margin: 0; }

/* ── STATS ROW ── */
.stats-section { background: var(--green-dark); padding: 56px 40px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
