@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --green: #7fb342;
  --green-dark: #386b24;
  --green-deep: #162413;
  --black: #090b08;
  --ink: #151914;
  --muted: #5e685b;
  --line: #dfe7d8;
  --surface: #f5f8f1;
  --surface-dark: #10140f;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(9, 11, 8, 0.12);
  --shadow-soft: 0 10px 28px rgba(9, 11, 8, 0.08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: 0; color: var(--ink); font-weight: 800; }
h1 { font-size: clamp(2.15rem, 4.5vw, 4.35rem); }
h2 { font-size: clamp(1.9rem, 3.1vw, 3rem); }
h3 { font-size: 1.2rem; }
.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.narrow { width: min(100% - 32px, 850px); }
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--green);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled, .site-header.menu-open {
  background: rgba(9, 11, 8, 0.95);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.nav-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 7px 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.brand-logo { height: 48px; width: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav > a, .nav-dropdown > button {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.desktop-nav > a:hover, .nav-dropdown > button:hover { color: var(--green); }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}
.dropdown-panel a:hover { background: var(--surface); color: var(--green-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { color: var(--white); font-weight: 800; font-size: 0.95rem; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  padding: 10px;
}
.menu-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; }
.mobile-nav {
  display: none;
  width: min(100% - 32px, var(--container));
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
}
.mobile-nav a { display: block; padding: 12px; color: var(--ink); font-weight: 800; border-radius: 6px; }
.mobile-nav a:hover { background: var(--surface); color: var(--green-dark); }
.mobile-nav.is-open { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border 160ms ease;
  white-space: normal;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--black); }
.btn-primary:hover { background: #90c84d; }
.btn-outline-light { border-color: rgba(255,255,255,0.86); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--black); }
.btn-small { min-height: 38px; padding: 8px 14px; font-size: 0.9rem; }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  overflow: hidden;
}
.hero-compact { min-height: 470px; }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9,11,8,0.88) 0%, rgba(9,11,8,0.72) 47%, rgba(9,11,8,0.38) 100%),
    linear-gradient(0deg, rgba(9,11,8,0.36), rgba(9,11,8,0.1));
}
.hero-content { position: relative; z-index: 2; max-width: 820px; margin-left: max(16px, calc((100vw - var(--container)) / 2)); }
.hero-eyebrow, .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green);
  background: rgba(127,179,66,0.13);
  border: 1px solid rgba(127,179,66,0.28);
  border-radius: 999px;
  padding: 8px 13px;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
}
.hero h1 { color: var(--white); max-width: 880px; }
.hero:not(.hero-compact) h1 {
  max-width: 780px;
  font-size: clamp(2rem, 3.55vw, 3.85rem);
}
.hero p { max-width: 720px; margin-top: 20px; color: rgba(255,255,255,0.84); font-size: clamp(1.05rem, 2.1vw, 1.35rem); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}
.hero-stats div { min-width: 145px; padding-right: 20px; border-right: 1px solid rgba(255,255,255,0.22); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; color: var(--white); font-size: 1.7rem; line-height: 1; }
.hero-stats span { display: block; margin-top: 8px; color: rgba(255,255,255,0.68); font-size: 0.78rem; text-transform: uppercase; font-weight: 800; }
.breadcrumb { margin-bottom: 16px; color: rgba(255,255,255,0.72); font-weight: 700; font-size: 0.9rem; }
.breadcrumb a:hover { color: var(--green); }

.info-strip { background: var(--green); color: var(--black); }
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.info-strip-grid > div { padding: 17px 18px; border-right: 1px solid rgba(0,0,0,0.16); }
.info-strip-grid > div:last-child { border-right: 0; }
.info-strip span { display: block; font-size: 0.76rem; text-transform: uppercase; font-weight: 900; opacity: 0.72; }
.info-strip strong, .info-strip a { font-size: 1rem; font-weight: 900; }

.section { padding: 82px 0; }
.section-soft { background: var(--surface); }
.section-dark-soft { background: linear-gradient(180deg, var(--surface), #edf4e8); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin-top: 10px; }
.section-heading p { margin-top: 14px; font-size: 1.08rem; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: center;
}
.two-col.reverse > div:first-child { order: 2; }
.two-col.reverse > div:last-child { order: 1; }
.section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.image-frame.tall { aspect-ratio: 4 / 5; }
.cover-img { width: 100%; height: 100%; object-fit: cover; }
.image-stack { position: relative; }
.image-badge {
  position: absolute;
  left: -22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  max-width: 260px;
}
.image-badge strong { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: var(--black); font-size: 1.35rem; }
.image-badge span { color: var(--ink); font-weight: 900; line-height: 1.2; }

.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 800;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,0.45);
}

.service-grid, .feature-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card, .feature-grid article, .process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.service-card { display: flex; flex-direction: column; transition: transform 160ms ease, box-shadow 160ms ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-image { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card-body { padding: 24px; display: flex; flex: 1; flex-direction: column; }
.kicker { color: var(--green-dark); text-transform: uppercase; font-size: 0.75rem; font-weight: 900; margin-bottom: 8px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { flex: 1; font-size: 0.97rem; }
.text-link { display: inline-flex; gap: 8px; margin-top: 8px; color: var(--green-dark); font-weight: 900; }
.feature-grid article { padding: 26px; }
.feature-grid article h3 { margin-bottom: 10px; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-card { padding: 24px; }
.process-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-weight: 900;
}
.process-card p { margin-bottom: 0; font-size: 0.95rem; }

.keyword-grid, .area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.keyword-grid span, .area-grid span, .area-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--surface);
  font-weight: 900;
  color: var(--ink);
}
.area-button {
  width: 100%;
  min-height: 52px;
  appearance: none;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.area-button:hover, .area-button.is-active {
  background: var(--black);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(9, 11, 8, 0.14);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--black);
}
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 12px 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 21px 24px;
  border: 0;
  background: var(--white);
  text-align: left;
  font: inherit;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.faq-question:hover { color: var(--green-dark); }
.faq-icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  inset: 9px 3px auto 3px;
  height: 2px;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
}
.faq-answer[data-open="true"] { display: block; }
.faq-answer p { margin: 0; }

.cta-band {
  background: var(--green-dark);
  color: var(--white);
  padding: 70px 0;
}
.cta-content { text-align: center; }
.cta-content h2 { color: var(--white); max-width: 820px; margin: 0 auto; }
.cta-content p { color: rgba(255,255,255,0.86); max-width: 680px; margin: 16px auto 28px; font-size: 1.1rem; }
.cta-content > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}
.quote-frame {
  height: auto;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.quote-frame iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  height: 760px;
  border: 0;
  background: var(--white);
}
.contact-panel {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-panel h3 { color: var(--white); margin-bottom: 10px; }
.contact-panel p { color: rgba(255,255,255,0.76); }
.contact-row {
  border-top: 1px solid rgba(255,255,255,0.13);
  padding: 16px 0 0;
  margin-top: 16px;
}
.contact-row span, .contact-detail-list span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
}
.contact-row a, .contact-row strong { color: var(--white); font-weight: 900; }

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 42px;
  align-items: center;
}
.contact-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.contact-detail-list > * {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
}
.contact-detail-list strong { color: var(--ink); overflow-wrap: anywhere; }

.service-area-section {
  background: var(--white);
}
.service-area-home {
  background: linear-gradient(180deg, #f7faf4 0%, #eef5e9 100%);
}
.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  align-items: stretch;
}
.service-area-layout-interactive {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}
.service-area-map {
  min-height: 430px;
  scroll-margin-top: 96px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.service-area-map iframe {
  display: block;
  width: 100%;
  flex: 1;
  height: 100%;
  min-height: 430px;
  border: 0;
}
.service-area-map-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  padding: 14px 18px;
}
.service-area-map-status span {
  color: var(--green);
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 800;
}
.service-area-map-status strong {
  text-align: right;
  font-size: 0.96rem;
  font-weight: 800;
}
.service-area-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.service-area-card h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  margin-bottom: 14px;
}
.service-area-card p {
  font-size: 1rem;
}
.service-area-home .service-area-card {
  justify-content: flex-start;
  background: var(--black);
  border-color: rgba(127,179,66,0.26);
}
.service-area-home .service-area-card h3,
.service-area-home .service-area-card .service-area-note {
  color: var(--white);
}
.service-area-home .service-area-card p {
  color: rgba(255,255,255,0.75);
}
.service-area-home .area-button {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.service-area-home .area-button:hover,
.service-area-home .area-button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}
.area-grid.area-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}
.service-area-tabs {
  margin-top: 18px;
}
.service-area-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}
.service-area-home .service-area-note {
  border-color: rgba(255,255,255,0.14);
}

.site-footer { background: var(--black); color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 1fr;
  gap: 38px;
  padding: 58px 0;
}
.footer-logo {
  height: 60px;
  width: auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px 8px;
  object-fit: contain;
}
.site-footer p, .site-footer li { color: rgba(255,255,255,0.72); }
.site-footer h3 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; }

@media (max-width: 980px) {
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 84vh; padding-top: 120px; }
  .hero-content { margin-left: auto; }
  .two-col, .two-col.reverse, .quote-layout, .contact-hero-grid, .service-area-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .two-col.reverse > div:first-child, .two-col.reverse > div:last-child { order: initial; }
  .service-grid, .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid, .keyword-grid, .area-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-badge { left: 16px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .nav-container { min-height: 74px; }
  .brand-logo { height: 40px; }
  .hero { min-height: 82vh; padding: 108px 0 48px; }
  .hero-compact { min-height: 430px; }
  .hero-buttons, .section-actions, .cta-content > div { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-stats { gap: 12px; }
  .hero-stats div { min-width: 0; width: 100%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 12px; }
  .info-strip-grid { grid-template-columns: 1fr; }
  .info-strip-grid > div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.16); }
  .section { padding: 56px 0; }
  .service-grid, .feature-grid, .process-grid, .keyword-grid, .area-grid, .gallery-grid, .contact-detail-list {
    grid-template-columns: 1fr;
  }
  .gallery-item { aspect-ratio: 16 / 10; }
  .quote-frame, .quote-frame iframe { min-height: 760px; }
  .service-area-map, .service-area-map iframe { min-height: 340px; }
  .footer-bottom { flex-direction: column; }
}
