/* Green Mountain Turf — shared stylesheet.
   Measurements taken from the live Wix site at a 1440px viewport:
   content column 1164px (138px gutters), Inter ExtraBold headings,
   Poppins body copy, Lato Bold buttons, brand green #A1CE4F. */

:root {
  --green: #a1ce4f;
  --green-dark: #86b236;
  --lav: #edecf5;
  --black: #000;
  --white: #fff;
  --maxw: 1164px;
  --font-head: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-btn: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: calc(var(--maxw) + 40px);
  margin: 0 auto;
  padding: 0 20px;
}
.skip-link { position: absolute; left: -9999px; top: 0; background: #000; color: #fff; padding: 10px 16px; z-index: 2000; }
.skip-link:focus { left: 12px; top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 59px;
  padding: 0 23px;
  border-radius: 30px;
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.btn-green { background: var(--green); color: var(--black); }
.btn-green:hover { background: var(--black); color: var(--green); }
.btn-black { background: var(--black); color: var(--green); }
.btn-black:hover { background: var(--green); color: var(--black); }

/* ---------- Header ---------- */
.site-header { position: relative; z-index: 1000; background: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.brand img { width: 326px; height: 64px; object-fit: contain; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: #000; border-radius: 2px; }
.main-nav > ul { display: flex; align-items: center; }
.main-nav li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  color: #000;
  transition: color .2s ease;
}
.main-nav > ul > li:last-child > a { padding-right: 0; }
.main-nav a:hover, .main-nav .active > a { color: var(--green); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 12px;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; }
.dropdown a { display: block; padding: 9px 18px; font-weight: 700; font-size: 15px; letter-spacing: .05em; white-space: nowrap; }

/* ---------- Section scaffolding ---------- */
.section { padding: 72px 0; position: relative; }
.bg-lav { background: var(--lav); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: var(--green);
  margin: 0;
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  flex: 0 0 11px;
  height: 14px;
  background: linear-gradient(90deg, var(--green) 0 3px, transparent 3px 5px, var(--green) 5px 11px);
}
.eyebrow.center::before { order: 0; }
.eyebrow.dark { color: #000; }
.eyebrow.dark::before, .eyebrow.dark.center::after { background: linear-gradient(90deg, #000 0 3px, transparent 3px 5px, #000 5px 11px); }
.h-sec { font-size: 35px; line-height: 49px; margin-top: 3px; }
.lead { font-size: 18px; line-height: 25.2px; }
.section-head { text-align: center; max-width: 980px; margin: 0 auto; }
.section-head .lead { max-width: 557px; margin: 13px auto 0; }
.on-dark, .on-dark .h-sec, .on-dark .lead { color: #fff; }

.copy p { font-size: 18px; line-height: 25.2px; }
.copy p + p { margin-top: 25px; }

/* Two column split used across pages: 563px media + 489px copy */
.split { display: grid; grid-template-columns: 563px 1fr; gap: 38px; align-items: center; }
.split.rev { grid-template-columns: 1fr 563px; }
.split-copy .h-sec { margin-bottom: 14px; }
.split-copy .btn { margin-top: 28px; }
.split-media img { width: 100%; height: 499px; object-fit: cover; border-radius: 20px; }

/* Checklist with the green check icon */
.checklist { margin-top: 24px; }
.checklist li {
  position: relative;
  padding-left: 48px;
  font-size: 16px;
  line-height: 33px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 26px;
  height: 25px;
  background: url("icons/check.svg") center / contain no-repeat;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 397px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  overflow: hidden;
}
/* Wix "BgReveal": the photo stays pinned to the viewport while the section scrolls over it.
   clip-path confines the fixed image to its section. Opacity varies per page (set inline). */
.page-hero, .areas-band { clip-path: inset(0); }
.page-hero .bg { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; object-fit: cover; opacity: .42; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: 40px; line-height: 56px; }
.page-hero p { color: #fff; font-size: 18px; line-height: 25.2px; max-width: 960px; margin: 10px auto 0; }

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  height: 631px;
  background: #f2f2f2 url("img/c8968c0f.jpg") center / cover no-repeat;
  display: flex;
  align-items: flex-start;
}
.hero > .container { padding-top: 127px; }
.hero-copy { max-width: 557px; }
.hero h1 { font-size: 45px; line-height: 63px; max-width: 520px; margin-top: 0; }
.hero h1 .accent { color: var(--green); }
.hero .lead { margin-top: 18px; }
.hero-cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-cta .btn { min-width: 199px; }

/* ---------- Feature strip ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; background: #fff; }
.feature-cell {
  height: 206px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  text-align: center;
}
.feature-cell img { height: 37px; width: auto; }
.feature-cell h3 { font-size: 22px; line-height: 30.8px; max-width: 250px; margin-top: 17px; padding: 0 20px; }
.feature-cell.green { background: var(--green); }
.feature-cell.green h3 { color: #000; }
.feature-cell.black { background: #000; }
.feature-cell.black h3 { color: var(--green); }
.feature-cell:first-child { border-radius: 100px 0 0 100px; }
.feature-cell:last-child { border-radius: 0 100px 100px 0; }

/* ---------- Overlapping pill-shaped image pair (about + features) ---------- */
.img-duo { position: relative; width: 631px; height: 564px; }
.img-duo .small, .img-duo .big { position: absolute; object-fit: cover; border-radius: 170px; }
.img-duo .small { left: 0; top: 0; width: 265px; height: 173px; }
.img-duo .big { left: 186px; top: 34px; width: 445px; height: 530px; border: 9px solid #fff; background: #fff; }
.img-duo.flip { width: 537px; height: 537px; }
.img-duo.flip .small { left: auto; right: 0; top: 0; }
.img-duo.flip .big { left: 0; top: 37px; width: 418px; height: 500px; }
.about-split { display: grid; grid-template-columns: 631px 1fr; gap: 44px; align-items: center; }
.features-split { display: grid; grid-template-columns: 1fr 537px; gap: 60px; align-items: center; }

/* ---------- Service image cards ---------- */
.svc-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 31px 28px; margin-top: 52px; }
.svc-card {
  position: relative;
  width: 369px;
  height: 308px;
  overflow: hidden;
  display: block;
  color: #000;
}
.svc-card > img { width: 100%; height: 100%; object-fit: cover; }
.svc-card .shade {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .61);
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.645, .045, .355, 1);
}
.svc-card .label {
  position: absolute; right: 63px; bottom: 11px;
  width: 278px; height: 47px;
  background: url("icons/card-label.svg") center / 100% 100% no-repeat;
  transition: opacity .3s ease;
}
.svc-card .go {
  position: absolute; right: 0; bottom: 0;
  width: 69px; height: 69px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.svc-card .go img { width: 15px; height: 35px; transform: rotate(90deg); }
.svc-card h3 {
  position: absolute; right: 69px; bottom: 20px;
  width: 200px; text-align: right; padding-right: 10px;
  font-size: 20px; line-height: 28px;
  transition: all .5s cubic-bezier(.645, .045, .355, 1);
}
.svc-card .desc {
  position: absolute; left: 31px; top: 95px; width: 310px;
  color: #fff; font-size: 16px; line-height: 22.4px;
  opacity: 0; transition: opacity .4s ease .1s;
}
.svc-card .more {
  position: absolute; left: 31px; bottom: 20px;
  color: var(--green); font-family: var(--font-head); font-weight: 800; font-size: 20px; line-height: 28px;
  opacity: 0; transition: opacity .4s ease .1s;
}
.svc-card:hover .shade, .svc-card:focus-visible .shade { transform: translateY(0); }
.svc-card:hover .label, .svc-card:focus-visible .label { opacity: 0; }
.svc-card:hover h3, .svc-card:focus-visible h3 { right: auto; left: 31px; bottom: 228px; text-align: left; color: #fff; padding: 0; width: 310px; }
.svc-card:hover .desc, .svc-card:hover .more, .svc-card:focus-visible .desc, .svc-card:focus-visible .more { opacity: 1; }

/* ---------- Service areas band ---------- */
.areas-band { position: relative; background: #000; padding: 83px 0 84px; overflow: hidden; }
.areas-band > .bg { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; object-fit: cover; opacity: .29; }
.areas-band .container { position: relative; }
.areas-grid { display: grid; grid-template-columns: repeat(5, 219px); justify-content: space-between; row-gap: 37px; margin-top: 54px; }
.area-pill {
  position: relative;
  display: block;
  width: 219px; height: 47px;
  background: url("icons/area-pill.svg") center / 100% 100% no-repeat;
  transition: transform .2s ease;
}
.area-pill::before {
  content: "";
  position: absolute; left: 16px; top: 12px;
  width: 16px; height: 21px;
  background: url("icons/pin.svg") center / contain no-repeat;
}
.area-pill span {
  position: absolute; left: 86px; right: 10px; top: 9px;
  font-family: var(--font-head); font-weight: 800; font-size: 20px; line-height: 28px;
  color: #000; white-space: nowrap;
}
.area-pill:hover { transform: translateY(-2px); }

/* ---------- Blog cards (home strip + blog page) ---------- */
.blog-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid rgba(161, 206, 79, .75); background: #fff; min-height: 580px; }
.blog-card .thumb { aspect-ratio: 472 / 354; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 28px 16px 20px; }
.blog-card h3 { font-size: 20px; line-height: 28px; }
.blog-card p {
  margin-top: 11px; font-size: 16px; line-height: 24px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.center-cta { text-align: center; margin-top: 56px; }

/* ---------- Testimonial cards ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 359px); justify-content: space-between; row-gap: 40px; margin-top: 52px; }
.testi-card {
  position: relative;
  width: 359px; height: 467px;
  background: url("icons/testi-card.svg") center / 100% 100% no-repeat;
  text-align: center;
}
.testi-card .avatar { position: absolute; left: 156px; top: 22px; width: 84px; height: 84px; border-radius: 50%; object-fit: cover; }
.testi-card h3 { position: absolute; left: 46px; right: 11px; top: 156px; font-size: 20px; line-height: 28px; }
.testi-card p { position: absolute; left: 46px; right: 11px; top: 200px; font-size: 16px; line-height: 22.4px; }
.testi-card .stars { position: absolute; left: 138px; top: 341px; width: 120px; height: 19px; }

/* ---------- Diamond "includes" tiles (service pages) ---------- */
.diamonds { position: relative; margin: 52px auto 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 1075px; margin: 52px auto 0; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--green); background: #fff; }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 23px 60px 23px 24px;
  font-family: var(--font-body); font-weight: 500; font-size: 18px; line-height: 25px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 26px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid #000; border-bottom: 2px solid #000;
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item .faq-body { padding: 0 24px 24px; font-size: 16px; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--lav); padding: 86px 0; text-align: center; }
.cta-band .lead { max-width: 820px; margin: 13px auto 0; }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: #000; color: #fff; overflow: hidden; }
.site-footer > .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.site-footer .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 247px 328px 280px 1fr;
  padding-top: 77px;
  min-height: 544px;
}
.footer-col h2 { color: #fff; font-size: 29px; line-height: 41px; margin-left: 7px; }
.footer-col h3 { color: #fff; font-size: 25px; line-height: 35px; }
.foot-links { margin-top: 29px; margin-left: 7px; }
.foot-links li { position: relative; padding-left: 39px; }
.foot-links li + li { margin-top: 5px; }
.foot-links li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px;
  background: url("icons/bullet.svg") center / contain no-repeat;
  transform: rotate(90deg);
}
.foot-links a { font-size: 16px; line-height: 24px; color: #fff; transition: color .2s ease; }
.foot-links a:hover { color: var(--green); }
.newsletter { margin-top: 31px; margin-left: 8px; }
.newsletter form { display: flex; align-items: center; gap: 12px; margin-top: 21px; position: relative; }
.newsletter input[type="email"] {
  width: 247px; height: 38px; padding: 0 12px;
  background: transparent; color: #fff;
  border: 1px solid #fff; border-radius: 20px;
  font: 16px var(--font-body);
}
.newsletter input::placeholder { color: #fff; opacity: 1; }
.newsletter button {
  width: 116px; height: 43px; border: 0; border-radius: 30px;
  background: var(--green); color: #000; font: 16px var(--font-body); cursor: pointer;
}
.newsletter button:hover { background: #fff; }
.foot-contact { margin-top: 22px; }
.foot-contact li { display: grid; grid-template-columns: 47px 1fr; font-size: 16px; line-height: 29px; }
.foot-contact li img { width: 18px; height: 18px; margin-top: 5px; object-fit: contain; }
.foot-contact a:hover { color: var(--green); }
.social { margin-top: 62px; }
.social-links { display: flex; gap: 10px; margin-top: 21px; }
.social-links img { width: 29px; height: 29px; }
.footer-bottom { position: relative; border-top: 1px solid var(--green); padding: 24px 0 31px; text-align: center; font-size: 14px; line-height: 21px; }
.footer-bottom a:hover { color: var(--green); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .main-nav > ul > li > a { padding: 14px 12px; }
  .about-split, .features-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .img-duo { width: 100%; max-width: 631px; }
  .img-duo.flip { width: 100%; max-width: 537px; }
  .areas-grid { grid-template-columns: repeat(auto-fill, 219px); justify-content: center; column-gap: 18px; }
  .testi-grid { grid-template-columns: repeat(auto-fill, 359px); justify-content: center; column-gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .brand img { width: 240px; height: 47px; }
  .main-nav {
    display: none; position: absolute; top: 100px; left: 0; right: 0;
    background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.12); padding: 10px 20px 20px;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; }
  .main-nav > ul > li > a { padding: 12px 4px; }
  .dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; padding: 0 0 6px 16px; }
  .dropdown a { padding: 7px 4px; font-weight: 500; }
  .hero { height: auto; padding: 80px 0; background-position: 30% center; }
  .hero-copy { background: rgba(255,255,255,.82); padding: 24px; border-radius: 20px; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-cell:first-child, .feature-cell:last-child { border-radius: 0; }
  .about-split, .features-split, .split, .split.rev { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .split.rev .split-media { order: -1; }
  .img-duo, .img-duo.flip { margin: 0 auto; }
  .blog-strip { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .blog-card { min-height: 0; }
}
@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .h-sec { font-size: 28px; line-height: 38px; }
  .hero h1, .page-hero h1 { font-size: 32px; line-height: 44px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-cell { height: auto; padding: 32px 0; }
  .img-duo { height: 420px; }
  .img-duo .small { width: 190px; height: 124px; }
  .img-duo .big { left: 22%; width: 78%; height: 390px; }
  .img-duo.flip { height: 420px; }
  .img-duo.flip .big { left: 0; width: 78%; height: 380px; }
  .svc-card { width: 100%; max-width: 369px; }
  .testi-card { transform: scale(.9); margin: -20px auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter form { flex-wrap: wrap; }
}
