@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #3a4a3a;
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}
body.nav-open .nav__logo-text {
  color: #1a1f1a;
}
body.nav-open .nav__logo-text em {
  color: #2d6a1f;
}
body.nav-open .nav__phone {
  color: #2d6a1f;
}
body.nav-open .nav__phone:hover {
  background: rgba(45, 106, 31, 0.1);
  color: #1a3d17;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .container {
    padding-inline: 1.5rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal.reveal--delay-4 {
  transition-delay: 0.4s;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.btn--primary {
  background: #2d6a1f;
  color: #ffffff;
}
.btn--primary:hover {
  background: #1a3d17;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 31, 0.35);
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: #2d6a1f;
  border: 2px solid #2d6a1f;
}
.btn--outline:hover {
  background: #2d6a1f;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header--light h2, .section-header--light .section-sub {
  color: #ffffff;
}
.section-header--light .section-eyebrow {
  color: #f4b942;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d6a1f;
  margin-bottom: 0.6rem;
}
.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: #1a1f1a;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 1rem;
  color: #6b7b6b;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}
.site-header.is-scrolled .nav__link {
  color: #1a1f1a;
}
.site-header.is-scrolled .nav__link--cta {
  background: #2d6a1f;
  color: #ffffff !important;
}
.site-header.is-scrolled .nav__link--cta:hover {
  background: #3d8a2a;
  color: #ffffff !important;
}
.site-header.is-scrolled .nav__toggle span {
  background: #1a1f1a;
}
.site-header.is-scrolled .nav__phone {
  color: #2d6a1f;
}
.site-header.is-scrolled .nav__phone:hover {
  background: rgba(45, 106, 31, 0.08);
  color: #1a3d17;
}

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

.nav__logo {
  position: relative;
  z-index: 1003;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav__logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
.nav__logo-text em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4b942;
  margin-top: 1px;
  transition: color 0.3s ease;
}
.is-scrolled .nav__logo-text {
  color: #1a1f1a;
}
.is-scrolled .nav__logo-text em {
  color: #2d6a1f;
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(26, 61, 23, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav__backdrop {
    display: none;
  }
}

body.nav-open .nav__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  z-index: 1003;
}
@media (min-width: 1024px) {
  .nav__actions {
    display: none;
  }
}

.nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}
@media (max-width: 1023.98px) {
  .nav__phone:hover {
    background: rgba(255, 255, 255, 0.12);
  }
  .nav__phone:active {
    transform: scale(0.96);
  }
}

.nav__phone-icon {
  width: 1.28rem;
  height: 1.28rem;
  display: block;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  z-index: 1003;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .nav__toggle:hover {
    background: rgba(255, 255, 255, 0.12);
  }
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, background 0.3s ease;
  transform-origin: center;
}
.nav__toggle[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.nav__toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: #2d6a1f;
}
.nav__toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #2d6a1f;
}

.site-header.is-scrolled .nav__toggle[aria-expanded=true] {
  background: rgb(255, 255, 255);
}

.nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  min-height: 100%;
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: calc(5.25rem + env(safe-area-inset-top, 0px)) 1.75rem calc(2rem + env(safe-area-inset-bottom, 0px));
  gap: 0.2rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 249, 245, 0.96) 50%, rgba(238, 244, 234, 0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s ease;
}
.nav__links.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .nav__links {
    position: static;
    flex-direction: row;
    align-items: center;
    height: auto;
    min-height: 0;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: auto;
    gap: 0.25rem;
  }
}

.nav__link {
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1f1a;
  border-radius: 6px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 1023.98px) {
  .nav__link {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.2rem, 4.5vw, 1.45rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    text-align: center;
    min-width: min(18rem, 100%);
  }
  .nav__link:hover {
    background: rgba(45, 106, 31, 0.08);
    color: #2d6a1f;
  }
}
@media (min-width: 1024px) {
  .nav__link {
    color: #ffffff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    min-width: 0;
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
  }
  .nav__link:hover {
    color: #f4b942;
    background: transparent;
  }
}
.nav__link--cta {
  background: #2d6a1f;
  color: #ffffff !important;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
}
@media (max-width: 1023.98px) {
  .nav__link--cta {
    display: inline-block;
    margin-top: 3rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.2rem 2.75rem;
    min-width: min(18rem, 100%);
  }
  .nav__link--cta:hover {
    background: #3d8a2a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(45, 106, 31, 0.3);
  }
}
@media (min-width: 1024px) {
  .nav__link--cta {
    margin-top: 0;
    margin-left: 0.5rem;
    background: #f4b942;
    color: #1a1f1a !important;
  }
  .nav__link--cta:hover {
    background: #d49825;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(244, 185, 66, 0.4);
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 61, 23, 0.82) 0%, rgba(26, 61, 23, 0.55) 50%, rgba(0, 0, 0, 0.3) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 8rem 4rem;
  max-width: 700px;
}
@media (min-width: 768px) {
  .hero__content {
    padding-block: 10rem 5rem;
  }
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f4b942;
  margin-bottom: 0.75rem;
}
.hero__headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__headline span {
  color: #f4b942;
  display: inline;
}
.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.hero__trust span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: #ffffff;
  opacity: 0.7;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll svg {
  width: 2rem;
  height: 2rem;
}
.hero__scroll:hover {
  opacity: 1;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid #d8e8d2;
  padding: 2rem 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .trust-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trust-bar__item svg {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  color: #2d6a1f;
  background: #e8f5e2;
  padding: 0.5rem;
  border-radius: 10px;
}
.trust-bar__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1f1a;
  margin-bottom: 0.1rem;
}
.trust-bar__item span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #6b7b6b;
  /* Reserve two lines so one-line blurbs match “Attention to Detail” */
  min-height: 2.9em;
}

.services {
  background: #f7f9f5;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .services {
    padding: 7rem 0;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services__cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #d8e8d2;
}
.services__cta p {
  font-size: 1.1rem;
  color: #6b7b6b;
  margin-bottom: 1rem;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #d8e8d2;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.service-card:hover .service-card__img-wrap img {
  transform: scale(1.06);
}
.service-card__img-wrap {
  height: 180px;
  overflow: hidden;
}
.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card__body {
  padding: 1.25rem;
}
.service-card h3 {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #1a1f1a;
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.85rem;
  color: #6b7b6b;
  line-height: 1.6;
}

.why-us {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .why-us {
    padding: 7rem 0;
  }
}
.why-us__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.why-us__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 61, 23, 0.9) 0%, rgba(26, 61, 23, 0.75) 100%);
}
.why-us__content {
  position: relative;
  z-index: 1;
}
.why-us__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .why-us__body {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}
.why-us__text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.why-us__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.why-us__stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-us__stat:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.why-us__stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #f4b942;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.why-us__stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.reviews {
  background: #f7f9f5;
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .reviews {
    padding: 7rem 0;
  }
}
.reviews__summary {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.reviews__score {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1px solid #d8e8d2;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
}
.reviews__score-num {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #1a1f1a;
}
.reviews__score-stars {
  font-size: 1rem;
  color: #f4b942;
  letter-spacing: 0.05em;
}
.reviews__score-count {
  font-size: 0.78rem;
  color: #6b7b6b;
  font-weight: 500;
}
.reviews__platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 20px;
}
.reviews__platforms--bottom {
  margin-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.reviews__platform-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid #d8e8d2;
  background: #ffffff;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reviews__platform-badge svg {
  width: 1rem;
  height: 1rem;
}
.reviews__platform-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.reviews__platform-badge--google {
  color: #444;
}
.reviews__platform-badge--fb {
  color: #1877F2;
}
.reviews__read-all {
  display: block;
  width: fit-content;
  margin: 0.85rem auto 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2d6a1f;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(45, 106, 31, 0.35);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reviews__read-all:hover {
  text-decoration-color: #2d6a1f;
  color: rgb(34.9489051095, 82.3240875912, 24.0759124088);
}
.reviews__carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.reviews__carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d8e8d2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reviews__arrow svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #1a1f1a;
}
.reviews__arrow:hover {
  background: #2d6a1f;
  border-color: #2d6a1f;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.reviews__arrow:hover svg {
  color: #ffffff;
}
.reviews__arrow--prev {
  left: -0.5rem;
}
.reviews__arrow--next {
  right: -0.5rem;
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.reviews__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8e8d2;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.reviews__dots button.is-active {
  background: #2d6a1f;
  width: 24px;
  border-radius: 4px;
}

.review-card {
  flex: 0 0 calc((100% - 0px) / 1);
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #d8e8d2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}
@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc((100% - 3rem) / 3);
  }
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-card__header strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1f1a;
  margin-bottom: 0.2rem;
}
.review-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--av-color, #2d6a1f);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.review-card__platform {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: #6b7b6b;
}
.review-card__platform svg {
  width: 0.85rem;
  height: 0.85rem;
}
.review-card__platform--fb {
  color: #1877F2;
}
.review-card__platform--google {
  color: #888;
}
.review-card__stars {
  font-size: 0.95rem;
  color: #f4b942;
  letter-spacing: 0.05em;
  line-height: 1;
}
.review-card blockquote {
  font-size: 0.88rem;
  color: #3a4a3a;
  line-height: 1.7;
  flex-grow: 1;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
}
.review-card__date {
  font-size: 0.75rem;
  color: #6b7b6b;
  display: block;
}

.gallery {
  padding: 5rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .gallery {
    padding: 7rem 0;
  }
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}
.gallery__item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin: 0;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 61, 23, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery__item:hover::after {
  opacity: 1;
}

.grass-seed {
  background: #f7f9f5;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .grass-seed {
    padding: 7rem 0;
  }
}
.grass-seed__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .grass-seed__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grass-seed__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grass-seed__note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #e8f5e2;
  border: 1px solid #c8e0bc;
  border-radius: 16px;
  font-size: 0.9rem;
  color: #1a3d17;
}
.grass-seed__note svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #2d6a1f;
}

.seed-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid #d8e8d2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.seed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: #e8f5e2;
}
.seed-card:hover .seed-card__media img {
  transform: scale(1.04);
}
.seed-card__media {
  aspect-ratio: 4/3;
  margin: -1.75rem -1.5rem 1.25rem;
  overflow: hidden;
  background: #e8f5e2;
}
.seed-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.seed-card h3 {
  font-size: 1.05rem;
  color: #1a1f1a;
  margin-bottom: 0.5rem;
}
.seed-card p {
  font-size: 0.85rem;
  color: #6b7b6b;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.seed-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.seed-card ul li {
  font-size: 0.8rem;
  color: #2d6a1f;
  font-weight: 500;
  padding-left: 1rem;
  position: relative;
}
.seed-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5aad3f;
}

.about {
  padding: 5rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .about {
    padding: 7rem 0;
  }
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr 1.1fr;
  }
}
.about__image {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about__image {
    margin-inline: 0;
  }
}
.about__img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  aspect-ratio: 4/5;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .about__badge {
    right: -2rem;
  }
}
.about__badge svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #2d6a1f;
}
.about__badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1f1a;
}
.about__badge span {
  font-size: 0.75rem;
  color: #6b7b6b;
}
.about__text h2 {
  margin-bottom: 1rem;
}
.about__text p {
  color: #3a4a3a;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__text p:last-of-type {
  margin-bottom: 1.5rem;
}
.about__lead {
  font-size: 1.1rem;
  color: #1a1f1a;
}
.about__review {
  border-top: 1px solid #d8e8d2;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
.about__stars {
  font-size: 1.25rem;
  color: #f4b942;
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
}

.service-area {
  background: #f7f9f5;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .service-area {
    padding: 7rem 0;
  }
}
.service-area__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .service-area__inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}
.service-area__info p {
  color: #3a4a3a;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-area__cities {
  margin-bottom: 1.5rem;
}
.service-area__cities h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7b6b;
  margin-bottom: 0.75rem;
}
.service-area__cities ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.service-area__cities ul li {
  font-size: 0.9rem;
  color: #3a4a3a;
  font-weight: 500;
}
.service-area__note {
  font-size: 0.9rem;
  color: #6b7b6b;
  margin-bottom: 1.5rem !important;
}
.service-area__map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  height: 400px;
}
@media (min-width: 1024px) {
  .service-area__map {
    height: 480px;
  }
}
.service-area__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact {
  position: relative;
  padding: 5rem 0;
  background: #1a3d17;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .contact {
    padding: 7rem 0;
  }
}
.contact__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(45, 106, 31, 0.4) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(244, 185, 66, 0.1) 0%, transparent 50%);
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .contact__inner {
    grid-template-columns: 1.1fr 1fr;
  }
}
.contact__text h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}
.contact__text p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.2s;
}
.contact__detail svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: #f4b942;
}
.contact__detail:hover {
  color: #f4b942;
}
.contact__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__cta-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact__cta-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}
.contact__cta-btn strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}
.contact__cta-btn span {
  font-size: 0.85rem;
  opacity: 0.85;
}
.contact__cta-btn--call {
  background: #2d6a1f;
  color: #ffffff;
}
.contact__cta-btn--call:hover {
  background: #3d8a2a;
  transform: translateX(4px);
}
.contact__cta-btn--text {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.contact__cta-btn--text:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}
.contact__review-cta {
  text-align: center;
  padding: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}
.contact__review-cta p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.3rem;
}
.contact__review-cta a {
  color: #f4b942;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.contact__review-cta a:hover {
  opacity: 0.8;
}

.footer {
  background: #0e2410;
  color: rgba(255, 255, 255, 0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}
.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}
.footer__logo-text em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4b942;
  margin-top: 2px;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__social a svg {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
}
.footer__social a:hover {
  background: #2d6a1f;
  transform: translateY(-2px);
}
.footer__links h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__links ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer__links ul li a:hover {
  color: #f4b942;
}
.footer__contact h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}
.footer__contact a, .footer__contact p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer__contact a:hover {
  color: #f4b942;
}
.footer__contact .btn {
  margin-top: 1rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .floating-cta {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .floating-cta {
    display: none;
  }
}
.floating-cta__btn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.floating-cta__btn svg {
  width: 1.3rem;
  height: 1.3rem;
}
.floating-cta__btn:hover {
  transform: scale(1.1);
}
.floating-cta__btn--call {
  background: #2d6a1f;
  color: #ffffff;
}
.floating-cta__btn--text {
  background: #ffffff;
  color: #2d6a1f;
  border: 2px solid #e8f5e2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f7f9f5;
}

::-webkit-scrollbar-thumb {
  background: #3d8a2a;
  border-radius: 3px;
}

:focus-visible {
  outline: 2px solid #2d6a1f;
  outline-offset: 3px;
  border-radius: 4px;
}

/*# sourceMappingURL=style.css.map */
