:root {
  --green-950: #061a10;
  --green-900: #092615;
  --green-800: #0d3a1f;
  --green-700: #14552e;
  --green-600: #1c7438;
  --green-500: #27a748;
  --lime: #69d348;
  --blue: #1686d9;
  --ink: #132018;
  --muted: #5e6c61;
  --line: #dfe7df;
  --surface: #f5f8f2;
  --surface-strong: #eaf3e5;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.skip-link { position: absolute; left: -999px; top: 1rem; z-index: 9999; padding: .75rem 1rem; background: var(--green-600); color: white; border-radius: 8px; }
.skip-link:focus { left: 1rem; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .2s ease, box-shadow .2s ease;
  color: white;
}
.site-header.is-solid, .site-header:hover, .site-header:focus-within {
  background: rgba(6, 26, 16, .96);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.nav-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; font-weight: 800; }
.brand img { width: 146px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav > a, .services-toggle { padding: 10px 12px; color: rgba(255,255,255,.9); font-weight: 700; font-size: 14px; background: transparent; border: 0; font: inherit; cursor: default; }
.desktop-nav a:hover, .services-menu:hover .services-toggle { color: white; }
.services-menu { position: relative; }
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(820px, 92vw);
  max-height: 72vh;
  overflow: auto;
  background: white;
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.services-menu:hover .mega, .services-menu:focus-within .mega { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.mega a { display: block; padding: 9px 10px; border-radius: 8px; font-size: 14px; color: var(--muted); }
.mega a:hover { background: var(--surface); color: var(--green-700); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: rgba(255,255,255,.95); }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: white; border-radius: 8px; }
.mobile-panel { display: none; background: var(--green-950); border-top: 1px solid rgba(255,255,255,.14); max-height: calc(100vh - 82px); overflow: auto; padding: 12px 24px 24px; }
.mobile-panel a, .mobile-panel summary { display: block; padding: 12px 0; color: rgba(255,255,255,.92); font-weight: 700; }
.mobile-panel .service-link { padding-left: 14px; color: rgba(255,255,255,.74); font-size: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 8px; font-weight: 800; border: 2px solid transparent; min-height: 46px; padding: 12px 18px; transition: transform .18s ease, background .18s ease, color .18s ease, border .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-500); color: white; }
.btn-primary:hover { background: var(--green-600); }
.btn-blue { background: var(--blue); color: white; }
.btn-outline-light { color: white; border-color: rgba(255,255,255,.8); }
.btn-outline-light:hover { background: white; color: var(--green-900); }
.btn-outline-dark { color: var(--green-900); border-color: var(--green-900); }
.btn-outline-dark:hover { background: var(--green-900); color: white; }
.hero, .page-hero { position: relative; display: flex; align-items: center; color: white; overflow: hidden; }
.hero { min-height: 94vh; }
.page-hero { min-height: 390px; padding-top: 82px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: block; }
.hero-video { background: #06150b; }
.hero::after, .page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(2, 16, 9, .63); z-index: 1; }
.hero-content, .page-hero-content { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; padding: 138px 24px 76px; }
.hero-content { text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.12); color: white; font-size: 13px; font-weight: 800; }
h1, h2, h3 { line-height: 1.12; margin: 0; color: inherit; }
h1 { font-size: 56px; max-width: 920px; margin: 18px auto 0; }
.page-hero h1 { margin-left: 0; font-size: 46px; max-width: 860px; }
.hero p, .page-hero p { color: rgba(255,255,255,.84); font-size: 20px; max-width: 720px; margin: 22px auto 0; }
.page-hero p { margin-left: 0; }
.hero-actions, .page-actions { margin-top: 34px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.page-actions { justify-content: flex-start; }
.stats { display: flex; justify-content: center; gap: 34px; margin-top: 54px; flex-wrap: wrap; }
.stat { min-width: 120px; }
.stat strong { display: block; font-size: 34px; color: white; }
.stat span { display: block; color: rgba(255,255,255,.74); font-size: 13px; font-weight: 800; }
.info-bar { background: var(--green-700); color: white; }
.info-inner { max-width: 1200px; margin: 0 auto; padding: 12px 24px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-weight: 700; font-size: 14px; }
.info-inner a, .info-inner span { display: inline-flex; align-items: center; gap: 8px; }
.section { padding: 88px 24px; }
.section-sm { padding: 56px 24px; }
.section-surface { background: var(--surface); }
.wrap { max-width: 1200px; margin: 0 auto; }
.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.eyebrow { display: inline-block; color: var(--green-700); background: var(--surface-strong); border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 900; margin-bottom: 12px; }
h2 { font-size: 38px; }
.section-head p, .lead { color: var(--muted); font-size: 18px; margin: 16px 0 0; }
.split { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 56px; align-items: center; }
.media-frame { overflow: hidden; border-radius: 8px; background: var(--surface-strong); box-shadow: 0 18px 50px rgba(0,0,0,.14); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-frame.tall img { aspect-ratio: 3 / 4; }
.media-frame iframe { width: 100%; border: 0; display: block; background: #000; }
.service-video-frame {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  align-self: center;
  background: #061a10;
}
.service-video-frame video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  background: #061a10;
}
.check-list { display: grid; gap: 14px; margin: 28px 0; }
.check-item { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); }
.check-item svg { color: var(--green-600); flex: 0 0 auto; margin-top: 3px; }
.grid { display: grid; gap: 22px; }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .value-card, .faq-card, .contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(19,32,24,.07);
}
.service-card h3, .value-card h3 { font-size: 21px; color: var(--green-900); }
.service-card p, .value-card p, .faq-card p, .contact-card p { color: var(--muted); margin: 10px 0 0; }
.service-card a { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-weight: 900; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { border-radius: 8px; overflow: hidden; background: white; border: 1px solid var(--line); }
.feature-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-card div { padding: 22px; }
.feature-card h3 { font-size: 22px; color: var(--green-900); }
.feature-card p { color: var(--muted); }
.bbb-banner { background-color: #101713; padding: 12px 25px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; }
.bbb-seal-container { background-color: #ffffff; border: 2px solid var(--green-500); padding: 6px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, .2); flex-shrink: 0; }
.bbb-seal-iframe { border: 0; height: 52px; width: 250px; display: block; }
.bbb-banner-content { display: flex; align-items: center; gap: 15px; }
.bbb-checkmark-icon { width: 32px; height: 32px; fill: var(--green-500); stroke: none; flex-shrink: 0; }
.bbb-banner-text p { margin: 0; color: #f5f5f5; line-height: 1.4; }
.bbb-banner-text .headline { font-weight: 800; font-size: 1.05rem; }
.bbb-banner-text .subheadline { font-size: .9rem; color: #b9c7bb; }
.video-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.video-box { border-radius: 8px; overflow: hidden; background: #000; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.video-box video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: step; }
.process-card { border-top: 4px solid var(--green-500); padding: 22px; background: white; border-radius: 8px; border: 1px solid var(--line); }
.process-card::before { counter-increment: step; content: counter(step); display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 999px; background: var(--green-700); color: white; font-weight: 900; margin-bottom: 14px; }
.reviews-embed, .gallery-embed { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 16px; box-shadow: 0 12px 34px rgba(19,32,24,.07); }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 32px; align-items: start; }
.quote-frame { background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; min-height: 720px; }
.quote-frame iframe, .quote-form-iframe { display: block !important; width: 100% !important; height: 720px !important; min-height: 720px !important; border: 0 !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; position: static !important; left: auto !important; }
.contact-list { display: grid; gap: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; }
.contact-row svg { color: var(--green-600); margin-top: 4px; }
.cta { background: var(--green-700); color: white; text-align: center; }
.cta p { color: rgba(255,255,255,.88); max-width: 720px; margin: 16px auto 0; font-size: 18px; }
.cta .hero-actions { margin-top: 26px; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: rgba(255,255,255,.72); font-weight: 700; margin-bottom: 14px; }
.breadcrumbs a:hover { color: white; }
.details-list { columns: 2; padding-left: 18px; color: var(--muted); }
.details-list li { break-inside: avoid; margin-bottom: 8px; }
.related { display: flex; gap: 10px; flex-wrap: wrap; }
.related a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: var(--green-700); font-weight: 800; background: white; }
.area-map-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr); gap: 22px; align-items: stretch; }
.area-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-content: start; }
.area-pill { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 8px; background: white; color: var(--green-900); font-weight: 800; padding: 11px 12px; box-shadow: 0 8px 22px rgba(19,32,24,.05); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.area-pill:hover { transform: translateY(-2px); border-color: var(--green-500); background: var(--surface-strong); }
.area-pill svg { color: var(--green-600); flex: 0 0 auto; }
.area-map { min-height: 480px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: white; box-shadow: 0 12px 34px rgba(19,32,24,.07); }
.area-map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.area-links { margin-top: 22px; justify-content: center; }
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 900; color: var(--green-900); }
details p { color: var(--muted); margin-bottom: 0; }
.gallery-container { position: relative; min-height: 430px; width: 100%; background-color: var(--surface); border-radius: 8px; overflow: hidden; }
.gallery-only { padding-top: 136px; }
.gallery-only h1 { color: var(--green-900); text-align: center; max-width: 980px; margin: 0 auto 34px; }
.loader { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 6px solid #e3e3e3; border-top: 6px solid var(--blue); border-radius: 50%; width: 50px; height: 50px; animation: spin 1.2s linear infinite; z-index: 10; }
@keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
picflow-gallery { opacity: 0; visibility: hidden; transition: opacity .5s ease-in-out; }
picflow-gallery.loaded { opacity: 1; visibility: visible; }
.gallery-container.loaded .loader { display: none; }
.photo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.photo-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.site-footer { background: var(--green-950); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 34px; padding: 58px 0; }
.footer-logo { width: 170px; margin-bottom: 16px; }
.footer-grid h3 { font-size: 15px; color: rgba(255,255,255,.74); margin-bottom: 14px; }
.footer-grid p, .footer-grid a, .footer-grid li { color: rgba(255,255,255,.74); font-size: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-grid a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.68); font-size: 13px; }
@media (max-width: 980px) {
  .desktop-nav, .header-actions { display: none; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header.is-open .mobile-panel { display: block; }
  .brand img { width: 132px; }
  h1 { font-size: 42px; }
  .page-hero h1 { font-size: 38px; }
  h2 { font-size: 32px; }
  .split, .video-wrap, .quote-grid, .area-map-layout { grid-template-columns: 1fr; }
  .service-grid, .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid, .photo-grid, .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-wrap { padding: 0 16px; min-height: 74px; }
  .brand { min-width: 0; }
  .brand img { width: 116px; }
  .hero { min-height: 88vh; }
  .hero-content, .page-hero-content { padding: 112px 18px 56px; }
  h1 { font-size: 34px; }
  .page-hero h1 { font-size: 32px; }
  .hero p, .page-hero p { font-size: 17px; }
  .hero-actions, .page-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .stats { gap: 18px; }
  .stat strong { font-size: 28px; }
  .section { padding: 64px 18px; }
  .section-sm { padding: 42px 18px; }
  .service-grid, .feature-grid, .process-grid, .photo-grid, .footer-grid, .area-grid { grid-template-columns: 1fr; }
  .details-list { columns: 1; }
  .bbb-banner { flex-direction: column; gap: 15px; padding: 15px; }
  .bbb-banner-text .headline { display: none; }
}