/* =========================================================================
   Lawn N Order of GA — Design System
   "Fresh & Trustworthy"  ·  mobile-first  ·  plain CSS, no build step
   ========================================================================= */

/* ----- Design tokens --------------------------------------------------- */
:root {
  /* Brand greens */
  --forest:   #14532D;
  --green-800:#166534;
  --green-700:#15803D;
  --green-600:#16A34A;
  --green-500:#22C55E;
  --green-100:#DCFCE7;
  --green-50: #F0FDF4;

  /* Neutrals / surfaces */
  --cream:    #F7F6F1;
  --surface:  #FFFFFF;
  --ink:      #15211B;
  --ink-soft: #2B3A31;
  --muted:    #5B6B61;
  --line:     #E4E7E2;

  /* Accent */
  --sun:      #F2B705;
  --sun-dark: #C99405;

  /* Semantic */
  --bg:        var(--cream);
  --text:      var(--ink);
  --primary:   var(--green-700);
  --primary-d: var(--forest);

  /* Typography */
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-6: 24px; --s-8: 32px; --s-12: 48px; --s-16: 64px; --s-24: 96px;

  /* Radius + shadow */
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20,33,27,.06), 0 1px 2px rgba(20,33,27,.06);
  --shadow-md: 0 6px 18px rgba(20,33,27,.09);
  --shadow-lg: 0 18px 40px rgba(20,33,27,.15);

  /* Layout */
  --container: 1200px;

  /* Motion */
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ----- Reset ----------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ----- Typography ------------------------------------------------------ */
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); }
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-700);
}

/* ----- Layout helpers -------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-6); }
.section { padding-block: clamp(48px, 8vw, 104px); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.center .measure { margin-inline: auto; }
.stack > * + * { margin-top: var(--s-4); }
.grid { display: grid; gap: var(--s-6); }
@media (min-width:680px){ .grid--2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width:900px){
  .grid--3 { grid-template-columns: repeat(3,1fr); }
  .grid--4 { grid-template-columns: repeat(4,1fr); }
}

/* ----- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 48px; padding: 0 var(--s-6);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  border-radius: 8px; border: 2px solid transparent;
  text-decoration: none; transition: transform .15s var(--ease-out), background .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }
.btn--primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-800); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--sun); color: var(--forest); box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--sun-dark); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--outline { background: transparent; color: var(--green-700); border-color: var(--green-600); }
.btn--outline:hover { background: var(--green-50); }
.btn--lg { min-height: 56px; padding: 0 var(--s-8); font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ----- Header / nav ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,246,241,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: var(--s-2); font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--forest); }
.brand:hover { text-decoration: none; }
.brand svg { width: 34px; height: 34px; }
.brand b { color: var(--green-600); }
.brand-logo { display: block; height: 64px; width: auto; }
.brand-logo--footer { height: 72px; background: #fff; padding: 8px 14px; border-radius: var(--r-md); box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.nav-links { display: none; align-items: center; gap: var(--s-2); }
.nav-links a { color: var(--ink-soft); font-weight: 600; padding: var(--s-2) var(--s-3); border-radius: var(--r-sm); font-size: .98rem; }
.nav-links a:hover { color: var(--forest); background: var(--green-50); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--green-700); }
.nav-cta { display: none; align-items: center; gap: var(--s-3); }
.nav-phone { display: inline-flex; align-items: center; gap: var(--s-2); font-family: var(--font-head); font-weight: 700; color: var(--forest); }
.nav-phone:hover { text-decoration: none; color: var(--green-700); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); color: var(--forest);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile drawer */
.mobile-nav {
  display: none; flex-direction: column; gap: var(--s-1);
  padding: var(--s-4) 0 var(--s-6);
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: var(--s-3) var(--s-4); border-radius: var(--r-sm); color: var(--ink-soft); font-weight: 600; font-family: var(--font-head); }
.mobile-nav a:hover { background: var(--green-50); text-decoration: none; }
.mobile-nav .btn { margin-top: var(--s-3); }

@media (min-width: 940px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ----- Hero ------------------------------------------------------------ */
.hero { position: relative; color: #fff; overflow: hidden; background: #0d3a20; isolation: isolate; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,24,13,.72) 0%, rgba(6,24,13,.42) 55%, rgba(6,24,13,.30) 100%),
    linear-gradient(180deg, rgba(6,24,13,.30) 0%, rgba(6,24,13,.45) 60%, rgba(6,24,13,.70) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(72px, 13vw, 150px); max-width: 720px; }
.hero h1 { color: #fff; text-shadow: 0 1px 24px rgba(0,0,0,.25); }
.hero .lead { color: rgba(255,255,255,.92); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-8); }
.hero__rating { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-4); margin-top: var(--s-6); color: rgba(255,255,255,.92); font-weight: 600; font-size: .95rem; }
.hero__rating span { display: inline-flex; align-items: center; gap: 6px; }
.hero__rating svg { width: 17px; height: 17px; color: var(--green-500); }

.pagehero { background: linear-gradient(180deg, var(--forest), var(--green-800)); color: #fff; }
.pagehero .container { padding-block: clamp(48px, 8vw, 88px); }
.pagehero h1 { color: #fff; }
.pagehero p { color: rgba(255,255,255,.88); }
.crumbs { font-size: .9rem; color: rgba(255,255,255,.72); margin-bottom: var(--s-3); font-family: var(--font-head); }
.crumbs a { color: rgba(255,255,255,.9); }

/* ----- Trust strip ----------------------------------------------------- */
.trustbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.trustbar ul { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-8); justify-content: center; padding-block: var(--s-6); }
.trustbar li { display: inline-flex; align-items: center; gap: var(--s-2); font-family: var(--font-head); font-weight: 700; color: var(--ink-soft); }
.trustbar svg { width: 22px; height: 22px; color: var(--green-600); flex: none; }

/* ----- Cards ----------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-8); box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out), box-shadow .25s, border-color .2s;
  height: 100%;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--green-50); color: var(--green-700); margin-bottom: var(--s-4);
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: var(--s-2); }
.card p { margin-bottom: var(--s-4); }
.card__link { font-family: var(--font-head); font-weight: 700; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; }
.card__link:hover { gap: 10px; text-decoration: none; }
.card--link { display: flex; flex-direction: column; }
.card--link p { flex: 1; }

/* ----- Feature / split ------------------------------------------------- */
.split { display: grid; gap: var(--s-12); align-items: center; }
@media (min-width: 900px){ .split { grid-template-columns: 1fr 1fr; } .split--media-first .split__media { order: -1; } }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); display: block; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
figure.photo { margin: 0; }
.photo figcaption { font-size: .82rem; color: var(--muted); padding: var(--s-2) var(--s-1); }
.feature-list li { display: flex; gap: var(--s-3); align-items: flex-start; margin-top: var(--s-3); color: var(--ink-soft); }
.feature-list svg { width: 24px; height: 24px; color: var(--green-600); flex: none; margin-top: 2px; }
.feature-list b { color: var(--ink); display: block; font-family: var(--font-head); }

/* ----- Steps ----------------------------------------------------------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: var(--r-pill); background: var(--green-700); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: var(--s-3);
}

/* ----- Stats ----------------------------------------------------------- */
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem,4vw,2.8rem); color: var(--forest); line-height: 1; }
.stat__label { color: var(--muted); font-weight: 600; margin-top: var(--s-2); }

/* ----- Testimonials ---------------------------------------------------- */
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-8); box-shadow: var(--shadow-sm); }
.quote-card .stars { color: var(--sun); letter-spacing: 2px; margin-bottom: var(--s-3); }
.quote-card blockquote { font-size: 1.1rem; color: var(--ink); font-family: var(--font-head); font-weight: 500; line-height: 1.5; }
.quote-card cite { display: block; margin-top: var(--s-4); font-style: normal; font-weight: 700; color: var(--forest); }
.quote-card cite span { display: block; font-weight: 500; color: var(--muted); font-family: var(--font-body); font-size: .9rem; }

/* ----- Areas ----------------------------------------------------------- */
.area-grid { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.area-chip { display: inline-flex; align-items: center; gap: var(--s-2); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: var(--s-3) var(--s-6); font-family: var(--font-head); font-weight: 700; color: var(--ink-soft); }
.area-chip svg { width: 18px; height: 18px; color: var(--green-600); }

/* ----- CTA band -------------------------------------------------------- */
.cta-band { background: var(--forest); color: #fff; border-radius: var(--r-lg); padding: clamp(32px,5vw,64px); text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: var(--s-3); }
.cta-band .hero__actions { justify-content: center; margin-top: var(--s-6); }

.bg-surface { background: var(--surface); }
.bg-green { background: var(--green-50); }

/* ----- Forms ----------------------------------------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,4vw,48px); box-shadow: var(--shadow-md); }
.field { margin-bottom: var(--s-6); }
.field > label { display: block; font-family: var(--font-head); font-weight: 700; color: var(--ink); margin-bottom: var(--s-2); }
.field .req { color: #b91c1c; }
.field .hint { font-weight: 500; color: var(--muted); font-size: .85rem; }
.input, .select, .textarea {
  width: 100%; min-height: 50px; padding: var(--s-3) var(--s-4);
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: #fff; color: var(--ink); font: inherit; transition: border-color .15s, box-shadow .15s;
}
.textarea { min-height: 130px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px var(--green-100); }
.checks { display: grid; gap: var(--s-3); }
@media (min-width:560px){ .checks { grid-template-columns: 1fr 1fr; } }
.check { display: flex; gap: var(--s-3); align-items: flex-start; padding: var(--s-3) var(--s-4); border: 1.5px solid var(--line); border-radius: var(--r-md); cursor: pointer; transition: border-color .15s, background .15s; }
.check:hover { border-color: var(--green-600); background: var(--green-50); }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green-600); flex: none; }
.check span { font-weight: 600; color: var(--ink-soft); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: var(--s-4); }
.form-status { margin-top: var(--s-4); padding: var(--s-3) var(--s-4); border-radius: var(--r-md); font-weight: 600; display: none; }
.form-status.error { display: block; background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.form-status.loading { display: block; background: var(--green-50); color: var(--green-800); border: 1px solid var(--green-100); }
.cf-turnstile { margin-bottom: var(--s-4); }

/* ----- Contact info list ---------------------------------------------- */
.info-list li { display: flex; gap: var(--s-4); align-items: flex-start; margin-bottom: var(--s-6); }
.info-list .ico { display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius: var(--r-md); background: var(--green-50); color: var(--green-700); flex:none; }
.info-list .ico svg { width: 24px; height: 24px; }
.info-list b { font-family: var(--font-head); display: block; color: var(--ink); }
.info-list a { color: var(--ink-soft); }

/* ----- FAQ ------------------------------------------------------------- */
.faq { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); padding: var(--s-4) var(--s-6); margin-bottom: var(--s-3); }
.faq summary { font-family: var(--font-head); font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: var(--s-4); align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green-600); transition: transform .2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: var(--s-3); }

/* ----- Footer ---------------------------------------------------------- */
.site-footer { background: var(--forest); color: rgba(255,255,255,.78); margin-top: var(--s-12); }
.site-footer .container { padding-block: var(--s-16) var(--s-8); }
.footer-grid { display: grid; gap: var(--s-8); }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer p { color: rgba(255,255,255,.78); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--s-4); }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: var(--s-3); }
.site-footer .brand b { color: var(--green-500); }
.footer-links li { margin-bottom: var(--s-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: var(--s-12); padding-top: var(--s-6); display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between; font-size: .88rem; }
.footer-legal { display: flex; gap: var(--s-3); }

/* Long-form legal pages (privacy, terms) */
.legal { max-width: 820px; }
.legal h2 { margin-top: var(--s-8); font-size: 1.3rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin-top: var(--s-6); font-size: 1.08rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p + p { margin-top: var(--s-3); }
.legal ul { margin-top: var(--s-3); padding-left: 1.25rem; list-style: disc; }
.legal li { margin-bottom: var(--s-2); }
.legal .updated { font-size: .9rem; color: var(--ink-soft); }

/* Live Google reviews (rendered by google-reviews.js) */
.via-google { display: inline-flex; align-items: center; gap: 4px; }
.g-logo { display: inline-block; vertical-align: middle; flex: none; }
.google-badge { margin-top: var(--s-8); }
.google-badge a, .google-badge span { display: inline-flex; align-items: center; gap: 8px; padding: var(--s-2) var(--s-4); border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--surface); font-size: .9rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.google-badge a:hover { border-color: var(--green-600); color: var(--ink); }
.google-badge .g-logo { width: 18px; height: 18px; }
.reviews-summary { margin-bottom: var(--s-8); }
.reviews-summary .stars { color: var(--sun); font-size: 1.8rem; letter-spacing: 3px; line-height: 1; }
.reviews-summary p { color: var(--ink-soft); }
.social { display: flex; gap: var(--s-3); }
.social a { display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:var(--r-pill); background: rgba(255,255,255,.1); }
.social a:hover { background: var(--green-600); }
.social svg { width: 20px; height: 20px; }

/* ----- Skip link + a11y ------------------------------------------------ */
.skip-link { position: absolute; left: -999px; top: var(--s-2); z-index: 100; background: var(--forest); color: #fff; padding: var(--s-3) var(--s-4); border-radius: var(--r-sm); }
.skip-link:focus { left: var(--s-4); }
:focus-visible { outline: 3px solid var(--green-600); outline-offset: 2px; border-radius: 4px; }

/* ----- Scroll reveal --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

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