/* Artificial Grass Oakville — "Lakeside upscale airy"
   White base / deep forest green / soft sky-blue support.
   Lora (serif accents) + Inter (sans body). One file, no build step. */

:root {
  --forest: #1c4636;
  --forest-deep: #123227;
  --forest-soft: #2e5c49;
  --sky: #5d97b5;
  --sky-deep: #3c7390;
  --sky-wash: #eef6fa;
  --mist: #f6faf8;
  --ink: #20312a;
  --muted: #5c6e65;
  --line: #e2ece7;
  --white: #ffffff;
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 40px -24px rgba(18, 50, 39, 0.35);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest-deep);
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--sky-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest); }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 0.7rem 1.2rem;
  z-index: 200;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
.skip-link:hover { color: #fff; } /* keep text visible: a:hover (0,1,1) would otherwise paint forest-on-forest */

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.4rem; }
.container--narrow { max-width: 820px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 46px; height: 46px; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--forest-deep);
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--forest); }

/* dropdown sub-nav */
.site-nav .has-sub { position: relative; }
.sub-toggle {
  display: flex; align-items: center; gap: 7px;
  font: inherit; font-size: 0.95rem; font-weight: 500; color: var(--ink);
  background: none; border: none; cursor: pointer; padding: 0; line-height: inherit;
}
.sub-toggle:hover, .has-sub:hover > .sub-toggle, .has-sub:focus-within > .sub-toggle { color: var(--forest); }
.sub-toggle .caret {
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; transition: transform 0.2s ease;
}
.has-sub:hover > .sub-toggle .caret, .sub-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }
.site-nav .sub-menu {
  display: block;
  position: absolute; top: calc(100% + 14px); left: 0; min-width: 226px; z-index: 200;
  list-style: none; margin: 0; padding: 8px;
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.site-nav .sub-menu::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 14px; }
.has-sub:hover > .sub-menu, .has-sub:focus-within > .sub-menu, .sub-toggle[aria-expanded="true"] + .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav .sub-menu li { border: 0; }
.site-nav .sub-menu a {
  display: block; padding: 9px 13px; border-radius: 10px; white-space: nowrap;
  color: var(--ink); font-size: 0.92rem; font-weight: 500;
}
.site-nav .sub-menu a:hover { background: var(--mist); color: var(--forest); }
.site-nav .sub-menu a[aria-current="page"] { color: var(--forest); }
.site-nav a[aria-current="page"] { color: var(--forest); }

.header-phone {
  text-decoration: none;
  color: var(--forest-deep);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--forest-deep); color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, 0.75); color: #fff; background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.btn--light { background: #fff; color: var(--forest-deep); }
.btn--light:hover { background: var(--sky-wash); color: var(--forest-deep); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.02rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest-deep);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 920px) {
  .header-phone, .site-header .btn { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.6rem 0; }
  .site-nav li { border-top: 1px solid var(--mist); }
  .site-nav li:first-child { border-top: 0; }
  .site-nav a { display: block; padding: 0.9rem 1.6rem; font-size: 1.05rem; }
  /* mobile accordion sub-nav */
  .site-nav .has-sub { position: static; }
  .site-nav .sub-toggle {
    width: 100%; justify-content: space-between; font-size: 1.05rem; padding: 0.9rem 1.6rem;
  }
  .site-nav .sub-menu {
    position: static; min-width: 0; opacity: 1; visibility: hidden; transform: none;
    background: var(--mist); border: 0; border-radius: 0; box-shadow: none;
    padding: 0; margin: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease, visibility 0.25s ease;
  }
  .site-nav .sub-toggle[aria-expanded="true"] + .sub-menu { visibility: visible; max-height: 480px; }
  .site-nav .sub-menu li { border-top: 1px solid var(--line); }
  .site-nav .sub-menu a { padding: 0.8rem 1.6rem 0.8rem 2.4rem; font-size: 1rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 86vh;
  color: #fff;
  isolation: isolate;
}
.hero--inner { min-height: 62vh; }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 31, 23, 0.82) 0%, rgba(10, 31, 23, 0.35) 55%, rgba(10, 31, 23, 0.18) 100%);
}

.hero .container { padding-top: 7rem; padding-bottom: 4.5rem; }

.hero h1 { color: #fff; max-width: 17ch; margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: #cfe6f2; }

.hero-lede {
  max-width: 56ch;
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}
.hero-lede a { color: #cfe6f2; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 1.1rem;
}
.hero .eyebrow { color: #a8cede; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumbs a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs span[aria-hidden] { margin: 0 0.45rem; opacity: 0.6; }

/* ---------- Sections ---------- */

.section { padding: 6.2rem 0; }
.section--mist { background: var(--mist); }
.section--sky { background: var(--sky-wash); }

.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { color: var(--muted); font-size: 1.1rem; }

/* Product grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 1020px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--forest-deep);
}
.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 23, 0.78) 0%, rgba(10, 31, 23, 0.05) 55%);
}
.product-card:hover img { transform: scale(1.045); }
.product-card-label {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.15rem;
  z-index: 1;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.3;
}
.product-card-label small {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #bcd9e7;
  margin-top: 0.25rem;
}

/* Benefits list */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.4rem; } }

.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  display: flex;
  gap: 0.85rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.check-list li:last-child { border-bottom: 0; }
.check-list svg { flex: 0 0 22px; margin-top: 0.28rem; }

/* Feature blocks (benefit cards on service pages) */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
}
.feature h3 { margin-bottom: 0.6rem; }
.feature p { color: var(--muted); font-size: 0.99rem; }
.section--mist .feature, .section--sky .feature { border-color: transparent; box-shadow: 0 10px 30px -22px rgba(18, 50, 39, 0.4); }

.closing-note {
  max-width: 760px;
  margin: 2.8rem auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--forest-soft);
}

/* Steps */

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
@media (max-width: 880px) { .step-grid { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 2rem 1.7rem 1.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--sky);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.18rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.gallery-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .gallery-grid--three { grid-template-columns: 1fr; } }

/* Service areas */

.area-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1.6rem;
}
.area-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

/* FAQ */

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  padding: 1.25rem 0.2rem;
  font-family: var(--serif);
  font-size: 1.13rem;
  color: var(--forest-deep);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sky-deep);
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .faq-a { padding: 0 0.2rem 1.4rem; color: var(--muted); max-width: 70ch; }

/* Quote form */

.quote-panel {
  background: var(--sky-wash);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3.4rem);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 880px) { .quote-layout { grid-template-columns: 1fr; gap: 2rem; } }

.badge-row { display: flex; gap: 1.2rem; margin-top: 1.8rem; }
.badge-row img { width: 108px; height: auto; }

.quote-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem 1.1rem;
}
@media (max-width: 620px) { .quote-form .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--forest-deep);
}
.field label .req { color: var(--sky-deep); font-weight: 500; }
.field input, .field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdfe9;
  border-radius: 10px;
  padding: 0.78rem 0.95rem;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--sky);
  outline-offset: 1px;
  border-color: var(--sky);
}
.field small { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; }
.field textarea { min-height: 120px; resize: vertical; }

.address-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.1rem;
  grid-column: 1 / -1;
}
@media (max-width: 620px) { .address-grid { grid-template-columns: 1fr; } }

.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions { grid-column: 1 / -1; margin-top: 0.4rem; }
.form-confirm {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  font-weight: 500;
  color: var(--forest-deep);
}
.form-error { color: #9c3325; font-size: 0.95rem; margin-top: 0.8rem; }

/* Contact info card */

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
}
.info-card dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-top: 1.3rem;
}
.info-card dt:first-child { margin-top: 0; }
.info-card dd { margin: 0.25rem 0 0; font-size: 1.05rem; }
.info-card dd a { text-decoration: none; color: var(--forest-deep); font-weight: 600; }
.info-card dd a:hover { text-decoration: underline; }
.info-card .note { font-size: 0.85rem; color: var(--muted); }

/* CTA band */

.cta-band {
  background: linear-gradient(120deg, var(--forest-deep), var(--forest) 60%, #2a5a47);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}
.cta-band h2 { color: #fff; margin-bottom: 0.6rem; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 2rem; }

/* Prose (privacy / about long copy) */

.prose h2 { font-size: 1.55rem; margin-top: 2.6rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.45rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--forest-deep);
  color: #c9d8d1;
  padding: 4.6rem 0 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 0.8fr;
  gap: 2.6rem;
  padding-bottom: 3rem;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: 56px; margin-bottom: 1rem; }
.footer-brand p { color: #a9bcb2; font-size: 0.92rem; }
.footer-brand strong { color: #fff; font-family: var(--serif); font-weight: 500; }

.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fb6c8;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: #c9d8d1; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: #8aa297;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: space-between;
}

/* ---------- Mobile call bar ---------- */

.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr;
  background: var(--forest-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.call-bar a {
  text-align: center;
  padding: 0.95rem 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.call-bar a + a { border-left: 1px solid rgba(255, 255, 255, 0.15); background: var(--forest); }
@media (max-width: 920px) {
  .call-bar { display: grid; }
  body { padding-bottom: 54px; }
}

/* 404 */
.error-hero { text-align: center; padding: 7rem 0; }
.error-hero .big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 6rem;
  color: var(--sky);
  line-height: 1;
}

/* Mobile overflow guards: prevent horizontal scroll from long words and wide tables */
h1, h2, h3, h4 { overflow-wrap: break-word; }
main table { display: block; overflow-x: auto; max-width: 100%; }
