:root {
  --green-900: #173a2a;
  --green-800: #1f4f35;
  --green-700: #2c6847;
  --green-100: #e8f3ed;
  --gold-500: #c99a2e;
  --charcoal: #1f2933;
  --gray-600: #52606d;
  --gray-200: #d9e2ec;
  --white: #ffffff;
  --max-width: 1200px;
  --shadow: 0 12px 36px rgba(15, 23, 42, 0.16);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--charcoal);
  background: #f7faf8;
  line-height: 1.6;
}

a { color: inherit; }

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 5000;
  background: #000;
  color: #fff;
  padding: .5rem .75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(23, 58, 42, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}

.nav-wrapper {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: grid;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
}

.brand strong { color: var(--gold-500); }
.brand small {
  font-size: .75rem;
  color: rgba(255,255,255,0.8);
}

.primary-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  background: var(--green-900);
  display: none;
  flex-direction: column;
  padding: .8rem 1rem;
  gap: .65rem;
}

.primary-nav.is-open { display: flex; }

.primary-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}

.nav-toggle {
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  display: grid;
  gap: 5px;
  align-content: center;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
}

.desktop-call { display: none; }

.btn {
  border: 0;
  border-radius: 999px;
  padding: .75rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold-500);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--green-900);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(9, 22, 15, 0.4), rgba(9, 22, 15, 0.2)),
                    url('https://images.pexels.com/photos/589/garden-grass-lawn-green.jpg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(18, 40, 29, 0.75), rgba(18, 40, 29, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 600;
  color: #d7f4e4;
}

.hero h1 {
  font-size: clamp(1.8rem, 5.2vw, 3.2rem);
  line-height: 1.2;
  margin: .6rem 0 1rem;
}

.hero-text {
  max-width: 62ch;
  color: #e6efe8;
}

.hero-actions {
  margin: 1.6rem 0;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.trust-points {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.section { padding: 4.5rem 0; }

.section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-heading.left { text-align: left; }

.section h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--green-900);
}

.section-heading p { color: var(--gray-600); }

.showcase { background: var(--green-100); }

.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 330px;
}

.slide { display: none; margin: 0; }
.slide.is-active { display: block; }

.slide img {
  height: 330px;
  width: 100%;
  object-fit: cover;
}

.slide figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: .5rem .7rem;
  border-radius: 8px;
  font-size: .9rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,.5);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e5ece8;
  border-radius: 12px;
  padding: 1.1rem;
}

.service-card h3 {
  margin-top: 0;
  color: var(--green-800);
}

.about { background: #fff; }

.about-grid {
  display: grid;
  gap: 1.2rem;
}

.badges {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.badges span {
  background: var(--green-100);
  border: 1px solid #c9ded0;
  color: var(--green-900);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
}

.permit-box {
  background: linear-gradient(180deg, #f5fbf7, #edf7f1);
  border: 1px solid #d6e9dd;
  border-radius: 14px;
  padding: 1rem;
}

.gallery { background: var(--green-100); }

.gallery-slider {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.gallery-slide { display: none; }
.gallery-slide.active { display: block; }

.gallery-slide img {
  border-radius: 10px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-caption {
  margin-top: .65rem;
  color: var(--gray-600);
}

.gallery-controls {
  margin-top: .8rem;
  display: flex;
  gap: .6rem;
}

.gallery-controls button {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 8px;
  padding: .5rem .75rem;
  cursor: pointer;
}

#serviceMap {
  height: 390px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d6dfd9;
  box-shadow: var(--shadow);
}

.areas-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  columns: 2;
}

.review-placeholder {
  border: 1px dashed #b8cabf;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-form {
  background: #fff;
  border: 1px solid #dbe6df;
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  gap: .55rem;
}

.contact-form label {
  font-weight: 600;
  font-size: .92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .66rem .72rem;
  border: 1px solid #cad7cf;
  border-radius: 8px;
  font: inherit;
}

.alert {
  padding: .7rem .8rem;
  border-radius: 8px;
  font-size: .92rem;
}

.alert.success {
  background: #ebf8ef;
  color: #1f6537;
  border: 1px solid #b8e0c5;
}

.alert.error {
  background: #fef0ef;
  color: #8f2b1f;
  border: 1px solid #f1c1bb;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  background: var(--green-900);
  color: #dbe7e0;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: .6rem;
}

.footer-brand {
  color: #fff;
  font-weight: 800;
}

@media (min-width: 768px) {
  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
  }

  .nav-toggle { display: none; }
  .desktop-call { display: inline-block; }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1.6fr 1fr; }

  .slide img,
  .gallery-slide img { height: 430px; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
