/* ================================================================
   Let's Do The Work — letsdothe.work
   Toronto lawn care & property maintenance
   ================================================================ */

:root {
  --ink: #14231a;
  --pine-950: #0f2e1c;
  --pine-900: #143c24;
  --pine: #1b5230;
  --fern: #2e7d46;
  --lime: #a9d857;
  --lime-deep: #8fc23e;
  --cream: #f7f5ee;
  --sand: #edeae0;
  --white: #ffffff;
  --line: #ddd9cc;
  --muted: #55645b;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(20, 35, 26, 0.06), 0 8px 24px rgba(20, 35, 26, 0.07);
  --font: "Archivo", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--fern); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

section { padding: clamp(56px, 9vw, 100px) 0; }

/* ---------- type ---------- */

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.015em; }

h1 { font-size: clamp(2.5rem, 6.2vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 14px;
}

.on-dark .eyebrow { color: var(--lime); }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.on-dark .section-head p { color: rgba(247, 245, 238, 0.75); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  text-decoration: none !important;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--pine); color: var(--cream); }
.btn-primary:hover { background: var(--pine-900); }

.on-dark .btn-primary { background: var(--lime); color: var(--ink); }
.on-dark .btn-primary:hover { background: var(--lime-deep); }

.btn-ghost { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn-ghost:hover { background: rgba(27, 82, 48, 0.08); }

.on-dark .btn-ghost { color: var(--cream); border-color: rgba(247, 245, 238, 0.5); }
.on-dark .btn-ghost:hover { background: rgba(247, 245, 238, 0.12); border-color: var(--cream); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; }
.brand svg { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-top {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
.brand-main { font-size: 1.28rem; font-weight: 900; color: var(--ink); letter-spacing: -0.01em; }
.brand-main em { font-style: normal; color: var(--pine); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.nav-links a:hover { color: var(--pine); }
.nav-links .btn { padding: 11px 20px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  color: var(--cream);
  padding: clamp(90px, 13vw, 170px) 0 clamp(80px, 11vw, 150px);
  background:
    linear-gradient(100deg, rgba(10, 26, 16, 0.92) 0%, rgba(10, 26, 16, 0.62) 48%, rgba(10, 26, 16, 0.22) 100%),
    url("img/hero.jpg") center / cover no-repeat;
  background-color: var(--pine-950);
}

.hero-inner { max-width: 660px; }
.hero p.lede {
  margin-top: 20px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(247, 245, 238, 0.88);
  max-width: 540px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 36px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(247, 245, 238, 0.85);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; fill: var(--lime); flex: none; }

/* ---------- stats strip ---------- */

.stats { background: var(--sand); border-bottom: 1px solid var(--line); padding: 34px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat b { display: block; font-size: 1.7rem; font-weight: 900; color: var(--pine); letter-spacing: -0.02em; }
.stat span { font-size: 0.88rem; font-weight: 600; color: var(--muted); }

/* ---------- services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pine);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.chip {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(169, 216, 87, 0.25);
  color: var(--pine-900);
  border: 1px solid var(--lime-deep);
  padding: 3px 10px;
  border-radius: 99px;
}

/* ---------- how it works ---------- */

.how { background: var(--pine-950); color: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: rgba(247, 245, 238, 0.05);
  border: 1px solid rgba(247, 245, 238, 0.14);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; color: var(--white); }
.step p { font-size: 0.95rem; color: rgba(247, 245, 238, 0.75); }

/* ---------- service area ---------- */

.area-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.area-list li {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.92rem;
  font-weight: 600;
}
.area-note { margin-top: 22px; font-size: 0.95rem; color: var(--muted); }
.area-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- reviews ---------- */

.reviews { background: var(--sand); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { display: flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; fill: var(--lime-deep); }
.review blockquote { font-size: 0.98rem; line-height: 1.55; flex: 1; }
.review cite { font-style: normal; font-weight: 700; font-size: 0.9rem; color: var(--muted); }

/* ---------- seasonal banner ---------- */

.season {
  background: var(--pine);
  color: var(--cream);
  padding: clamp(40px, 6vw, 64px) 0;
}
.season-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.season h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); max-width: 640px; }
.season p { margin-top: 8px; color: rgba(247, 245, 238, 0.8); font-size: 1rem; }

/* ---------- about ---------- */

.about-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16 / 10; object-fit: cover; }
.about p { margin-top: 16px; color: var(--muted); }
.about .sig { margin-top: 22px; font-weight: 800; color: var(--ink); font-size: 1.05rem; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 22px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fern);
  flex: none;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 22px 20px; color: var(--muted); font-size: 0.97rem; }

/* ---------- quote form ---------- */

.quote { background: var(--pine-950); color: var(--cream); }
.quote-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.quote-side p { margin-top: 14px; color: rgba(247, 245, 238, 0.78); }
.quote-side .contact-line { margin-top: 26px; font-weight: 600; }
.quote-side .contact-line a { color: var(--lime); }

.quote-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 38px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 700; }
.field input,
.field select,
.field textarea {
  font-family: var(--font);
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--fern);
  outline-offset: 1px;
  border-color: var(--fern);
}
.field textarea { resize: vertical; min-height: 96px; }
.quote-form .btn { justify-content: center; width: 100%; }
.form-fine { font-size: 0.8rem; color: var(--muted); text-align: center; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(247, 245, 238, 0.72);
  padding: 56px 0 40px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .brand-top { color: rgba(247, 245, 238, 0.5); }
.site-footer .brand-main { color: var(--cream); }
.site-footer .brand-main em { color: var(--lime); }
.site-footer h4 {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: rgba(247, 245, 238, 0.72); }
.site-footer a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(247, 245, 238, 0.14);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(247, 245, 238, 0.45);
}

/* ---------- thanks page ---------- */

.thanks-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--pine-950);
  color: var(--cream);
}
.thanks-hero .eyebrow { color: var(--lime); }
.thanks-hero p { margin: 18px 0 30px; color: rgba(247, 245, 238, 0.8); max-width: 520px; }

/* ---------- reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 26px;
    gap: 18px;
    display: none;
  }
  .nav-open .nav-links { display: flex; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .area-wrap, .about-wrap, .quote-wrap { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .about-photo { order: -1; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
