:root {
  --ink: #18201c;
  --muted: #607069;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dedbd2;
  --green: #1f6b4a;
  --green-dark: #154b36;
  --brick: #b74c2f;
  --clay: #efe5d6;
  --steel: #32424a;
  --gold: #d8a23a;
  --shadow: 0 20px 50px rgba(24, 32, 28, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 8px 24px;
  color: #eef8f2;
  background: var(--green-dark);
  font-size: 14px;
}

.topbar a {
  font-weight: 700;
}

.topbar-phones {
  display: inline-flex;
  gap: 14px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}

.brand img {
  display: block;
  width: 158px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--steel);
  font-weight: 700;
  border-radius: 6px;
}

.nav-links a:hover {
  background: var(--clay);
}

.nav-links .nav-cta {
  color: #fff;
  background: var(--brick);
}

.nav-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
}

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

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2,
.process h2,
.contact-panel h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--brick);
  box-shadow: 0 16px 34px rgba(183, 76, 47, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button.dark {
  color: #fff;
  background: var(--green-dark);
}

.garden-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 700ms ease,
    visibility 700ms ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.66), rgba(16, 24, 20, 0.26) 58%, rgba(16, 24, 20, 0.08)),
    linear-gradient(0deg, rgba(16, 24, 20, 0.62), rgba(16, 24, 20, 0));
}

.slide-copy {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 96px;
  color: #fff;
}

.slide-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.slide-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.slider-controls {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow,
.slider-dots button {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 28px;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.slider-dots button.active {
  width: 28px;
  background: #fff;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.quick-contact > a,
.quick-contact-item {
  min-height: 110px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-contact > a:first-child,
.quick-contact-item:first-child {
  border-radius: 8px 0 0 8px;
}

.quick-contact > a:last-child {
  border-radius: 0 8px 8px 0;
}

.quick-contact span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quick-contact strong {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  font-size: 20px;
}

.section,
.process,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.section h2,
.process h2,
.contact-panel h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.intro > p,
.split p,
.contact-list,
.process p {
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card h3,
.steps h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.18;
}

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

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.service-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 8px;
}

.service-heading h2,
.reviews-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  background: rgba(31, 107, 74, 0.08);
  border-radius: 50%;
}

.service-card.accent {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.service-card.accent::after {
  background: rgba(216, 162, 58, 0.18);
}

.service-icon {
  display: inline-grid;
  min-width: 58px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-weight: 950;
}

.service-card.accent .service-icon {
  color: var(--green-dark);
  background: #fff;
}

.service-card h2 {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-card p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.service-card.accent p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.service-card.accent .eyebrow {
  color: var(--gold);
}

.service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: var(--clay);
  max-width: none;
}

.split > * {
  max-width: 560px;
}

.split > div {
  justify-self: end;
  padding-left: 24px;
}

.split img {
  width: 100%;
  height: min(560px, 70vw);
  object-fit: cover;
}

.process .section-heading {
  max-width: 820px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.steps article {
  min-height: 230px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-weight: 950;
}

.brands {
  overflow: hidden;
  padding: 32px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: min(12vw, 110px);
  pointer-events: none;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), rgba(255, 255, 255, 0));
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), rgba(255, 255, 255, 0));
}

.brand-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 46s linear infinite;
}

.brand-set {
  display: flex;
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
  padding-right: clamp(38px, 5vw, 76px);
}

.brand-set img {
  display: block;
  width: auto;
  max-width: 220px;
  height: 64px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 24px;
}

.contact-panel,
.contact-map {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-list {
  margin-top: 24px;
}

.contact-list p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list a {
  color: var(--green-dark);
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: start;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.social-links span {
  flex: 0 0 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-icons a {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  flex: 0 0 40px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  line-height: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.social-icons img {
  display: block;
  flex: 0 0 auto;
  width: 20px !important;
  min-width: 20px;
  max-width: 20px;
  height: 20px !important;
  min-height: 20px;
  max-height: 20px;
  object-fit: contain;
}

.contact-map {
  padding: 0;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.reviews-section {
  max-width: 1180px;
  min-height: 180px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.reviews-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 46px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 132px;
  height: auto;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer-contact {
  display: grid;
  gap: 4px;
  color: var(--green-dark);
  font-weight: 900;
}

.site-footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  max-width: 216px;
}

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

@media (max-width: 900px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    justify-content: stretch;
  }

  .topbar a:first-child {
    grid-column: 1 / -1;
  }

  .topbar-phones {
    justify-content: end;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 6px);
    left: 24px;
    right: 24px;
    display: none;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-social {
    justify-content: start;
    padding: 8px 0;
  }

  .garden-slider {
    min-height: 560px;
  }

  .slide-copy {
    padding: 86px 24px 96px;
  }

  .quick-contact,
  .intro,
  .service-cards,
  .split,
  .steps,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .quick-contact {
    margin-top: 0;
    padding: 0;
  }

  .quick-contact > a,
  .quick-contact-item,
  .quick-contact > a:first-child,
  .quick-contact-item:first-child,
  .quick-contact > a:last-child {
    border-radius: 0;
    box-shadow: none;
  }

  .intro {
    gap: 20px;
  }

  .split > div {
    justify-self: start;
    padding: 0 24px;
  }

  .split img {
    height: 380px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer-social {
    justify-content: flex-start;
    max-width: none;
  }

}

@media (max-width: 620px) {
  .topbar {
    grid-template-columns: 1fr;
    padding: 8px 16px;
    font-size: 13px;
  }

  .topbar-phones {
    justify-content: start;
  }

  .nav {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .slide-copy,
  .section,
  .process,
  .contact-section,
  .reviews-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .reviews-section {
    padding-bottom: 64px;
  }

  .slide-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .slide-copy h2 {
    font-size: 34px;
  }

  .slider-controls {
    right: 16px;
    bottom: 22px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .