
:root {
  --green: #3c5d1e;
  --green-dark: #152311;
  --green-mid: #2c4a1a;
  --lime: #a8e338;
  --sky: #5fb0dc;
  --orange: #f28a24;
  --ink: #172016;
  --muted: #5d6759;
  --line: #dfe7dc;
  --surface: #f5f8f1;
  --white: #fff;
  --shadow: 0 18px 45px rgba(23, 32, 22, .12);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: 0; font-weight: 760; }
h1 { font-size: clamp(2.2rem, 4.35vw, 4.35rem); max-width: 900px; }
h2 { font-size: clamp(1.75rem, 2.65vw, 2.75rem); }
h3 { font-size: 1.08rem; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(880px, calc(100% - 40px)); }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 99999; background: var(--lime); color: var(--green-dark); padding: 10px 14px; border-radius: var(--radius); font-weight: 800; }
.skip-link:focus { top: 12px; }
.icon { width: 1.05em; height: 1.05em; flex: 0 0 auto; }
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
  color: var(--white);
}
.site-header.scrolled, .site-header.menu-open { background: rgba(255,255,255,.97); color: var(--ink); box-shadow: 0 8px 30px rgba(20, 31, 16, .12); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.08rem; }
.brand img { width: 58px; height: 63px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav > a, .nav-dropdown > button { padding: 10px 12px; font-weight: 800; font-size: .9rem; color: inherit; background: transparent; border: 0; cursor: pointer; font: inherit; }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0; width: 280px; max-height: 70vh; overflow: auto;
  background: var(--white); color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 8px; display: grid; gap: 1px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .18s ease;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { padding: 10px 12px; border-radius: 6px; color: var(--muted); font-weight: 750; }
.dropdown-menu a:hover { background: var(--surface); color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 850; font-size: .9rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px;
  padding: 13px 18px; border-radius: var(--radius); font-weight: 900; border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--lime); color: var(--green-dark); }
.btn-secondary { background: var(--green); color: var(--white); }
.btn-light { background: var(--white); color: var(--green-dark); border-color: var(--line); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.85); }
.site-header.scrolled .btn-outline, .site-header.menu-open .btn-outline { color: var(--green-dark); border-color: var(--green); }
.btn-nav { min-height: 40px; padding: 9px 13px; background: var(--lime); color: var(--green-dark); }
.btn.full { width: 100%; }
.mobile-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid currentColor; border-radius: var(--radius); color: inherit; background: transparent; }
.mobile-panel { display: none; background: var(--white); color: var(--ink); padding: 10px 20px 18px; box-shadow: var(--shadow); }
.mobile-panel a { display: block; padding: 11px 0; font-weight: 850; border-bottom: 1px solid var(--line); }
.mobile-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.hero { position: relative; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.home-hero { min-height: 86vh; padding: 128px 0 72px; }
.page-hero { min-height: 430px; padding: 128px 0 64px; }
.hero-img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-img { object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(15,25,13,.86), rgba(15,25,13,.58) 55%, rgba(15,25,13,.45)); }
.hero-content { position: relative; z-index: 2; }
.hero-kicker, .eyebrow {
  display: inline-flex; align-items: center; width: fit-content; color: var(--green-dark); background: var(--lime);
  padding: 8px 12px; border-radius: 999px; text-transform: uppercase; font-size: .74rem; letter-spacing: .08em; font-weight: 950;
}
.hero h1 { margin-top: 18px; text-wrap: balance; }
.hero p { max-width: 720px; margin-top: 18px; color: rgba(255,255,255,.88); font-size: 1.15rem; }
.hero-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.breadcrumbs { margin-bottom: 16px; color: rgba(255,255,255,.72); font-weight: 800; font-size: .92rem; }
.breadcrumbs a:hover { color: var(--lime); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 46px; }
.hero-stats div { border-left: 3px solid var(--lime); padding-left: 14px; min-width: 130px; }
.hero-stats strong { display: block; font-size: 1.6rem; line-height: 1; }
.hero-stats span { display: block; color: rgba(255,255,255,.76); font-weight: 800; font-size: .78rem; text-transform: uppercase; margin-top: 6px; }
.info-bar { background: var(--green); color: var(--white); }
.info-row { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.info-row div { display: flex; align-items: center; gap: 9px; font-weight: 850; }
.section { padding: 86px 0; }
.section.surface { background: var(--surface); }
.section-title { margin-bottom: 40px; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title.left { text-align: left; }
.section-title h2 { margin-top: 14px; text-wrap: balance; }
.section-lede { max-width: 760px; margin: 16px auto 0; color: var(--muted); font-size: 1.08rem; }
.section-title.left .section-lede { margin-left: 0; }
.about-card-grid, .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-card, .value-card, .service-card, .area-panel, .contact-card, .process-step {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 24px rgba(23,32,22,.06);
}
.about-card { padding: 28px; text-align: center; }
.about-card h3 { text-transform: uppercase; color: var(--green); }
.about-card p { color: var(--muted); margin-top: 12px; }
.about-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--green); font-weight: 900; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { overflow: hidden; }
.service-card a { display: block; height: 100%; }
.card-img { width: 100%; height: 205px; object-fit: cover; background: var(--line); }
.service-card-body { padding: 22px; }
.service-card span { color: var(--green); font-size: .76rem; font-weight: 950; text-transform: uppercase; letter-spacing: .06em; }
.service-card h3 { margin-top: 8px; }
.service-card p { color: var(--muted); margin-top: 10px; font-size: .96rem; }
.extra-services { margin-top: 34px; padding: 24px; border-radius: var(--radius); background: var(--green-dark); color: var(--white); }
.extra-services ul, .pill-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.extra-services li, .pill-list li { padding: 9px 12px; background: rgba(168,227,56,.16); border: 1px solid rgba(168,227,56,.28); border-radius: 999px; font-weight: 850; }
.value-card { padding: 26px; }
.value-card .icon { color: var(--green); width: 30px; height: 30px; margin-bottom: 16px; }
.value-card p { color: var(--muted); margin-top: 9px; }
.dark-band { background: var(--green-dark); color: var(--white); }
.dark-band .section-lede, .dark-band p { color: rgba(255,255,255,.74); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); padding: 24px; box-shadow: none; }
.process-step span { display: grid; place-items: center; width: 40px; height: 40px; background: var(--lime); color: var(--green-dark); border-radius: 50%; font-weight: 950; margin-bottom: 16px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid.preview .gallery-tile:nth-child(1) { grid-row: span 2; }
.gallery-tile { overflow: hidden; border-radius: var(--radius); background: var(--line); position: relative; }
.gallery-img { width: 100%; height: 245px; object-fit: cover; transition: transform .3s ease; }
.preview .gallery-tile:nth-child(1) .gallery-img { height: 504px; }
.gallery-tile:hover .gallery-img { transform: scale(1.035); }
.center-row { display: flex; justify-content: center; margin-top: 30px; }
.center-row.compact { margin-top: 18px; }
.reviews { background: #fff; }
.review-widget { border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; min-height: 240px; background: var(--white); box-shadow: var(--shadow); }
.split { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
.split p { color: var(--muted); font-size: 1.05rem; }
.image-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--line); }
.split-img { width: 100%; height: 520px; object-fit: cover; }
.area-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 28px; margin-bottom: 30px; }
.area-head p { max-width: 780px; color: var(--muted); font-size: 1.05rem; margin: 14px 0 0; }
.area-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.area-map-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); margin-bottom: 20px; }
.google-map { display: block; width: 100%; height: 390px; border: 0; background: var(--surface); }
.map-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px; border-top: 1px solid var(--line); }
.map-card-footer strong { display: block; color: var(--green-dark); }
.map-card-footer span { display: block; color: var(--muted); font-size: .95rem; margin-top: 2px; }
.map-card-footer .btn { min-height: 42px; padding: 10px 14px; }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 24px; box-shadow: 0 10px 24px rgba(23,32,22,.06); }
.area-card h3 { color: var(--green); margin-bottom: 12px; }
.area-card .pill-list { margin-top: 0; gap: 8px; }
.area-card .pill-list li { background: var(--surface); border-color: var(--line); color: var(--green-dark); font-size: .88rem; padding: 7px 10px; }
.area-card-dark { background: var(--green-dark); color: var(--white); }
.area-card-dark h3, .area-card-dark a { color: var(--lime); }
.area-card-dark p { color: rgba(255,255,255,.82); margin-bottom: .55rem; }
.area-panel, .contact-card { padding: 28px; }
.area-panel h3 + p, .contact-card h3 + p { margin-top: 14px; }
.area-panel a, .contact-card a { color: var(--green); font-weight: 900; }
.faq-list { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary { cursor: pointer; padding: 20px 22px; font-weight: 950; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--muted); padding: 0 22px 20px; margin: 0; }
.cta-band { background: var(--green); color: var(--white); text-align: center; }
.cta-content p { max-width: 720px; margin: 16px auto 0; color: rgba(255,255,255,.86); }
.cta-content .hero-actions { justify-content: center; }
.quote-section { background: var(--surface); }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; }
.form-frame { height: 681px; border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--line); }
.contact-card p { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.contact-buttons { display: grid; gap: 10px; margin-top: 18px; }
.contact-card .btn-secondary { color: var(--white); }
.contact-card .btn-light { color: var(--green-dark); }
.include-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.include-grid li { display: flex; align-items: center; gap: 10px; padding: 15px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); font-weight: 850; }
.include-grid .icon { color: var(--green); }
.related-grid { display: grid; gap: 12px; }
.related-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 900; color: var(--green); background: var(--white); }
.full-grid .gallery-tile { min-height: 0; }
.full-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; background: rgba(21,35,17,.78); color: var(--white); font-weight: 850; font-size: .88rem; }
.full-grid .gallery-img { height: 260px; }
.site-footer { background: var(--green-dark); color: var(--white); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.6fr 1fr 1fr; gap: 36px; }
.footer-brand img { width: 70px; height: 77px; object-fit: contain; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.75); }
.site-footer h3 { font-size: .94rem; text-transform: uppercase; letter-spacing: .08em; color: var(--lime); margin-bottom: 14px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links.two-col { columns: 2; }
.footer-links li { break-inside: avoid; margin-bottom: 8px; }
.footer-links a:hover, .footer-contact a:hover, .footer-map:hover { color: var(--lime); }
.footer-map { display: inline-flex; margin-top: 12px; color: var(--lime); font-weight: 900; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 44px; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { margin: 0; font-size: .9rem; }

@media (max-width: 1050px) {
  .desktop-nav, .nav-phone, .btn-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-panel.open { display: block; }
  .service-grid, .gallery-grid, .about-card-grid, .value-grid, .area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-head { grid-template-columns: 1fr; align-items: start; }
  .area-actions { justify-content: flex-start; }
  .map-card-footer { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .nav-wrap { height: 72px; }
  .brand span { font-size: .98rem; }
  .brand img { width: 48px; height: 53px; }
  .home-hero { min-height: 82vh; padding: 110px 0 54px; }
  .page-hero { min-height: 390px; padding: 110px 0 52px; }
  .hero p { font-size: 1rem; }
  .hero-actions, .inline-actions { flex-direction: column; }
  .btn { width: 100%; }
  .info-row { flex-direction: column; align-items: flex-start; padding: 16px 0; }
  .section { padding: 62px 0; }
  .service-grid, .gallery-grid, .about-card-grid, .value-grid, .area-grid, .process-grid, .quote-grid, .split, .include-grid, .footer-grid { grid-template-columns: 1fr; }
  .preview .gallery-tile:nth-child(1) .gallery-img, .gallery-img, .full-grid .gallery-img, .split-img { height: 260px; }
  .quote-grid { gap: 18px; }
  .contact-card { order: -1; }
  .mobile-services { grid-template-columns: 1fr; }
  .footer-links.two-col { columns: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
