/* Lawn Lives Matter LLC — shared styles
   Direction: trust-first local landscaper, warm Florida.
   Palette: deep olive + sun-bleached sand + clay accent. */

:root {
  --olive:      #3a4a2e;
  --olive-deep: #2b371f;
  --grass:      #5a7a3a;
  --sand:       #f4efe2;
  --sand-warm:  #efe7d3;
  --paper:      #fbf8f0;
  --clay:       #bf5a37;
  --clay-deep:  #9f4628;
  --ink:        #232a1c;
  --muted:      #6c7360;
  --line:       #ddd6c2;
  --white:      #ffffff;

  --font-display: "Zilla Slab", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --maxw: 1200px;
  --radius: 10px;
  --shadow: 0 14px 40px rgba(43, 55, 31, 0.12);
  --shadow-sm: 0 4px 16px rgba(43, 55, 31, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; color: var(--olive-deep); }

a { color: var(--clay-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--clay-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 16px;
  padding: 14px 24px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s, box-shadow 0.2s;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 8px 20px rgba(191, 90, 55, 0.28); }
.btn-primary:hover { background: var(--clay-deep); color: #fff; }
.btn-olive { background: var(--olive); color: #fff; }
.btn-olive:hover { background: var(--olive-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--olive-deep); border-color: var(--olive); }
.btn-ghost:hover { background: var(--olive); color: #fff; }
.btn-lg { padding: 17px 30px; font-size: 17px; }

/* ---------- Top call bar ---------- */
.callbar {
  background: var(--olive-deep); color: #f1ecdd;
  font-size: 14px; font-weight: 700;
}
.callbar .wrap { display: flex; align-items: center; justify-content: center; gap: 24px; padding: 9px 24px; flex-wrap: wrap; }
.callbar a { color: #fff; font-weight: 800; }
.callbar .dot { width: 8px; height: 8px; border-radius: 50%; background: #8fd44a; display: inline-block; box-shadow: 0 0 0 0 rgba(143,212,74,0.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(143,212,74,0.5);} 70%{box-shadow:0 0 0 8px rgba(143,212,74,0);} 100%{box-shadow:0 0 0 0 rgba(143,212,74,0);} }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,248,240,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--olive-deep); }
.brand:hover { text-decoration: none; }
.brand .mark { width: 38px; height: 38px; flex: 0 0 38px; }
.brand small { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--clay-deep); text-transform: uppercase; line-height: 1; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 700; font-size: 15.5px; }
.nav-links a:hover, .nav-links a.active { color: var(--clay-deep); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--olive-deep); }
.nav-phone:hover { color: var(--clay-deep); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--olive-deep); margin: 5px 0; border-radius: 2px; transition: 0.25s; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* ---------- Hero ---------- */
.hero { background: var(--olive-deep); color: #f3eedd; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; min-height: 560px; padding: 70px 0; }
.hero h1 { color: #fff; font-size: clamp(40px, 5.4vw, 66px); margin: 18px 0 20px; }
.hero h1 em { font-style: italic; color: #cfe0a8; }
.hero p.lead { font-size: 20px; color: #ddd6c0; max-width: 30ch; margin-bottom: 30px; }
.hero .eyebrow { color: #b6c98a; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 26px; flex-wrap: wrap; font-size: 14.5px; color: #c7c2ac; }
.hero-meta b { color: #fff; }
.hero-photo { position: relative; }
.hero-photo img { width: 100%; height: 540px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); filter: saturate(1.05); }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--paper); color: var(--ink);
  border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.hero-badge .num { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--clay); line-height: 1; }
.hero-badge .lbl { font-size: 13px; font-weight: 700; color: var(--muted); }
.stars { color: #e0a32e; letter-spacing: 1px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--sand-warm); border-bottom: 1px solid var(--line); }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 24px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ti-num { font-family: var(--font-display); font-size: 27px; font-weight: 700; color: var(--olive-deep); line-height: 1; }
.trust-item .ti-lbl { font-size: 14px; color: var(--muted); font-weight: 600; line-height: 1.25; }
.trust-icn { width: 40px; height: 40px; flex: 0 0 40px; color: var(--clay); }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s var(--ease), box-shadow 0.2s; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card .ph { height: 168px; overflow: hidden; }
.svc-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc-card:hover .ph img { transform: scale(1.06); }
.svc-card .bd { padding: 22px 22px 24px; }
.svc-card h3 { font-size: 21px; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 15.5px; }
.svc-card .more { margin-top: 14px; display: inline-block; font-weight: 800; font-size: 14.5px; color: var(--clay-deep); }

/* ---------- About preview ---------- */
.about-split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.about-photo img { width: 100%; height: 460px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-sm); }
.about-text h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 12px 0 18px; }
.about-text p { color: #444c39; margin-bottom: 16px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.pillar { background: var(--sand); border-radius: 10px; padding: 18px; border-left: 3px solid var(--clay); }
.pillar h4 { font-size: 16.5px; margin-bottom: 5px; color: var(--olive-deep); }
.pillar p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Reviews ---------- */
.reviews { background: var(--olive); color: #eef0e3; }
.reviews h2 { color: #fff; }
.reviews .section-head p { color: #c9cdb6; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 26px; }
.rev-card .stars { font-size: 17px; margin-bottom: 12px; display: block; }
.rev-card p.body { color: #e9ebdd; font-size: 16px; margin-bottom: 18px; }
.rev-card .who { display: flex; align-items: center; gap: 12px; }
.rev-card .av { width: 42px; height: 42px; border-radius: 50%; background: var(--clay); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.rev-card .who b { display: block; color: #fff; font-size: 15px; }
.rev-card .who span { font-size: 13px; color: #b9bda4; }
.rev-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.tag { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; background: var(--sand); color: var(--olive-deep); }
.reviews .tag { background: rgba(255,255,255,0.13); color: #e9ebdd; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--clay); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); margin-bottom: 14px; }
.cta-band p { font-size: 19px; color: #ffe9df; max-width: 50ch; margin: 0 auto 28px; }
.cta-band .btn-primary { background: #fff; color: var(--clay-deep); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--olive-deep); color: #fff; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--clay-deep); }
.cta-cluster { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Service detail (services.html) ---------- */
.svc-row { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--line); }
.svc-row:nth-child(even) .svc-row-photo { order: 2; }
.svc-row-photo img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-sm); }
.svc-row h3 { font-size: 28px; margin: 10px 0 12px; }
.svc-row p { color: #444c39; margin-bottom: 14px; }
.checklist { list-style: none; display: grid; gap: 9px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: var(--ink); }
.checklist li::before { content: "✓"; color: var(--clay); font-weight: 900; flex: 0 0 auto; }

/* ---------- Reviews page widget ---------- */
.rating-widget { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 30px 36px; box-shadow: var(--shadow-sm); }
.rating-widget .big { font-family: var(--font-display); font-size: 70px; font-weight: 700; color: var(--olive-deep); line-height: 1; }
.rating-widget .rw-stars { font-size: 24px; }
.rating-widget .rw-sub { color: var(--muted); font-size: 15px; margin-top: 4px; }
.rating-bars { flex: 1; min-width: 240px; display: grid; gap: 7px; }
.rbar { display: grid; grid-template-columns: 56px 1fr 40px; gap: 12px; align-items: center; font-size: 13px; color: var(--muted); }
.rbar .track { height: 8px; background: var(--sand-warm); border-radius: 5px; overflow: hidden; }
.rbar .fill { height: 100%; background: var(--clay); border-radius: 5px; }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.area-chip { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 20px 22px; transition: transform 0.18s var(--ease), border-color 0.2s; }
.area-chip:hover { transform: translateY(-3px); border-color: var(--clay); }
.area-chip h4 { font-size: 19px; margin-bottom: 5px; }
.area-chip p { font-size: 14px; color: var(--muted); }
.area-chip.primary { background: var(--olive); color: #fff; border-color: var(--olive); }
.area-chip.primary h4 { color: #fff; }
.area-chip.primary p { color: #cdd3bb; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.info-card { background: var(--sand); border-radius: 14px; padding: 30px; }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 26px; flex: 0 0 26px; color: var(--clay); }
.info-row b { display: block; font-size: 15px; color: var(--olive-deep); }
.info-row span, .info-row a { color: var(--muted); font-size: 15px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 32px; box-shadow: var(--shadow-sm); }
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: 14.5px; color: var(--olive-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 9px; background: var(--paper); color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(191,90,55,0.14); }
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: var(--clay-deep); font-size: 13px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--clay-deep); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.form-success { display: none; background: #eef4e3; border: 1.5px solid var(--grass); border-radius: 10px; padding: 22px; text-align: center; }
.form-success.show { display: block; }
.form-success h3 { color: var(--olive-deep); margin-bottom: 6px; }
.form-success p { color: #4a5340; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-deep); color: #cfd3c0; padding: 60px 0 28px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.site-footer h5 { color: #fff; font-family: var(--font-display); font-size: 17px; margin-bottom: 14px; }
.site-footer a { color: #cfd3c0; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; display: grid; gap: 9px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand small { color: #b6c98a; }
.footer-brand p { color: #aab09a; max-width: 32ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #9aa088; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--olive-deep); color: #f3eedd; padding: 64px 0 58px; }
.page-hero .eyebrow { color: #b6c98a; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin: 12px 0 14px; }
.page-hero p { color: #d6d0ba; font-size: 19px; max-width: 56ch; }
.crumbs { font-size: 13px; color: #b6bca2; margin-bottom: 6px; }
.crumbs a { color: #cfe0a8; }

/* ---------- 404 ---------- */
.nf { min-height: 64vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.nf .code { font-family: var(--font-display); font-size: clamp(90px, 18vw, 180px); color: var(--clay); line-height: 0.9; }
.nf h1 { font-size: 32px; margin: 10px 0 12px; }
.nf p { color: var(--muted); max-width: 44ch; margin: 0 auto 26px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-photo img { height: 380px; }
  .svc-grid, .rev-grid, .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trustbar .wrap { grid-template-columns: 1fr 1fr; gap: 22px; }
  .svc-row, .svc-row:nth-child(even) .svc-row-photo { grid-template-columns: 1fr; order: 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px; box-shadow: var(--shadow-sm);
  }
  .svc-grid, .rev-grid, .area-grid, .pillars, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; bottom: -18px; }
  .callbar .wrap { gap: 14px; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
