:root {
  --green: #7dc22b;
  --green-dark: #5fa01c;
  --ink: #222222;
  --muted: #666666;
  --line: #e6e6e6;
  --soft: #f5f5f5;
  --white: #ffffff;
  --header-h: 78px;
  --topbar-h: 36px;
  --font: "Poppins", "Open Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; height: 100%; }
body {
  margin: 0;
  min-height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
.site-main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Top bar */
.topbar {
  background: var(--ink);
  color: #ddd;
  font-size: 13px;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  align-items: center;
}
.topbar a { color: #fff; }
.topbar .fa { margin-right: 6px; color: var(--green); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { height: 52px; width: auto; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 44px; height: 44px;
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  margin: 4px auto;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a,
.nav-drop-link,
.submenu a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
.main-nav > a,
.nav-drop-link {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
}
.main-nav > a:hover,
.nav-drop:hover > .nav-drop-link,
.nav-drop-link.is-active,
.main-nav > a.is-active,
.submenu a:hover,
.submenu a.is-active { color: var(--green); }
.nav-drop { position: relative; }
.nav-drop .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 10px 0;
  display: none;
  z-index: 60;
}
.nav-drop:hover .submenu,
.nav-drop:focus-within .submenu { display: block; }
.submenu a {
  display: block;
  padding: 10px 16px;
}

/* Hero */
.hero {
  position: relative;
  height: min(78vh, 640px);
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.55), rgba(0,0,0,.25) 55%, rgba(34,34,34,.35));
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
}
.hero-content h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero-content p {
  margin: 0;
  max-width: 42ch;
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  border: 0;
  border-radius: 2px;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-dark { background: #393939; }
.btn-dark:hover { background: #555; }
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--ink) !important; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.45); cursor: pointer;
}
.hero-dots button.is-active { background: var(--green); }

/* Sections */
.section { padding: 72px 0; }
.section-soft { background: var(--soft); }
.section-green {
  background:
    linear-gradient(rgba(34,34,34,.72), rgba(34,34,34,.72)),
    url("../assets/img/misc/hedge-bg.jpg") center/cover no-repeat;
  color: #fff;
}
.section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  font-weight: 700;
}
.lead { font-size: 1.05rem; color: var(--muted); max-width: 70ch; }
.section-green .lead { color: rgba(255,255,255,.9); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 28px 24px;
  backdrop-filter: blur(2px);
}
.card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--green);
}
.card p { margin: 0 0 20px; color: rgba(255,255,255,.88); font-size: .95rem; }
.card .btn { background: transparent; border: 1px solid #fff; }
.card .btn:hover { background: var(--green); border-color: var(--green); }

.intro-block h2 { max-width: 20ch; }
.intro-block h4 {
  margin: 0 0 14px;
  font-weight: 500;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4/3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head a { font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: .05em; }

/* CTA */
.cta-band {
  background: var(--soft);
  padding: 42px 0;
}
.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band h3 { margin: 0; font-size: 1.35rem; }

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(120deg, #1d2a16, #314820 55%, #5fa01c);
  color: #fff;
  padding: 64px 0 52px;
}
.page-hero h1 { margin: 0 0 8px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.page-hero p { margin: 0; opacity: .85; }
.breadcrumb { font-size: 13px; opacity: .75; margin-bottom: 10px; }
.breadcrumb a { color: #fff; }

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
}
.content-grid ul { padding-left: 1.1rem; }
.content-grid li { margin-bottom: 6px; }
.highlight {
  color: var(--green-dark);
  font-weight: 600;
}
.side-gallery {
  display: grid;
  gap: 12px;
}
.side-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.side-slider {
  position: relative;
  border: 1px solid var(--line);
  background: #111;
  overflow: hidden;
}
.side-slides { position: relative; aspect-ratio: 4/3; }
.side-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.side-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.side-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(0,0,0,.72);
}
.side-prev,
.side-next {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.side-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex: 1;
}
.side-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.side-dots button.is-active { background: var(--green); }

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover {
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-card .body { padding: 18px 18px 22px; }
.service-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-card {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--white);
}
.contact-card h3 { margin-top: 0; }
.contact-card p { margin: 0 0 8px; }

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #bbb;
  padding: 48px 0 24px;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.site-footer h4 {
  color: #fff;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 13px;
}
.site-footer a { color: #ddd; }
.site-footer a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #888;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 88vh; max-width: min(1100px, 94vw); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  background: transparent; border: 0; color: #fff;
  font-size: 32px; cursor: pointer;
}

@media (max-width: 960px) {
  .grid-3, .gallery-grid, .service-card-grid, .content-grid, .footer-grid, .contact-cards {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: calc(var(--topbar-h) + var(--header-h));
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 16px;
  }
  .main-nav.is-open { display: flex; }
  .nav-drop .submenu {
    position: static;
    border: 0;
    box-shadow: none;
    padding-left: 12px;
    display: block;
  }
  .hero { min-height: 360px; height: 62vh; }
}