:root {
  --sage: #4a5d4e;
  --sage-dark: #2f3d33;
  --rust: #b45f3a;
  --rust-dark: #8c4a2d;
  --gold: #d4af37;
  --cream: #f5f5f0;
  --slate: #334155;
  --dark: #1e293b;
  --ink: #111827;
  --muted: #64748b;
  --line: #d9ded6;
  --white: #ffffff;
  --teal: #2a9d8f;
  --shadow: 0 18px 48px rgba(30, 41, 59, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--slate);
  background:
    radial-gradient(circle at top right, rgba(180, 95, 58, 0.06), transparent 34%),
    linear-gradient(180deg, #fafaf7 0%, var(--cream) 34%, #f3f4ef 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; transition: color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
a:hover { color: var(--rust); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
}

.skip-link:focus { top: 0; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 240, 0.95);
  border-bottom: 1px solid rgba(74, 93, 78, 0.16);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.18s ease, background 0.18s ease;
}

.site-header.is-scrolled {
  background: rgba(245, 245, 240, 0.99);
  box-shadow: 0 12px 32px rgba(30, 41, 59, 0.12);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage);
  box-shadow: 0 4px 0 var(--gold);
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: grid; line-height: 1; }

.brand-name {
  font-family: "Kanit", Impact, sans-serif;
  color: var(--sage-dark);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand-sub {
  margin-top: 0.18rem;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--rust); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--sage);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rust); color: var(--white); box-shadow: 0 4px 0 var(--rust-dark); }
.btn-primary:hover { background: #a45535; color: var(--white); }
.btn-secondary { color: var(--sage-dark); background: var(--white); border-color: rgba(74, 93, 78, 0.22); }
.btn-ghost { color: var(--white); background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.26); }
.nav-cta { white-space: nowrap; }

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(17, 24, 39, 0.96), rgba(47, 61, 51, 0.9) 48%, rgba(47, 61, 51, 0.26)),
    url("after.png") center right / cover no-repeat;
  color: var(--white);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold) 0 64%, var(--rust) 64% 78%, var(--sage) 78% 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 3rem;
  align-items: end;
  padding: 5rem 0 6rem;
}

.hero h1,
.page-hero h1,
.section-title,
.card h2,
.card h3,
.quote-band h2,
.footer h2,
.footer h3,
.post-body h1,
.post-body h2,
.post-body h3 {
  font-family: "Kanit", Impact, sans-serif;
  color: inherit;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1,
.page-hero h1 {
  max-width: 14ch;
  margin: 0 0 1.4rem;
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  text-transform: uppercase;
}

.hero p,
.page-hero p {
  max-width: 670px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.section-actions,
.inline-links { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-panel {
  padding: 1.35rem;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(245, 245, 240, 0.98), rgba(255, 255, 255, 0.94));
  color: var(--slate);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.26);
}

.hero-panel strong {
  display: block;
  color: var(--sage-dark);
  font-family: "Kanit", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-panel ol {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: quote-flow;
}

.hero-panel li {
  counter-increment: quote-flow;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(74, 93, 78, 0.16);
}

.hero-panel li::before {
  content: counter(quote-flow);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 900;
}

.section { padding: 5.5rem 0; }
.section-compact { padding: 3.5rem 0; }
.section-white { background: var(--white); }
.section-dark { background: var(--dark); color: var(--cream); }
.section-sage { background: var(--sage); color: var(--white); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0;
  color: var(--sage-dark);
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  text-transform: uppercase;
}

.section-dark .section-title,
.section-sage .section-title { color: var(--white); }

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-dark .section-lede,
.section-sage .section-lede { color: rgba(245, 245, 240, 0.78); }

.grid-2,
.grid-3,
.grid-4 { display: grid; gap: 1.1rem; }

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

.step-grid,
.trust-strip { display: grid; gap: 1.1rem; }
.step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid rgba(74, 93, 78, 0.15);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.06);
}

.card-link {
  display: grid;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card-link:hover {
  color: inherit;
  transform: translateY(-3px);
  border-color: rgba(180, 95, 58, 0.34);
  box-shadow: 0 18px 42px rgba(30, 41, 59, 0.12);
}

.card h2,
.card h3 {
  margin: 0 0 0.75rem;
  color: var(--sage-dark);
  font-size: 1.45rem;
}

.card p { margin: 0; }

.card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(74, 93, 78, 0.12);
  border-radius: var(--radius);
}

.service-list,
.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 2rem;
  align-items: center;
}

.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.photo-stack { display: grid; gap: 1rem; }

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 93, 78, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.86);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-bottom: 6px solid var(--gold);
  border-radius: 12px;
  background: var(--sage-dark);
  color: var(--white);
}

.quote-band h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
}

.quote-band p { margin: 0; color: rgba(245, 245, 240, 0.82); }

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(74, 93, 78, 0.14);
  border-radius: var(--radius);
  background: rgba(74, 93, 78, 0.14);
  box-shadow: 0 16px 40px rgba(30, 41, 59, 0.08);
}

.trust-item { background: var(--white); padding: 1.15rem; }
.trust-item strong {
  display: block;
  color: var(--sage-dark);
  font-family: "Kanit", Impact, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}
.trust-item span { display: block; margin-top: 0.35rem; color: var(--muted); font-size: 0.92rem; }

.step-grid { counter-reset: steps; }
.step-card { counter-increment: steps; position: relative; padding-top: 4rem; }
.step-card::before {
  content: counter(steps);
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font-weight: 900;
}

.service-detail { scroll-margin-top: 96px; }
.service-detail + .service-detail { margin-top: 1.1rem; }
.service-detail .card-media { margin-bottom: 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.inline-links { margin-top: 1rem; }
.inline-links a {
  border: 1px solid rgba(74, 93, 78, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}
.inline-links a:hover { border-color: rgba(180, 95, 58, 0.42); color: var(--rust-dark); }

.faq-list { display: grid; gap: 0.9rem; }
.faq-list details {
  border: 1px solid rgba(74, 93, 78, 0.15);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.05);
}
.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--sage-dark);
  font-weight: 900;
}
.faq-list details p { margin: 0; padding: 0 1.1rem 1.1rem; }

.page-hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(17, 24, 39, 0.96), rgba(47, 61, 51, 0.9) 52%, rgba(180, 95, 58, 0.35)),
    url("service-mowing.png") center / cover no-repeat;
}
.page-hero.about {
  background:
    linear-gradient(100deg, rgba(17, 24, 39, 0.96), rgba(47, 61, 51, 0.9) 52%, rgba(180, 95, 58, 0.35)),
    url("before.png") center / cover no-repeat;
}
.page-hero.contact {
  background:
    linear-gradient(100deg, rgba(17, 24, 39, 0.96), rgba(47, 61, 51, 0.9) 52%, rgba(180, 95, 58, 0.35)),
    url("service-cleanup.png") center / cover no-repeat;
}
.page-hero.blog {
  background:
    linear-gradient(100deg, rgba(17, 24, 39, 0.96), rgba(47, 61, 51, 0.9) 52%, rgba(180, 95, 58, 0.35)),
    url("after.png") center / cover no-repeat;
}

.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: grid; gap: 0.35rem; color: var(--sage-dark); font-size: 0.85rem; font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.9rem 0.95rem;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(180, 95, 58, 0.18);
  border-color: var(--rust);
}
.form-help { font-size: 0.82rem; color: var(--muted); }
.stack-card { margin-top: 1rem; }
.narrow-container { max-width: 760px; }
.center-card { text-align: center; padding: 2rem; }
.section-actions-center { justify-content: center; margin-top: 1.5rem; }
.notice {
  display: none;
  padding: 1rem;
  border: 1px solid rgba(42, 157, 143, 0.28);
  border-radius: var(--radius);
  background: rgba(42, 157, 143, 0.12);
  color: var(--sage-dark);
  font-weight: 800;
}
.notice.is-visible { display: block; }

.blog-card { display: grid; gap: 0.75rem; text-decoration: none; }
.blog-card time { color: var(--rust); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.blog-card h2 { margin: 0; font-size: 1.55rem; }
.blog-card p { color: var(--muted); }

.post-body { max-width: 820px; }
.post { padding: 0 0 4rem; margin: 0 0 4rem; border-bottom: 1px solid rgba(74, 93, 78, 0.18); }
.post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.post-kicker { margin: 0 0 0.75rem; color: var(--rust); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.post-body h1,
.post-title { margin: 0 0 1rem; color: var(--sage-dark); font-family: "Kanit", Impact, sans-serif; font-size: clamp(2.35rem, 6vw, 4.35rem); line-height: 0.96; text-transform: uppercase; }
.post-body h2 { margin: 2rem 0 0.75rem; color: var(--sage-dark); font-size: 2rem; text-transform: uppercase; }
.post-body h3 { margin: 1.5rem 0 0.6rem; color: var(--sage-dark); font-size: 1.35rem; text-transform: uppercase; }
.source-list { display: grid; gap: 0.55rem; margin: 1rem 0 0; padding-left: 1.1rem; }
.source-list a { color: var(--rust-dark); font-weight: 800; }
.post-cta { margin: 2rem 0 0; padding: 1.25rem; border-left: 6px solid var(--gold); background: var(--white); color: var(--sage-dark); font-weight: 900; }

.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(47, 61, 51, 0.98) 62%, rgba(30, 41, 59, 0.98)),
    url("service-mowing.png") center / cover no-repeat;
  color: var(--cream);
  padding: 3.5rem 0 2rem;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--gold) 0 52%, var(--rust) 52% 70%, var(--sage) 70% 100%);
}

.footer-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(245, 245, 240, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 245, 240, 0.06);
}
.footer-cta h2 { margin: 0 0 0.35rem; color: var(--white); font-size: clamp(1.8rem, 3vw, 3rem); text-transform: uppercase; }
.footer-cta p { margin: 0; }
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 0.75fr));
  gap: 2rem;
}
.footer a { color: rgba(245, 245, 240, 0.82); text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer h2,
.footer h3 { margin: 0 0 0.8rem; color: var(--white); text-transform: uppercase; }
.footer ul { display: grid; gap: 0.5rem; margin: 0; padding: 0; list-style: none; }
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 245, 240, 0.14);
  color: rgba(245, 245, 240, 0.58);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
.nav-links {
    position: absolute;
    inset: 74px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(30, 41, 59, 0.14);
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  html.js .nav-links {
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
  }
  html.js .nav-links.is-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header.is-nav-open { box-shadow: 0 18px 34px rgba(30, 41, 59, 0.14); }
  .nav-links a { padding: 0.75rem; border-radius: var(--radius); }
  .nav-links .btn { margin-top: 0.5rem; }
  .hero-grid,
  .section-head,
  .split,
  .quote-band,
  .footer-cta,
  .footer-grid { grid-template-columns: 1fr; }
  .hero {
    background:
      linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(47, 61, 51, 0.88)),
      url("after.png") center / cover no-repeat;
  }
  .grid-3,
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .step-grid,
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .nav { min-height: 64px; }
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: 0.64rem; }
  .hero { min-height: auto; }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.2rem);
    max-width: 10.5ch;
  }
  .hero p,
  .page-hero p { font-size: 1rem; }
  .grid-2,
  .grid-3,
  .grid-4,
  .step-grid,
  .trust-strip,
  .form-row,
  .photo-pair { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .section-compact { padding: 2.5rem 0; }
  .hero-grid,
  .page-hero { padding: 3rem 0 3.5rem; }
  .hero-actions,
  .section-actions,
  .inline-links { flex-direction: column; }
  .hero-actions .btn,
  .section-actions .btn,
  .inline-links a { width: 100%; }
  .quote-band,
  .footer-cta { padding: 1.15rem; }
  .btn { width: 100%; }
  .photo-frame img { min-height: 200px; }
  .trust-strip { gap: 0; }
  .trust-item { padding: 1rem; }
}
