/* Adrian MI Landscaping — shared styles */
:root {
  --green-950: #16301f;
  --green-800: #245134;
  --green-600: #3c7a4e;
  --moss: #8fae8b;
  --gold: #e3a82b;
  --gold-dark: #c48f15;
  --ink: #1e2a1f;
  --ink-soft: #46564a;
  --paper: #f4f6f0;
  --white: #ffffff;
  --line: #d9e0d4;
  --radius: 10px;
  --max: 1080px;
}

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

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

body {
  font-family: "Public Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", "Public Sans", sans-serif;
  line-height: 1.12;
  color: var(--green-950);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { color: var(--ink-soft); }

a { color: var(--green-800); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-950);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand svg { flex: none; }
.brand span em { font-style: normal; color: var(--green-600); }
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 22px; align-items: center; }
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 4px 0;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green-800); }
.site-nav a.nav-cta {
  background: var(--gold);
  color: var(--green-950);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.site-nav a.nav-cta:hover { background: var(--gold-dark); }

/* Grass edge divider */
.grass-edge { display: block; width: 100%; height: 26px; }

/* Hero */
.hero {
  background: var(--green-950);
  color: var(--white);
  padding: 72px 0 56px;
  position: relative;
}
.hero h1 { color: var(--white); max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lede {
  color: #cfdccc;
  max-width: 52ch;
  margin: 18px 0 30px;
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--green-950); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-ghost { border-color: #4d6f58; color: var(--white); }
.btn-ghost:hover { border-color: var(--moss); }
.hero-note { color: var(--moss); font-size: 0.9rem; margin-top: 18px; }

/* Sections */
section.block { padding: 64px 0; }
section.block.alt { background: var(--white); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-600);
  margin-bottom: 10px;
}
.block h2 { margin-bottom: 14px; }
.block .intro { max-width: 62ch; margin-bottom: 34px; }

/* Cards */
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
section.alt .card { background: var(--paper); }
.card h3 { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.card h3 svg { flex: none; color: var(--green-600); }
.card p { font-size: 0.96rem; }
.card .card-link { display: inline-block; margin-top: 10px; font-weight: 600; font-size: 0.93rem; }

/* Steps */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Season band */
.seasons { display: grid; gap: 0; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.season { padding: 26px 22px; border-top: 5px solid var(--moss); }
.season:nth-child(2) { border-top-color: var(--green-600); }
.season:nth-child(3) { border-top-color: var(--gold); }
.season:nth-child(4) { border-top-color: #9db6c9; }
.season h3 { margin-bottom: 6px; }
.season p { font-size: 0.94rem; }

/* CTA band */
.cta-band { background: var(--green-800); color: var(--white); padding: 56px 0; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: #d7e4d3; margin-bottom: 26px; max-width: 58ch; }

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  max-width: 720px;
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 0.92rem; display: block; margin-bottom: 6px; color: var(--ink); }
input, select, textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid #c3cdbd;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus, .btn:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
fieldset { border: none; }
fieldset legend { font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px 16px; }
.checks label { display: flex; align-items: center; gap: 9px; font-weight: 500; margin: 0; }
.checks input { width: auto; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }

/* FAQ */
.faq-list { max-width: 780px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
}
summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  color: var(--green-950);
  padding: 18px 22px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; color: var(--green-600); flex: none; }
details[open] summary::after { content: "–"; }
details .answer { padding: 0 22px 20px; }
details .answer p + p { margin-top: 10px; }

/* Prose pages */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 38px; }
.prose p, .prose ul { margin-bottom: 14px; }
.prose ul { padding-left: 22px; color: var(--ink-soft); }

/* Footer */
.site-footer { background: var(--green-950); color: #b9c9b5; padding: 48px 0 36px; font-size: 0.92rem; }
.site-footer .wrap { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.site-footer a { color: #d7e4d3; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 6px; }
.footer-legal { grid-column: 1 / -1; border-top: 1px solid #2c4a37; padding-top: 20px; font-size: 0.82rem; color: #8ba287; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 44px; }
  section.block { padding: 48px 0; }
}
