:root {
  --forest: #064820;
  --forest-dark: #022813;
  --leaf: #8a9b18;
  --lime: #b7d84b;
  --sun: #f4c43f;
  --sky: #1b9bb3;
  --ink: #111812;
  --muted: #5e685f;
  --paper: #fbfff6;
  --soft: #eef5e7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(2, 40, 19, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  padding-bottom: 76px;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

#home,
#about,
#services,
#gallery,
#contact {
  scroll-margin-top: 6.5rem;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--sun);
  color: var(--forest-dark);
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(2, 40, 19, 0.42);
  color: var(--white);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 40, 19, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.6rem;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a,
.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-weight: 800;
  color: var(--white);
}

.nav-links a:hover,
.header-call:hover {
  background: rgba(255, 255, 255, 0.14);
}

.header-call {
  background: var(--sun);
  color: var(--forest-dark);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 7rem 1rem 4.75rem;
  background: var(--forest-dark);
  color: var(--white);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  opacity: 0.8;
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 40, 19, 0.95), rgba(2, 40, 19, 0.74) 46%, rgba(2, 40, 19, 0.28)),
    linear-gradient(0deg, rgba(2, 40, 19, 0.8), rgba(2, 40, 19, 0) 52%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.98;
  font-weight: 950;
}

.hero h1 {
  max-width: 10ch;
  font-size: 3rem;
}

.hero-lede {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-actions .btn {
  width: 100%;
  padding-inline: 0.65rem;
  line-height: 1.15;
}

.hero-actions .btn-ghost {
  grid-column: 1 / -1;
}

.btn {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sun);
  color: var(--forest-dark);
  box-shadow: 0 14px 30px rgba(244, 196, 63, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--forest-dark);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-proof {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  width: min(var(--max), 100%);
  margin: 1.25rem auto 0;
}

.hero-proof span {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.scroll-cue {
  display: none;
}

.intro-band {
  background: var(--sun);
  color: var(--forest-dark);
}

.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 0;
}

.intro-grid p,
.intro-grid a {
  margin: 0;
  font-weight: 900;
}

.intro-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: max-content;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  background: var(--forest-dark);
  color: var(--white);
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 1.5rem;
}

.section h2 {
  color: var(--forest-dark);
  font-size: 2.1rem;
}

.section-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-grid,
.showcase-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 710px;
  overflow: hidden;
  border-radius: 8px;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0.8rem -0.6rem -0.6rem 0.8rem;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--leaf), var(--sky));
}

.about-media img,
.service-card img,
.gallery-item img,
.video-grid video,
.map-wrap,
.contact-form {
  border-radius: 8px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  box-shadow: var(--shadow);
}

.services {
  background:
    linear-gradient(180deg, var(--soft), var(--paper)),
    repeating-linear-gradient(90deg, rgba(6, 72, 32, 0.06) 0 1px, transparent 1px 48px);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  min-height: 160px;
  padding: 0.8rem;
  border: 1px solid rgba(6, 72, 32, 0.11);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 72, 32, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(6, 72, 32, 0.14);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
}

.service-card h3,
.trust-card h3,
.contact-form h3 {
  margin: 0 0 0.4rem;
  color: var(--forest-dark);
  font-size: 1.25rem;
  line-height: 1.15;
}

.service-card p,
.trust-card p {
  margin: 0;
  color: var(--muted);
}

.service-number {
  width: max-content;
  margin: 0 0 0.55rem;
  padding: 0.24rem 0.48rem;
  border-radius: 8px;
  background: var(--soft);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.showcase {
  background: var(--forest-dark);
  color: var(--white);
}

.showcase h2,
.showcase .section-copy p {
  color: var(--white);
}

.showcase .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.video-grid {
  display: grid;
  gap: 0.8rem;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000000;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.trust-grid {
  display: grid;
  gap: 0.8rem;
}

.trust-card {
  padding: 1.1rem;
  border: 1px solid rgba(6, 72, 32, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 72, 32, 0.08);
}

.trust-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 58px;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-section {
  background: linear-gradient(180deg, var(--paper), #f4fbef);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.gallery-item {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--forest-dark);
  padding: 0;
  box-shadow: 0 14px 32px rgba(6, 72, 32, 0.13);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(2, 40, 19, 0.62), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item.wide {
  grid-column: span 2;
}

.contact {
  background: var(--white);
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0;
}

.contact-list a {
  display: grid;
  gap: 0.1rem;
  padding: 0.95rem;
  border: 1px solid rgba(6, 72, 32, 0.13);
  border-radius: 8px;
  background: var(--paper);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-list strong {
  color: var(--forest-dark);
  font-size: 1.05rem;
}

.map-wrap {
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(6, 72, 32, 0.14);
  background: var(--soft);
}

.map-wrap iframe {
  width: 100%;
  height: 270px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(6, 72, 32, 0.16);
  background: var(--forest-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--white);
}

.contact-form label {
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 0.8rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 0.3rem;
}

.form-note {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2.2rem 0 5.5rem;
  background: var(--forest-dark);
  color: var(--white);
}

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

.footer-grid img {
  border-radius: 8px;
  background: var(--white);
}

.footer-grid p {
  margin: 0.75rem 0 0;
  font-weight: 900;
}

.footer-grid div:last-child {
  display: grid;
  gap: 0.45rem;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.sticky-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(2, 40, 19, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.sticky-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest-dark);
  font-weight: 900;
  text-align: center;
}

.sticky-cta a:first-child {
  background: var(--sun);
}

.scroll-mower {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 16, 8, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  width: min(980px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  background: #000000;
}

.lightbox figcaption {
  margin-top: 0.8rem;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--sun);
  color: var(--forest-dark);
  padding: 0.65rem 0.85rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  body {
    padding-bottom: 0;
  }

  .nav-links {
    display: flex;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-lede {
    font-size: 1.22rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
    padding-inline: 1rem;
  }

  .hero-actions .btn-ghost {
    grid-column: auto;
  }

  .intro-grid {
    grid-template-columns: 1fr auto;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section h2 {
    font-size: 3rem;
  }

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

  .service-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-item,
  .gallery-item img {
    min-height: 240px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 900px) {
  .site-header {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: 90svh;
    padding-bottom: 5.75rem;
  }

  .hero h1 {
    font-size: 5.9rem;
  }

  .scroll-cue {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: grid;
    place-items: center;
    width: 46px;
    height: 66px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
  }

  .scroll-cue span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sun);
    animation: scrollDot 1.5s ease-in-out infinite;
  }

  .hero-proof {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    width: min(var(--max), calc(100% - 4rem));
    margin: 0 auto;
  }

  .about-grid,
  .showcase-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    padding: 1.4rem;
  }

  .scroll-mower {
    --mower-y: 130px;
    position: fixed;
    top: 0;
    right: 10px;
    z-index: 14;
    display: block;
    width: 86px;
    height: 74px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, var(--mower-y), 0) rotate(-1deg);
    transition: opacity 180ms ease;
  }

  .scroll-mower.is-visible {
    opacity: 1;
  }

  .scroll-mower.is-mowing .mower-scene {
    animation: mowerBounce 360ms ease-in-out infinite;
  }

  .mower-scene {
    position: relative;
    width: 86px;
    height: 74px;
    filter: drop-shadow(0 9px 12px rgba(2, 40, 19, 0.26));
    transform-origin: 50% 80%;
  }

  .mower-handle {
    position: absolute;
    top: 2px;
    left: 6px;
    width: 58px;
    height: 6px;
    border-radius: 999px;
    background: var(--forest-dark);
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .mower-handle::after {
    content: "";
    position: absolute;
    top: 7px;
    left: -24px;
    width: 24px;
    height: 6px;
    border-radius: 999px;
    background: var(--forest-dark);
    transform: rotate(-45deg);
    transform-origin: center;
  }

  .mower-grip {
    display: none;
  }

  .mower-deck {
    position: absolute;
    right: 5px;
    bottom: 14px;
    width: 62px;
    height: 26px;
    border: 3px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    background: linear-gradient(135deg, #0b6d31, #8a9b18);
  }

  .mower-engine {
    position: absolute;
    right: 22px;
    bottom: 33px;
    width: 28px;
    height: 24px;
    border-radius: 8px 8px 5px 5px;
    background: linear-gradient(180deg, var(--sun), #d49419);
    box-shadow: inset 0 -4px 0 rgba(2, 40, 19, 0.18);
  }

  .mower-engine::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 5px;
    width: 9px;
    height: 5px;
    border-radius: 5px;
    background: var(--forest-dark);
  }

  .mower-wheel {
    position: absolute;
    bottom: 5px;
    width: 21px;
    height: 21px;
    border: 5px solid var(--forest-dark);
    border-radius: 50%;
    background:
      linear-gradient(90deg, transparent 42%, var(--white) 42% 58%, transparent 58%),
      linear-gradient(0deg, transparent 42%, var(--white) 42% 58%, transparent 58%),
      var(--sky);
  }

  .mower-wheel-back {
    right: 50px;
  }

  .mower-wheel-front {
    right: 11px;
  }

  .scroll-mower.is-mowing .mower-wheel {
    animation: wheelSpin 420ms linear infinite;
  }

  .mower-blade {
    position: absolute;
    right: 26px;
    bottom: 13px;
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    transform-origin: center;
  }

  .scroll-mower.is-mowing .mower-blade {
    animation: bladeFlash 160ms linear infinite;
  }

  .mower-clipping {
    position: absolute;
    right: 69px;
    bottom: 16px;
    width: 11px;
    height: 4px;
    border-radius: 999px;
    background: var(--lime);
    opacity: 0;
  }

  .scroll-mower.is-mowing .mower-clipping {
    animation: clippingPop 720ms ease-out infinite;
  }

  .clipping-two {
    bottom: 26px;
    animation-delay: 140ms !important;
  }

  .clipping-three {
    bottom: 8px;
    animation-delay: 280ms !important;
  }
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(-14px);
    opacity: 0.45;
  }

  50% {
    transform: translateY(14px);
    opacity: 1;
  }
}

@keyframes mowerBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-3px) rotate(2deg);
  }
}

@keyframes wheelSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bladeFlash {
  to {
    transform: rotate(360deg);
  }
}

@keyframes clippingPop {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-28px, -14px) rotate(-42deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
