/* Oso NPK Lawn Care — placeholder site
   Palette: bark / moss / clover / honey / clay on paper + linen
   Type: Bricolage Grotesque (display), DM Sans (body + labels)
   Signature: hard-offset shadows, patch badge, bear mascot */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --bark: #14261c;
  --bark-soft: #223b2c;
  --moss: #1f5c3d;
  --clover: #3e9b63;
  --honey: #f0a93b;
  --clay: #d4552f;
  --pelt: #6b4b2f;
  --cream: #f3d9a4;

  --paper: #ffffff;
  --linen: #f4f3ee;
  --line: #e2e1d9;
  --slate: #5c6660;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --hard: 5px 5px 0 var(--bark);
  --hard-sm: 3px 3px 0 var(--bark);
  --pad: clamp(64px, 8.5vw, 116px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--bark);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); font-weight: 700; line-height: 1.24; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

/* ---------- labels ---------- */
.eyebrow {
  font-family: var(--body); font-weight: 700; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--moss);
  margin: 0 0 16px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--honey); border: 1.5px solid var(--bark); flex: none;
}
.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: .97rem;
  padding: 14px 24px; border-radius: 999px; text-decoration: none;
  border: 2px solid var(--bark); background: var(--paper); color: var(--bark);
  box-shadow: var(--hard-sm); cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--bark); }
.btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--bark); }
.btn-primary { background: var(--honey); }
.btn-moss { background: var(--moss); color: #fff; }
.btn-light { background: #fff; }
.btn-plain { box-shadow: none; border-color: transparent; padding-left: 8px; padding-right: 8px; }
.btn-plain:hover { box-shadow: none; transform: none; text-decoration: underline; }
.btn .arw { transition: transform .16s ease; }
.btn:hover .arw { transform: translateX(3px); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60; background: var(--paper);
  border-bottom: 2px solid var(--bark);
}
.head-in { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand {
  display: inline-flex; align-items: center; gap: 11px; text-decoration: none;
  font-family: var(--display); font-weight: 800; letter-spacing: -0.03em;
  font-size: 1.18rem; color: var(--bark); line-height: 1;
}
.brand .brand-sub {
  display: block; font-family: var(--body); font-weight: 700; font-size: .58rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--moss); margin-top: 3px;
}
.brand svg { width: 40px; height: 40px; flex: none; }
.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav a {
  font-family: var(--display); font-weight: 600; font-size: .97rem;
  color: var(--bark); text-decoration: none; opacity: .72; transition: opacity .15s ease;
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav a.btn { opacity: 1; padding: 11px 20px; font-size: .92rem; }
.nav a.tel { display: inline-flex; align-items: center; gap: 7px; opacity: 1; }
.nav-toggle {
  display: none; margin-left: auto; background: var(--paper); border: 2px solid var(--bark);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer; color: var(--bark);
  align-items: center; justify-content: center; box-shadow: var(--hard-sm);
}

/* ---------- sections ---------- */
.section { padding: var(--pad) 0; }
.section-linen { background: var(--linen); }
.section-bark { background: var(--bark); color: rgba(255,255,255,.72); }
.section-bark h2, .section-bark h3, .section-bark h4 { color: #fff; }
.section-bark .eyebrow { color: var(--honey); }
.section-moss { background: var(--moss); color: rgba(255,255,255,.8); }
.section-moss h2, .section-moss h3, .section-moss h4 { color: #fff; }
.section-moss .eyebrow { color: var(--honey); }

.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--linen); border-bottom: 2px solid var(--bark); overflow: hidden; }
.hero-in {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
  padding: clamp(56px, 7vw, 92px) 0 clamp(72px, 9vw, 120px);
}
.hero h1 { max-width: 14ch; }
.hero .lede { margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px;
  font-size: .88rem; font-weight: 500;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--moss); flex: none; }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art .bear { width: min(100%, 330px); }
.hero-art .badge { position: absolute; right: -6px; bottom: -10px; width: 118px; }

/* grass strip along the bottom of the hero */
.grass { position: absolute; left: 0; right: 0; bottom: -1px; height: 26px; color: var(--moss); }

/* ---------- patch badge ---------- */
.badge-spin { animation: spin 26s linear infinite; transform-box: view-box; transform-origin: 100px 100px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- trust bar ---------- */
.bar { background: var(--bark); color: #fff; padding: 16px 0; }
.bar-in {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px;
  font-family: var(--display); font-weight: 600; font-size: .93rem;
}
.bar-in span { display: inline-flex; align-items: center; gap: 9px; }
.bar-in em { color: var(--honey); font-style: normal; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 2px solid var(--bark); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--hard);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card p { font-size: .96rem; }
a.card { text-decoration: none; display: flex; flex-direction: column; }
a.card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--bark); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; border: 2px solid var(--bark);
  background: var(--honey); display: grid; place-items: center;
  margin-bottom: 20px; color: var(--bark);
}
.card-icon.moss { background: var(--clover); }
.card-icon.clay { background: var(--clay); color: #fff; }
.card-icon.linen { background: var(--linen); }
a.card .more {
  margin-top: auto; padding-top: 18px; font-family: var(--display); font-weight: 700;
  font-size: .92rem; color: var(--moss); display: inline-flex; align-items: center; gap: 7px;
}
a.card:hover .more .arw { transform: translateX(3px); }
.more .arw { transition: transform .16s ease; }
.section-bark .card, .section-moss .card { color: var(--slate); }
.card-flat { box-shadow: none; }

/* ---------- plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan { position: relative; }
.plan.featured { border-color: var(--moss); box-shadow: 5px 5px 0 var(--moss); }
.plan .flag {
  position: absolute; top: -14px; left: 24px; background: var(--moss); color: #fff;
  font-family: var(--body); font-weight: 700; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; border: 2px solid var(--bark);
}
.plan .price {
  font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--bark);
  letter-spacing: -0.04em; line-height: 1; margin: 6px 0 4px;
}
.plan .price small { font-family: var(--body); font-weight: 500; font-size: .85rem; color: var(--slate); letter-spacing: 0; }
.plan .visits {
  font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 18px;
}
.plan ul { list-style: none; margin: 0 0 24px; padding: 18px 0 0; border-top: 2px dotted var(--line); display: grid; gap: 11px; }
.plan li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: .93rem; align-items: start; }
.plan li svg { margin-top: 4px; color: var(--moss); }
.plan li.off { opacity: .42; }
.plan li.off svg { color: var(--slate); }
.plan .btn { width: 100%; justify-content: center; }

/* ---------- steps ---------- */
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 76px 1fr; gap: 22px; padding: 28px 0; border-top: 2px solid var(--line); }
.step:last-child { border-bottom: 2px solid var(--line); }
.section-bark .step, .section-moss .step { border-color: rgba(255,255,255,.18); }
.step-n {
  font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--moss);
  line-height: 1;
}
.section-bark .step-n, .section-moss .step-n { color: var(--honey); }
.step h3 { margin-bottom: .35em; }
.step p { max-width: 62ch; }

/* ---------- seasonal timeline ---------- */
.timeline { display: grid; gap: 0; counter-reset: visit; }
.tl {
  display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 22px 0;
  border-bottom: 2px dotted var(--line); align-items: start;
}
.tl:first-child { border-top: 2px dotted var(--line); }
.tl-when {
  font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--bark);
  display: flex; align-items: center; gap: 10px;
}
.tl-when::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--clover); border: 2px solid var(--bark); flex: none;
}
.tl h4 { margin-bottom: 3px; }
.tl p { font-size: .94rem; }

/* ---------- checks ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: .98rem; }
.checks svg { margin-top: 5px; color: var(--moss); flex: none; }
.section-bark .checks svg, .section-moss .checks svg { color: var(--honey); }

/* ---------- tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .8rem; font-weight: 500; border: 2px solid var(--bark); border-radius: 999px;
  padding: 6px 14px; color: var(--bark); background: var(--paper);
}
.section-bark .tag, .section-moss .tag { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { border: 2px solid var(--bark); border-radius: var(--r-md); padding: 22px; background: var(--paper); box-shadow: var(--hard-sm); }
.stat b {
  display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 3.2vw, 2.7rem);
  color: var(--bark); line-height: 1; letter-spacing: -0.04em;
}
.stat span { display: block; margin-top: 9px; font-size: .82rem; font-weight: 500; color: var(--slate); }

/* ---------- quotes ---------- */
.quote-card { background: var(--paper); border: 2px solid var(--bark); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--hard); }
.quote-card .stars { color: var(--honey); display: flex; gap: 2px; margin-bottom: 14px; }
.quote-card blockquote { margin: 0 0 18px; font-size: 1rem; color: var(--bark); }
.quote-card .who { font-size: .88rem; }
.quote-card .who b { font-family: var(--display); display: block; color: var(--bark); }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5.5vw, 76px); align-items: start; }
.split.tight { gap: clamp(28px, 4vw, 52px); }

/* ---------- team ---------- */
.person .avatar {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--r-md); border: 2px solid var(--bark);
  display: grid; place-items: center; font-family: var(--display); font-weight: 800;
  font-size: 1.7rem; color: var(--bark); background: var(--linen); margin-bottom: 14px;
  box-shadow: var(--hard-sm);
}
.person .avatar.a2 { background: var(--cream); }
.person .avatar.a3 { background: #dceadd; }
.person .avatar.a4 { background: #f6e3c4; }
.person h4 { margin-bottom: 2px; }
.person span { font-size: .82rem; font-weight: 500; color: var(--moss); }

/* ---------- faq ---------- */
.faq { border-top: 2px solid var(--line); }
.faq details { border-bottom: 2px solid var(--line); padding: 20px 0; }
.faq summary {
  cursor: pointer; list-style: none; font-family: var(--display); font-weight: 700;
  color: var(--bark); font-size: 1.04rem; display: flex; justify-content: space-between;
  gap: 20px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--display); color: var(--moss); font-size: 1.4rem; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; max-width: 72ch; }

/* ---------- CTA ---------- */
.cta {
  background: var(--honey); border: 2px solid var(--bark); border-radius: var(--r-lg);
  box-shadow: 8px 8px 0 var(--bark); padding: clamp(38px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center;
}
.cta h2 { max-width: 20ch; margin-bottom: .4em; }
.cta p { color: var(--bark); opacity: .82; max-width: 52ch; margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn { justify-content: center; }

/* ---------- form ---------- */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--display); font-weight: 700; font-size: .88rem; color: var(--bark); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: .98rem; color: var(--bark);
  border: 2px solid var(--bark); border-radius: var(--r-sm); padding: 12px 14px; background: var(--paper);
  transition: box-shadow .14s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; box-shadow: 3px 3px 0 var(--moss);
}
.form-note { font-size: .84rem; }

/* ---------- page hero ---------- */
.page-hero { padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 5vw, 60px); background: var(--linen); border-bottom: 2px solid var(--bark); }
.page-hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.5rem); max-width: 18ch; }
.page-hero .lede { margin-top: 18px; }
.page-hero-in { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.page-hero-in .bear { width: 150px; flex: none; }

/* ---------- disclaimer ---------- */
.legal { font-size: .8rem; line-height: 1.6; color: var(--slate); border: 2px dashed var(--line); border-radius: var(--r-md); padding: 20px; }

/* ---------- footer ---------- */
.site-foot { background: var(--bark); color: rgba(255,255,255,.62); padding: 68px 0 30px; font-size: .93rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.site-foot .brand { color: #fff; }
.site-foot .brand .brand-sub { color: var(--honey); }
.foot-blurb { max-width: 36ch; margin-top: 16px; }
.foot-col h4 { color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-family: var(--body); margin-bottom: 15px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a { text-decoration: none; color: rgba(255,255,255,.62); transition: color .15s ease; }
.foot-col a:hover { color: var(--honey); }
.foot-states { margin-top: 26px; font-size: .84rem; line-height: 1.9; }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 50px; padding-top: 22px;
  font-size: .78rem; letter-spacing: .03em;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-in { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { order: -1; justify-items: start; }
  .hero-art .bear { width: 200px; }
  .hero-art .badge { display: none; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta { grid-template-columns: 1fr; }
  .page-hero-in { grid-template-columns: 1fr; }
  .page-hero-in .bear { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 78px 0 auto; background: var(--paper); flex-direction: column;
    align-items: stretch; gap: 0; padding: 10px 24px 26px; border-bottom: 2px solid var(--bark);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 2px solid var(--line); font-size: 1.06rem; opacity: 1; }
  .nav a.btn { margin-top: 16px; justify-content: center; border: 2px solid var(--bark); padding: 14px 24px; font-size: .97rem; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 4px; }
  .tl { grid-template-columns: 1fr; gap: 6px; }
  .form .row { grid-template-columns: 1fr; }
  .cta { box-shadow: 5px 5px 0 var(--bark); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .badge-spin { animation: none; }
}
