:root {
  --green-900: #143426;
  --green-700: #236044;
  --green-500: #4f8f55;
  --leaf: #d9ead7;
  --stone: #f4f6f2;
  --white: #ffffff;
  --charcoal: #202621;
  --grey: #5c665f;
  --line: #dfe5dc;
  --shadow: 0 24px 60px rgba(20, 52, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 2px solid var(--green-700);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.2;
}

.brand small {
  color: var(--grey);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--grey);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green-700);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--green-700);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--green-900);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 52, 38, 0.95), rgba(20, 52, 38, 0.74) 50%, rgba(20, 52, 38, 0.3)),
    linear-gradient(0deg, rgba(20, 52, 38, 0.38), rgba(20, 52, 38, 0.12));
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1200ms ease,
    transform 7200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--leaf);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.cta-band,
.site-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: var(--white);
  background: var(--green-700);
}

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

.btn.light {
  color: var(--green-900);
  background: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-strip div {
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  color: var(--green-900);
  font-size: 1.05rem;
}

.intro-strip span {
  color: var(--grey);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.muted {
  background: var(--stone);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.split p,
.section-heading p,
.contact-copy p,
.quote-panel p {
  color: var(--grey);
  font-size: 1.02rem;
}

.text-link {
  color: var(--green-700);
  font-weight: 800;
}

.image-panel {
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.feature-grid article,
.quote-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  height: 210px;
}

.service-card h3,
.service-card p,
.service-card ul {
  padding-inline: 20px;
}

.service-card h3 {
  padding-top: 22px;
}

.service-card p {
  color: var(--grey);
}

.service-card ul {
  margin: 0;
  padding-bottom: 22px;
  color: var(--green-900);
}

.cta-band {
  justify-content: space-between;
  padding: 38px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--green-900);
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-grid img {
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.feature-grid {
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  overflow-x: auto;
  padding-bottom: 8px;
}

.feature-grid article {
  min-height: 190px;
  padding: 22px;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--grey);
}

.areas {
  align-items: stretch;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-tags span {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--stone);
  color: var(--green-900);
  font-weight: 700;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 46px);
  background: var(--leaf);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(rgba(244, 246, 242, 0.94), rgba(244, 246, 242, 0.94)),
    url("https://images.unsplash.com/photo-1557429287-b2e26467fc2b?auto=format&fit=crop&w=1600&q=80")
      center / cover;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details a,
.contact-details span {
  color: var(--green-900);
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--charcoal);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(79, 143, 85, 0.22);
  border-color: var(--green-500);
}

.form-note {
  margin: 0;
  color: var(--green-700);
  font-weight: 800;
}

.site-footer {
  justify-content: space-between;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-900);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .site-nav {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: block;
  }

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

  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
  }

  .brand strong {
    max-width: 210px;
    font-size: 0.95rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero::after {
    background: linear-gradient(rgba(20, 52, 38, 0.88), rgba(20, 52, 38, 0.58));
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .intro-strip,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .image-panel {
    min-height: 310px;
  }
}
