/* ============ Base ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-topbar: #0f7b33;
  --green-dark: #0c3b1c;
  --green-mid: #1e7a3c;
  --lime: #a8d243;
  --lime-soft: #c3e26b;
  --text-body: #5a6b5d;
  --bg-hero: #f7f8f5;
  --white: #ffffff;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --container: 76rem;
  --topbar-h: 2.5rem;
  --nav-h: 5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--green-dark);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ============ Top bar ============ */
.topbar {
  background: var(--green-topbar);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
}

.topbar__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.95;
}

.topbar__item:hover {
  opacity: 1;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar__follow {
  margin-right: 0.25rem;
  opacity: 0.95;
}

.topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: background 0.2s, color 0.2s;
}

.topbar__social:hover {
  background: var(--white);
  color: var(--green-topbar);
}

/* ============ Navbar ============ */
.navbar {
  background: var(--white);
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand__logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.brand__name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--green-topbar);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  background: var(--bg-hero);
  border-radius: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin-inline: 0.55rem;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ Hero ============ */
/* 3D scene: --mx/--my (pointer tilt, -1..1) and --hs (scroll progress, 0..1)
   are set from JS; each layer moves at a different rate for depth. */
.hero {
  --mx: 0;
  --my: 0;
  --hs: 0;
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  background-color: var(--bg-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
  perspective: 1100px;
}

/* Farthest layer: doodle backdrop, drifts opposite the pointer */
.hero__bg {
  position: absolute;
  inset: -4%;
  z-index: 0;
  background-image: url("../assets/hero-doodles.svg");
  background-size: cover;
  background-position: center;
  transform: translate3d(calc(var(--mx) * -16px), calc(var(--my) * -10px + var(--hs) * 2rem), 0) scale(1.05);
  will-change: transform;
}

/* Floating leaves between layers */
.hero__float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: var(--lime);
  will-change: transform;
}

.hero__float svg {
  display: block;
  width: 100%;
  height: 100%;
  animation: hero-bob 7s ease-in-out infinite alternate;
}

.hero__float--1 {
  top: 12%;
  right: 12%;
  width: 3rem;
  opacity: 0.85;
  transform: translate3d(calc(var(--mx) * 30px), calc(var(--my) * 22px - var(--hs) * 9rem), 0) rotate(24deg);
}

.hero__float--2 {
  top: 56%;
  left: 44%;
  width: 2rem;
  z-index: 3;
  color: var(--green-topbar);
  opacity: 0.55;
  transform: translate3d(calc(var(--mx) * 44px), calc(var(--my) * 30px - var(--hs) * 12rem), 0) rotate(-30deg);
}

.hero__float--2 svg {
  animation-duration: 5.5s;
  animation-delay: -2s;
}

.hero__float--3 {
  top: 16%;
  left: 6%;
  width: 1.25rem;
  color: var(--green-topbar);
  opacity: 0.3;
  transform: translate3d(calc(var(--mx) * 20px), calc(var(--my) * 16px - var(--hs) * 6rem), 0);
}

.hero__float--3 svg {
  animation-duration: 9s;
  animation-delay: -4s;
}

@keyframes hero-bob {
  from { transform: translateY(-7px) rotate(-5deg); }
  to { transform: translateY(9px) rotate(6deg); }
}

/* Front layer: copy drifts up and fades as the hero scrolls away */
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  padding: clamp(2rem, 5vh, 4rem) 0;
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 8px - var(--hs) * 4.5rem), 0);
  opacity: calc(1 - var(--hs) * 0.9);
  will-change: transform, opacity;
}

.hero__content {
  max-width: 33rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-topbar);
  margin-bottom: 1.25rem;
}

.hero__eyebrow-line {
  width: 2rem;
  height: 2px;
  background: var(--green-topbar);
  opacity: 0.7;
}

.hero__title {
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.hero__text {
  font-size: 0.9825rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 26rem;
  margin-bottom: 1.75rem;
}

/* Phone CTA */
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.625rem 1.5rem 0.625rem 0.625rem;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(12, 59, 28, 0.12);
  transition: transform 0.15s, box-shadow 0.2s;
}

.hero__phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(12, 59, 28, 0.16);
}

.hero__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  flex-shrink: 0;
}

.hero__phone-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-body);
}

.hero__phone-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Hero image — white background blends away via multiply.
   The source is pre-extended with tiled grass so it always
   spans the full viewport width when anchored bottom-right. */
.hero__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: min(92%, 56rem);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform-origin: bottom right;
  transform: translate3d(calc(var(--mx) * 20px), calc(var(--my) * 12px + var(--hs) * 2.5rem), 0)
    rotateX(calc(var(--my) * -1.5deg)) rotateY(calc(var(--mx) * 2.5deg))
    scale(calc(1 - var(--hs) * 0.05));
  will-change: transform;
}

/* Staged 3D entrance on page load */
@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow {
    animation: hero-rise 0.6s cubic-bezier(0.22, 0.9, 0.3, 1) 0.1s backwards;
  }

  .hero__title {
    animation: hero-rise 0.7s cubic-bezier(0.22, 0.9, 0.3, 1) 0.22s backwards;
  }

  .hero__text {
    animation: hero-rise 0.7s cubic-bezier(0.22, 0.9, 0.3, 1) 0.34s backwards;
  }

  .hero__phone {
    animation: hero-rise 0.7s cubic-bezier(0.22, 0.9, 0.3, 1) 0.48s backwards;
  }

  .hero__img {
    animation: hero-img-in 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) 0.15s backwards;
  }

  .hero__bg {
    animation: hero-fade 1.2s ease backwards;
  }

  .hero__float {
    animation: hero-fade 1s ease 0.85s backwards;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.75rem);
  }
}

@keyframes hero-img-in {
  from {
    opacity: 0;
    transform: translateY(4rem) scale(0.96);
  }
}

@keyframes hero-fade {
  from {
    opacity: 0;
  }
}

/* ============ Section eyebrow (shared) ============ */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-topbar);
  margin-bottom: 1rem;
}

.section-eyebrow__line {
  width: 2rem;
  height: 2px;
  background: var(--green-topbar);
  opacity: 0.7;
}

/* ============ Buttons (shared) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: filter 0.2s;
}

.btn--lime {
  background: var(--lime);
  color: var(--green-dark);
  padding: 0.8125rem 1.5rem;
}

.btn--lime:hover {
  filter: brightness(1.06);
}

.btn--square {
  width: 2.875rem;
  padding: 0;
}

/* ============ About ============ */
.about {
  background: var(--bg-hero);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
}

.about__title {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.about__title-strong {
  color: var(--green-dark);
}

.about__title-soft {
  color: #b9c4ba;
}

/* Collage stage: symmetric V of photos, evenly spaced like the reference */
.about__stage {
  position: relative;
  max-width: 62rem;
  margin: 2rem auto 0;
  min-height: clamp(15rem, 30vw, 18.5rem);
}

.about__photo {
  position: absolute;
  object-fit: cover;
  border-radius: 0.875rem;
  box-shadow: 0 10px 26px rgba(12, 59, 28, 0.12);
  background: #e4eae2;
}

/* Even 15.2% steps across the row; tops step down to the middle (V shape) */
.about__photo--1 { width: 12%; aspect-ratio: 0.85; top: 0;   left: 6%; }
.about__photo--2 { width: 12%; aspect-ratio: 0.85; top: 26%; left: 21.2%; }
.about__photo--3 { width: 12%; aspect-ratio: 0.85; top: 48%; left: 36.4%; }
.about__photo--4 { width: 12%; aspect-ratio: 0.85; top: 48%; left: 51.6%; }
.about__photo--5 { width: 12%; aspect-ratio: 0.85; top: 26%; left: 66.8%; }
.about__photo--6 { width: 12%; aspect-ratio: 0.85; top: 0;   left: 82%; }

/* ============ Services ============ */
.services {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
}

.services__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

/* Left media + badge */
.services__media {
  position: relative;
}

.services__media-img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  border-radius: 1.25rem;
  background: #e4eae2;
}

.services__badge {
  position: absolute;
  bottom: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(6.5rem, 12vw, 8.5rem);
  filter: drop-shadow(0 8px 20px rgba(12, 59, 28, 0.25));
  animation: badge-spin 22s linear infinite;
}

.services__badge svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes badge-spin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services__badge {
    animation: none;
  }
}

/* Center list */
.services__list {
  display: flex;
  flex-direction: column;
}

.service-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  background: var(--green-topbar);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  margin-bottom: 0.5rem;
}

.service-featured__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--lime);
}

.service-featured__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.service-items {
  list-style: none;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.05rem 0.25rem;
  border-bottom: 1px solid #e6ebe4;
  color: var(--green-mid);
  transition: color 0.2s, padding-left 0.2s;
}

.service-item:hover {
  color: var(--green-topbar);
  padding-left: 0.75rem;
}

.service-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #eef4e6;
  flex-shrink: 0;
}

.service-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* Right stacked images */
.services__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.services__side-img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  background: #e4eae2;
}

.services__side-img--top {
  aspect-ratio: 1.1;
}

.services__side-img--bottom {
  aspect-ratio: 0.92;
}

/* ============ Projects / Gallery ============ */
.projects {
  background: var(--bg-hero);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
}

.projects__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.projects__lead {
  text-align: center;
  color: var(--text-body);
  font-size: 1rem;
  max-width: 34rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

/* Previous mixed grid gallery (commented out — replaced by before/after pairs)
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11rem), 1fr));
  gap: 1.25rem;
  grid-auto-flow: dense;
}

.gallery__item {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(12, 59, 28, 0.1);
  cursor: pointer;
}

.gallery__item--landscape {
  grid-column: span 2;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e4eae2;
  transition: transform 0.5s ease;
}

.gallery__item--portrait img {
  aspect-ratio: 3 / 4;
}

.gallery__item--landscape img {
  aspect-ratio: 16 / 10;
}

@media (max-width: 520px) {
  .gallery__item--landscape {
    grid-column: span 1;
  }

  .gallery__item--landscape img {
    aspect-ratio: 4 / 3;
  }
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 59, 28, 0.78) 0%, rgba(12, 59, 28, 0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery__caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
  transform: translateY(0.5rem);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item:hover::after,
.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.gallery__item:hover .gallery__caption {
  transform: translateY(0);
}
*/

/* Before / after portrait pairs */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
}

.ba-pair {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.ba-pair__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
  padding: 0.375rem;
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(12, 59, 28, 0.1);
  border: 1px solid rgba(12, 59, 28, 0.06);
}

.ba-pair__frame {
  position: relative;
  margin: 0;
  border-radius: 0.875rem;
  overflow: hidden;
  background: #e4eae2;
}

.ba-pair__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ba-pair__tag {
  position: absolute;
  top: 0.625rem;
  z-index: 1;
  padding: 0.3rem 0.625rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.ba-pair__tag--before {
  left: 0.625rem;
  background: rgba(12, 59, 28, 0.82);
  color: var(--white);
}

.ba-pair__tag--after {
  right: 0.625rem;
  background: var(--lime);
  color: var(--green-dark);
}

.ba-pair__bridge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-topbar);
  box-shadow: 0 4px 14px rgba(12, 59, 28, 0.18);
  border: 2px solid var(--lime);
  pointer-events: none;
}

.ba-pair__title {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.ba-pair:hover .ba-pair__frame img {
  transform: scale(1.03);
}

@media (max-width: 720px) {
  .ba-gallery {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

@media (min-width: 1100px) {
  .ba-gallery {
    gap: 2rem 2.5rem;
  }
}

/* ============ Testimonials ============ */
.testimonials {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
}

.testimonials__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.testimonials__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 11.25rem;
  background: #eef1eb;
  border-radius: 1rem;
  padding: 1.25rem 1.125rem 1.375rem;
  border: none;
  box-shadow: none;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}

.testimonial-card__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #dce8c8;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.testimonial-card__meta {
  min-width: 0;
  flex: 1;
}

.testimonial-card__name {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
}

.testimonial-card__verified {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--green-topbar);
  line-height: 0;
}

.testimonial-card__handle {
  font-size: 0.75rem;
  font-weight: 500;
  color: #8a968c;
  margin-top: 0.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-card__quote {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #4a5c4e;
  margin: 0;
  min-height: 4.5rem;
}

@media (max-width: 1100px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card__quote {
    min-height: 0;
  }
}

/* ============ Impact / stats banner ============ */
.impact {
  background: var(--white);
  padding: 0 0 clamp(4rem, 9vw, 6rem);
}

.impact__banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: linear-gradient(125deg, #0a3318 0%, var(--green-dark) 42%, #0d6b32 100%);
  padding: clamp(2.75rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--white);
  box-shadow: 0 24px 48px rgba(12, 59, 28, 0.18);
}

.impact__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
  background: var(--lime);
}

.impact__decor--1 {
  width: clamp(8rem, 18vw, 14rem);
  height: clamp(8rem, 18vw, 14rem);
  top: -3rem;
  right: 8%;
}

.impact__decor--2 {
  width: clamp(5rem, 12vw, 9rem);
  height: clamp(5rem, 12vw, 9rem);
  bottom: -2rem;
  left: 6%;
  opacity: 0.08;
}

.impact__decor--3 {
  width: 4rem;
  height: 4rem;
  top: 40%;
  left: 12%;
  opacity: 0.06;
  background: var(--white);
}

.impact__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-soft);
  margin-bottom: 0.75rem;
}

.impact__title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.75rem, 3.8vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 28rem;
  margin: 0 auto;
}

.impact__lead {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.impact__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: clamp(2rem, 3.5vw, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.impact__stat {
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.impact__stat:last-child {
  border-right: none;
}

.impact__value {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.05em;
  font-weight: 800;
  line-height: 1;
  color: var(--lime);
}

.impact__value-num {
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.03em;
}

.impact__value-suffix {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  letter-spacing: -0.02em;
  padding-top: 0.15em;
}

.impact__label {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {
  .impact__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 0;
    border-top: none;
    padding-top: 2rem;
  }

  .impact__stat {
    border-right: none;
    padding: 0 0.75rem;
  }

  .impact__stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .impact__stat:nth-child(1),
  .impact__stat:nth-child(2) {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 420px) {
  .impact__banner {
    border-radius: 1.25rem;
  }

  .impact__stats {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .impact__stat:nth-child(odd) {
    border-right: none;
  }

  .impact__stat:nth-child(1),
  .impact__stat:nth-child(2) {
    padding-bottom: 0;
    border-bottom: none;
  }

  .impact__stat:not(:last-child) {
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-hero);
  margin-top: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(12, 59, 28, 0.06);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__brand {
  max-width: 22rem;
}

.brand--footer .brand__logo {
  width: 3rem;
  height: 3rem;
}

.site-footer__about {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
}

.site-footer__heading {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--green-dark);
  margin-bottom: 1.125rem;
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--green-topbar);
}

.site-footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.site-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.45;
}

.site-footer__contact-list a {
  color: var(--text-body);
  transition: color 0.2s;
  word-break: break-word;
}

.site-footer__contact-list a:hover {
  color: var(--green-topbar);
}

.site-footer__contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 0.1rem;
  color: var(--green-topbar);
}

.site-footer__bar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 1.125rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
}

.site-footer__copy {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.site-footer__legal a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: 28rem;
  }
}

@media (max-width: 560px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  /* list spans full width under the two image columns */
  .services__list {
    grid-column: 1 / -1;
    order: 3;
  }

  .service-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }

  .services__media {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 1100px) {
  .brand__name {
    font-size: 1.05rem;
  }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 0;
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 60;
  }

  .hero {
    align-items: flex-start;
  }

  .hero__inner {
    padding-top: 2.5rem;
    padding-bottom: 45vh;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__img {
    height: 46vh;
    width: 100%;
    object-fit: cover;
    object-position: bottom right;
  }

  /* Less floating clutter on small screens */
  .hero__float--2 {
    display: none;
  }

  .hero__float--1 {
    top: 8%;
    right: 6%;
    width: 2.25rem;
  }
}

@media (max-width: 540px) {
  .topbar__right {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .hero__phone {
    gap: 0.625rem;
    padding: 0.5rem 1.125rem 0.5rem 0.5rem;
  }

  .hero__phone-icon {
    width: 2.375rem;
    height: 2.375rem;
  }

  .hero__phone-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero__phone-label {
    font-size: 0.6875rem;
  }

  .hero__phone-number {
    font-size: 1rem;
  }
}

/* About collage on small screens: staggered wave (middle column dips,
   echoing the desktop V shape) */
@media (max-width: 700px) {
  .about__stage {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    margin-top: 2.25rem;
    padding-bottom: 2rem; /* room for the offset middle column */
  }

  .about__photo {
    position: static;
    width: 100%;
    aspect-ratio: 0.78;
  }

  /* middle column sits lower */
  .about__photo--2,
  .about__photo--5 {
    transform: translateY(2rem);
  }

  /* outer corners get a slightly larger radius for a softer collage feel */
  .about__photo--1 { border-top-left-radius: 1.75rem; }
  .about__photo--3 { border-top-right-radius: 1.75rem; }
  .about__photo--4 { border-bottom-left-radius: 1.75rem; }
  .about__photo--6 { border-bottom-right-radius: 1.75rem; }
}

/* Services stack fully on small screens */
@media (max-width: 620px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__media {
    max-width: 22rem;
    margin: 0 auto 3rem;
  }

  .services__list {
    order: 2;
  }

  .service-items {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .services__side {
    order: 3;
  }
}

/* Very narrow screens: two columns, right column offset (brick stagger) */
@media (max-width: 420px) {
  .about__stage {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding-bottom: 1.75rem;
  }

  .about__photo {
    aspect-ratio: 0.9;
  }

  .about__photo--2,
  .about__photo--5 {
    transform: none;
  }

  /* right column dips instead */
  .about__photo:nth-child(even) {
    transform: translateY(1.75rem);
  }

  .about__photo--1,
  .about__photo--3,
  .about__photo--4,
  .about__photo--6 {
    border-radius: 0.875rem;
  }

  .about__photo--1 { border-top-left-radius: 1.75rem; }
  .about__photo--2 { border-top-right-radius: 1.75rem; }
  .about__photo--5 { border-bottom-left-radius: 1.75rem; }
  .about__photo--6 { border-bottom-right-radius: 1.75rem; }
}
