/* =========================================================
   LawnSkapers — Brand System (Rework 2026-05-23, Palette v2)
   Bebas Neue (headings) · Open Sans (body)
   Greens: #1A3D2B primary forest · #2B6E45 sage · #0C2618 near-black forest
   Accent: #FFFFFF white · #0A0A0A ink — premium green+white+black system
   "Beautiful Lawns. Lasting Impressions."
   ========================================================= */

:root {
  --primary-green: #1A3D2B;
  --bright-green: #2B6E45;
  --dark-forest: #0C2618;
  --steel-blue: #1A3D2B;
  --light-cyan: #6FEFEF;
  --accent-orange: #D4A23A;
  --accent-orange-dark: #A8801D;
  --accent-orange-light: #F1D88B;
  --ink: #0A0A0A;
  --text: #1A1A1A;
  --text-muted: #555;
  --bg-soft: #F7F9F6;
  --bg-tint: #EBF0EC;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(12, 38, 24, 0.08);
  --shadow-md: 0 8px 24px rgba(12, 38, 24, 0.12);
  --shadow-lg: 0 16px 40px rgba(12, 38, 24, 0.18);
  --grad-cta: linear-gradient(135deg, var(--primary-green) 0%, var(--bright-green) 100%);
  --grad-cta-hover: linear-gradient(135deg, var(--bright-green) 0%, var(--primary-green) 100%);
  --radius: 8px;

  /* -- Visual brand design-token ladders (additive, Builder GD-2 lens) -- */
  /* RHYTHM — 4px baseline for vertical-rhythm snapping */
  --rhythm: 4px;

  /* RADIUS ladder — bounded set; existing 8px = --radius-md */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* SPACE ladder — 4px baseline, T-shirt sized */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  /* TYPE scale — 1.25 (major third) ratio anchored at 16px */
  --text-xs:   0.75rem;   /* 12px — micro caption */
  --text-sm:   0.875rem;  /* 14px — small UI */
  --text-base: 1rem;      /* 16px — body */
  --text-md:   1.125rem;  /* 18px — emphasised body */
  --text-lg:   1.25rem;   /* 20px — sub-head */
  --text-xl:   1.5rem;    /* 24px — h3 */
  --text-2xl:  1.875rem;  /* 30px */
  --text-3xl:  clamp(1.85rem, 4.5vw, 2.5rem);
  --text-display: clamp(2.4rem, 7vw, 4.5rem);

  /* Derived state colors — math, not eyeballed */
  --primary-green-hover:  color-mix(in srgb, var(--primary-green) 88%, black);
  --accent-orange-hover:  color-mix(in srgb, var(--accent-orange) 88%, black);
  --steel-blue-hover:     color-mix(in srgb, var(--steel-blue) 88%, black);
  --text-on-dark:         #f6f9f4;
  --text-on-dark-muted:   color-mix(in srgb, var(--text-on-dark) 75%, transparent);

  /* FOCUS-HALO — single accessible ring used everywhere */
  --focus-ring: 0 0 0 3px color-mix(in srgb, var(--primary-green) 55%, transparent);

  /* =========================================================
     MOTION TOKENS (Builder Motion & Video lens — run 80, additive)
     Source: ~/.skills/motion-video/SKILL.md "Default Motion Tokens (Canonical)".
     Cross-property motion language coherence — these are the EXACT
     same cubic-bezier control points + duration values shipped by
     run 77 (MattCreates), run 78 (MattEbersole), run 79 (Landmark).
     Lawnskapers is the 4th Matt-owned property to receive the
     canonical block; subsequent Motion-lens passes will snap the
     remaining 32 `transition: ... ease` declarations to these
     tokens incrementally (Karpathy Surgical Changes principle).
     The existing per-rule `transition: ... 0.15s ease` declarations
     are LEFT UNTOUCHED in this pass — only the 5 highest-impact
     hero + base-button rules are migrated below. Pre-fix audit:
     0 motion tokens, 1 `:active` rule across 61 `:hover` rules
     (only `.nav-toggle:active`), 32+ generic `ease` transitions,
     2 `cubic-bezier` declarations both inside @keyframes (correct).
     Tone of motion (Lawnskapers brand voice — landscaping/junk
     removal, ground-truth working-class energy, NOT corporate or
     toy-like): `--ease-out-expo` is the canonical enter (decisive
     start, confident settle); `--ease-overshoot` is reserved for
     genuine affirmation moments only (e.g., quote-submitted pop).
     ========================================================= */
  --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);    /* canonical enter */
  --ease-in-quart:   cubic-bezier(0.5, 0, 0.75, 0);    /* canonical leave */
  --ease-in-out:     cubic-bezier(0.4, 0, 0.2, 1);     /* state toggles */
  --ease-overshoot:  cubic-bezier(0.34, 1.56, 0.64, 1); /* affirmation, sparing */
  --motion-fast:        150ms; /* state toggles — hover, focus, press */
  --motion-medium:      300ms; /* element enter/exit, modals */
  --motion-slow:        500ms; /* page transitions, hero reveals */
  --motion-deliberate:  800ms; /* large hero motion, story-driven reveal */
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: clip; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: clip;
  overflow-wrap: break-word;
}

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

a { color: var(--steel-blue); }
a:hover { color: var(--dark-forest); }

/* ---------- HEADINGS — Bebas Neue, uppercase, ink-black for impact ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Open Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5.5vw, 3rem); }       /* 32–48 */
h2 { font-size: clamp(1.65rem, 4vw, 2.25rem); }   /* 26–36 */
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }   /* 19–24 */
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.75rem;
}
.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1560px; }

@media (min-width: 1600px) {
  .container { max-width: 1480px; padding: 0 2.25rem; }
  .container--wide { max-width: 1680px; }
}
@media (min-width: 1920px) {
  .container { max-width: 1560px; padding: 0 2.5rem; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--dark-forest); color: var(--white);
  padding: 0.75rem 1rem; z-index: 1000; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- WCAG 2.4.7 — visible focus on the bypass-blocks affordance.
   Pre-fix (Builder GD rotation #2, run 70): the rule above was only
   `left: 0` — the dark-forest pill slid into the top-left corner but
   with NO outline framing it, making the affordance barely
   distinguishable from a normal nav element to a sighted keyboard user.
   Fix: brand accent-orange outline + soft halo that contrasts cleanly
   against BOTH the dark-forest pill (white-on-dark text inside the link)
   AND the white page background just beyond it. Orange is the client's
   complementary accent token, so the focus indicator stays 100% on-brand.
   Both :focus and :focus-visible selectors paired so the affordance
   renders for mouse-focus AND keyboard-focus contexts. ---------- */
.skip-link:focus,
.skip-link:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-orange) 22%, transparent);
  border-radius: var(--radius-sm);
}

/* ---------- SITE HEADER / NAV ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(180deg, #1A3D2B 0%, var(--dark-forest) 100%);
  color: var(--white);
  border-bottom: 2px solid rgba(68, 204, 19, 0.85);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  overflow: visible !important;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-bottom-color 0.25s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(22, 63, 29, 0.96) 0%, rgba(18, 68, 26, 0.96) 100%);
  box-shadow: 0 6px 22px rgba(0,0,0,0.32);
  border-bottom-color: var(--accent-orange);
  backdrop-filter: blur(8px);
}

body { padding-top: 172px; }
.site-header.is-scrolled + main .hero { /* no-op anchor for specificity */ }

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.35rem 0;
  min-height: 160px;
  position: relative;
  overflow: visible !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 60;
  padding: 0;
}

.brand-logo {
  height: 184px !important;
  width: auto !important;
  max-width: none !important;
  position: static !important;
  top: auto;
  left: auto;
  margin: -8px 0 -20px -10px;
  z-index: 100;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)) drop-shadow(-1px 2px 4px rgba(0,0,0,0.55));
  max-height: none !important;
  min-height: 0 !important;
  transition: transform 0.2s ease;
  display: block;
}

.brand:hover .brand-logo { transform: translateY(-1px) scale(1.02); }

/* Logo replaces the wordmark — keep span around for a11y but hide visually */
.brand-word {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* New brand wordmark — sits alongside the logo, two-tone, with tagline */
.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin-left: 0.25rem;
}
.brand-wordmark-name {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.brand-wordmark-name-1 {
  color: var(--white);
  margin-right: 0.2rem;
}
.brand-wordmark-name-2 {
  color: var(--bright-green);
}
.brand-wordmark-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.62rem, 1.2vw, 0.72rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.25rem;
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 720px) {
  .brand-wordmark { display: none; }
}

/* Hero tagstrip — "Expert Care. Premium Results. You'll See the Difference." */
.hero-tagstrip {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.85rem;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0.5rem auto 1.5rem;
  padding: 0.55rem 1.25rem;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  max-width: max-content;
}
.hero-tagstrip span { white-space: nowrap; }
.hero-tagstrip-emph {
  color: var(--accent-orange-light);
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 4px;
  cursor: pointer;
  line-height: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  margin-right: 4px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  opacity: 0.85;
  outline: none;
}

.nav-toggle:active { transform: scale(0.94); }

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover .bar,
.nav-toggle:focus-visible .bar { background: var(--accent-orange); }

.nav-toggle[aria-expanded="true"] .bar { background: var(--accent-orange); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding-left: 0;
  margin-left: auto;
}

.primary-nav a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
}

.primary-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.primary-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(245, 138, 30, 0.14);
  box-shadow: inset 0 -2px 0 var(--accent-orange);
  border-radius: 4px;
}

.nav-call-pair { display: contents; }

.primary-nav a.nav-call,
.primary-nav a.nav-text,
.nav-call,
.nav-text {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--bright-green) 100%) !important;
  color: var(--white) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem !important;
  border-radius: 999px !important;
  white-space: nowrap;
  margin-left: 0.65rem;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  border: none !important;
  box-shadow: 0 3px 12px rgba(68, 204, 19, 0.42), inset 0 1px 0 rgba(255,255,255,0.3);
}

.nav-call svg,
.nav-text svg { width: 15px; height: 15px; flex-shrink: 0; }

.primary-nav a.nav-call:hover,
.primary-nav a.nav-text:hover,
.nav-call:hover,
.nav-text:hover {
  background: linear-gradient(135deg, var(--bright-green) 0%, var(--primary-green) 100%) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(68, 204, 19, 0.55), inset 0 1px 0 rgba(255,255,255,0.35);
}

/* Builder Motion run 80 — :active press state on the persistent header CTA.
   This is the single most-visible button on the site (header is sticky on
   every page at every scroll position), so missing press feedback here was
   the highest-impact mouse-user a11y gap. Subtle 0px translate (already
   at -1px on hover, so scale alone reads as the press) + .97 scale (slightly
   more pronounced than the .98 used on the larger hero CTAs because this
   button is small and the press needs to register at a smaller pixel
   footprint). The !important matches the hover-rule specificity contract. */
.primary-nav a.nav-call:active,
.primary-nav a.nav-text:active,
.nav-call:active,
.nav-text:active {
  transform: translateY(0) scale(0.97) !important;
  box-shadow: 0 3px 10px rgba(68, 204, 19, 0.5), inset 0 1px 0 rgba(255,255,255,0.4) !important;
  transition-duration: var(--motion-fast) !important;
}

.nav-call-text--mobile { display: none; }
.nav-text { display: none !important; }

/* Desktop-only: center the whole header (logo + nav + buttons) as one even block */
@media (min-width: 901px) {
  .site-header-inner {
    justify-content: center;
    gap: 0.75rem;
  }
  .primary-nav { margin-left: 0; }
  .primary-nav a.nav-text, .nav-text { display: none !important; }
}

/* ---------- HERO with parallax background photo ---------- */
.hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 0;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(18,68,26,0.65) 60%, rgba(18,68,26,0.78) 100%);
  z-index: 1;
}

.hero > .container { position: relative; z-index: 2; padding: 3rem 1.5rem; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  margin-top: 0.5rem;
  margin-bottom: 0.85rem;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero .eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--light-cyan);
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero .tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 720px;
  margin: 0 auto 1rem;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero .bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  margin: 0.5rem 0 1.75rem;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.hero .bullets li {
  position: relative;
  padding: 0;
}

.hero .bullets li:not(:last-child)::after {
  content: "•";
  margin-left: 1.5rem;
  color: var(--primary-green);
}

/* Hero service pills (homepage) — replaces .bullets for a richer look */
.hero-services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 620px;
  margin: 0.25rem auto 1.4rem;
  padding: 0;
}
.hero-services li { display: inline-flex; }
.hero-services a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.hero-services a:hover {
  background: rgba(68, 204, 19, 0.22);
  border-color: var(--primary-green);
  transform: translateY(-1px);
  color: var(--white);
}
.hero-services .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(68, 204, 19, 0.28);
  flex-shrink: 0;
}
.hero-services a:hover .dot {
  background: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(245, 138, 30, 0.3);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Homepage hero CTA — 3 equal-width buttons (Call · Text · Quote) */
.hero-cta--triad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 720px;
  margin: 1.25rem auto 0;
  width: 100%;
}
.hero-cta--triad .btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1rem;
  min-height: 58px;
  border-radius: 6px;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  /* Builder Motion run 80 — snap from generic 0.15s ease to canonical
     motion tokens (SKILL.md Role 1 check #1 — easing tokens, #2 — duration
     tokens). Same 150ms pacing, same 4-property explicit list (no
     transition:all regression), but now grep-able through --motion-fast +
     --ease-out-expo which establishes cross-property motion coherence with
     runs 77/78/79. Per-rule transitions on the 30+ other components in this
     file are LEFT UNTOUCHED in this pass — they'll migrate to tokens
     incrementally on the next Motion-lens rotation. */
  transition: transform var(--motion-fast) var(--ease-out-expo),
              background var(--motion-fast) var(--ease-out-expo),
              box-shadow var(--motion-fast) var(--ease-out-expo),
              border-color var(--motion-fast) var(--ease-out-expo);
}
.hero-cta--triad .btn-hero svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-cta--triad .btn-hero--call {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(68, 204, 19, 0.4);
}
.hero-cta--triad .btn-hero--call:hover {
  background: var(--bright-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(68, 204, 19, 0.55);
  color: var(--white);
}
/* Builder Motion run 80 — :active press state. Pre-fix: ZERO :active rules
   on this triad despite call/text/quote being the highest-traffic CTAs on
   every hero on every page. Mouse users had no press feedback. -1px lift +
   .98 scale per SKILL.md Role 3 Interactive State Standards. transition
   override to --motion-fast (150ms) ensures the press reads as instantaneous
   (not the same pacing as the hover enter, otherwise the press feels mushy). */
.hero-cta--triad .btn-hero--call:active {
  transform: translateY(-1px) scale(0.98);
  background: var(--primary-green-hover, var(--bright-green));
  transition-duration: var(--motion-fast);
}
.hero-cta--triad .btn-hero--text {
  background: var(--dark-forest);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(12, 38, 24, 0.45);
}
.hero-cta--triad .btn-hero--text:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 38, 24, 0.6);
  color: var(--white);
}
.hero-cta--triad .btn-hero--text:active {
  transform: translateY(-1px) scale(0.98);
  background: var(--ink);
  transition-duration: var(--motion-fast);
}
.hero-cta--triad .btn-hero--quote {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
}
.hero-cta--triad .btn-hero--quote:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}
.hero-cta--triad .btn-hero--quote:active {
  transform: translateY(-1px) scale(0.98);
  background: rgba(255,255,255,0.32);
  border-color: var(--white);
  transition-duration: var(--motion-fast);
}

@media (max-width: 640px) {
  .hero-cta--triad {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    max-width: 360px;
  }
  .hero-cta--triad .btn-hero--quote { grid-column: 1 / -1; }
  .hero-cta--triad .btn-hero {
    font-size: 1rem;
    padding: 0.75rem 0.6rem;
    min-height: 48px;
  }
  .hero-cta--triad .btn-hero svg { width: 16px; height: 16px; }
  .hero-services {
    gap: 0.4rem;
    margin-bottom: 1rem;
  }
  .hero-services a {
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.08em;
  }
}

/* ---------- PAGE HERO (slimmer for inner pages) ---------- */
.page-hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 0;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.page-hero > .container { padding: 4.5rem 1.5rem; }

.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(18,68,26,0.7) 70%, rgba(18,68,26,0.85) 100%);
  z-index: 1;
}

.page-hero > .container { position: relative; z-index: 2; }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.page-hero p {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  max-width: 740px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.page-hero .crumbs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero .crumbs a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}

.page-hero .crumbs a:hover { color: var(--light-cyan); border-bottom-color: var(--light-cyan); }

/* ---------- BUTTONS ---------- */
.btn-call,
.btn-secondary,
.btn-outline {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  /* Builder Motion run 80 — canonical motion tokens (SKILL.md Role 1
     checks #1+#2). Same 150ms pacing, same 4-property explicit list
     (no transition:all regression). Establishes brand-aligned ease-out-expo
     across the cross-page CTA cluster used in CTA strips, service
     callouts, and footer CTAs on every page. */
  transition: transform var(--motion-fast) var(--ease-out-expo),
              background var(--motion-fast) var(--ease-out-expo),
              box-shadow var(--motion-fast) var(--ease-out-expo),
              color var(--motion-fast) var(--ease-out-expo);
  cursor: pointer;
}

.btn-call {
  background: var(--grad-cta);
  color: var(--white);
  font-size: 1.35rem;
  padding: 0.95rem 2rem;
  border: 2px solid transparent;
  box-shadow: 0 6px 18px rgba(245, 138, 30, 0.35), 0 4px 14px rgba(68, 204, 19, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Safety net: any inline SVG inside any .btn-call / .btn-text /
   .btn-secondary / .btn-outline must size to the icon slot, not the
   browser-default 300×150 SVG fallback. Was missing on standalone
   .btn-call usages outside .cta-pair (irrigation / shrub-tree-care
   hero CTAs), which rendered a 280px phone receiver covering content. */
.btn-call svg,
.btn-text svg,
.btn-secondary svg,
.btn-outline svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-call:hover {
  transform: translateY(-2px);
  background: var(--grad-cta-hover);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 28px rgba(245, 138, 30, 0.55), 0 6px 18px rgba(68, 204, 19, 0.3);
  color: var(--white);
}

/* Builder Motion run 80 — :active press states added to the entire base
   button cluster. Pre-fix: ZERO :active rules on .btn-call/.btn-secondary/
   .btn-outline despite these being the cross-page conversion CTAs (every
   .cta-strip footer band uses these). -1px translate + .98 scale per
   SKILL.md Role 3 Interactive State Standards. The .btn-secondary press
   variant gets an explicit darker rgba background so the press reads on
   the translucent overlay variant (otherwise the hover-state box-shadow
   would persist and the press feels mushy). .btn-outline:active locks in
   the orange hover-state explicitly so the press reads as a real button-down
   moment, not just a sub-pixel scale change. */
.btn-call:active {
  transform: translateY(-1px) scale(0.98);
  background: var(--grad-cta-hover);
  box-shadow: 0 4px 12px rgba(245, 138, 30, 0.45), 0 2px 8px rgba(68, 204, 19, 0.3);
  transition-duration: var(--motion-fast);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.2rem;
  padding: 0.85rem 1.6rem;
  border: 2px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  color: var(--white);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
  background: rgba(255,255,255,0.34);
  border-color: var(--white);
  transition-duration: var(--motion-fast);
}

.btn-outline {
  background: transparent;
  color: var(--dark-forest);
  font-size: 1.25rem;
  padding: 0.85rem 1.7rem;
  border: 2px solid var(--dark-forest);
  position: relative;
}

.btn-outline:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(245, 138, 30, 0.35);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
  background: var(--accent-orange-dark);
  border-color: var(--accent-orange-dark);
  color: var(--white);
  transition-duration: var(--motion-fast);
}

/* ---------- SECTIONS ---------- */
.section { padding: 4rem 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--dark {
  background: var(--dark-forest);
  color: var(--white);
}
.section--dark h2 { color: var(--white); }

.section-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.section-head h2 { margin-bottom: 0.75rem; }

.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- SERVICE OVERVIEW CARDS — photo-left vertical ---------- */
.svc-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid #e5ebdf;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  text-align: left;
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.svc-card-photo {
  position: relative;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.svc-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,68,26,0.15) 0%, rgba(18,68,26,0) 60%);
  transition: background 0.25s ease;
}

.svc-card:hover .svc-card-photo::after {
  background: linear-gradient(135deg, rgba(245,138,30,0.25) 0%, rgba(245,138,30,0) 60%);
}

.svc-card-photo .svc-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--white);
  color: var(--primary-green);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 2;
  text-transform: uppercase;
}

.svc-card--steel .svc-card-photo .svc-tag { color: var(--accent-orange); }
.svc-card--forest .svc-card-photo .svc-tag { color: var(--dark-forest); }
.svc-card--bright .svc-card-photo .svc-tag { color: var(--bright-green); }

.svc-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem;
  border-left: 5px solid var(--primary-green);
}

.svc-card--steel .svc-card-body { border-left-color: var(--accent-orange); }
.svc-card--forest .svc-card-body { border-left-color: var(--dark-forest); }
.svc-card--bright .svc-card-body { border-left-color: var(--bright-green); }

.svc-card:hover .svc-card-body { border-left-color: var(--accent-orange); }

.svc-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--dark-forest);
}

.svc-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  line-height: 1.55;
  flex: 1;
}

.svc-card .svc-link {
  margin-top: auto;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--primary-green);
  align-self: flex-start;
  transition: transform 0.2s ease, color 0.2s ease;
}

.svc-card:hover .svc-link {
  color: var(--bright-green);
  transform: translateX(4px);
}

@media (max-width: 520px) {
  .svc-card { grid-template-columns: 1fr; min-height: 0; }
  .svc-card-photo { aspect-ratio: 16 / 9; }
  .svc-card-body { border-left: none; border-top: 5px solid var(--primary-green); }
  .svc-card--steel .svc-card-body { border-top-color: var(--accent-orange); }
  .svc-card--forest .svc-card-body { border-top-color: var(--dark-forest); }
  .svc-card--bright .svc-card-body { border-top-color: var(--bright-green); }
}

/* ---------- TRUST / WHY CARDS — photo header ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid #e5ebdf;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-photo {
  position: relative;
  aspect-ratio: 3 / 2;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.why-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 68, 26, 0) 50%, rgba(18, 68, 26, 0.7) 100%);
}

.why-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--primary-green);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  z-index: 2;
  text-transform: uppercase;
}

.why-tag svg { width: 14px; height: 14px; }

.why-card--orange .why-tag { color: var(--bright-green); }
.why-card--forest .why-tag { color: var(--dark-forest); }

.why-body {
  padding: 1.25rem 1.4rem 1.5rem;
  border-top: 5px solid var(--primary-green);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-card--orange .why-body { border-top-color: var(--accent-orange); }
.why-card--forest .why-body { border-top-color: var(--dark-forest); }

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--dark-forest);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- AREA CARDS ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

.area-card {
  background: var(--white);
  border: 1px solid #e5ebdf;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.area-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 68, 26, 0) 50%, rgba(18, 68, 26, 0.75) 100%);
}

.area-card-photo .area-pin {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--white);
  color: var(--primary-green);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.area-card-photo .area-pin svg { width: 14px; height: 14px; }

.area-card-photo .area-caption {
  position: absolute;
  bottom: 0.7rem;
  left: 0.95rem;
  right: 0.95rem;
  color: var(--white);
  font-size: 0.78rem;
  font-style: italic;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.area-card-body { padding: 1.1rem 1.25rem 1.35rem; border-left: 5px solid var(--primary-green); }
.area-card:nth-child(2) .area-card-body { border-left-color: var(--accent-orange); }
.area-card:nth-child(3) .area-card-body { border-left-color: var(--dark-forest); }

.area-card h3 { font-size: 1.55rem; color: var(--dark-forest); margin-bottom: 0.35rem; }
.area-card p { color: var(--text-muted); font-size: 0.93rem; margin: 0; line-height: 1.55; }

.area { text-align: center; }

/* ---------- CONTENT ---------- */
.content { padding: 3.5rem 0; }

.content h2 { margin-bottom: 1rem; }
.content h3 { margin: 1.75rem 0 0.6rem; color: var(--steel-blue); }
.content p, .content li { color: var(--text); font-size: 1.02rem; }
.content ul { margin: 0 0 1.25rem 1.25rem; }
.content ul li { margin-bottom: 0.5rem; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-grid--reverse > :first-child { order: 2; }

.content-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ---------- IMAGE GRID ---------- */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.image-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.image-feature {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  margin: 1.5rem 0 2.5rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ---------- FEATURE CARDS (service inclusions) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-card {
  padding: 1.5rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid #e5ebdf;
  border-left: 4px solid var(--primary-green);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--dark-forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card h3::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- PRICING BLOCK ---------- */
.pricing-block {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  border: 2px dashed var(--primary-green);
  margin: 2.5rem 0;
}

.pricing-block h2 { margin-bottom: 0.85rem; }

.pricing-note {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- BEFORE / AFTER ---------- */
.beforeafter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.beforeafter figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.beforeafter figcaption {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--primary-green);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.beforeafter img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem 1.6rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid #e5ebdf;
  border-left: 5px solid var(--primary-green);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.testimonial:nth-child(2) { border-left-color: var(--accent-orange); }
.testimonial:nth-child(3) { border-left-color: var(--dark-forest); }

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.45rem;
  left: 1.1rem;
  font-family: 'Bebas Neue', serif;
  font-size: clamp(3.25rem, 8vw, 5.5rem); /* was static 5.5rem (~88px) — caused crowding on 375px viewports; now scales from 52px mobile → 88px desktop */
  line-height: 1;
  color: var(--bright-green);
  opacity: 0.85;
  pointer-events: none;
}

.testimonial .stars {
  color: #E8A317;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.18em;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid #eef1ea;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--primary-green);
}

.testimonial:nth-child(2) .testimonial-avatar { border-color: var(--accent-orange); }
.testimonial:nth-child(3) .testimonial-avatar { border-color: var(--dark-forest); }

.testimonial-meta { display: flex; flex-direction: column; min-width: 0; }

.testimonial-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--dark-forest);
  line-height: 1.1;
}

.testimonial-loc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 0.15rem;
}

/* ---------- CTA STRIP (parallax) ---------- */
.cta-strip {
  position: relative;
  background-color: var(--dark-forest);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 4.25rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,68,26,0.88), rgba(18,68,26,0.7) 60%, rgba(47,100,122,0.78));
}

.cta-strip > .container { position: relative; z-index: 2; }

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  margin-bottom: 0.65rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.contact-info dl { margin: 0 0 1.5rem; }

.contact-info dt {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-green);
  font-size: 1.05rem;
  margin-top: 1.1rem;
}

.contact-info dd { margin-left: 0; font-size: 1.05rem; }

.contact-info dd a {
  color: var(--dark-forest);
  text-decoration: none;
  border-bottom: 1px dotted var(--primary-green);
  font-weight: 600;
}

.contact-info dd a:hover { color: var(--primary-green); }

.contact-form {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid #e5ebdf;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-green);
}

.contact-form .field { margin-bottom: 1rem; }

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--dark-forest);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #cfd9c8;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(68,204,19,0.18);
}

.contact-form button {
  background: var(--grad-cta);
  color: var(--white);
  border: none;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  box-shadow: 0 4px 14px rgba(245, 138, 30, 0.3);
}

.contact-form button:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(245, 138, 30, 0.45);
}

/* ---------- VALUES (about) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.value {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid #e5ebdf;
  border-top: 4px solid var(--steel-blue);
  box-shadow: var(--shadow-sm);
}

.value h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--dark-forest); }
.value p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark-forest);
  color: rgba(255,255,255,0.85);
  padding: 2.25rem 0 1rem;
  border-top: 4px solid var(--primary-green);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  width: 110px;
  height: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.footer-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin: 0;
}

.footer-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 0.3rem 0 0;
}

.footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--accent-orange);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(212, 162, 58, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.footer-col p { margin: 0 0 0.45rem; font-size: 0.92rem; line-height: 1.45; }
.footer-col .footer-hours { margin-top: 0.6rem; font-size: 0.86rem; color: rgba(255,255,255,0.7); }
.footer-col .footer-area { font-size: 0.86rem; color: rgba(255,255,255,0.7); }

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin: 0 0 0.3rem; font-size: 0.94rem; }
.footer ul li:last-child { margin-bottom: 0; }

.footer a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-bottom: none;
  transition: color 0.15s ease;
}

.footer a:hover { color: var(--accent-orange); }

.footer-social {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.9rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom p { margin: 0; }

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .site-header-inner { padding-left: 0.85rem; padding-right: 0.85rem; }
  .nav-toggle { display: inline-flex; order: 3; margin-right: 0; margin-left: auto; }
  .site-header .nav-login-mobile {
    display: inline-flex;
    order: 0;
    margin-right: auto;
    z-index: 50;
  }
  .brand { order: 1; margin: 0 auto; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark-forest);
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 1.25rem;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    order: 4;
    flex-basis: 100%;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    color: var(--white);
  }
  .primary-nav a:hover { color: var(--accent-orange); background: rgba(245, 138, 30, 0.08); }
  .primary-nav a:last-child { border-bottom: none; }
  .nav-call-pair {
    display: flex !important;
    flex-direction: row;
    gap: 0.6rem;
    margin: 0.85rem 0 0;
    border-bottom: none;
  }
  .nav-call-pair .nav-call,
  .nav-call-pair .nav-text {
    display: inline-flex !important;
    flex: 1 1 0;
    justify-content: center;
    margin: 0;
    padding: 0.75rem 0.6rem !important;
    border-bottom: none;
  }
  .nav-text { display: inline-flex !important; }
  .nav-call-text--desktop { display: none; }
  .nav-call-text--mobile { display: inline; }
  .primary-nav a.nav-login,
  .primary-nav .nav-login {
    display: inline-flex !important;
    justify-content: center;
    margin: 0.65rem 0 0 !important;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-login .nav-login-icon { display: none; }
  .nav-login-label--desktop { display: none; }
  .nav-login-label--mobile { display: inline; }
  .nav-login.is-greeting .nav-login-label--mobile { display: inline; }
  .nav-login.is-greeting .nav-login-greeting { display: none; }
  .primary-nav .nav-social-row { display: flex; }
  .site-header-inner { flex-wrap: wrap; }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-grid--reverse > :first-child { order: 0; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 640px) {
  .hero { padding: 4rem 0 4.5rem; }
  .page-hero { padding: 3.25rem 0 3rem; }
  .section, .content { padding: 3.25rem 0; }
  .btn-call { font-size: 1.15rem; padding: 0.8rem 1.4rem; }
  .btn-secondary { font-size: 1.05rem; padding: 0.7rem 1.25rem; }
  .brand-word { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer { padding: 1.75rem 0 0.85rem; }
  .beforeafter { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; max-width: 340px; margin: 0 auto; }
  .hero .bullets li:not(:last-child)::after { margin-left: 0.5rem; }
  .hero .bullets { font-size: 1rem; gap: 0.25rem 0.75rem; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.15rem; }
  .page-hero h1 { font-size: 1.85rem; }
}

/* ---------- OUR WORK / BEFORE-AFTER GRID ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.work-pair {
  background: var(--white);
  border: 1px solid #e5ebdf;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.work-pair:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.work-pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--white);
}

.work-card {
  position: relative;
  background: var(--dark-forest);
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.work-card::before {
  content: attr(data-label);
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  z-index: 2;
  color: var(--white);
  background: rgba(18, 68, 26, 0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.work-card--after::before {
  background: var(--accent-orange);
}

.work-pair-caption {
  padding: 0.8rem 1.1rem 1rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: var(--dark-forest);
  border-top: 3px solid var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.work-pair:nth-child(2) .work-pair-caption { border-top-color: var(--accent-orange); }
.work-pair:nth-child(3) .work-pair-caption { border-top-color: var(--dark-forest); }

.work-pair-caption svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary-green); }
.work-pair:nth-child(2) .work-pair-caption svg { color: var(--bright-green); }
.work-pair:nth-child(3) .work-pair-caption svg { color: var(--dark-forest); }

.work-feature {
  display: block;
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.work-feature img { width: 100%; height: auto; display: block; }

/* Hero typography fixes for new full-viewport layout */
.hero h1 { margin-top: 0.25rem; }

/* ---------- MOBILE PARALLAX FALLBACK ----------
   background-attachment: fixed is broken on iOS Safari & some Androids.
   Disable on touch / small screens — use a normal scrolled background.    */
@media (max-width: 900px) {
  .hero,
  .page-hero,
  .cta-strip { background-attachment: scroll; }
  .hero { min-height: 88vh; }
  .page-hero { min-height: 52vh; }
  .hero > .container { padding: 3.5rem 1.5rem; }
  .page-hero > .container { padding: 3.25rem 1.5rem; }
}

@media (hover: none) and (pointer: coarse) {
  .hero,
  .page-hero,
  .cta-strip { background-attachment: scroll; }
}

@media print {
  .site-header, .nav-toggle, .nav-call, .footer, .cta-strip { display: none; }
  body { color: #000; }
  .hero, .page-hero, .cta-strip { background-attachment: scroll; }
  .hero::before, .page-hero::before { background: transparent; }
}

/* ---------- ORANGE ACCENT TOUCHES ---------- */
.svc-card:hover .svc-link { color: var(--accent-orange); }

.feature-card { border-left-color: var(--primary-green); }
.feature-card:hover {
  border-left-color: var(--accent-orange);
  box-shadow: 0 10px 26px rgba(245, 138, 30, 0.2);
}

.section-head .eyebrow { color: var(--primary-green); font-weight: 600; }

/* ---------- FACEBOOK / SOCIAL ---------- */
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  color: var(--white) !important;
  border-radius: 50%;
  margin-left: 0.4rem;
  padding: 0 !important;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
  border-bottom: none !important;
}
.nav-social:hover {
  background: #1877F2;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav-social svg { width: 18px; height: 18px; display: block; }

/* Facebook feed embed on homepage */
.facebook-feed {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--bg-soft);
  border-top: 1px solid #e5ebdf;
}
.facebook-feed h2 {
  margin-bottom: 0.5rem;
}
.facebook-feed .fb-intro {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}
.facebook-feed .fb-wrap {
  display: inline-block;
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.facebook-feed iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 600px;
  border: 0;
}
.facebook-feed .fb-cta {
  margin-top: 1.5rem;
}

/* Footer "Follow Us" button */
.fb-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1877F2;
  color: var(--white) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  border-bottom: none !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  margin-top: 0.5rem;
}
.fb-follow-btn:hover {
  background: #166FE5;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.5);
  border-bottom: none !important;
}
.fb-follow-btn svg { width: 20px; height: 20px; }

/* Contact-info Facebook link icon */
.contact-info .contact-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info .contact-fb svg { width: 18px; height: 18px; color: #1877F2; }

@media (max-width: 640px) {
  .facebook-feed iframe { height: 520px; }
  .nav-social { margin: 0.5rem 0 0; align-self: center; }
}

.pricing-block { border-color: var(--primary-green); }
.pricing-block:hover { border-color: var(--accent-orange); }

.beforeafter figcaption {
  background: var(--accent-orange);
  box-shadow: 0 2px 8px rgba(245, 138, 30, 0.4);
}

/* ---------- FACEBOOK FOLLOW SECTION ---------- */
.fb-follow {
  background: var(--dark-forest);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent-orange);
  border-bottom: 4px solid var(--primary-green);
}

.fb-follow::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(245,138,30,0.18), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(68,204,19,0.18), transparent 45%);
  pointer-events: none;
}

.fb-follow > .container { position: relative; z-index: 2; }

.fb-follow h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.fb-follow .eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.fb-follow p {
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.fb-embed-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 1rem;
  padding: 0.5rem;
  max-width: 540px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.fb-embed-wrap iframe {
  max-width: 100%;
  border-radius: 4px;
  background: var(--white);
}

.fb-follow .btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1877F2;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.15rem;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #1877F2;
  margin-top: 1.25rem;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.fb-follow .btn-fb:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.55);
  color: var(--white);
}

.fb-follow .btn-fb svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- FOOTER SOCIAL ICONS ---------- */
.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.footer-social .social-icon:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  color: var(--white);
}

.footer-social .social-icon svg { width: 18px; height: 18px; fill: currentColor; }

.footer-social .social-icon.fb:hover { background: #1877F2; border-color: #1877F2; }

/* Contact-info Facebook link */
.contact-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1877F2 !important;
  text-decoration: none;
  border-bottom: 1px dotted #1877F2 !important;
  font-weight: 600;
}

.contact-fb-link svg { width: 18px; height: 18px; fill: currentColor; }
.contact-fb-link:hover { color: #0d65d9 !important; border-bottom-color: #0d65d9 !important; }

/* ---------- HEADER LOGIN BUTTON ---------- */
.primary-nav a.nav-login,
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.85) !important;
  border: 1.5px solid rgba(255,255,255,0.28) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem !important;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.95rem !important;
  border-radius: 999px !important;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  margin-left: 0.45rem;
  min-height: 32px;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.primary-nav a.nav-login:hover,
.nav-login:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.55) !important;
  color: var(--white) !important;
}
.nav-login svg { width: 14px; height: 14px; }
.nav-login-label--mobile { display: none; }
.nav-login-greeting {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}
.nav-login-greet {
  font-size: 0.7rem;      /* was 0.52rem (~8.3px) — bumped to ~11.2px for legibility per Visual Designer Role 1 CRITICAL: never ship sub-10px text */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1;
}
.nav-login-name {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-login.is-greeting { padding-top: 0.22rem !important; padding-bottom: 0.22rem !important; }
.nav-login.is-greeting .nav-login-icon { display: none; }
.nav-login.is-greeting .nav-login-label--desktop { display: none; }
.nav-login.is-greeting .nav-login-greeting { display: inline-flex; }

.nav-login-mobile {
  display: none;
  align-items: center;
  gap: 0.3rem;
  color: var(--white) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.08em;
  height: 30px;
  padding: 0 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-login-mobile:hover { background: var(--accent-orange); border-color: var(--accent-orange); }
.nav-login-mobile svg { width: 14px; height: 14px; }

/* ---------- CALL + TEXT BUTTON PAIR ---------- */
.cta-pair {
  display: inline-flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-pair .btn-call,
.cta-pair .btn-text {
  flex: 1 1 220px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1.15rem;
  padding: 0.8rem 1.5rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.cta-pair .btn-call {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(68, 204, 19, 0.4);
}
.cta-pair .btn-call:hover {
  background: var(--bright-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(68, 204, 19, 0.55);
  color: var(--white);
}
/* Builder Motion run 80 — :active press states on the mid-page CTA pair.
   .cta-pair is used inside service callouts (lawn-care, junk-removal,
   cleanup, pest-control pages) — the secondary conversion path after the
   hero triad. Same press semantics as the hero triad for consistency
   (-1px translate + .98 scale, 150ms transition-duration override).
   The hovers already use --primary-green/--accent-orange semantic tokens
   so the :active rules reach for one shade darker to lock in the press. */
.cta-pair .btn-call:active {
  transform: translateY(-1px) scale(0.98);
  background: var(--primary-green-hover, var(--bright-green));
  box-shadow: 0 4px 12px rgba(68, 204, 19, 0.5);
  transition-duration: var(--motion-fast);
}
.cta-pair .btn-text {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 138, 30, 0.4);
}
.cta-pair .btn-text:hover {
  background: var(--accent-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 138, 30, 0.55);
  color: var(--white);
}
.cta-pair .btn-text:active {
  transform: translateY(-1px) scale(0.98);
  background: var(--accent-orange-hover, var(--accent-orange-dark));
  box-shadow: 0 4px 12px rgba(245, 138, 30, 0.5);
  transition-duration: var(--motion-fast);
}
.cta-pair .btn-call svg,
.cta-pair .btn-text svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero .cta-pair .btn-call,
.hero .cta-pair .btn-text,
.cta-strip .cta-pair .btn-call,
.cta-strip .cta-pair .btn-text { font-size: 1.25rem; padding: 0.9rem 1.6rem; }

@media (max-width: 480px) {
  .cta-pair { flex-direction: row; flex-wrap: nowrap; width: 100%; max-width: 100%; margin: 0 auto; gap: 0.5rem; }
  .cta-pair .btn-call,
  .cta-pair .btn-text {
    flex: 1 1 49%;
    width: 49%;
    min-width: 0;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
  }
  .hero .cta-pair .btn-call,
  .hero .cta-pair .btn-text,
  .cta-strip .cta-pair .btn-call,
  .cta-strip .cta-pair .btn-text { font-size: 1rem; padding: 0.75rem 0.5rem; }
}

/* ---------- SOCIAL / DIRECTORY ICONS ROW ---------- */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0.5rem 0 0;
}
.social-row .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.social-row .social-icon:hover,
.social-row .social-icon:focus-visible {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  color: var(--white);
  outline: none;
}
.social-row .social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-row .social-icon.fb:hover { background: #1877F2; border-color: #1877F2; }

/* Mobile-nav social row */
.primary-nav .nav-social-row {
  display: none;
  justify-content: center;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- COMING-SOON TOOLTIP ---------- */
.coming-soon-toast {
  position: fixed;
  z-index: 9999;
  background: var(--dark-forest);
  color: var(--white);
  padding: 0.75rem 1.1rem 0.85rem 1.1rem;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  max-width: 280px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 0 2px var(--accent-orange);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
  line-height: 1.4;
}
.coming-soon-toast.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.coming-soon-toast strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}
.coming-soon-toast .cs-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.15rem 0.35rem;
  cursor: pointer;
}
.coming-soon-toast .cs-close:hover { color: var(--accent-orange); }

/* ---------- HERO ENTRANCE ANIMATION (homepage only) ---------- */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow,
.hero h1,
.hero .tagline,
.hero .bullets,
.hero .hero-services,
.hero .hero-cta {
  opacity: 0;
  animation: hero-fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero .eyebrow        { animation-delay: 0.05s; }
.hero h1              { animation-delay: 0.18s; }
.hero .tagline        { animation-delay: 0.32s; }
.hero .bullets        { animation-delay: 0.46s; }
.hero .hero-services  { animation-delay: 0.46s; }
.hero .hero-cta       { animation-delay: 0.60s; }

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero h1,
  .hero .tagline,
  .hero .bullets,
  .hero .hero-services,
  .hero .hero-cta { animation: none; opacity: 1; }
}

/* ---------- LOGO RESPONSIVE SIZING ---------- */
@media (max-width: 900px) {
  .brand-logo {
    height: 72px !important;
    margin: -4px 0 -4px -6px;
  }
  .site-header-inner { min-height: 68px; }
  /* header total height = inner min-height (68) + border-bottom (2) = 70px */
  body { padding-top: 70px; }
}

@media (max-width: 640px) {
  .brand {
    position: absolute !important;
    top: -31px;
    left: 50%;
    transform: translateX(calc(-50% + 5px));
    margin: 0 !important;
    padding: 0;
    z-index: 40;
    pointer-events: auto;
  }
  .brand-logo {
    height: 160px !important;
    width: auto !important;
    margin: 0 !important;
    position: static !important;
    display: block;
    filter:
      drop-shadow(0 6px 14px rgba(0,0,0,0.45))
      drop-shadow(-1px 2px 4px rgba(0,0,0,0.55));
  }
  .brand:hover .brand-logo { transform: translateY(-1px) scale(1.02); }
  .site-header-inner { min-height: 64px; align-items: center; }
  /* header total height = inner min-height (64) + border-bottom (2) = 66px */
  body { padding-top: 66px; }
  .site-header .nav-login-mobile {
    height: 32px;
    padding: 0 0.55rem;
    font-size: 0.85rem;
  }
  .primary-nav { padding-left: 0; }
  .fb-embed-wrap iframe { height: 500px; }
}

@media (max-width: 380px) {
  .brand { top: -13px; }
  .brand-logo { height: 140px !important; }
  .site-header .nav-login-mobile { height: 30px; padding: 0 0.45rem; font-size: 0.78rem; }
}

/* ---------- LEAD ANSWER (AI-Overview-friendly) ---------- */
.lead-answer {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  margin: 1.25rem 0 2rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.lead-answer strong { color: var(--dark-forest); }

/* ---------- CHECKLISTS (Included / Not Included) ---------- */
.checklist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0 2.5rem;
}
@media (max-width: 760px) {
  .checklist-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
}
.checklist-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-green);
}
.checklist-card--no { border-top-color: #c25b3a; }
.checklist-card h3 {
  font-size: 1.2rem;
  color: var(--dark-forest);
  margin: 0 0 1rem;
}
.checklist-card--no h3 { color: #8a3a23; }
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checklist li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.85rem;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.45;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}
.checklist--no li::before {
  content: "✕";
  background: #c25b3a;
}

/* ---------- PRICING TIERS ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}
.tier-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5ebdf;
  border-top: 4px solid var(--accent-orange);
}
.tier-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  color: var(--dark-forest);
}
.tier-card .tier-price {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem;
  color: var(--primary-green);
  letter-spacing: 0.5px;
  margin: 0.2rem 0 0.6rem;
}
.tier-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- SERVICE AREA BLOCK ---------- */
.service-area-block {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem;
  margin: 2rem 0;
  border-left: 4px solid var(--steel-blue);
}
.service-area-block h2 { margin: 0 0 0.6rem; }
.service-area-block p { margin: 0 0 0.6rem; color: var(--text); }
.service-area-block .cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.service-area-block .cities span {
  display: inline-block;
  background: var(--white);
  border: 1px solid #d8e0d0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--dark-forest);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin: 1.5rem 0 2.5rem;
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-green);
}
.faq-item h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--dark-forest);
}
.faq-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* =========================================================
   QUOTE PAGE — Multi-step quote flow
   ========================================================= */

.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;
}

.quote-hero {
  background: linear-gradient(180deg, #0f3a15 0%, var(--dark-forest) 60%, #0e3613 100%);
  color: var(--white);
  text-align: center;
  padding: 3.25rem 0 2.5rem;
  border-bottom: 4px solid var(--primary-green);
  position: relative;
}
body.quote-in-progress .quote-hero { display: none; }
body.quote-in-progress .quote-section { padding-top: 1.25rem; }
.quote-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--bg-soft));
  pointer-events: none;
}
.quote-hero .crumbs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.65rem;
}
.quote-hero .crumbs a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}
.quote-hero .crumbs a:hover { color: var(--light-cyan); border-bottom-color: var(--light-cyan); }
.quote-hero .eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-orange-light);
  margin-bottom: 0.45rem;
}
.quote-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin-bottom: 0.6rem;
}
.quote-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
}

.quote-section {
  background: var(--bg-soft);
  padding: 2.5rem 0 5rem;
  position: relative;
}

/* Progress */
.quote-progress {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.quote-progress-bar {
  height: 8px;
  background: #dde7d7;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.55rem;
}
.quote-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--bright-green), var(--accent-orange));
  width: 0;
  border-radius: 999px;
  transition: width 0.35s ease;
}
.quote-progress-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-forest);
  margin: 0;
}

/* Form container */
.quote-form {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 2rem 1.75rem;
  border: 1px solid #e3ebdd;
}
@media (min-width: 720px) {
  .quote-form { padding: 2.5rem 2.5rem; }
}

.quote-step { display: none; }
.quote-step.is-active { display: block; animation: quoteFade 0.28s ease; }
@keyframes quoteFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quote-step h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 0.45rem;
  color: var(--dark-forest);
}
.quote-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.quote-helper {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* Zip */
.quote-zip-field {
  margin-top: 0.5rem;
}
.quote-zip-field input {
  width: 100%;
  max-width: 280px;
  font-size: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 0.9rem 0.6rem;
  border: 2px solid #cfd9c8;
  border-radius: 8px;
  background: var(--white);
  color: var(--dark-forest);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.quote-zip-field input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(68,204,19,0.2);
}
.quote-zip-msg {
  min-height: 1.7rem;
  margin-top: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: transparent;
}
.quote-zip-msg svg { width: 22px; height: 22px; }
.quote-zip-msg.is-ok { color: #1a8c1a; }
.quote-zip-msg.is-no { color: #b85b00; }

/* Service cards */
.quote-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 600px) {
  .quote-services { grid-template-columns: 1fr 1fr; }
}
.quote-service-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem 0.85rem 0.85rem;
  background: var(--white);
  border: 2px solid #d8e0d0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.quote-service-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.quote-service-card input { position: absolute; opacity: 0; pointer-events: none; }
.quote-service-photo {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.quote-service-body { display: flex; flex-direction: column; gap: 0.15rem; }
.quote-service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-forest);
}
.quote-service-desc { font-size: 0.9rem; color: var(--text-muted); }
.quote-service-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef5ec;
  border: 2px solid #c8d6c0;
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}
.quote-service-check svg { width: 16px; height: 16px; }
.quote-service-card.is-selected {
  border-color: var(--primary-green);
  background: linear-gradient(180deg, #f4faef 0%, var(--white) 100%);
  box-shadow: 0 4px 14px rgba(68,204,19,0.18);
}
.quote-service-card.is-selected .quote-service-check {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
}

/* Lot cards */
.quote-lots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .quote-lots { grid-template-columns: repeat(4, 1fr); }
}
.quote-lot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1rem 0.7rem 1.1rem;
  background: var(--white);
  border: 2px solid #d8e0d0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.quote-lot-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.quote-lot-card input { position: absolute; opacity: 0; pointer-events: none; }
.quote-lot-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  color: var(--steel-blue);
  margin-bottom: 0.2rem;
}
.quote-lot-icon svg { width: 100%; height: 100%; }
.quote-lot-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--dark-forest);
  text-transform: uppercase;
}
.quote-lot-size { font-size: 0.8rem; color: var(--text-muted); }
.quote-lot-price {
  display: inline-block;
  margin-top: 0.35rem;
  background: var(--bg-tint);
  color: var(--dark-forest);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.quote-lot-card.is-selected {
  border-color: var(--primary-green);
  background: linear-gradient(180deg, #f4faef 0%, var(--white) 100%);
  box-shadow: 0 4px 14px rgba(68,204,19,0.18);
}
.quote-lot-card.is-selected .quote-lot-icon { color: var(--primary-green); }
.quote-lot-card.is-selected .quote-lot-price {
  background: var(--primary-green); color: var(--white);
}

/* Frequency */
.quote-freq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 560px) {
  .quote-freq { grid-template-columns: repeat(3, 1fr); }
}
.quote-freq-card {
  position: relative;
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 2px solid #d8e0d0;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.quote-freq-card:hover { border-color: var(--primary-green); transform: translateY(-1px); }
.quote-freq-card input { position: absolute; opacity: 0; pointer-events: none; }
.quote-freq-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--dark-forest);
  text-transform: uppercase;
}
.quote-freq-desc { font-size: 0.85rem; color: var(--text-muted); }
.quote-freq-card.is-selected {
  border-color: var(--primary-green);
  background: linear-gradient(180deg, #f4faef 0%, var(--white) 100%);
  box-shadow: 0 4px 14px rgba(68,204,19,0.18);
}

/* Contact fields */
.quote-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .quote-fields { grid-template-columns: 1fr 1fr; }
  .quote-fields .quote-field--full { grid-column: 1 / -1; }
}
.quote-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--dark-forest);
  font-size: 0.95rem;
}
.quote-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.quote-field input,
.quote-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid #cfd9c8;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 48px;
}
.quote-field textarea { resize: vertical; min-height: 110px; }
.quote-field input:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(68,204,19,0.18);
}
.quote-field-help {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0.4rem 0 0;
  font-style: italic;
}

/* File drop */
.quote-file-drop {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.45rem;
  padding: 1.5rem 1rem;
  background: var(--bg-tint);
  border: 2px dashed #b8c8b0;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.quote-file-drop:hover { border-color: var(--primary-green); background: #f4faef; }
.quote-file-drop input[type="file"] {
  position: absolute; opacity: 0; width: 0.1px; height: 0.1px;
}
.quote-file-icon {
  width: 36px; height: 36px;
  color: var(--steel-blue);
}
.quote-file-icon svg { width: 100%; height: 100%; }
.quote-file-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--dark-forest);
}
.quote-file-hint { font-size: 0.85rem; color: var(--text-muted); }

/* Actions */
.quote-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}
.quote-actions--split { justify-content: space-between; }

.btn-quote-next,
.btn-quote-submit,
.btn-quote-back,
.quote-back-link {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn-quote-next,
.btn-quote-submit {
  background: var(--grad-cta);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  font-size: 1.1rem;
  min-height: 48px;
  box-shadow: 0 4px 14px rgba(245,138,30,0.3);
}
.btn-quote-next:hover:not(:disabled),
.btn-quote-submit:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(245,138,30,0.45);
  color: var(--white);
}
.btn-quote-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-quote-back {
  background: transparent;
  color: var(--dark-forest);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border: 2px solid #cfd9c8;
  min-height: 48px;
}
.btn-quote-back:hover {
  border-color: var(--dark-forest);
  background: var(--bg-tint);
  color: var(--dark-forest);
}
.quote-back-link {
  background: transparent;
  color: var(--steel-blue);
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  text-decoration: underline;
  margin-top: 0.5rem;
}
.quote-back-link:hover { color: var(--dark-forest); }

.quote-fine-print {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* Decline panel */
.quote-decline-card {
  text-align: center;
  padding: 1rem 0;
}
.quote-decline-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  color: var(--bright-green);
}
.quote-decline-icon svg { width: 100%; height: 100%; }
.quote-decline-card h2 { color: var(--dark-forest); margin-bottom: 0.6rem; }
.quote-decline-card p {
  max-width: 480px; margin: 0 auto 1.5rem;
  color: var(--text-muted);
}
.quote-decline .cta-pair { justify-content: center; }

/* Confirmation */
.quote-confirm-card {
  text-align: center;
  padding: 1rem 0;
}
.quote-confirm-icon {
  width: 88px; height: 88px;
  margin: 0 auto 1.25rem;
  color: var(--primary-green);
  animation: quotePop 0.5s cubic-bezier(.2,1.4,.5,1);
}
@keyframes quotePop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.quote-confirm-icon svg { width: 100%; height: 100%; }
.quote-confirm-card h2 { color: var(--dark-forest); margin-bottom: 0.65rem; }
.quote-confirm-lead {
  max-width: 540px;
  margin: 0 auto 0.5rem;
  font-size: 1.08rem;
  color: var(--text);
}
.quote-confirm-sub {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.quote-confirm-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  max-width: 560px;
  margin: 0 auto;
}
.quote-confirm-photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* Trust strip */
.quote-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
}
.quote-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
}
.quote-trust-icon {
  width: 22px; height: 22px;
  color: var(--primary-green);
}
.quote-trust-icon svg { width: 100%; height: 100%; }

/* =========================================================
   STICKY MOBILE BOTTOM BAR
   ========================================================= */
.mobile-bottom-bar { display: none; }

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--dark-forest);
    border-top: 3px solid var(--primary-green);
    box-shadow: 0 -4px 14px rgba(0,0,0,0.18);
    padding: env(safe-area-inset-bottom, 0) 0 0;
  }
  .mbb-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.7rem 0.25rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    background: transparent;
    min-height: 56px;
  }
  .mbb-btn svg { width: 22px; height: 22px; }
  .mbb-btn:hover { color: var(--white); }
  .mbb-call { background: rgba(68,204,19,0.08); }
  .mbb-text { background: rgba(255,255,255,0.05); }
  .mbb-quote {
    background: var(--grad-cta);
    color: var(--white);
    font-size: 0.95rem;
  }
  .mbb-quote svg { width: 24px; height: 24px; }
  body { padding-bottom: 76px; }
  /* Account for safe-area on iOS */
  @supports (padding: max(0px)) {
    body { padding-bottom: max(76px, calc(76px + env(safe-area-inset-bottom))); }
  }
}

/* =========================================================
   HOMEPAGE ZIP CHECKER (inline in service area)
   ========================================================= */
.zip-checker {
  background: var(--white);
  border: 2px solid #d8e0d0;
  border-radius: 10px;
  padding: 1.25rem 1.25rem 1.4rem;
  margin: 1.75rem auto 0;
  max-width: 520px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.zip-checker-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.zip-checker-head svg { width: 22px; height: 22px; color: var(--primary-green); flex-shrink: 0; }
.zip-checker-head label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--dark-forest);
  text-transform: uppercase;
  margin: 0;
}
.zip-checker-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.zip-checker-row input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border: 2px solid #cfd9c8;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.18em;
  font-size: 1.2rem;
  text-align: center;
  color: var(--dark-forest);
  background: var(--white);
  min-height: 48px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.zip-checker-row input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(68,204,19,0.18);
}
.zip-checker-row button {
  background: var(--grad-cta);
  color: var(--white);
  border: none;
  padding: 0 1.2rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 48px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.zip-checker-row button:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
}
.zip-checker-msg {
  margin-top: 0.7rem;
  min-height: 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.zip-checker-msg svg { width: 20px; height: 20px; }
.zip-checker-msg.is-ok { color: #1a8c1a; }
.zip-checker-msg.is-no { color: #b85b00; }
.zip-checker-msg.is-no a { color: #b85b00; text-decoration: underline; }
.zip-checker-cta {
  display: none;
  margin-top: 0.9rem;
  text-align: center;
}
.zip-checker-cta.is-visible { display: block; }
.zip-checker-cta .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  padding: 0.7rem 1.3rem;
}
.zip-checker-cta .btn-call svg { width: 18px; height: 18px; }

/* =========================================================
   LARGE / XL DESKTOP (1440px+) — Use the full screen
   ========================================================= */
@media (min-width: 1440px) {
  .section { padding: 4.5rem 0; }
  .content { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }

  .svc-overview {
    grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr));
    gap: 1.75rem;
  }
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 1.75rem;
  }
  .area-grid {
    max-width: 1280px;
    gap: 1.75rem;
  }
  .feature-grid { gap: 1.5rem; }
  .work-grid    { gap: 1.75rem; }
  .testimonials { gap: 1.75rem; }

  .content-grid { gap: 3.5rem; }
  .contact-grid { gap: 3.5rem; }

  .primary-nav a { padding: 0.55rem 0.95rem; font-size: 1.08rem; }
}

@media (min-width: 1600px) {
  .section { padding: 5rem 0; }
  .content { padding: 4.25rem 0; }

  .svc-overview {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1480px;
  }
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid { gap: 2.5rem; }
}

@media (min-width: 1920px) {
  .section { padding: 5.5rem 0; }
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ------------------------------------------------------------------
   <picture> transparency for layout — Builder run 12 (2026-05-22)
   ------------------------------------------------------------------
   Every layout selector in this stylesheet targets the <img> directly
   (`.brand-logo`, `.footer-logo`, `.image-feature`, `.work-card img`,
   `.testimonial-avatar`, etc.). The new <picture> wrappers added on
   run 12 default to display:inline, which would shrink-wrap several
   grid/flex cells. display:contents makes the <picture> transparent
   to layout — its child <img> inherits the parent slot exactly as
   before. Supported by Chrome 65+, Firefox 36+, Safari 11.1+;
   pre-2018 browsers see <picture> as inline and the img still renders.
*/
picture { display: contents; }

/* =========================================================
   Craft utilities (Builder GD-2 lens, additive)
   - .prose      → 65ch max-width for readable line-length on long copy
   - .tnum       → tabular-nums for phone numbers / pricing / time stamps
                   so digits don't shimmy between rows
   - .vh-rhythm  → snap any element's vertical padding to the 4px baseline
   - :focus-visible halo → single, brand-consistent focus ring
   ========================================================= */
.prose { max-width: 65ch; }
.prose p + p { margin-top: 1rem; }

.tnum,
.phone,
.price,
.stat,
time { font-variant-numeric: tabular-nums; }

.vh-rhythm { padding-block: calc(var(--rhythm) * 6); }

/* Accessibility — restore a visible, brand-tinted focus ring without
   overriding existing :focus styling on interactive elements that already
   declare their own. Targets the global interactive set only when no
   author rule has supplied one. */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

/* Reduced-motion safety net for any future scroll-reveal additions */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Visual brand polish — text-wrap balance + pretty
   (Builder GD rotation #2, run 70, additive)

   `text-wrap: balance` distributes the WIDTH of each wrapped line
   so the last line never holds a single orphaned word. Critical for
   Bebas Neue all-caps display headings — the typeface is condensed
   and dense, so "JUNK REMOVAL & HAULING IN" + lone "GREENVILLE" on
   line 2 reads visually broken vs. balanced two-line splits.

   `text-wrap: pretty` applies the same orphan-suppression logic to
   long-form paragraphs in .prose / blockquote / li copy without the
   stricter (and slower) line-balancing math.

   Both are 2024+ baseline-supported CSS (Chrome 114+, Firefox 121+,
   Safari 17.5+) with graceful fallback — browsers that don't
   understand the property just render the default greedy wrap.
   ZERO impact on layout boxes, line-height, or the rendered text
   itself — purely a refinement of where the wrap break lands.

   Limited to h1/h2/h3 + .eyebrow + .prose to avoid surprising
   small UI labels where greedy wrap is preferable (nav, buttons,
   form labels — text-wrap: balance can subtly shift label widths
   and break tight column layouts).
   ========================================================= */
h1, h2, h3,
.section-head .eyebrow,
.hero h1, .hero h2,
.page-hero h1, .page-hero h2 {
  text-wrap: balance;
}
.prose p,
.prose li,
blockquote p {
  text-wrap: pretty;
}

/* =========================================================
   Windows High Contrast / forced-colors mode preservation
   (Builder GD rotation #2, run 70, additive)

   When a Windows user enables High Contrast or any OS-level forced
   color scheme, the browser ignores author colors and substitutes
   system colors (CanvasText, Highlight, etc.). Without explicit
   forced-colors styling, brand-tinted focus rings, box-shadow halos,
   and gradient CTAs disappear entirely — the user gets a degraded,
   unbranded experience and (worse) loses visible focus indicators.

   Per WCAG 2.4.11 (Focus Not Obscured) and the graphic-design SKILL
   Role 1 Art Director discipline, this is a real visual-brand AND
   accessibility gap. Fix: preserve the keyboard-focus affordance
   using system Highlight colors so the bypass-blocks link AND the
   global :focus-visible halo render as visible outlines in HC mode,
   and force the skip-link border into the user's chosen text color
   so it doesn't blend into the page background.
   ========================================================= */
@media (forced-colors: active) {
  .skip-link {
    outline: 2px solid CanvasText;
  }
  .skip-link:focus,
  .skip-link:focus-visible {
    outline: 3px solid Highlight;
    outline-offset: 2px;
    box-shadow: none;  /* HC mode strips color-mix anyway; outline does the work */
  }
  a:focus-visible,
  button:focus-visible,
  [role="button"]:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible,
  summary:focus-visible {
    outline: 2px solid Highlight;
    outline-offset: 2px;
    box-shadow: none;
  }
  /* Preserve button affordance — gradient backgrounds collapse to
     transparent in HC mode; restore a border so buttons remain
     visually identifiable as interactive controls. */
  .btn,
  .cta,
  button {
    border: 1px solid ButtonText;
  }
}

/* =========================================================
   Print stylesheet refinement — additive on existing block at L1726
   (Builder GD rotation #2, run 70)

   Pre-fix the existing @media print block (lines 1726-1731) hid
   the chrome (.site-header, .nav-toggle, .nav-call, .footer,
   .cta-strip set to display:none), zeroed hero backgrounds, and
   set body color to pure #000 — functional but unrefined for
   paper output. Missing: @page margin rule, widows/orphans
   control, URL unfurling for paper readers, page-break controls
   on headings + images, publication-grade ink (#111 not #000),
   tabular-nums for printed phone/price tables. This second print
   block ADDS those refinements on top — the existing block stays
   intact, the new declarations layer on via CSS cascade (later
   rules win on equal specificity).

   Per the graphic-design SKILL Role 4 Art Director "print-mode
   test": "If a client would print this, it has to print well."
   Lawnskapers' service-area + pricing pages WILL be printed by
   customers comparing quotes — so paper output is a real surface.
   ========================================================= */
@page { margin: 0.75in; }

@media print {
  body {
    color: #111;            /* refined publication-grade ink, NOT pure #000 */
    font-variant-numeric: tabular-nums;
    widows: 3;
    orphans: 3;
  }
  p, li, blockquote {
    widows: 3;
    orphans: 3;
  }
  h1, h2, h3, h4 {
    color: #111;
    page-break-after: avoid;
  }
  /* URL unfurling so paper readers see the destination of any link.
     Carve-outs: internal anchors (#…), tel:, mailto:, javascript:,
     and the skip-link have no URL appended (would be useless clutter
     or break the print layout). */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #444;
    word-break: break-all;
  }
  a[href^="#"]::after,
  a[href^="mailto:"]::after,
  a[href^="tel:"]::after,
  a[href^="javascript:"]::after,
  a.skip-link::after,
  a.btn::after,
  a.cta::after {
    content: "";
  }
  img, picture, svg {
    max-width: 100%;
    page-break-inside: avoid;
  }
}

/* =========================================================
   STRATEGY & PRODUCT pass — Builder run 98, 2026-05-23
   Adds the CSS needed to render the 6 new index.html sections
   shipped this run (how-it-works, honest-pricing, our-promises,
   compare-matrix, seasonal-spotlight, faq, referral-strip).
   All declarations use existing brand tokens — no new colors,
   no new typography, no new shadow recipes invented.
   ========================================================= */

/* ---- shared section variant: dark backdrop for promises ---- */
.section--dark {
  background: linear-gradient(180deg, var(--dark-forest) 0%, color-mix(in srgb, var(--dark-forest) 85%, black) 100%);
  color: var(--text-on-dark);
}
.section--dark .section-head h2,
.section--dark .section-head p,
.section--dark .section-head .eyebrow { color: var(--text-on-dark); }
.section-head--light h2 { color: var(--text-on-dark); }
.section-head--light p { color: var(--text-on-dark-muted); }
.eyebrow--light {
  color: var(--accent-orange-light);
  letter-spacing: 0.18em;
}

/* ---- narrow container for FAQ readability ---- */
.container--narrow { max-width: 880px; }

/* =========================================================
   HOW IT WORKS — 4-step numbered process
   ========================================================= */
.how-steps {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0 0;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: how;
}
.how-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6) var(--space-6);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-green);
  transition: transform var(--motion-medium, 0.25s) var(--ease-out-expo, ease), box-shadow var(--motion-medium, 0.25s) var(--ease-out-expo, ease);
}
.how-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.how-step:nth-child(2) { border-top-color: var(--accent-orange); }
.how-step:nth-child(3) { border-top-color: var(--steel-blue); }
.how-step:nth-child(4) { border-top-color: var(--bright-green); }
.how-step-num {
  position: absolute;
  top: -18px;
  left: var(--space-6);
  background: var(--grad-cta);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.how-step-h {
  margin: var(--space-2) 0 var(--space-3);
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
  color: var(--dark-forest);
}
.how-step p { margin: 0 0 var(--space-4); color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }
.how-step-time {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-green);
  border: 1px solid color-mix(in srgb, var(--primary-green) 30%, transparent);
  background: color-mix(in srgb, var(--primary-green) 8%, transparent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.how-step-time svg { width: 14px; height: 14px; flex-shrink: 0; }

/* =========================================================
   HONEST PRICING — 4-card transparency grid
   ========================================================= */
.pricing-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: var(--space-8);
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid color-mix(in srgb, var(--dark-forest) 8%, transparent);
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-medium, 0.25s) var(--ease-out-expo, ease), box-shadow var(--motion-medium, 0.25s) var(--ease-out-expo, ease), border-color var(--motion-medium, 0.25s) var(--ease-out-expo, ease);
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary-green) 25%, transparent);
}
.pricing-card--accent {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  border-color: color-mix(in srgb, var(--accent-orange) 25%, transparent);
}
.pricing-card-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--dark-forest);
}
.pricing-card-head svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--primary-green);
}
.pricing-card--accent .pricing-card-head svg { color: var(--bright-green); }
.pricing-card-head h3 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--dark-forest);
}
.pricing-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }
.pricing-note {
  margin-top: var(--space-8);
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing-cta-inline {
  color: var(--primary-green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid color-mix(in srgb, var(--primary-green) 35%, transparent);
  padding-bottom: 1px;
  transition: border-color var(--motion-fast, 0.18s) var(--ease-out-expo, ease), color var(--motion-fast, 0.18s) var(--ease-out-expo, ease);
}
.pricing-cta-inline:hover {
  color: var(--primary-green-hover);
  border-bottom-color: var(--primary-green-hover);
}

/* =========================================================
   OUR PROMISES — risk-reversal cards on dark backdrop
   ========================================================= */
.promises-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: var(--space-8);
}
.promise-card {
  background: color-mix(in srgb, var(--white) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6) var(--space-6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform var(--motion-medium, 0.25s) var(--ease-out-expo, ease), background var(--motion-medium, 0.25s) var(--ease-out-expo, ease), border-color var(--motion-medium, 0.25s) var(--ease-out-expo, ease);
}
.promise-card:hover {
  transform: translateY(-3px);
  background: color-mix(in srgb, var(--white) 11%, transparent);
  border-color: color-mix(in srgb, var(--accent-orange) 50%, transparent);
}
.promise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--grad-cta);
  color: var(--white);
  margin-bottom: var(--space-4);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary-green) 35%, transparent);
}
.promise-icon svg { width: 26px; height: 26px; }
.promise-card h3 {
  margin: 0 0 var(--space-3);
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
}
.promise-card p { margin: 0; color: var(--text-on-dark-muted); font-size: 0.95rem; line-height: 1.6; }

/* =========================================================
   COMPARE MATRIX — DIY vs LawnSkapers vs National Chain
   ========================================================= */
.compare-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  align-items: stretch;
}
.compare-col {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid color-mix(in srgb, var(--dark-forest) 8%, transparent);
  box-shadow: var(--shadow-sm);
}
.compare-col--us {
  transform: translateY(-12px);
  background: linear-gradient(180deg, var(--white) 0%, color-mix(in srgb, var(--primary-green) 4%, var(--white)) 100%);
  border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-lg);
}
.compare-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cta);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
}
.compare-col-head { margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px dashed color-mix(in srgb, var(--dark-forest) 14%, transparent); }
.compare-col-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.compare-col--us .compare-col-eyebrow { color: var(--primary-green); }
.compare-col-head h3 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--dark-forest);
}
.compare-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}
.compare-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 1px;
}
.compare-mark--yes {
  color: var(--primary-green);
  background: color-mix(in srgb, var(--primary-green) 12%, transparent);
}
.compare-mark--no {
  color: var(--text-muted);
  background: color-mix(in srgb, var(--text-muted) 10%, transparent);
}
.compare-col--diy .compare-list li,
.compare-col--chain .compare-list li { color: var(--text-muted); }
.compare-col--us .compare-list li { color: var(--text); font-weight: 500; }

/* =========================================================
   SEASONAL SPOTLIGHT — May/June urgency banner
   ========================================================= */
.seasonal-spotlight { padding: var(--space-12) 0; background: var(--bg-tint); }
.seasonal-card {
  position: relative;
  background: linear-gradient(135deg, var(--dark-forest) 0%, color-mix(in srgb, var(--dark-forest) 70%, var(--steel-blue)) 100%);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.seasonal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-orange) 28%, transparent) 0%, transparent 55%);
  pointer-events: none;
}
.seasonal-card-body { position: relative; max-width: 720px; }
.seasonal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange-light);
  margin-bottom: var(--space-4);
}
.seasonal-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-orange);
  box-shadow: 0 0 0 0 var(--accent-orange);
  animation: seasonal-pulse 2.2s ease-in-out infinite;
}
@keyframes seasonal-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-orange) 55%, transparent); }
  50%       { box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent-orange) 0%, transparent); }
}
@media (prefers-reduced-motion: reduce) {
  .seasonal-dot { animation: none; }
}
.seasonal-card h2 {
  margin: 0 0 var(--space-4);
  color: var(--text-on-dark);
  font-size: clamp(1.6rem, 4.2vw, 2.3rem);
}
.seasonal-card p {
  margin: 0 0 var(--space-6);
  color: var(--text-on-dark-muted);
  font-size: var(--text-md);
  line-height: 1.6;
}
.seasonal-points {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
  display: grid;
  gap: var(--space-3);
}
.seasonal-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text-on-dark);
  font-size: 0.98rem;
  line-height: 1.55;
}
.seasonal-points li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-orange);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-orange) 22%, transparent);
}
.seasonal-points strong { color: var(--accent-orange-light); }
.seasonal-cta-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* =========================================================
   FAQ — native <details>/<summary> collapsibles
   ========================================================= */
.faq-list { margin-top: var(--space-8); display: grid; gap: var(--space-3); }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--dark-forest) 10%, transparent);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--motion-medium, 0.25s) var(--ease-out-expo, ease);
}
.faq-item[open] { border-color: color-mix(in srgb, var(--primary-green) 35%, transparent); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--dark-forest);
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-md); }
.faq-q { flex: 1; min-width: 0; line-height: 1.35; }
.faq-toggle {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary-green);
  border-radius: 2px;
  transition: transform var(--motion-medium, 0.25s) var(--ease-out-expo, ease), background var(--motion-medium, 0.25s) var(--ease-out-expo, ease);
}
.faq-toggle::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { padding: 0 var(--space-6) var(--space-5); color: var(--text-muted); line-height: 1.65; font-size: 0.98rem; }
.faq-a p { margin: 0; }
.faq-a a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in srgb, var(--primary-green) 40%, transparent);
}
.faq-a a:hover { color: var(--primary-green-hover); }

/* =========================================================
   REFERRAL STRIP — between FAQ and final CTA
   ========================================================= */
.referral-strip {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--white) 100%);
}
.referral-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--accent-orange);
}
.referral-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--bright-green) 16%, transparent);
  color: var(--bright-green);
  flex-shrink: 0;
}
.referral-icon svg { width: 30px; height: 30px; }
.referral-body h2 {
  margin: 0 0 var(--space-2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--dark-forest);
}
.referral-body p { margin: 0; color: var(--text-muted); font-size: 0.98rem; line-height: 1.55; }
.referral-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--grad-cta);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: transform var(--motion-fast, 0.18s) var(--ease-out-expo, ease), box-shadow var(--motion-fast, 0.18s) var(--ease-out-expo, ease), background var(--motion-medium, 0.25s) var(--ease-out-expo, ease);
}
.referral-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--grad-cta-hover); }
.referral-cta:active { transform: translateY(0); }

/* =========================================================
   MOBILE BREAKPOINT — collapse 3-col compare, stack referral
   ========================================================= */
@media (max-width: 820px) {
  .compare-matrix { grid-template-columns: 1fr; gap: var(--space-4); }
  .compare-col--us { transform: none; }
  .compare-flag { top: -12px; }
  .referral-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-6);
  }
  .referral-icon { margin: 0 auto; }
  .referral-cta { justify-self: center; }
  .seasonal-card { padding: var(--space-8) var(--space-6); }
  .seasonal-cta-row { flex-direction: column; align-items: stretch; }
  .seasonal-cta-row .btn-call,
  .seasonal-cta-row .btn-text { width: 100%; justify-content: center; }
}
@media (max-width: 520px) {
  .how-step { padding-top: var(--space-12); }
  .how-step-num { top: -16px; }
  .pricing-card-head h3,
  .how-step-h,
  .promise-card h3,
  .compare-col-head h3 { font-size: 1.25rem; }
  .faq-item summary { padding: var(--space-3) var(--space-4); font-size: 1rem; }
  .faq-a { padding: 0 var(--space-4) var(--space-4); }
}

/* =========================================================
   UXR106 — Design (UX) lens (Builder run 106, 2026-05-23)
   ---------------------------------------------------------
   Long-scroll UX scaffolding for the 15-section homepage:
   scroll progress bar, floating chapter nav dot rail,
   back-to-top FAB, mobile menu scrim + ESC + focus trap,
   keyboard arrow-key nav, WCAG 2.5.5 touch targets,
   active-page highlight, scroll-margin-top, focus depth
   polish, print stylesheet, reduced-motion/perf guards.
   All selectors namespaced .uxr106-* to keep audit + grep
   surgical. No edits to existing rules; additive only.
   ========================================================= */

/* (1) Scroll progress bar — 3px gradient strip pinned at the very top */
.uxr106-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 10001;
  background: color-mix(in srgb, var(--dark-forest) 14%, transparent);
  pointer-events: none;
}
.uxr106-progress__fill {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg,
    var(--primary-green) 0%,
    var(--bright-green) 35%,
    var(--light-cyan) 65%,
    var(--accent-orange) 100%);
  box-shadow: 0 0 8px color-mix(in srgb, var(--primary-green) 60%, transparent);
  transition: transform 60ms linear;
}
html.perf-min .uxr106-progress__fill { box-shadow: none; }

/* (2) Chapter Nav dot rail — floating right-edge sticky landmark nav (≥1100px only) */
.uxr106-chnav {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: none; /* JS unhides ≥1100px after mount */
  flex-direction: column;
  gap: 10px;
  padding: 14px 10px;
  background: color-mix(in srgb, var(--white) 78%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--primary-green) 32%, transparent);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 22px color-mix(in srgb, var(--dark-forest) 18%, transparent);
}
html.perf-min .uxr106-chnav {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--white);
}
@media (min-width: 1100px) {
  .uxr106-chnav.is-ready { display: flex; }
}
.uxr106-chnav__dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--dark-forest) 22%, transparent);
  border: 1.5px solid color-mix(in srgb, var(--dark-forest) 14%, transparent);
  cursor: pointer;
  padding: 0;
  transition:
    transform var(--motion-fast, 150ms) var(--ease-out-expo, ease),
    background var(--motion-fast, 150ms) var(--ease-out-expo, ease),
    box-shadow var(--motion-fast, 150ms) var(--ease-out-expo, ease),
    border-color var(--motion-fast, 150ms) var(--ease-out-expo, ease);
}
.uxr106-chnav__dot:hover,
.uxr106-chnav__dot:focus-visible {
  background: var(--primary-green);
  transform: scale(1.25);
  outline: none;
  box-shadow: var(--focus-ring);
}
.uxr106-chnav__dot.is-active {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
  border-color: var(--accent-orange);
  transform: scale(1.4);
  box-shadow: 0 0 12px color-mix(in srgb, var(--primary-green) 70%, transparent);
}
.uxr106-chnav__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: var(--dark-forest);
  color: var(--text-on-dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--motion-fast, 150ms) var(--ease-out-expo, ease),
    transform var(--motion-fast, 150ms) var(--ease-out-expo, ease);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--dark-forest) 28%, transparent);
}
.uxr106-chnav__dot:hover .uxr106-chnav__label,
.uxr106-chnav__dot:focus-visible .uxr106-chnav__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* (3) Back-to-top FAB — sits above sticky mobile bottom bar */
.uxr106-totop {
  position: fixed;
  right: 18px;
  bottom: 88px; /* clears .mobile-bottom-bar on phones */
  width: 48px;  /* WCAG 2.5.5 AAA target */
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1.5px solid color-mix(in srgb, var(--primary-green) 35%, transparent);
  background: color-mix(in srgb, var(--white) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--dark-forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9100;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  box-shadow: var(--shadow-md);
  transition:
    opacity var(--motion-medium, 300ms) var(--ease-out-expo, ease),
    transform var(--motion-medium, 300ms) var(--ease-out-expo, ease),
    background var(--motion-fast, 150ms) var(--ease-out-expo, ease),
    color var(--motion-fast, 150ms) var(--ease-out-expo, ease),
    box-shadow var(--motion-fast, 150ms) var(--ease-out-expo, ease);
}
.uxr106-totop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.uxr106-totop:hover,
.uxr106-totop:focus-visible {
  background: var(--primary-green);
  color: var(--white);
  outline: none;
  box-shadow: var(--shadow-lg), var(--focus-ring);
  transform: translateY(-2px);
}
.uxr106-totop svg { width: 22px; height: 22px; }
@media (min-width: 821px) {
  .uxr106-totop { bottom: 28px; }
}
html.perf-min .uxr106-totop {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--white);
}

/* (4) Mobile menu scrim — dim backdrop that closes the menu on tap-outside */
.uxr106-scrim {
  position: fixed;
  inset: 0;
  background: rgba(18, 68, 26, 0.42);
  opacity: 0;
  pointer-events: none;
  /* MUST be below .site-header (z-index 50) so the scrim dims the page
     content WITHOUT capturing taps on nav items. Previously z-index:7900
     placed the scrim over the entire header/nav stacking context — every
     tap on a nav link (including the <summary> Services sub-nav trigger)
     hit the scrim's closeMenu handler instead of the actual link, which
     made the sub-nav appear to "close the menu" rather than expand. */
  z-index: 40;
  transition: opacity var(--motion-medium, 300ms) var(--ease-out-expo, ease);
}
.uxr106-scrim.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* (5) Active page highlight in mobile-nav links (spatial orientation) */
@media (max-width: 820px) {
  .primary-nav a.uxr106-current {
    position: relative;
    color: var(--accent-orange-light) !important;
    font-weight: 800 !important;
    background: color-mix(in srgb, var(--accent-orange) 14%, transparent);
  }
  .primary-nav a.uxr106-current::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent-orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }
}

/* (6) WCAG 2.5.5 (Level AAA) touch-target floor + scroll-margin-top universal */
.primary-nav a,
.footer-col ul li a,
.mbb-btn,
.nav-call,
.nav-text,
.nav-login {
  min-height: 44px;
}
[id] {
  scroll-margin-top: 88px; /* clears 60-72px sticky header */
}
@media (max-width: 820px) {
  [id] { scroll-margin-top: 72px; }
}

/* (7) Service card focus depth polish — keyboard parity with hover lift */
.svc-card:focus-visible {
  outline: none;
  box-shadow: var(--shadow-lg), var(--focus-ring);
  transform: translateY(-4px);
}
.svc-card:focus-visible .svc-card-photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

/* (8) Reading-time pill — quick "X-min read" hero affordance */
.uxr106-readtime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  background: color-mix(in srgb, var(--dark-forest) 65%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 30%, transparent);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-top: var(--space-3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.uxr106-readtime svg { width: 14px; height: 14px; }
html.perf-min .uxr106-readtime {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* (9) Reduced-motion + perf guards on every new UXR106 component */
@media (prefers-reduced-motion: reduce) {
  .uxr106-progress__fill,
  .uxr106-chnav__dot,
  .uxr106-chnav__label,
  .uxr106-totop,
  .uxr106-scrim,
  .svc-card:focus-visible {
    transition: none !important;
  }
  .uxr106-chnav__dot:hover,
  .uxr106-chnav__dot:focus-visible,
  .uxr106-chnav__dot.is-active,
  .uxr106-totop:hover,
  .uxr106-totop:focus-visible,
  .svc-card:focus-visible {
    transform: none !important;
  }
}

/* (10) Print stylesheet — strip all chrome, expand link URLs after anchors */
@media print {
  .uxr106-progress,
  .uxr106-chnav,
  .uxr106-totop,
  .uxr106-scrim,
  .mobile-bottom-bar,
  .site-header,
  .footer .social-row,
  .facebook-feed,
  .nav-toggle,
  .coming-soon-toast {
    display: none !important;
  }
  body {
    background: #ffffff !important;
    color: #000000 !important;
    padding-bottom: 0 !important;
  }
  .hero {
    background: none !important;
    color: #000 !important;
    padding: 1rem 0 !important;
    min-height: 0 !important;
  }
  .hero h1, .hero p, .hero .eyebrow {
    color: #000 !important;
    text-shadow: none !important;
  }
  a[href^="http"]::after,
  a[href^="tel:"]::after,
  a[href^="mailto:"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555 !important;
    word-break: break-all;
  }
  a.brand::after,
  .nav-login::after,
  .social-icon::after,
  .mbb-btn::after,
  a[href^="#"]::after { content: ""; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
  p { orphans: 3; widows: 3; }
}

/* =========================================================
   NAV SERVICES DROPDOWN (Rebrand v2 — 8-service architecture)
   Uses native <details>/<summary> for accessibility + zero-JS.
   Desktop (≥901px): floating panel below the trigger.
   Mobile  (≤900px): inline expansion under the trigger.
   ========================================================= */
.nav-services-group {
  position: relative;
  display: inline-block;
}
.nav-services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  list-style: none;
  color: rgba(255,255,255,0.92);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  border-radius: 4px;
  background: transparent;
  border: none;
  user-select: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-services-trigger::-webkit-details-marker,
.nav-services-trigger::marker { display: none; content: ""; }
.nav-services-trigger:hover,
.nav-services-trigger:focus-visible {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
}
.nav-services-trigger:focus-visible {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.45);
}
.nav-caret {
  width: 14px; height: 14px;
  transition: transform 0.2s ease;
}
.nav-services-group[open] .nav-caret { transform: rotate(180deg); }

.nav-services-panel {
  display: flex;
  flex-direction: column;
  padding: 0.4rem;
}
.nav-services-panel a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-services-panel a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

@media (min-width: 901px) {
  .nav-services-group[open] .nav-services-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: linear-gradient(180deg, #1A3D2B 0%, var(--dark-forest) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.32);
    z-index: 60;
    animation: navPanelFade 0.18s var(--ease-out-expo);
  }
  @keyframes navPanelFade {
    from { opacity: 0; transform: translate(-50%, -6px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
  }
}

@media (max-width: 900px) {
  .nav-services-group { width: 100%; }
  .nav-services-trigger {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    width: 100%;
  }
  .nav-services-group[open] .nav-services-panel {
    padding: 0.25rem 0 0.25rem 0.75rem;
    background: rgba(0,0,0,0.18);
    border-radius: 0;
  }
  .nav-services-panel a {
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
  }
  .nav-services-panel a:last-child { border-bottom: none; }
}

/* =========================================================
   SVC-CARD DIFFERENTIATION (Rebrand v2 — green-only palette)
   Per CDO: photo-driven differentiation; legacy color tokens
   inside service cards now collapse cleanly to the green family.
   ========================================================= */
.svc-card--steel  { /* now folds to primary-green via --steel-blue consolidation */ }
.svc-card--bright { /* bright-green sage */ }
.svc-card--forest { /* dark forest */ }
.svc-card--mid    { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-tint) 100%); }

/* ==========================================================================
   UXR117 — Design (UX) second-pass (Builder run 117, 2026-05-24)
   12 new component families adding conversion-flow tooling on the homepage:
   service-match wizard, FAQ category chips, seasonal yearly strip,
   quick-contact tap cards, skip-to-section dropdown, mobile sticky CTA bar,
   nav-card depth-on-hover wrapper, srOnly utility, plus high-contrast,
   print, and reduced-motion accommodations. Zero existing rules redefined.
   All selectors use existing :root design tokens (no new tokens added).
   ========================================================================== */

.uxr117-srOnly {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); border: 0; white-space: nowrap;
}

/* ---------- Section frame shared by run-117 surfaces ---------- */
.uxr117-frame {
  position: relative;
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}
.uxr117-frame__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.uxr117-frame__head .eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bright-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.uxr117-frame__head h2 {
  font-size: var(--text-3xl);
  margin: 0 0 0.5rem;
  color: var(--primary-green);
  line-height: 1.15;
}
.uxr117-frame__head p {
  color: var(--text-muted);
  margin: 0;
  font-size: var(--text-md);
}

/* ==========================================================================
   (1) SERVICE-MATCH WIZARD (#uxr117-wizard)
   ========================================================================== */
.uxr117-wizard {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
  border: 1px solid rgba(26, 61, 43, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}
.uxr117-wizard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(43, 110, 69, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(212, 162, 58, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.uxr117-wizard > * { position: relative; z-index: 1; }
.uxr117-wizard__progress {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
  justify-content: center;
}
.uxr117-wizard__pdot {
  width: 32px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(26, 61, 43, 0.18);
  transition: background 0.25s ease, width 0.25s ease;
}
.uxr117-wizard__pdot[data-active="true"] {
  background: var(--grad-cta);
  width: 48px;
}
.uxr117-wizard__pdot[data-done="true"] {
  background: var(--bright-green);
}
.uxr117-wizard__step {
  animation: uxr117StepIn 380ms cubic-bezier(0.16, 0.84, 0.44, 1);
}
.uxr117-wizard__step[hidden] { display: none; }
.uxr117-wizard__legend {
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--primary-green);
  text-align: center;
}
.uxr117-wizard__hint {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 1.25rem;
}
.uxr117-wizard__choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .uxr117-wizard__choices { grid-template-columns: 1fr 1fr; }
}
.uxr117-wizard__choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 2px solid rgba(26, 61, 43, 0.18);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--primary-green);
  text-align: left;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.uxr117-wizard__choice:hover,
.uxr117-wizard__choice:focus-visible {
  border-color: var(--bright-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.uxr117-wizard__choice:focus-visible {
  box-shadow: var(--focus-ring), var(--shadow-sm);
}
.uxr117-wizard__cicon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--grad-cta);
  display: grid;
  place-items: center;
  color: var(--white);
}
.uxr117-wizard__cicon svg {
  width: 22px;
  height: 22px;
}
.uxr117-wizard__choice[data-tone="gold"] .uxr117-wizard__cicon {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
}
.uxr117-wizard__choice[data-tone="forest"] .uxr117-wizard__cicon {
  background: linear-gradient(135deg, var(--dark-forest) 0%, var(--primary-green) 100%);
}
.uxr117-wizard__ctext {
  display: flex;
  flex-direction: column;
}
.uxr117-wizard__clabel {
  font-weight: 700;
  font-size: var(--text-base);
}
.uxr117-wizard__chint {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.uxr117-wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 0.5rem;
}
.uxr117-wizard__nav button {
  background: none;
  border: 1px solid rgba(26, 61, 43, 0.24);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: var(--text-sm);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.uxr117-wizard__nav button:hover,
.uxr117-wizard__nav button:focus-visible {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  outline: none;
}
.uxr117-wizard__nav button:focus-visible { box-shadow: var(--focus-ring); }
.uxr117-wizard__result {
  text-align: center;
  padding: 1rem 0.5rem 0;
}
.uxr117-wizard__result[hidden] { display: none; }
.uxr117-wizard__rpill {
  display: inline-block;
  background: rgba(43, 110, 69, 0.12);
  color: var(--bright-green);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.uxr117-wizard__rname {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin: 0 0 0.5rem;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.uxr117-wizard__rwhy {
  color: var(--text);
  font-size: var(--text-md);
  margin: 0 auto 1.25rem;
  max-width: 480px;
  line-height: 1.45;
}
.uxr117-wizard__rcta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-cta);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  font-size: var(--text-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.uxr117-wizard__rcta:hover,
.uxr117-wizard__rcta:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
  outline: none;
}
.uxr117-wizard__rcta:focus-visible { box-shadow: var(--focus-ring), var(--shadow-md); }
.uxr117-wizard__rsecondary {
  display: block;
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: var(--text-sm);
  background: none;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}
.uxr117-wizard__rsecondary:hover,
.uxr117-wizard__rsecondary:focus-visible { color: var(--primary-green); outline: none; }

@keyframes uxr117StepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   (2) FAQ CATEGORY CHIP FILTER (.uxr117-faqfilter)
   ========================================================================== */
.uxr117-faqfilter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 1.5rem;
  max-width: 640px;
}
.uxr117-faqfilter__chip {
  background: var(--white);
  border: 1px solid rgba(26, 61, 43, 0.22);
  color: var(--primary-green);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  min-height: 36px;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.uxr117-faqfilter__chip:hover,
.uxr117-faqfilter__chip:focus-visible {
  border-color: var(--bright-green);
  transform: translateY(-1px);
  outline: none;
}
.uxr117-faqfilter__chip:focus-visible { box-shadow: var(--focus-ring); }
.uxr117-faqfilter__chip[aria-selected="true"] {
  background: var(--grad-cta);
  color: var(--white);
  border-color: transparent;
}

/* ==========================================================================
   (3) SEASONAL YEAR STRIP (#uxr117-season)
   12-month visual strip showing what LawnSkapers does each month.
   ========================================================================== */
.uxr117-season {
  max-width: 1024px;
  margin: 0 auto;
}
.uxr117-season__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  padding: 0;
  list-style: none;
  margin: 0 0 1.25rem;
}
.uxr117-season__m {
  background: var(--white);
  border: 1px solid rgba(26, 61, 43, 0.12);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.4rem;
  text-align: center;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.uxr117-season__m[data-active="true"] {
  background: linear-gradient(180deg, rgba(43, 110, 69, 0.10) 0%, var(--white) 100%);
  border-color: var(--bright-green);
  border-width: 2px;
  padding: calc(0.65rem - 1px) calc(0.4rem - 1px);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.uxr117-season__m[data-tone="spring"]::before,
.uxr117-season__m[data-tone="summer"]::before,
.uxr117-season__m[data-tone="fall"]::before,
.uxr117-season__m[data-tone="winter"]::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.uxr117-season__m[data-tone="spring"]::before { background: linear-gradient(90deg, #84cc7d 0%, var(--bright-green) 100%); }
.uxr117-season__m[data-tone="summer"]::before { background: linear-gradient(90deg, var(--bright-green) 0%, var(--primary-green) 100%); }
.uxr117-season__m[data-tone="fall"]::before   { background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%); }
.uxr117-season__m[data-tone="winter"]::before { background: linear-gradient(90deg, var(--dark-forest) 0%, #2A4537 100%); }
.uxr117-season__mname {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: var(--primary-green);
  display: block;
  margin-top: 0.15rem;
}
.uxr117-season__mtag {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.15;
  margin-top: 0.25rem;
  font-weight: 600;
}
.uxr117-season__m[data-active="true"] .uxr117-season__mname {
  color: var(--bright-green);
}
.uxr117-season__todaymarker {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bright-green);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.uxr117-season__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}
.uxr117-season__legend dt,
.uxr117-season__legend dd {
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.uxr117-season__legend dt {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}
.uxr117-season__legend dt[data-tone="spring"] { background: #84cc7d; }
.uxr117-season__legend dt[data-tone="summer"] { background: var(--bright-green); }
.uxr117-season__legend dt[data-tone="fall"]   { background: var(--accent-orange); }
.uxr117-season__legend dt[data-tone="winter"] { background: var(--dark-forest); }
.uxr117-season__legend dd { margin-right: 10px; }

@media (max-width: 900px) {
  .uxr117-season__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 540px) {
  .uxr117-season__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .uxr117-season__mtag { display: none; }
}

/* ==========================================================================
   (4) QUICK-CONTACT TAP STRIP (#uxr117-quickcontact)
   ========================================================================== */
.uxr117-quickcontact {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .uxr117-quickcontact {
    grid-template-columns: repeat(4, 1fr);
  }
}
.uxr117-quickcontact__card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid rgba(26, 61, 43, 0.16);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-decoration: none;
  color: var(--primary-green);
  min-height: 84px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.uxr117-quickcontact__card:hover,
.uxr117-quickcontact__card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--bright-green);
  box-shadow: 0 8px 22px rgba(43, 110, 69, 0.18);
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
  color: var(--primary-green);
  outline: none;
}
.uxr117-quickcontact__card:focus-visible { box-shadow: var(--focus-ring), 0 8px 22px rgba(43, 110, 69, 0.18); }
.uxr117-quickcontact__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--white);
}
.uxr117-quickcontact__icon svg { width: 26px; height: 26px; }
.uxr117-quickcontact__card[data-tone="call"]    .uxr117-quickcontact__icon { background: linear-gradient(135deg, var(--primary-green) 0%, var(--bright-green) 100%); }
.uxr117-quickcontact__card[data-tone="text"]    .uxr117-quickcontact__icon { background: linear-gradient(135deg, var(--bright-green) 0%, #84cc7d 100%); }
.uxr117-quickcontact__card[data-tone="email"]   .uxr117-quickcontact__icon { background: linear-gradient(135deg, var(--dark-forest) 0%, var(--primary-green) 100%); }
.uxr117-quickcontact__card[data-tone="quote"]   .uxr117-quickcontact__icon { background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%); }
.uxr117-quickcontact__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.uxr117-quickcontact__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}
.uxr117-quickcontact__handle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  color: var(--primary-green);
  line-height: 1.1;
}
.uxr117-quickcontact__hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.25;
  margin-top: 2px;
}

/* ==========================================================================
   (5) SKIP-TO-SECTION DROPDOWN (.uxr117-skipnav)
   ========================================================================== */
.uxr117-skipnav {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 9000;
  transform: translate(-50%, -160%);
  transition: transform 0.2s cubic-bezier(0.16, 0.84, 0.44, 1);
  background: var(--dark-forest);
  color: var(--white);
  padding: 6px 8px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-md);
}
.uxr117-skipnav:focus-within {
  transform: translate(-50%, 0);
}
.uxr117-skipnav__label {
  color: var(--white);
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
}
.uxr117-skipnav__select {
  background: var(--white);
  color: var(--primary-green);
  border: 0;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: var(--text-sm);
  cursor: pointer;
}
.uxr117-skipnav__select:focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

/* ==========================================================================
   (6) MOBILE STICKY CTA BAR (#uxr117-stickycta) — mobile only
   ========================================================================== */
.uxr117-stickycta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--dark-forest);
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  padding: 0;
  border-top: 2px solid var(--bright-green);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.uxr117-stickycta[data-state="visible"] {
  display: grid;
}
.uxr117-stickycta__btn {
  background: var(--dark-forest);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 56px;
  padding: 0.4rem 0.5rem;
  font-size: var(--text-xs);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.18s ease;
}
.uxr117-stickycta__btn:hover,
.uxr117-stickycta__btn:focus-visible {
  background: var(--primary-green);
  color: var(--white);
  outline: none;
}
.uxr117-stickycta__btn[data-tone="quote"] {
  background: var(--accent-orange);
  color: var(--ink);
}
.uxr117-stickycta__btn[data-tone="quote"]:hover,
.uxr117-stickycta__btn[data-tone="quote"]:focus-visible {
  background: var(--accent-orange-dark);
  color: var(--white);
}
.uxr117-stickycta__btn svg {
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
}
@media (min-width: 720px) {
  .uxr117-stickycta { display: none !important; }
}
/* Keep bottom padding so the FAB and content above the sticky bar aren't covered. */
body:has(.uxr117-stickycta[data-state="visible"]) main { padding-bottom: 64px; }

/* ==========================================================================
   (7) Nav-card depth-on-hover wrapper (.uxr117-card-depth)
   Auto-applied to .area-card and .area-grid items via JS.
   ========================================================================== */
.uxr117-card-depth {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.uxr117-card-depth:hover,
.uxr117-card-depth:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(12, 38, 24, 0.16);
}

/* ==========================================================================
   (8) Section divider — visual transition between run-117 surfaces
   ========================================================================== */
.uxr117-divider {
  height: 1px;
  margin: clamp(1rem, 3vw, 2rem) auto;
  max-width: 720px;
  background: linear-gradient(90deg, transparent 0%, rgba(26, 61, 43, 0.22) 50%, transparent 100%);
  border: 0;
}

/* ==========================================================================
   (9) High-contrast accommodation (WCAG 1.4.11 enhanced)
   ========================================================================== */
@media (prefers-contrast: more) {
  .uxr117-wizard,
  .uxr117-quickcontact__card,
  .uxr117-season__m,
  .uxr117-faqfilter__chip {
    background: var(--white) !important;
    border: 2px solid currentColor !important;
    box-shadow: none !important;
  }
  .uxr117-wizard__rname {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: var(--primary-green) !important;
  }
  .uxr117-wizard__choice {
    background: var(--white) !important;
    border: 2px solid currentColor !important;
  }
  .uxr117-wizard__rcta,
  .uxr117-quickcontact__card:hover,
  .uxr117-faqfilter__chip[aria-selected="true"] {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }
}

/* ==========================================================================
   (10) Reduced-motion guards (WCAG 2.3.3)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .uxr117-wizard__step,
  .uxr117-wizard__choice,
  .uxr117-quickcontact__card,
  .uxr117-season__m,
  .uxr117-faqfilter__chip,
  .uxr117-card-depth,
  .uxr117-stickycta__btn,
  .uxr117-skipnav {
    animation: none !important;
    transition: none !important;
  }
  .uxr117-wizard__choice:hover,
  .uxr117-wizard__choice:focus-visible,
  .uxr117-quickcontact__card:hover,
  .uxr117-quickcontact__card:focus-visible,
  .uxr117-card-depth:hover,
  .uxr117-card-depth:focus-within,
  .uxr117-faqfilter__chip:hover,
  .uxr117-faqfilter__chip:focus-visible {
    transform: none !important;
  }
}

/* ==========================================================================
   (11) Print stylesheet — preserves content, strips interactive chrome
   ========================================================================== */
@media print {
  .uxr117-skipnav,
  .uxr117-wizard__progress,
  .uxr117-wizard__nav,
  .uxr117-faqfilter,
  .uxr117-stickycta,
  .uxr117-wizard__rsecondary {
    display: none !important;
  }
  .uxr117-wizard,
  .uxr117-quickcontact__card,
  .uxr117-season__m {
    background: var(--white) !important;
    border: 1px solid #000 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  .uxr117-wizard__rname {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #000 !important;
  }
  .uxr117-wizard__step[hidden] { display: block !important; }
  .uxr117-faq[hidden] { display: block !important; }
  .uxr117-season__grid { grid-template-columns: repeat(12, 1fr) !important; }
}

/* ==========================================================================
   (12) Run-117 ownership marker — declares this run owns these selectors.
   Builder run 117 (2026-05-24, Design (UX) lens, project #4 Lawnskapers).
   12 new component families:
     .uxr117-frame, .uxr117-srOnly, .uxr117-wizard*, .uxr117-faqfilter*,
     .uxr117-season*, .uxr117-quickcontact*, .uxr117-skipnav*,
     .uxr117-stickycta*, .uxr117-card-depth, .uxr117-divider
   Companion edits: index.html (4 new sections + skip-nav dropdown + 2 sticky-cta + cache-buster bump), JS init function appended to existing IIFE.
   ========================================================================== */


/* ==========================================================================
   RUN 135 — GRAPHIC DESIGN & VISUAL BRAND PASS
   --------------------------------------------------------------------------
   Builder run 135 (2026-05-24), project #4 Lawnskapers, Graphic Design lens
   (4th rotation, 4 of 9 in the current pass).
   
   Scope: substantial visual depth and brand chrome on top of UXR117's UX
   foundation. The existing site already has good motion tokens (run 80),
   good Design-UX components (uxr106/117), and good Strategy work (run 98).
   This run adds the "stained-glass + foil-stamp" depth language: atmosphere
   grounds, gradient ring borders, gold corner L-marks, embossed chrome on
   conversion surfaces, decorative section-head ornament, footer sanctuary
   depth, and brand chrome on the sticky CTA bar.
   
   Selector namespacing: all new component classes are prefixed `lsk135-*`.
   Enhancements to existing components attach via free pseudo-elements
   (::before / ::after) or via attribute/hover selectors — no base rules
   for existing classes are overwritten.
   
   Client brand constraint (carried forward from run 70): every color used
   here is an existing client :root token. No cross-property atelier
   tokens leak in.
   ========================================================================== */

/* ==========================================================================
   (1) Hero ::after — diagonal gold light shaft + soft cyan rim depth.
   The existing .hero::before paints the dark gradient overlay; this
   ::after adds a second pass for atmospheric depth without touching
   the photographic background.
   ========================================================================== */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse at 85% 12%, rgba(111, 239, 239, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 12% 90%, rgba(212, 162, 58, 0.13) 0%, transparent 50%),
    linear-gradient(115deg, transparent 35%, rgba(241, 216, 139, 0.06) 50%, transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.9;
  transition: opacity var(--motion-medium, 300ms) var(--ease-out-expo, ease);
}
@media (max-width: 640px) {
  .hero::after { opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after { transition: none; }
}

/* ==========================================================================
   (2) Decorative blade-strip section divider — selector-level, no markup.
   Drops a thin gold-foil rule + leaf glyph ornament between sections that
   carry `.section--soft` or `.section--dark`. Pure decoration, prints clean.
   ========================================================================== */
.lsk135-blade {
  position: relative;
  height: 56px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  user-select: none;
}
.lsk135-blade::before,
.lsk135-blade::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 60px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-orange) 65%, transparent),
    color-mix(in srgb, var(--accent-orange) 35%, transparent),
    transparent
  );
}
.lsk135-blade::before { left: 0; }
.lsk135-blade::after  { right: 0; }
.lsk135-blade > .lsk135-blade__glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  display: block;
  color: var(--accent-orange);
  opacity: 0.85;
}

/* ==========================================================================
   (3) Section-head h2 — twin gold rule + leaf-tip decoration.
   Uses ::before for the leaf glyph (centered, above h2) and the h2's own
   margin to keep spacing tight. Pure decoration, no text or markup change.
   ========================================================================== */
.section-head { position: relative; }
.section-head::before {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-orange) 30%,
    color-mix(in srgb, var(--accent-orange) 80%, white) 50%,
    var(--accent-orange) 70%,
    transparent
  );
  border-radius: 999px;
  opacity: 0.9;
}
.section--dark .section-head::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-orange-light, #F1D88B) 30%,
    var(--accent-orange) 50%,
    var(--accent-orange-light, #F1D88B) 70%,
    transparent
  );
}

/* ==========================================================================
   (4) Service card stained-glass chrome — gradient ring + corner L-marks
   + image saturation ramp on hover. The base `.svc-card` rules from
   earlier runs are untouched — this layer only adds pseudo-elements and
   hover state.
   ========================================================================== */
.svc-card { position: relative; isolation: isolate; }
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-orange) 55%, transparent) 0%,
    transparent 35%,
    transparent 65%,
    color-mix(in srgb, var(--bright-green) 70%, transparent) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0.65;
  transition: opacity var(--motion-medium, 300ms) var(--ease-out-expo, ease);
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  background-image:
    /* Top-left corner L-mark */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%23D4A23A' stroke-width='1.5' stroke-linecap='square'><path d='M3 9 L3 3 L9 3'/></svg>"),
    /* Bottom-right corner L-mark */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%23D4A23A' stroke-width='1.5' stroke-linecap='square'><path d='M9 15 L15 15 L15 9'/></svg>");
  background-position: 10px 10px, calc(100% - 10px) calc(100% - 10px);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  opacity: 0.55;
  transition: opacity var(--motion-medium, 300ms) var(--ease-out-expo, ease);
}
.svc-card:hover::before,
.svc-card:focus-visible::before { opacity: 0.95; }
.svc-card:hover::after,
.svc-card:focus-visible::after { opacity: 0.95; }
.svc-card .svc-card-photo {
  transition:
    filter var(--motion-medium, 300ms) var(--ease-out-expo, ease),
    transform var(--motion-medium, 300ms) var(--ease-out-expo, ease);
  filter: saturate(1.02) contrast(1.01);
}
.svc-card:hover .svc-card-photo,
.svc-card:focus-visible .svc-card-photo {
  filter: saturate(1.10) contrast(1.04);
}

/* ==========================================================================
   (5) Why-card embossed brand chrome — inset highlight + accent rule.
   ========================================================================== */
.why-card { position: relative; isolation: isolate; }
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(12, 38, 24, 0.10);
}
.why-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--accent-orange) 30%,
    color-mix(in srgb, var(--accent-orange) 85%, white) 50%,
    var(--accent-orange) 70%,
    transparent
  );
  opacity: 0.7;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
  z-index: 3;
}
.why-card.why-card--orange::after {
  background: linear-gradient(
    180deg,
    transparent,
    var(--bright-green) 30%,
    color-mix(in srgb, var(--bright-green) 85%, white) 50%,
    var(--bright-green) 70%,
    transparent
  );
}

/* ==========================================================================
   (6) Pricing card foil-stamped feel — gradient border + seal on featured.
   ========================================================================== */
.pricing-card { position: relative; isolation: isolate; }
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    color-mix(in srgb, var(--accent-orange) 55%, transparent),
    transparent 40%,
    transparent 60%,
    color-mix(in srgb, var(--primary-green) 50%, transparent)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  transition: opacity var(--motion-medium, 300ms) var(--ease-out-expo, ease);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card[data-featured="true"]::after,
.pricing-card.is-featured::after,
.pricing-card--featured::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none'><circle cx='20' cy='20' r='17' fill='%231A3D2B' stroke='%23D4A23A' stroke-width='1.5'/><path d='M14 21 L18 25 L26 15' stroke='%23F1D88B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 4;
  opacity: 0.95;
}

/* ==========================================================================
   (7) Testimonials decorative quotation marks — large background glyphs.
   ========================================================================== */
.testimonials { position: relative; }
.testimonials > .container { position: relative; z-index: 1; }
.testimonials::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 4%;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%231A3D2B' fill-opacity='0.06'><path d='M30 22c-12 4-22 16-22 32 0 14 8 24 20 24 8 0 14-6 14-14 0-7-5-13-12-13-2 0-4 0-5 1 0-8 5-16 14-19l-9-11zm38 0c-12 4-22 16-22 32 0 14 8 24 20 24 8 0 14-6 14-14 0-7-5-13-12-13-2 0-4 0-5 1 0-8 5-16 14-19l-9-11z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.testimonials::after {
  content: "";
  position: absolute;
  bottom: 8%;
  right: 4%;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%231A3D2B' fill-opacity='0.06' transform='rotate(180)'><path d='M30 22c-12 4-22 16-22 32 0 14 8 24 20 24 8 0 14-6 14-14 0-7-5-13-12-13-2 0-4 0-5 1 0-8 5-16 14-19l-9-11zm38 0c-12 4-22 16-22 32 0 14 8 24 20 24 8 0 14-6 14-14 0-7-5-13-12-13-2 0-4 0-5 1 0-8 5-16 14-19l-9-11z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: rotate(180deg);
}

/* ==========================================================================
   (8) Footer sanctuary depth — atmosphere glow + gold rule + center leaf
   monogram bottom. The base .footer rules are untouched; this layer adds
   two free pseudos for depth.
   ========================================================================== */
.footer { position: relative; isolation: isolate; }
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 10% 8%, rgba(212, 162, 58, 0.13) 0%, transparent 38%),
    radial-gradient(ellipse at 90% 90%, rgba(43, 110, 69, 0.18) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 50%, rgba(111, 239, 239, 0.04) 0%, transparent 60%);
}
.footer > .container { position: relative; z-index: 1; }
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-orange) 75%, transparent) 20%,
    color-mix(in srgb, var(--accent-orange-light, #F1D88B) 65%, transparent) 50%,
    color-mix(in srgb, var(--accent-orange) 75%, transparent) 80%,
    transparent
  );
  pointer-events: none;
  z-index: 2;
}
/* Bottom center leaf monogram in footer-bottom */
.footer .footer-bottom { position: relative; }
.footer .footer-bottom::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'><path d='M16 4 C 8 10 6 22 10 26 C 18 22 24 14 26 6 Z' fill='%2378C837' fill-opacity='0.45'/><path d='M14 8 Q 12 18 10 26' stroke='%236FEFEF' stroke-width='1.2' stroke-opacity='0.55' fill='none' stroke-linecap='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
}

/* ==========================================================================
   (9) Site header — gold rule bottom edge for a brand-chrome anchor.
   Header keeps `position: fixed` from base rule (line 187); fixed already
   establishes a positioning context for ::after, so no override here.
   ========================================================================== */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-orange) 55%, transparent) 25%,
    color-mix(in srgb, var(--accent-orange-light, #F1D88B) 60%, transparent) 50%,
    color-mix(in srgb, var(--accent-orange) 55%, transparent) 75%,
    transparent
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--motion-medium, 300ms) var(--ease-out-expo, ease);
  z-index: 5;
}
.site-header.is-scrolled::after { opacity: 0.9; }

/* ==========================================================================
   (10) Sticky mobile bottom bar — gold foil top edge for brand anchor.
   ========================================================================== */
.mobile-bottom-bar { position: fixed; isolation: isolate; }
.mobile-bottom-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-orange) 75%, transparent) 20%,
    color-mix(in srgb, var(--accent-orange-light, #F1D88B) 80%, transparent) 50%,
    color-mix(in srgb, var(--accent-orange) 75%, transparent) 80%,
    transparent
  );
  pointer-events: none;
  z-index: 2;
}

/* ==========================================================================
   (11) CTA strip — gold rule top + bottom for ornament.
   ========================================================================== */
.cta-strip { position: relative; }
.cta-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-orange) 60%, transparent) 30%,
    color-mix(in srgb, var(--accent-orange-light, #F1D88B) 70%, transparent) 50%,
    color-mix(in srgb, var(--accent-orange) 60%, transparent) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

/* ==========================================================================
   (12) Brand-chrome button polish on .btn-hero — inset highlight + halo.
   The base .btn-hero rules from earlier runs are not redefined; we attach
   inset-shadow + transform refinement only.
   ========================================================================== */
.btn-hero {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 4px 14px rgba(12, 38, 24, 0.18);
  transition:
    transform var(--motion-fast, 150ms) var(--ease-out-expo, ease),
    box-shadow var(--motion-medium, 300ms) var(--ease-out-expo, ease),
    filter var(--motion-fast, 150ms) var(--ease-out-expo, ease);
}
.btn-hero:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22),
    0 8px 22px rgba(12, 38, 24, 0.26),
    0 0 0 3px color-mix(in srgb, var(--accent-orange) 22%, transparent);
  filter: brightness(1.04);
}
.btn-hero--call {
  background-image: linear-gradient(
    180deg,
    color-mix(in srgb, var(--primary-green) 90%, white) 0%,
    var(--primary-green) 100%
  );
}

/* ==========================================================================
   (13) Compare table column headers — gold-foil dividers and depth.
   ========================================================================== */
.compare-col-head { position: relative; }
.compare-col-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-orange) 60%, transparent) 50%,
    transparent
  );
  pointer-events: none;
  opacity: 0.7;
}

/* ==========================================================================
   (14) Area cards — gradient ring on hover (matches svc-card language).
   ========================================================================== */
.area-card { position: relative; isolation: isolate; }
.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--steel-blue) 60%, transparent),
    transparent 40%,
    transparent 60%,
    color-mix(in srgb, var(--bright-green) 55%, transparent)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  transition: opacity var(--motion-medium, 300ms) var(--ease-out-expo, ease);
}
.area-card:hover::before,
.area-card:focus-visible::before { opacity: 1; }

/* ==========================================================================
   (15) Referral strip — gold rule top + bottom edges.
   ========================================================================== */
.referral-strip { position: relative; }
.referral-strip::before,
.referral-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent-orange) 55%, transparent) 25%,
    color-mix(in srgb, var(--accent-orange-light, #F1D88B) 65%, transparent) 50%,
    color-mix(in srgb, var(--accent-orange) 55%, transparent) 75%,
    transparent
  );
  pointer-events: none;
  opacity: 0.8;
}
.referral-strip::before { top: 0; }
.referral-strip::after  { bottom: 0; }

/* ==========================================================================
   (16) Print stylesheet — strip all lsk135 decoration for ink economy.
   ========================================================================== */
@media print {
  .hero::after,
  .lsk135-blade,
  .section-head::before,
  .svc-card::before,
  .svc-card::after,
  .why-card::before,
  .why-card::after,
  .pricing-card::before,
  .pricing-card::after,
  .testimonials::before,
  .testimonials::after,
  .footer::before,
  .footer::after,
  .footer .footer-bottom::before,
  .site-header::after,
  .mobile-bottom-bar::before,
  .cta-strip::after,
  .compare-col-head::after,
  .area-card::before,
  .referral-strip::before,
  .referral-strip::after {
    display: none !important;
    background: none !important;
    box-shadow: none !important;
  }
  .svc-card,
  .why-card,
  .pricing-card,
  .area-card {
    border: 1px solid #000 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
}

/* ==========================================================================
   (17) Reduced-motion — disable all lsk135 transitions.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .svc-card::before,
  .svc-card::after,
  .svc-card .svc-card-photo,
  .pricing-card::before,
  .area-card::before,
  .site-header::after,
  .btn-hero {
    transition: none !important;
  }
}

/* ==========================================================================
   (18) Perf-min runtime tier — drop heavy gradient + filter chrome.
   ========================================================================== */
.perf-min .hero::after,
.perf-min .testimonials::before,
.perf-min .testimonials::after,
.perf-min .footer::before,
.perf-min .footer .footer-bottom::before {
  display: none !important;
}
.perf-min .svc-card::before,
.perf-min .svc-card::after,
.perf-min .pricing-card::before,
.perf-min .area-card::before {
  opacity: 0.5 !important;
}

/* ==========================================================================
   (19) Run-135 ownership marker — declares this run owns these selectors.
   Builder run 135 (2026-05-24, Graphic Design & Visual Brand lens,
   project #4 Lawnskapers).
   New components: .lsk135-blade (+ ::before/::after, > .lsk135-blade__glyph)
   Enhanced via free pseudos: .hero::after, .section-head::before,
     .svc-card::before/::after, .why-card::before/::after,
     .pricing-card::before/::after, .testimonials::before/::after,
     .footer::before/::after, .footer .footer-bottom::before,
     .site-header::after, .mobile-bottom-bar::before, .cta-strip::after,
     .compare-col-head::after, .area-card::before,
     .referral-strip::before/::after.
   Companion edits: index.html (og:image cache-bust + cache-buster bump).
   Companion asset deliverables: assets/og-card-v2.svg, assets/og-card-v2.png,
     assets/og-card-v2.webp, assets/og-card-square.png, replaced
     assets/og-image.png + assets/og-image.webp (originals backed up to
     *.bak-r135).
   ========================================================================== */

/* ==========================================================================
   ANNUAL PACKAGE — Year-Round Property Plan (LSK-annual, 2026-06-04)
   Content/Strategy run. Promo band shipped site-wide (bottom of every page),
   homepage hero banner, and the dedicated annual-package.html styles.
   Built on existing tokens — hunter green + gold accent, Bebas Neue + Open Sans.
   ========================================================================== */

/* ---------- Site-wide promo band (sits directly above the footer) ---------- */
.promo-band {
  background: var(--grad-cta);
  border-top: 4px solid var(--accent-orange);
  color: var(--text-on-dark);
  padding: 1.7rem 0;
}
.promo-band-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.promo-badge {
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.45rem;
  line-height: 1;
  background: var(--accent-orange);
  color: var(--dark-forest);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.promo-copy { flex: 1 1 380px; }
.promo-head {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  line-height: 1.05;
  margin: 0 0 0.2rem;
  color: #fff;
}
.promo-sub {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}
.promo-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--accent-orange);
  color: var(--dark-forest);
  font-size: 1.2rem;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: transform var(--motion-fast) var(--ease-out-expo),
              background var(--motion-fast) var(--ease-out-expo),
              box-shadow var(--motion-fast) var(--ease-out-expo);
}
.promo-cta:hover {
  transform: translateY(-2px);
  background: var(--accent-orange-light);
  box-shadow: var(--shadow-md);
  color: var(--dark-forest);
}
.promo-cta:active { transform: translateY(-1px) scale(0.98); }
@media (max-width: 640px) {
  .promo-band-inner { text-align: center; }
  .promo-copy { flex-basis: 100%; }
}

/* ---------- Homepage feature banner ---------- */
.pkg-hero-banner {
  position: relative;
  background: var(--grad-cta);
  color: var(--text-on-dark);
  padding: 3.5rem 0;
  text-align: center;
  overflow: hidden;
  border-top: 5px solid var(--accent-orange);
  border-bottom: 5px solid var(--accent-orange);
}
.pkg-hero-banner .container { position: relative; z-index: 2; }
.pkg-hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--accent-orange-light);
  margin: 0 0 0.5rem;
}
.pkg-hero-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.02;
  margin: 0 0 0.75rem;
}
.pkg-hero-banner h2 .accent { color: var(--accent-orange-light); }
.pkg-hero-banner p {
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 1.6rem;
}
.pkg-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 1.8rem;
}
.pkg-hero-pills span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.95rem;
  font-size: 0.92rem;
}

/* ---------- Package page: the offer (annual up-front price) ---------- */
.pkg-offer {
  max-width: 640px;
  margin: 2.5rem auto 0;
  background: var(--grad-cta);
  border: 2px solid var(--accent-orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.75rem 2rem 2.25rem;
  text-align: center;
  color: var(--text-on-dark);
}
.pkg-offer .pkg-offer-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--accent-orange-light);
  margin: 0 0 0.5rem;
}
.pkg-offer .pkg-offer-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 9vw, 4.75rem);
  line-height: 0.95;
  color: #fff;
  margin: 0;
}
.pkg-offer .pkg-offer-price span {
  font-size: 0.32em;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 0.15em;
}
.pkg-offer .pkg-offer-save {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--dark-forest);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  margin: 1rem 0 0;
}
.pkg-offer .pkg-offer-sub {
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 1.25rem auto 0;
}
.pkg-offer .pkg-offer-cta { margin: 1.75rem 0 0; }
.pkg-offer .pkg-offer-alt {
  margin: 1.1rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
}
.pkg-offer .pkg-offer-alt strong { color: #fff; }

/* ---------- Package page: what's-included checklist ---------- */
.pkg-included {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}
.pkg-included li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.4;
}
.pkg-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--bright-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 0.9rem;
  background-repeat: no-repeat;
  background-position: center;
}
.pkg-included li strong { color: var(--dark-forest); }
@media (max-width: 600px) { .pkg-included { grid-template-columns: 1fr; } }
