/* ==========================================================================
   ABM Landscaping LLC — shared stylesheet
   Mobile-first, dependency-free, accessible. No build step required.
   ========================================================================== */

:root {
  --green-900: #143821;
  --green-800: #1f4e2c;
  --green-700: #266a39;
  --green-600: #2e7d32;
  --green-100: #e8f3ea;
  --green-50:  #f3f8f4;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --ink:       #18221b;
  --body:      #38473c;
  --muted:     #5e6f63;
  --line:      #dbe5dd;
  --white:     #ffffff;
  --star:      #f5a623;
  --maxw:      1140px;
  --radius:    14px;
  --shadow-sm: 0 1px 3px rgba(20,56,33,.08), 0 1px 2px rgba(20,56,33,.06);
  --shadow:    0 10px 30px rgba(20,56,33,.10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

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

img { max-width: 100%; height: auto; display: block; background: var(--green-100); }

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

h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.35rem); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section--tint { background: var(--green-50); }
.section--dark { background: var(--green-900); color: #dfeede; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 720px; margin-bottom: 2rem; }
.section__head.center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-600); margin-bottom: .5rem; }
.lead { font-size: 1.12rem; color: var(--muted); }

/* Skip link & a11y ------------------------------------------------------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--green-800); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 2px; border-radius: 4px; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-weight: 700; font-size: 1rem; line-height: 1; text-decoration: none;
  padding: .95rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-call, .btn-primary { background: var(--amber-500); color: #2a1a02; }
.btn-call:hover, .btn-primary:hover { background: var(--amber-600); color: #2a1a02; }
.btn-green { background: var(--green-700); color: #fff; }
.btn-green:hover { background: var(--green-800); color: #fff; }
.btn-outline { background: transparent; color: var(--green-800); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-100); color: var(--green-900); }
.btn-block { width: 100%; }
.btn-lg { font-size: 1.08rem; padding: 1.05rem 1.7rem; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 90px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--green-900); font-weight: 800; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand-text { font-size: 1.18rem; letter-spacing: -.02em; line-height: 1; }
.brand-text span { color: var(--green-600); font-weight: 700; }
.brand-logo { height: 68px; width: auto; flex: none; background: transparent; }
@media (max-width: 900px) { .brand-logo { height: 54px; } .header-inner { min-height: 74px; } }
@media (max-width: 360px) { .brand-logo { height: 46px; } }
.footer-logo { height: 70px; width: auto; background: transparent; margin-bottom: .4rem; }

.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0; }
.site-nav a { display: block; padding: .55rem .7rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .98rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--green-100); color: var(--green-900); }

.header-call { margin-left: .5rem; white-space: nowrap; }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* Mobile nav (CSS-only hamburger) */
@media (max-width: 900px) {
  .header-call .num { display: none; }
  .header-call { padding: .7rem .9rem; }
  .nav-toggle-label {
    order: 3; display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; margin-left: .25rem; cursor: pointer;
    border: 1px solid var(--line); border-radius: 10px; background: #fff;
  }
  .nav-toggle-label span { height: 2px; background: var(--green-900); border-radius: 2px; transition: .2s; }
  .site-nav {
    order: 4; flex-basis: 100%; margin-left: 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .site-nav ul { flex-direction: column; gap: 2px; padding: .5rem 0 1rem; }
  .site-nav a { padding: .8rem .6rem; font-size: 1.05rem; }
  .nav-toggle:checked ~ .site-nav { max-height: 460px; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative; color: #eaf5ea;
  background:
    linear-gradient(180deg, rgba(20,56,33,.78), rgba(20,56,33,.86)),
    radial-gradient(1200px 500px at 80% -10%, #2e7d32 0%, transparent 60%),
    linear-gradient(135deg, #1f4e2c, #143821);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 8c10 14 18 22 18 34a18 18 0 1 1-36 0c0-12 8-20 18-34z' fill='none' stroke='%23ffffff' stroke-width='1.2'/%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; padding-block: clamp(2.6rem, 7vw, 5rem); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero p { font-size: 1.18rem; color: #d7e9d8; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-rating { display: flex; align-items: center; gap: .6rem; margin-top: 1.4rem; font-size: .98rem; color: #d7e9d8; }
.stars { color: var(--star); letter-spacing: 1px; }

/* Trust bar -------------------------------------------------------------- */
.trustbar { background: var(--green-900); color: #d9ecda; }
.trustbar ul {
  list-style: none; margin: 0; padding: .9rem 0; display: flex; flex-wrap: wrap;
  gap: .4rem 2rem; justify-content: center; align-items: center; font-weight: 600; font-size: .95rem;
}
.trustbar li { display: inline-flex; align-items: center; gap: .5rem; }
.trustbar svg { width: 1.1em; height: 1.1em; color: var(--amber-500); }

/* Cards / grid ----------------------------------------------------------- */
.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow-sm); height: 100%;
}
.card h3 { margin-bottom: .35rem; }
.card p { margin-bottom: .75rem; color: var(--muted); font-size: .98rem; }
.card .card-link { font-weight: 700; text-decoration: none; }
.card .card-link::after { content: " →"; }

a.card { text-decoration: none; color: inherit; display: block; transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-600); }

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: .9rem;
  background: var(--green-100); color: var(--green-700);
}
.icon-badge svg { width: 26px; height: 26px; }

/* Feature list with checks ---------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checklist li { position: relative; padding-left: 1.9rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 1.25rem; height: 1.25rem;
  background: var(--green-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Two-column content ----------------------------------------------------- */
.split { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 860px) { .split { grid-template-columns: 1.15fr .85fr; gap: 3rem; } .split.reverse > :first-child { order: 2; } }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Process steps ---------------------------------------------------------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.steps li::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-700); color: #fff; font-weight: 800; margin-bottom: .6rem;
}
.steps h3 { font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); font-size: .95rem; }

/* FAQ -------------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: .25rem .25rem; }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; color: var(--ink);
  padding: 1rem 1.1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green-600); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--green-800); }
.faq .faq-a { padding: 0 1.1rem 1.1rem; color: var(--body); }
.faq .faq-a p:last-child { margin-bottom: 0; }

/* Testimonials ----------------------------------------------------------- */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.review .stars { font-size: 1.05rem; }
.review blockquote { margin: .6rem 0 1rem; font-size: 1.02rem; color: var(--ink); }
.review cite { font-style: normal; font-weight: 700; color: var(--green-800); }
.review .meta { color: var(--muted); font-size: .9rem; }

/* CTA band --------------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; border-radius: 18px; padding: clamp(1.8rem, 4vw, 3rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7e9d8; max-width: 60ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.4rem; }

/* Pill list / service areas ---------------------------------------------- */
.pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.pills a, .pills span {
  display: inline-block; padding: .5rem .95rem; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); text-decoration: none; font-weight: 600; color: var(--green-800); font-size: .95rem;
}
.pills a:hover { background: var(--green-100); border-color: var(--green-600); }

/* Breadcrumb ------------------------------------------------------------- */
.breadcrumb { font-size: .9rem; color: var(--muted); padding: .9rem 0 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb li::after { content: "/"; margin-left: .4rem; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { text-decoration: none; }

/* Forms ------------------------------------------------------------------ */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.form .field { margin-bottom: 1rem; }
.form label { display: block; font-weight: 700; color: var(--ink); margin-bottom: .35rem; font-size: .95rem; }
.form input, .form select, .form textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--green-600); outline: none; box-shadow: 0 0 0 3px rgba(46,125,50,.15); }
.form textarea { min-height: 120px; resize: vertical; }
.form .req { color: #b91c1c; }
.form .hp { position: absolute; left: -9999px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .5rem; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--green-900); color: #c7ddc9; padding: 3rem 0 6rem; font-size: .96rem; }
.site-footer a { color: #d8ecd9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text span { color: var(--amber-500); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .8rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-contact a { font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.2rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; color: #9fbaa2; font-size: .88rem; }

/* Sticky mobile call bar ------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  padding: .6rem; background: rgba(20,56,33,.97); box-shadow: 0 -4px 18px rgba(0,0,0,.2);
}
.callbar .btn { width: 100%; }
@media (max-width: 760px) { .callbar { display: block; } .site-footer { padding-bottom: 5.5rem; } }

/* Misc ------------------------------------------------------------------- */
.prose > * + h2 { margin-top: 2rem; }
.prose > * + h3 { margin-top: 1.4rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.tag { display: inline-block; background: var(--green-100); color: var(--green-800); font-weight: 700; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 6px; }
.note { background: var(--green-50); border-left: 4px solid var(--green-600); padding: 1rem 1.2rem; border-radius: 0 10px 10px 0; }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

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