/* ===================================================================
   Big Brother Lawn Care — theme: "Fresh-cut, forest-green outdoors"
   Palette: forest green #1B4332 + moss.  Sun amber #F4A11B = CTAs ONLY.
   Fully self-contained: system fonts, inline SVG, CSS visuals.
   =================================================================== */
:root {
  --forest:      #1B4332;   /* brand primary */
  --forest-700:  #245C41;   /* raised green */
  --forest-800:  #2D6A4F;   /* lighter green */
  --forest-deep: #0E241A;   /* footer base */
  --moss:        #40916C;   /* accent green */
  --leaf-ic:     #2D6A4F;   /* icon ink */
  --ink:         #182A20;   /* body headings */
  --muted:       #5C6D63;   /* secondary text */
  --paper:       #ffffff;
  --paper-alt:   #F2F7F3;   /* section tint */
  --line:        #E0E9E2;   /* hairlines */
  --tint-green:  #E3F0E8;   /* green icon chip bg */
  --tint-moss:   #EAF3ED;   /* moss icon chip bg */
  --tint-gray:   #F1F5F2;   /* neutral chip bg */
  --accent:      #F4A11B;   /* WARM CTA accent — CTAs only */
  --accent-600:  #DB8A08;   /* CTA hover */

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* ICONS (inline SVG) */
.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.75;
      stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* NAV */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 74px; background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--forest-800), var(--forest));
  color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.logo-mark .ic { width: 26px; height: 26px; stroke-width: 1.6; }
.logo-text { font-size: 15.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; display: block; }
.logo-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-top: 1px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 13.5px; color: var(--leaf-ic); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--forest); }
.nav-links a.active { color: var(--forest); font-weight: 700; }
.nav-cta {
  background: var(--accent); color: #3a2600 !important; padding: 10px 20px;
  border-radius: 8px; font-weight: 700 !important; font-size: 13.5px !important;
  display: flex; align-items: center; gap: 7px; box-shadow: 0 4px 12px rgba(244,161,27,0.28);
}
.nav-cta:hover { background: var(--accent-600) !important; }
.nav-cta .ic { width: 17px; height: 17px; }

/* ===== HERO (CSS-built outdoor scene) ===== */
.hero { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; }
.hero-scene { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 78% -10%, #BFE3C6 0%, rgba(191,227,198,0) 55%),
    linear-gradient(180deg, #8FC7A0 0%, #5FA97A 34%, #2D6A4F 66%, #1B4332 100%);
}
/* rolling hills */
.hero-scene::before {
  content: ""; position: absolute; left: -5%; right: -5%; bottom: 0; height: 46%;
  background:
    radial-gradient(60% 120% at 20% 100%, #163A2A 0%, rgba(22,58,42,0) 60%),
    radial-gradient(70% 120% at 82% 100%, #123021 0%, rgba(18,48,33,0) 62%),
    linear-gradient(180deg, rgba(20,52,37,0) 0%, #14342599 100%);
}
/* mowing stripes */
.hero-scene::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background: repeating-linear-gradient(105deg,
    rgba(255,255,255,0.05) 0 26px, rgba(0,0,0,0.05) 26px 52px);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 70%);
  mask-image: linear-gradient(180deg, transparent, #000 70%);
}
.hero-sun { position: absolute; top: 10%; right: 12%; width: 120px; height: 120px; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle, #FFE9A8 0%, #FFD65C 45%, rgba(255,214,92,0) 72%); filter: blur(1px); }
.hero-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(14,36,26,0.72) 0%, rgba(14,36,26,0.42) 46%, rgba(14,36,26,0.08) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 4.5rem 3rem; max-width: 640px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px;
  font-weight: 700; color: #EAF3ED; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.4rem;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  padding: 6px 13px; border-radius: 30px; backdrop-filter: blur(3px);
}
.tag .ic { width: 15px; height: 15px; color: #CDE9D6; }
.h1 {
  font-family: var(--serif); font-size: 55px; line-height: 1.05; font-weight: 400;
  color: #fff; letter-spacing: -0.015em; margin-bottom: 1.25rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.h1 .accent { color: #FFD65C; font-style: italic; }
.hero-p { font-size: 16.5px; color: rgba(255,255,255,0.92); line-height: 1.7; max-width: 480px; margin-bottom: 2rem; font-weight: 400; }
.btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.25rem; flex-wrap: wrap; }
.hero-trust span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .ic { width: 17px; height: 17px; color: #FFD65C; }

/* BUTTONS */
.btn-primary {
  background: var(--accent); color: #3a2600; font-size: 15px; font-weight: 700;
  padding: 14px 26px; border-radius: 9px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 8px 22px rgba(244,161,27,0.34);
}
.btn-primary:hover { background: var(--accent-600); transform: translateY(-1px); }
.btn-primary .ic { width: 19px; height: 19px; }
.btn-ghost {
  font-size: 15px; color: #fff; font-weight: 600; background: rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  padding: 14px 24px; border-radius: 9px; border: 1.5px solid rgba(255,255,255,0.5);
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.btn-ghost .ic { width: 19px; height: 19px; }

/* TRUST BAR */
.trust-bar { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-item { padding: 1.35rem 1.5rem; display: flex; align-items: center; gap: 0.9rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--tint-green); color: var(--forest); }
.trust-icon.moss { background: var(--tint-moss); color: var(--moss); }
.trust-icon.amber { background: #FDF1DA; color: #B9760A; }
.trust-title { font-size: 14px; font-weight: 700; color: var(--ink); }
.trust-sub { font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 1px; }

/* SECTION SHELL */
.section { padding: 4rem 3rem; }
.section.alt { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 2.25rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.sec-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.6rem; }
.sec-h { font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--ink); letter-spacing: -0.015em; line-height: 1.12; margin-bottom: 0.85rem; }
.sec-p { font-size: 15.5px; color: var(--muted); line-height: 1.75; font-weight: 400; }

/* SERVICES GRID */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; max-width: 1120px; margin: 0 auto; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem 1.6rem 1.5rem; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; text-decoration: none; display: block; }
.svc:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(27,67,50,0.10); border-color: #CFE0D5; }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  background: var(--tint-green); color: var(--forest); }
.svc-icon .ic { width: 25px; height: 25px; }
.svc-icon.moss { background: var(--tint-moss); color: var(--moss); }
.svc-icon.amber { background: #FDF1DA; color: #B9760A; }
.svc-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 0.45rem; }
.svc-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; font-weight: 400; }
.svc-more { font-size: 13px; font-weight: 700; color: var(--forest); margin-top: 0.9rem; display: inline-flex; align-items: center; gap: 5px; }
.svc-more .ic { width: 15px; height: 15px; }

/* PHOTO PLACEHOLDER */
.photo-ph { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(135deg, #DCEBE1 0%, #C6DECD 100%);
  display: flex; align-items: center; justify-content: center; min-height: 260px; }
.photo-ph::before { content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(45,106,79,0.05) 0 12px, rgba(45,106,79,0) 12px 24px); }
.photo-ph-label { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--forest); text-align: center; padding: 1.5rem; }
.photo-ph-label .ic { width: 34px; height: 34px; stroke-width: 1.5; opacity: 0.7; }
.photo-ph-label b { font-size: 13.5px; font-weight: 700; }
.photo-ph-label span { font-size: 12px; color: var(--leaf-ic); max-width: 260px; line-height: 1.5; font-weight: 500; }
.photo-ph.tall { min-height: 380px; }

/* SPLIT (about / feature) */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; max-width: 1120px; margin: 0 auto; }
.split.rev .split-media { order: -1; }
.about-p { font-size: 15.5px; color: var(--muted); line-height: 1.8; font-weight: 400; margin-bottom: 1rem; }
.check-list { list-style: none; margin: 1.25rem 0 0; display: grid; gap: 0.75rem; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink); font-weight: 500; }
.check-list .ic { width: 22px; height: 22px; color: var(--moss); margin-top: 1px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; max-width: 1120px; margin: 0 auto; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem; position: relative; }
.step-num { font-family: var(--serif); font-size: 15px; font-weight: 700; color: #fff; background: var(--forest);
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.step-title { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; max-width: 1000px; margin: 0 auto; }
.stat { text-align: center; padding: 1rem; }
.stat-n { font-family: var(--serif); font-size: 46px; color: var(--forest); line-height: 1; }
.stat-l { font-size: 13px; color: var(--muted); margin-top: 0.5rem; font-weight: 500; }

/* REVIEWS */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 1120px; margin: 0 auto; }
.rev { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem; }
.rev-stars { display: flex; gap: 2px; margin-bottom: 0.9rem; color: var(--accent); }
.rev-stars .ic { width: 18px; height: 18px; fill: var(--accent); stroke: var(--accent); }
.rev-text { font-size: 14px; color: var(--ink); line-height: 1.7; font-weight: 400; }
.rev-who { font-size: 13px; color: var(--muted); margin-top: 1rem; font-weight: 700; }
.rev-who span { font-weight: 400; }

/* OFFER STRIP */
.offer-strip { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 1.6rem 3rem; background: linear-gradient(100deg, var(--forest), var(--forest-800)); text-align: center; }
.offer-badge { font-family: var(--serif); font-size: 34px; color: #FFD65C; flex-shrink: 0; }
.offer-txt { font-size: 15px; color: rgba(255,255,255,0.95); font-weight: 400; line-height: 1.5; }
.offer-txt strong { font-weight: 700; color: #fff; }

/* CTA STRIP */
.cta-strip { background: linear-gradient(100deg, var(--forest), var(--forest-800)); padding: 3.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title { font-family: var(--serif); font-size: 30px; color: #fff; margin-bottom: 5px; letter-spacing: -0.01em; }
.cta-sub { font-size: 14.5px; color: rgba(255,255,255,0.72); font-weight: 400; }

/* ===== QUOTE / REQUEST FORM ===== */
.quote-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: start; max-width: 1080px; margin: 0 auto; }
.quote-copy .sec-h { color: var(--ink); }
.quote-list { list-style: none; margin-top: 1.5rem; display: grid; gap: 1.1rem; }
.quote-list li { display: flex; gap: 13px; align-items: flex-start; }
.quote-list .qi { width: 42px; height: 42px; border-radius: 11px; background: var(--tint-green); color: var(--forest);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quote-list .qi .ic { width: 22px; height: 22px; }
.quote-list b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.quote-list p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.quote-phone { display: inline-flex; align-items: center; gap: 11px; margin-top: 1.75rem;
  font-family: var(--serif); font-size: 28px; color: var(--forest); text-decoration: none; }
.quote-phone .ic { width: 26px; height: 26px; color: var(--accent); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 2rem; box-shadow: 0 20px 50px rgba(27,67,50,0.10); }
.form-title { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.form-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 1.4rem; }
.fld { display: block; margin-bottom: 1rem; }
.fld span { display: block; font-size: 12px; font-weight: 700; color: var(--leaf-ic); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.fld input, .fld textarea, .fld select {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px; background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; resize: vertical;
}
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--moss); box-shadow: 0 0 0 3px rgba(64,145,108,0.15); }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; justify-content: center; margin-top: 0.4rem;
  background: var(--accent); color: #3a2600; font-size: 15.5px; font-weight: 700;
  padding: 15px 20px; border: none; border-radius: 10px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s; box-shadow: 0 8px 22px rgba(244,161,27,0.3);
}
.btn-submit:hover { background: var(--accent-600); }
.btn-submit .ic { width: 19px; height: 19px; }
.form-note { margin-top: 1rem; font-size: 12px; color: var(--muted); line-height: 1.5; text-align: center; }

/* PAGE HERO (subpages) */
.page-hero { position: relative; overflow: hidden; padding: 4rem 3rem; display: flex; align-items: center; min-height: 300px; }
.ph-inner { position: relative; z-index: 2; max-width: 760px; }
.page-h1 { font-family: var(--serif); font-size: 44px; font-weight: 400; line-height: 1.08; color: #fff; letter-spacing: -0.015em; margin-bottom: 1rem; text-shadow: 0 2px 14px rgba(0,0,0,0.35); }
.page-hero-p { font-size: 16px; color: rgba(255,255,255,0.92); line-height: 1.7; font-weight: 400; max-width: 580px; }

/* SERVICE DETAIL ROWS */
.svc-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; align-items: center; max-width: 1120px; margin: 0 auto; }
.svc-detail.rev .svc-detail-media { order: -1; }
.svc-detail + .svc-detail { margin-top: 3.5rem; }
.svc-detail h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.svc-detail .kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.6rem; }
.svc-detail p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.svc-detail .check-list { margin-top: 1.1rem; }

/* AREAS */
.area-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; max-width: 1120px; margin: 0 auto; }
.area { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; }
.area-head { display: flex; align-items: center; gap: 10px; margin-bottom: 0.6rem; }
.area-head .ic { width: 22px; height: 22px; color: var(--moss); }
.area-name { font-size: 17px; font-weight: 700; color: var(--ink); }
.area-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.area-towns { list-style: none; margin: 1rem 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.area-towns li { font-size: 12px; font-weight: 600; color: var(--forest); background: var(--tint-green); padding: 4px 10px; border-radius: 20px; }
.map-ph { max-width: 1120px; margin: 2.5rem auto 0; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem 1.5rem; background: #fff; margin-bottom: 0.9rem; }
.faq-q { font-size: 15.5px; font-weight: 700; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; }
.faq-q .ic { width: 20px; height: 20px; color: var(--moss); margin-top: 1px; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 0.6rem; padding-left: 30px; }

/* FOOTER */
.footer { background: var(--forest); padding: 3.25rem 3rem 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1.1rem; text-decoration: none; }
.ft-logo-mark { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: var(--forest-700); color: #fff; }
.ft-logo-mark .ic { width: 23px; height: 23px; }
.ft-name { font-size: 15px; font-weight: 700; color: #fff; }
.ft-tagline { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 400; max-width: 320px; }
.ft-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.9rem; }
.ft-links { list-style: none; }
.ft-links li { margin-bottom: 0.55rem; }
.ft-links a { font-size: 13.5px; color: rgba(255,255,255,0.72); text-decoration: none; font-weight: 400; }
.ft-links a:hover { color: #fff; }
.ft-row { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.72); margin-bottom: 0.6rem; font-weight: 400; }
.ft-row .ic { width: 16px; height: 16px; color: rgba(255,255,255,0.5); }
.ft-row a { color: inherit; text-decoration: none; }
.ft-row a:hover { color: #fff; }
.ft-row strong { color: #fff; font-weight: 700; }
.ft-bottom { background: var(--forest-deep); padding: 1.1rem 3rem; display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.ft-copy { font-size: 12px; color: rgba(255,255,255,0.42); }

/* DEMO NOTES */
.demo-note { display: flex; align-items: flex-start; gap: 12px;
  border: 1.5px dashed #7C3AED; background: rgba(124, 58, 237, 0.06);
  border-radius: 10px; padding: 0.9rem 1.25rem; font-size: 13px; color: #5B21B6; line-height: 1.6; font-weight: 400; }
.demo-note-badge { flex-shrink: 0; background: #7C3AED; color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; margin-top: 2px; }
.demo-note-strip { padding: 1.25rem 3rem; background: var(--paper); }
.demo-note-strip.alt { background: var(--paper-alt); }

/* RESPONSIVE */
@media (max-width: 940px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { gap: 0; }
  .nav-links li { display: none; }
  .nav-links li:last-child { display: block; }
  .h1 { font-size: 42px; }
  .hero-inner { padding: 3.5rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .split, .quote-wrap, .svc-detail { grid-template-columns: 1fr; gap: 2rem; }
  .split.rev .split-media, .svc-detail.rev .svc-detail-media { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .rev-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 2.5rem 1.5rem; }
  .footer { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2rem; }
  .ft-bottom { padding: 1rem 1.5rem; }
  .page-hero { padding: 3.25rem 1.5rem; }
  .page-h1 { font-size: 34px; }
  .offer-strip { padding: 1.5rem; }
  .demo-note-strip { padding: 1.25rem 1.5rem; }
}
@media (max-width: 560px) {
  .nav { padding: 0 1rem; }
  .logo-sub { display: none; }
  .nav-cta { padding: 9px 14px; }
  .h1 { font-size: 34px; }
  .sec-h { font-size: 27px; }
  .btns { gap: 10px; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .svc-grid, .steps, .stats, .area-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .fld-row { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .cta-strip .btn-primary { width: 100%; justify-content: center; }
}

/* ===================================================================
   POLISH PASS — motion, plans, before/after, instant estimator
   =================================================================== */

/* ---- SCROLL REVEAL (progressive enhancement) ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(.16,.7,.3,1), transform 0.7s cubic-bezier(.16,.7,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }
.reveal.d5 { transition-delay: 0.30s; }
/* JS not present or motion disabled: never hide content */
.no-js .reveal { opacity: 1; transform: none; }

/* ---- HERO REFINEMENTS: drifting sun + slow stripe crawl ---- */
.hero-sun {
  box-shadow: 0 0 60px 20px rgba(255,214,92,0.28);
  animation: sunDrift 14s ease-in-out infinite;
}
@keyframes sunDrift {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.95; }
  50% { transform: translateY(-14px) scale(1.05); opacity: 1; }
}
.hero-scene::after { animation: stripeCrawl 30s linear infinite; }
@keyframes stripeCrawl { from { background-position: 0 0; } to { background-position: 104px 0; } }
/* soft floating "seed" flecks in the hero for depth */
.hero-inner .h1 .accent { position: relative; }

/* ---- HERO KEY-VALUE STRIP under buttons (optional, home) ---- */
.hero-kv { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 1.5rem;
  font-size: 13px; color: rgba(255,255,255,0.86); font-weight: 500; }
.hero-kv b { font-family: var(--serif); font-size: 21px; color: #FFD65C; font-weight: 400; }

/* ---- PLANS / RECURRING PRICING ---- */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 1120px; margin: 0 auto; align-items: stretch; }
.plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.9rem 1.7rem 1.7rem;
  display: flex; flex-direction: column; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(27,67,50,0.12); border-color: #CFE0D5; }
.plan.featured { border-color: var(--forest); box-shadow: 0 22px 50px rgba(27,67,50,0.16); }
.plan.featured::before { content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #3a2600; font-size: 10.5px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; box-shadow: 0 6px 16px rgba(244,161,27,0.34); white-space: nowrap; }
.plan-cadence { font-size: 12px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.5rem; }
.plan-name { font-family: var(--serif); font-size: 23px; color: var(--ink); line-height: 1.1; margin-bottom: 0.9rem; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 0.3rem; }
.plan-price .amt { font-family: var(--serif); font-size: 40px; color: var(--forest); line-height: 1; }
.plan-price .per { font-size: 13px; color: var(--muted); font-weight: 600; }
.plan-note { font-size: 12.5px; color: var(--muted); margin-bottom: 1.2rem; }
.plan-feats { list-style: none; display: grid; gap: 0.6rem; margin: 0 0 1.4rem; }
.plan-feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--ink); font-weight: 500; line-height: 1.4; }
.plan-feats .ic { width: 18px; height: 18px; color: var(--moss); margin-top: 1px; flex-shrink: 0; }
.plan .plan-cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-size: 14px; font-weight: 700; padding: 12px 18px; border-radius: 9px;
  background: var(--tint-green); color: var(--forest); transition: background 0.15s, color 0.15s; }
.plan .plan-cta:hover { background: var(--forest); color: #fff; }
.plan.featured .plan-cta { background: var(--accent); color: #3a2600; box-shadow: 0 8px 20px rgba(244,161,27,0.28); }
.plan.featured .plan-cta:hover { background: var(--accent-600); color: #3a2600; }
.plan .plan-cta .ic { width: 16px; height: 16px; }
.plans-foot { max-width: 1120px; margin: 1.5rem auto 0; text-align: center; font-size: 13px; color: var(--muted); }

/* ---- INSTANT ESTIMATOR ---- */
.estimator { max-width: 1080px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; box-shadow: 0 22px 55px rgba(27,67,50,0.10); overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 0.95fr; }
.est-form { padding: 2.1rem 2.1rem 2rem; }
.est-form .sec-tag { margin-bottom: 0.5rem; }
.est-form h3 { font-family: var(--serif); font-size: 25px; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 0.35rem; }
.est-form .est-lead { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.est-q { margin-bottom: 1.35rem; }
.est-q > label { display: block; font-size: 12px; font-weight: 700; color: var(--leaf-ic); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 13px; font-weight: 600; color: var(--ink); background: #fff; border: 1.5px solid var(--line);
  padding: 9px 15px; border-radius: 30px; cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s; user-select: none; }
.chip:hover { border-color: #CFE0D5; }
.chip:active { transform: scale(0.97); }
.chip.sel { background: var(--forest); border-color: var(--forest); color: #fff; }
.est-panel { position: relative; padding: 2.1rem; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(150deg, var(--forest-800), var(--forest) 70%); color: #fff; overflow: hidden; }
.est-panel::before { content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(105deg, rgba(255,255,255,0.04) 0 22px, rgba(0,0,0,0.05) 22px 44px);
  -webkit-mask-image: radial-gradient(120% 80% at 80% 0, #000, transparent 70%); mask-image: radial-gradient(120% 80% at 80% 0, #000, transparent 70%); }
.est-panel-inner { position: relative; z-index: 1; }
.est-panel .est-elabel { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #CDE9D6; margin-bottom: 0.5rem; }
.est-range { display: flex; align-items: baseline; gap: 8px; }
.est-range .est-amt { font-family: var(--serif); font-size: 46px; line-height: 1; color: #fff; transition: opacity 0.2s; }
.est-range .est-per { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 600; }
.est-strike { font-size: 13.5px; color: rgba(255,255,255,0.72); margin-top: 0.8rem; }
.est-strike s { color: rgba(255,255,255,0.55); }
.est-strike b { color: #FFD65C; font-weight: 700; }
.est-panel .est-hint { font-size: 12px; color: rgba(255,255,255,0.62); line-height: 1.55; margin-top: 1.1rem; }
.est-panel .btn-primary { margin-top: 1.4rem; width: 100%; justify-content: center; }
.est-fresh { animation: estPop 0.3s ease; }
@keyframes estPop { 0% { transform: scale(0.94); opacity: 0.4; } 100% { transform: scale(1); opacity: 1; } }

/* ---- BEFORE / AFTER SLIDER ---- */
.ba-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; max-width: 1120px; margin: 0 auto; }
.ba { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16 / 10; user-select: none; touch-action: none; cursor: ew-resize; box-shadow: 0 10px 30px rgba(27,67,50,0.08); }
.ba-layer { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
/* "after" — lush striped lawn */
.ba-after { background:
    radial-gradient(120% 80% at 70% 0, #BFE3C6 0%, rgba(191,227,198,0) 55%),
    linear-gradient(180deg, #6FB98A 0%, #3E8E63 60%, #2D6A4F 100%); }
.ba-after::after { content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(102deg, rgba(255,255,255,0.10) 0 30px, rgba(0,0,0,0.06) 30px 60px);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%); mask-image: linear-gradient(180deg, transparent, #000 45%); }
/* "before" — patchy dry lawn, clipped by width */
.ba-before { width: 50%; overflow: hidden; border-right: 2px solid rgba(255,255,255,0.9); }
.ba-before-scene { position: absolute; inset: 0; width: 100vw; max-width: 640px;
  background:
    radial-gradient(40% 60% at 20% 30%, #C7B274 0%, rgba(199,178,116,0) 60%),
    radial-gradient(50% 50% at 75% 70%, #B7A15C 0%, rgba(183,161,92,0) 55%),
    linear-gradient(180deg, #A8B47C 0%, #8B9A5E 55%, #6E7C46 100%); }
.ba-before-scene::after { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(120,96,40,0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 65%, rgba(120,96,40,0.3) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 30%, rgba(120,96,40,0.25) 0 3px, transparent 4px); background-size: 90px 90px; }
.ba-tag { position: absolute; bottom: 12px; z-index: 3; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 11px; border-radius: 30px; color: #fff; backdrop-filter: blur(3px); }
.ba-tag.before { left: 12px; background: rgba(110,124,70,0.85); }
.ba-tag.after { right: 12px; background: rgba(27,67,50,0.82); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(255,255,255,0.95); z-index: 4; transform: translateX(-1px); }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  display: flex; align-items: center; justify-content: center; color: var(--forest); }
.ba-knob .ic { width: 22px; height: 22px; stroke-width: 2; }
.ba-cap { max-width: 1120px; margin: 1.4rem auto 0; text-align: center; font-size: 13px; color: var(--muted); }

/* ---- SEASON / FLORIDA CARD STRIP ---- */
.season { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; max-width: 1120px; margin: 0 auto; }
.season-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.35rem; }
.season-card .s-mon { font-size: 11.5px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.5rem; }
.season-card .s-cad { font-family: var(--serif); font-size: 22px; color: var(--forest); line-height: 1.1; margin-bottom: 0.35rem; }
.season-card .s-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ---- RESPONSIVE for new components ---- */
@media (max-width: 940px) {
  .plans { grid-template-columns: 1fr; max-width: 460px; }
  .plan.featured { order: -1; }
  .estimator { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; max-width: 520px; }
  .season { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .season { grid-template-columns: 1fr; }
  .est-form { padding: 1.6rem 1.4rem; }
  .est-panel { padding: 1.6rem 1.4rem; }
}

/* ---- REDUCED MOTION: honor user preference ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-sun { animation: none; }
  .hero-scene::after { animation: none; }
  .est-fresh { animation: none; }
}

/* ===================================================================
   OFFER-LED PROMO LAYOUT — Big Brother's loud, conversion-punchy variant
   (home page only; distinct from the calm proof-led sibling)
   =================================================================== */

/* ---- Two-column offer hero ---- */
.hero.promo { min-height: 620px; }
.promo-inner {
  max-width: 1180px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 3rem;
  align-items: center; padding: 4.5rem 3rem 6rem;
}
.promo-copy { max-width: 560px; }
/* loud highlighter marker on the promo word */
.h1 .hl { color: #fff; padding: 0 0.12em; border-radius: 3px;
  background: linear-gradient(transparent 58%, rgba(244,161,27,0.78) 58%, rgba(244,161,27,0.78) 94%, transparent 94%); }

/* ---- The coupon TICKET: the big key-value focal point ---- */
.promo-ticket {
  position: relative; justify-self: end; align-self: center;
  width: 100%; max-width: 372px; color: #3a2600;
  background: linear-gradient(158deg, #FFE59A 0%, #F7B23C 52%, #F4A11B 100%);
  border-radius: 22px; padding: 2.1rem 2rem 1.9rem;
  box-shadow: 0 28px 62px rgba(0,0,0,0.34), inset 0 0 0 2px rgba(255,255,255,0.42);
  transform: rotate(2.2deg);
  animation: ticketFloat 5s ease-in-out infinite;
}
@keyframes ticketFloat {
  0%, 100% { transform: rotate(2.2deg) translateY(0); }
  50% { transform: rotate(2.2deg) translateY(-7px); }
}
.promo-ticket .pt-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase;
  color: #7a4c00; background: rgba(255,255,255,0.55);
  padding: 5px 12px; border-radius: 30px; margin-bottom: 1.1rem;
}
.promo-ticket .pt-tag .ic { width: 14px; height: 14px; color: #7a4c00; }
.pt-val { display: flex; align-items: baseline; gap: 12px; line-height: 0.85; }
.pt-pct { font-family: var(--serif); font-size: 92px; font-weight: 400; color: #2a1c00; letter-spacing: -0.02em; }
.pt-off { font-size: 30px; font-weight: 900; letter-spacing: 0.04em; color: #3a2600; }
.pt-cut { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: #4a3000; margin-top: 0.5rem; }
.pt-perf { position: relative; height: 0; margin: 1.35rem -2rem; border-top: 2px dashed rgba(58,38,0,0.45); }
.pt-perf::before, .pt-perf::after {
  content: ""; position: absolute; top: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--forest-deep); transform: translateY(-50%);
}
.pt-perf::before { left: -13px; }
.pt-perf::after { right: -13px; }
.pt-fine { font-size: 12.5px; font-weight: 600; line-height: 1.55; color: #5a3c00; }
.pt-fine b { font-weight: 800; color: #3a2600; }

/* ---- Instant estimator PULLED UP as the primary CTA ---- */
.promo-est { background: var(--paper); padding: 0 3rem 3.5rem; }
.promo-est-wrap { max-width: 1080px; margin: -3.5rem auto 0; position: relative; z-index: 6; }
.promo-est-flag {
  display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 2;
  font-size: 12px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: #fff;
  background: linear-gradient(100deg, var(--forest), var(--forest-800));
  padding: 9px 17px; border-radius: 30px; box-shadow: 0 12px 26px rgba(27,67,50,0.3);
  margin: 0 0 -0.7rem 1.4rem;
}
.promo-est-flag .ic { width: 15px; height: 15px; color: #FFD65C; }

/* ---- Home service-areas summary band ---- */
.home-area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 840px; margin: 0 auto; }
.home-area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--forest);
  background: #fff; border: 1px solid var(--line); padding: 10px 18px; border-radius: 30px;
}
.home-area-chip .ic { width: 16px; height: 16px; color: var(--moss); }
.home-areas-cta { text-align: center; margin-top: 1.9rem; }

/* ---- Responsive for the promo layout ---- */
@media (max-width: 940px) {
  .hero.promo { min-height: auto; }
  .promo-inner { grid-template-columns: 1fr; gap: 2.4rem; padding: 3.25rem 1.5rem 4.5rem; }
  .promo-copy { max-width: none; }
  .promo-ticket { justify-self: start; max-width: 340px; transform: rotate(0); animation: none; }
  .promo-est { padding: 0 1.5rem 3rem; }
  .promo-est-wrap { margin-top: -2.5rem; }
  .promo-est-flag { margin-left: 0.5rem; }
}
@media (max-width: 560px) {
  .pt-pct { font-size: 76px; }
  .promo-ticket { max-width: 100%; }
  .promo-est-wrap { margin-top: -2rem; }
}

/* ---- REDUCED MOTION for promo additions ---- */
@media (prefers-reduced-motion: reduce) {
  .promo-ticket { animation: none; }
}
