/* ==========================================================================
   CRITTER CALL PEST CONTROL — SITEWIDE STYLESHEET (v14)
   Source of truth for all 17 built pages.
   Brand: green #1B7A43 / #0E2F1D, amber #D98A2B, cream #F7F4EA
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --color-primary:        #1B7A43;
  --color-primary-dark:   #0E2F1D;
  --color-primary-darker: #0A2416;
  --color-primary-light:  #E7F2EA;
  --color-secondary:      #D98A2B;
  --color-secondary-dark: #B96F1E;

  --color-text-primary:   #142A1D;
  --color-text-secondary: #3B473F;
  --muted:                #6B756E;
  --color-text-inverse:   #FFFFFF;
  --color-text-inverse-muted: rgba(255, 255, 255, 0.72);

  --color-bg-base:  #FFFFFF;
  --color-bg-alt:   #F5F7F3;
  --color-bg-cream: #F7F4EA;
  --color-bg-dark:  var(--color-primary-dark);

  --color-border:      #E1E7E0;
  --color-border-dark: rgba(255, 255, 255, 0.14);

  /* Two-level type system (v15.1): Archivo carries display, page, section,
     and card headings; Source Sans 3 carries body, navigation, buttons,
     labels, and legal copy. Both are variable Google fonts with robust
     system fallbacks. */
  --font-sans: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Archivo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;   /* navigation, buttons, labels */
  --fw-heading:  650;   /* card / tertiary headings (Archivo) */
  --fw-bold:     700;   /* display + section headings (Archivo) */
  --fw-heavy:    850;
  --fw-black:    900;

  /* Typography scale — clamp()-driven, shared by every page. */
  --text-display: clamp(2.15rem, 1.55rem + 2.4vw, 3.15rem); /* hero headline */
  --text-h1:   clamp(2rem, 1.55rem + 2.1vw, 3rem);          /* page title */
  --text-h2:   clamp(1.55rem, 1.3rem + 1.1vw, 2.25rem);     /* section title */
  --text-h3:   clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);     /* card title */
  --text-h4:   1.2rem;
  --text-stat: clamp(2.5rem, 1.9rem + 2.8vw, 4.5rem);
  --text-lg:   clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);   /* lead paragraph */
  --text-body: 1rem;
  --text-sm:   0.9375rem;
  --text-xs:   0.8125rem;                                    /* eyebrow / legal */

  --leading-tight:  1.15;
  --leading-snug:   1.3;
  --leading-normal: 1.6;
  --leading-loose:  1.7;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(14, 47, 29, 0.06);
  --shadow-md: 0 4px 10px -2px rgba(14, 47, 29, 0.12), 0 2px 4px -2px rgba(14, 47, 29, 0.07);
  --shadow-lg: 0 16px 32px -8px rgba(14, 47, 29, 0.16), 0 4px 8px -4px rgba(14, 47, 29, 0.08);

  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 350ms ease;

  --container-max: 1200px;
  --container-pad: var(--space-5);
  --content-measure: 66ch;   /* body copy max width (~60–68 characters) */

  /* Chrome proportions (v15): compact premium header band. */
  --utility-bar-h: 30px;     /* utility strip ≈ 28–34px */
  --header-h-mobile: 78px;   /* mobile brand band ≈ 76–84px */
  --header-h-desktop: 76px;  /* main desktop header ≈ 74–80px */
  --logo-h-mobile: 58px;     /* visible artwork ≈ 54–62px (tight-crop asset) */
  --logo-h-desktop: 60px;    /* visible artwork ≈ 56–64px (tight-crop asset) */

  /* Section rhythm: one consistent scale instead of ad-hoc padding. */
  --section-pad: clamp(3rem, 2.35rem + 2.4vw, 4.25rem);
  --section-pad-tight: clamp(2.25rem, 1.85rem + 1.5vw, 3rem);

  --z-header:      40;
  --z-mobile-cta:  30;
  --z-skip-link:   100;
}

@media (min-width: 640px) {
  :root { --container-pad: var(--space-6); }
}
@media (min-width: 1024px) {
  :root { --container-pad: var(--space-8); }
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
  background: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* The display resets above must never override the hidden attribute —
   config-gated links and missing-asset fallbacks rely on [hidden]. */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
  letter-spacing: -0.018em;
}
h1 { font-size: var(--text-h1); letter-spacing: -0.025em; line-height: 1.06; }
h2 { font-size: var(--text-h2); line-height: 1.12; }
h3 { font-size: var(--text-h3); font-weight: var(--fw-heading); letter-spacing: -0.012em; line-height: 1.2; }
h4 { font-size: var(--text-h4); font-weight: var(--fw-heading); letter-spacing: -0.012em; line-height: 1.2; }

p { max-width: var(--content-measure); }
p:not(:last-child) { margin-bottom: var(--space-4); }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-primary-dark); }

ul, ol { list-style: none; padding: 0; }

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   3. ACCESSIBILITY UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-skip-link);
  background: var(--color-primary-dark);
  color: var(--color-text-inverse);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
  transition: top var(--transition-base);
}
.skip-link:focus {
  top: var(--space-4);
  color: var(--color-text-inverse);
}

/* --------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-pad);
}
.section.alt {
  background: var(--color-bg-alt);
}
.section.tight {
  padding-block: var(--section-pad-tight);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
.split.align-center {
  align-items: center;
}
@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-12);
  }
}

.order-1 { order: 1; }
.order-2 { order: 2; }
@media (min-width: 860px) {
  .split .order-1 { order: 1; }
  .split .order-2 { order: 2; }
}

/* --------------------------------------------------------------------------
   5. TEXT PATTERNS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.lead {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 62ch;
}
/* Keep mobile body/lead copy at a comfortable, non-oversized size. */
@media (max-width: 640px) {
  .lead { font-size: 1rem; }
}

.breadcrumb {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: var(--space-5);
}
.breadcrumb a { color: var(--muted); text-decoration: underline; text-decoration-color: transparent; }
.breadcrumb a:hover { color: var(--color-primary); text-decoration-color: currentColor; }

.source-note {
  font-size: var(--text-xs);
  font-style: italic;
  color: var(--muted);
  margin-top: var(--space-3);
}

/* Editorial rules (v15): long-form copy reads left-aligned at a controlled
   measure; centered alignment is reserved for short headings and CTA lines. */
.section-head {
  max-width: 60ch;
  margin-bottom: var(--space-6);
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 { margin-bottom: var(--space-3); }
.section-head .lead { margin-inline: 0; }
.section-head.centered .lead { margin-inline: auto; }

/* Asymmetric editorial trust statement (homepage "Real Technicians"):
   a strong left statement column and a right column of supporting copy
   plus concise proof points — replaces the centered text slab. A thin
   warm rule above frames the section editorially without boxing it. */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-8);
}
@media (min-width: 900px) {
  .editorial-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--space-12);
  }
}
.editorial-split h2 {
  font-size: var(--text-h2);
  max-width: 16ch;
  margin-bottom: var(--space-4);
}
.editorial-statement::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  margin-top: var(--space-4);
}
.editorial-body p {
  text-align: left;
  max-width: var(--content-measure);
}
.editorial-points {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.editorial-points li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}
.editorial-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}
.editorial-points li small {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.split .button-row,
.card .button-row { margin-top: var(--space-4); }

/* Button system (v15). Four deliberate variants:
   .btn-primary       — solid, strongest action (Request Service)
   .btn-outline-dark  — deep-green text/border, for white & cream surfaces
   .btn-outline-light — white text/border, ONLY for dark surfaces
   .btn-quiet         — low-emphasis tertiary text action
   Legacy classes stay as aliases: .btn-outline == outline-dark by default and
   is remapped to outline-light inside known dark containers, so no page can
   render an invisible white-outline button on a light background. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px; /* touch target */
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  line-height: 1.1;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: background-color var(--transition-base), border-color var(--transition-base),
              color var(--transition-base), transform var(--transition-fast),
              box-shadow var(--transition-base);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.btn.small {
  min-height: 44px;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: 0 6px 14px -8px rgba(14, 47, 29, 0.55);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-text-inverse);
}

/* Legacy amber emphasis (kept for existing markup). */
.btn-light {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #10230F;
}
.btn-light:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: #10230F;
}

.btn-outline,
.btn-outline-dark {
  background: transparent;
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}
.btn-outline:hover,
.btn-outline-dark:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-text-inverse);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #FFFFFF;
}
.btn-outline-light:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--color-primary-dark);
}

.btn-quiet {
  background: transparent;
  border-color: transparent;
  color: var(--color-primary);
  padding-inline: var(--space-4);
}
.btn-quiet:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Dark containers remap legacy outline buttons to the light variant. */
.site-footer .btn-outline,
.proof-band .btn-outline,
.hero .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #FFFFFF;
}
.site-footer .btn-outline:hover,
.proof-band .btn-outline:hover,
.hero .btn-outline:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--color-primary-dark);
}

/* --------------------------------------------------------------------------
   7. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-bg-base);
  border-bottom: 1px solid var(--color-border);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h-mobile);
  padding-block: var(--space-2);
}

.brand { display: inline-flex; align-items: center; }
/* Header brand mark. The current approved asset (original-logo.png) is a
   SQUARE 440x440 stacked lockup, not the earlier 349x168 horizontal mark, so
   the mark is sized by HEIGHT: a width-based rule at this aspect blows the
   header up to ~200px+ tall. object-fit contain + auto width = never
   distorted, and the header stays a compact premium band at every width. */
.brand img {
  height: var(--logo-h-mobile);
  width: auto;
  object-fit: contain;
  transition: height var(--transition-base);
}
@media (min-width: 768px) {
  .brand img { height: 56px; }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav: a fixed panel pinned below the sticky header, filling the
   remaining viewport (100dvh where supported; script.js sets the exact top
   from the live header bottom on open). Solid surface + hairline + shadow
   keep underlying content from bleeding through; body scroll is locked via
   body.nav-locked while open. */
.site-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 66px; /* fallback; script.js sets the measured header bottom */
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--color-bg-base);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2) var(--container-pad) var(--space-8);
  box-shadow: 0 12px 24px -12px rgba(14, 47, 29, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}
.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
body.nav-locked { overflow: hidden; }
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px; /* touch target */
  padding: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--color-bg-alt);
}
.site-nav a:last-child { border-bottom: none; }
.site-nav a:hover { color: var(--color-primary); background: var(--color-primary-light); }
.site-nav a[aria-current="page"] { color: var(--color-primary); font-weight: var(--fw-semibold); }

.mobile-nav-utility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}
.site-nav .mobile-nav-utility a {
  justify-content: center;
  min-height: 44px;
  padding: var(--space-2) var(--space-3);
  border-bottom: 0;
  font-weight: var(--fw-semibold);
  text-align: center;
}
.mobile-nav-utility .track-cta-request-service,
.mobile-nav-utility .track-cta-customer-portal { grid-column: 1 / -1; }
.site-nav .mobile-nav-utility .track-cta-request-service {
  color: var(--color-text-inverse);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.phone-link {
  display: none;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}
.phone-link:hover { color: var(--color-primary); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .mobile-nav-utility { display: none; }
  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: clamp(var(--space-4), 1.9vw, var(--space-7, 1.75rem));
    padding: 0;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  body.nav-locked { overflow: auto; }
  /* Inline desktop navigation: vertically centered links with a brand
     underline affordance for hover/current, sized to the compact band. */
  .site-nav a {
    position: relative;
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    min-height: 0;
    border-bottom: none;
    color: var(--color-text-primary);
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    border-radius: var(--radius-full);
    background: var(--color-secondary);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity var(--transition-base), transform var(--transition-base);
  }
  .site-nav a:hover { background: transparent; color: var(--color-primary-dark); }
  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
  .phone-link { display: inline-block; }
  .brand img { height: var(--logo-h-desktop); }
  .site-header.is-scrolled .brand img { height: 52px; }
  .header-inner { min-height: var(--header-h-desktop); padding-block: var(--space-2); }
}

/* --------------------------------------------------------------------------
   8. HERO (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-bg-cream) 100%);
  padding-block: var(--space-12) var(--space-16);
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 1024px) {
  .page-hero { padding-block: var(--space-16) var(--space-20); }
}
.page-hero h1 { max-width: 20ch; margin-bottom: var(--space-4); }
.page-hero .lead { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   9. CARDS & CONTENT COMPONENTS
   -------------------------------------------------------------------------- */
.card {
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: var(--space-3); }

/* Card grid (v15): deliberate breakpoints instead of auto-fit so every row
   composes — 1 column on phones, 2 on tablets, 3 on wide desktop. A single
   3n+1 straggler in the final desktop row is centered rather than left
   marooned, and .service-card--feature promotes the closing category into a
   full-width horizontal feature card. */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5); }
}
@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid > :last-child:nth-child(3n + 1) { grid-column: 2; }
  .card-grid > .service-card--feature:last-child { grid-column: 1 / -1; }
}

/* Full-width closing feature card: same DNA, horizontal composition.
   Doubled class defeats the later .service-card { display:flex } base. */
.service-card.service-card--feature {
  border-color: rgba(27, 122, 67, 0.35);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg-base) 55%);
}
@media (min-width: 640px) {
  .service-card.service-card--feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 2fr);
    align-items: center;
    column-gap: var(--space-8);
    padding: var(--space-6) var(--space-8);
  }
  .service-card.service-card--feature strong { grid-column: 1; grid-row: 1; align-self: end; }
  .service-card.service-card--feature p { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .service-card.service-card--feature .arrow { grid-column: 1; grid-row: 2; margin-top: var(--space-1); align-self: start; }
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}
.service-card strong {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: var(--fw-heading);
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--color-text-primary);
}
.service-card p { color: var(--color-text-secondary); font-size: var(--text-sm); margin-bottom: 0; }
.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.arrow {
  margin-top: auto;
  padding-top: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  transition: transform var(--transition-base);
}
.service-card:hover .arrow { transform: translateX(4px); }
.service-card[id] { scroll-margin-top: 120px; } /* clear sticky header on anchor jumps */

.check-list { margin-top: var(--space-4); }
.check-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.pest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.pest-chips span,
.pest-chips a {
  padding: var(--space-2) var(--space-4);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
}
.pest-chips a:hover,
.pest-chips a:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.safe-note {
  background: var(--color-bg-cream);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.safe-note strong { color: var(--color-text-primary); }

.legal-card {
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 72ch;
}
.legal-card p:not(:last-child) { margin-bottom: var(--space-4); }
.legal-card h2 { margin-top: var(--space-8); margin-bottom: var(--space-4); }
.legal-card h2:first-child { margin-top: 0; }

/* --------------------------------------------------------------------------
   10. PROCESS / STEPS
   -------------------------------------------------------------------------- */
.process { background: var(--color-bg-base); }
.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.step-grid article {
  text-align: left;
  padding-top: var(--space-4);
  border-top: 2px solid var(--color-primary-light);
}
.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}
.step-grid h3 { margin-bottom: var(--space-2); }
.step-grid p { font-size: var(--text-sm); color: var(--color-text-secondary); margin-bottom: 0; }
@media (min-width: 640px) {
  .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-grid article:last-child { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .step-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-8);
  }
  .step-grid article { grid-column: span 2; }
  .step-grid article:nth-child(4) { grid-column: 2 / span 2; }
  .step-grid article:nth-child(5) { grid-column: 4 / span 2; }
}

/* --------------------------------------------------------------------------
   11. REVIEWS & PROOF
   -------------------------------------------------------------------------- */
.review-proof .lead { margin-bottom: 0; }

.proof-collage img,
.proof-collage {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.proof-collage img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.review-card {
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.review-card.media-card { padding: 0; overflow: hidden; }
.review-card.media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.review-card.media-card .review-meta { padding: var(--space-4) var(--space-5); }

.review-stars {
  color: var(--color-secondary);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.review-text {
  font-style: italic;
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}
.review-meta {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.feature {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.feature strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-heading);
  letter-spacing: -0.012em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}
.feature p { font-size: var(--text-sm); margin-bottom: 0; }

.proof-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.proof-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   12. CTA PANEL
   -------------------------------------------------------------------------- */
.cta-panel {
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
}
.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p { margin-inline: auto; }
.cta-panel h2 { max-width: 26ch; margin-bottom: var(--space-3); }
.cta-panel p { max-width: 56ch; margin-bottom: 0; }
.cta-panel .button-row { justify-content: center; }

/* Shared service-choice hierarchy. Request Service is the single filled lead
   action; phone and SMS remain equally available as secondary outlines even
   on older pages whose HTML still carries a legacy button modifier. */
.btn.track-cta-request-service {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn.track-cta-request-service:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-text-inverse);
}
.btn.track-cta-call,
.btn.track-cta-text,
a.btn[href^="tel:"],
a.btn[href^="sms:"] {
  background: transparent;
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}
.btn.track-cta-call:hover,
.btn.track-cta-text:hover,
a.btn[href^="tel:"]:hover,
a.btn[href^="sms:"]:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}
/* Dark-surface exception: on the hero and footer the phone action is a solid
   white button and SMS is a light outline. Placed after (and at higher
   specificity than) the generic tel:/sms: rules above so white-on-dark CTAs
   can never collapse into a green-on-green outline. */
.hero a.btn[href^="tel:"],
.site-footer .cta-panel a.btn[href^="tel:"] {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--color-primary-dark);
}
.hero a.btn[href^="tel:"]:hover,
.site-footer .cta-panel a.btn[href^="tel:"]:hover {
  background: #E9EFE9;
  border-color: #E9EFE9;
  color: var(--color-primary-dark);
}
.hero a.btn[href^="sms:"] {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #FFFFFF;
}
.hero a.btn[href^="sms:"]:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--color-primary-dark);
}
@media (min-width: 1024px) {
  .cta-panel { padding: var(--space-12) var(--space-16); }
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
/* Footer (v15): a deliberate, compact final brand component — brand and
   credentials on the left, navigation grid beside it, slim legal bar below.
   Materially shorter than v14 on both desktop and mobile. */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse-muted);
  padding-block: var(--space-8) 0;
  border-top: 3px solid var(--color-secondary); /* brand accent close */
}
.site-footer a { color: var(--color-text-inverse-muted); }
.site-footer a:hover { color: var(--color-secondary); }
/* Contact hierarchy: the phone number and Request Service are the footer's
   primary actions, so they read brighter and heavier than sibling links. */
.footer-grid ul li a.track-cta-call {
  color: var(--color-text-inverse);
  font-weight: var(--fw-bold);
  font-size: var(--text-body);
}
.footer-grid ul li a.track-cta-request-service {
  color: var(--color-secondary);
  font-weight: var(--fw-semibold);
}
.footer-grid ul li a.track-cta-call:hover,
.footer-grid ul li a.track-cta-request-service:hover { color: #fff; }
.site-footer h3 {
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
}
.site-footer p { color: var(--color-text-inverse-muted); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6) var(--space-5);
  padding-bottom: var(--space-6);
  align-items: start; /* columns align at the top */
}
.footer-grid ul li { margin-bottom: var(--space-1); }
.footer-grid ul li a {
  font-size: var(--text-sm);
  display: inline-block;
  padding-block: 3px; /* comfortable targets without tall columns */
}
.footer-brand-col { grid-column: 1 / -1; }

/* Footer brand: the tight-crop lockup on a deliberate, compact light chip —
   a real brand presence integrated with the ownership/license copy, neither
   a tiny utility icon nor an oversized isolated tile. */
.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-bottom: var(--space-3);
  box-shadow: 0 4px 14px -8px rgba(0, 0, 0, 0.4);
}
.footer-logo img { width: 96px; height: auto; display: block; margin-bottom: 0; }
.footer-brand-col > p {
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 44ch;
  margin-bottom: var(--space-2);
}
.footer-license {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
}
.footer-note {
  font-size: 0.7rem;
  line-height: 1.55;
  color: var(--color-text-inverse-muted);
  opacity: 0.75;
  max-width: 52ch;
  margin-top: var(--space-2);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding-block: var(--space-3);
  border-top: 1px solid var(--color-border-dark);
  font-size: var(--text-xs);
  color: var(--color-text-inverse-muted);
}
/* License line is the footer's final trust statement — keep it legible. */
.footer-bottom span:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-weight: var(--fw-medium);
}

@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); gap: var(--space-6); }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; gap: var(--space-2); }
}

/* --------------------------------------------------------------------------
   14. MOBILE QUICK-CONTACT BAR
   -------------------------------------------------------------------------- */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-mobile-cta);
  background: var(--color-primary-dark);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 12px rgba(14, 47, 29, 0.18);
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px; /* touch target with tighter chrome */
  padding: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-inverse);
  border-right: 1px solid var(--color-border-dark);
}
.mobile-cta a:last-child { border-right: none; }
.mobile-cta a:hover { background: rgba(255, 255, 255, 0.08); color: var(--color-text-inverse); }
/* Request Service is the primary action in the sticky bar: amber segment,
   matching the hero's CTA hierarchy (Call and Text stay quiet green). */
.mobile-cta a.track-cta-request-service {
  background: var(--color-secondary);
  color: #10230f;
  font-weight: var(--fw-bold);
}
.mobile-cta a.track-cta-request-service:hover {
  background: var(--color-secondary-dark);
  color: #10230f;
}

/* Reserve room for the fixed quick-contact bar (48px) plus the device safe
   area, with headroom so the last interactive element scrolls fully clear. */
body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }

/* GorillaDesk floating launcher: on small screens it is redundant (the sticky
   Call/Text/Request bar opens the same contact widget) and any fixed launcher
   inevitably collides with CTAs at some scroll position — so hide the launcher
   ICON below 960px. The contact widget itself is untouched and still opens
   from every Request Service CTA. Positioning/visibility only — no widget or
   watermark modification. */
@media (max-width: 959px) {
  #gorilladesk-portal-button-contact { display: none !important; }
}

@media (min-width: 960px) {
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   15. UTILITY BAR (v14.1 — Terminix-style top help bar, Critter Call colors)
   -------------------------------------------------------------------------- */
.utility-bar {
  background: var(--color-primary-dark);
  color: var(--color-text-inverse-muted);
  font-size: var(--text-xs);
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--utility-bar-h);
  padding-block: 1px;
}
.utility-bar a { letter-spacing: 0.01em; }
.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
}
.utility-bar .utility-proof strong { color: var(--color-secondary); }
.utility-bar a {
  color: var(--color-text-inverse);
  font-weight: var(--fw-semibold);
  padding: var(--space-1) 0;
}
.utility-bar a:hover { color: var(--color-secondary); }
.utility-area { display: none; }
/* Reclaim vertical space at the top of small screens: the utility bar's
   Call / Text actions are already in the hero and the mobile quick-contact
   bar, so hide the whole strip below the tablet breakpoint. */
@media (max-width: 767px) {
  .utility-bar { display: none; }
}
/* The long service-area line only fits on one row at desktop widths;
   showing it earlier wraps the utility strip into a fat two-row band. */
@media (min-width: 1024px) {
  .utility-area { display: inline; }
}
@media (max-width: 479px) {
  .utility-left .utility-proof { display: none; }
}

/* Brand wordmark — graceful text fallback while logo assets are missing */
.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: var(--fw-heavy);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--color-primary-dark);
  white-space: nowrap;
}
.brand-wordmark em {
  font-style: normal;
  color: var(--color-secondary);
}
.brand-wordmark small {
  font-size: 0.5625rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.footer-logo .brand-wordmark { color: var(--color-text-inverse); }
.footer-logo .brand-wordmark small { color: var(--color-secondary); }

/* Missing-asset image fallback: keeps layout + brand feel until real
   photos are supplied (see BLOCKERS.md). The <img> hides itself onerror. */
.img-frame {
  position: relative;
  background:
    radial-gradient(circle at 80% 15%, rgba(217,138,43,0.25), transparent 50%),
    linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 85%);
}
.img-frame .img-fallback-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-6);
  text-align: center;
  color: var(--color-text-inverse);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
}
.img-frame .img-fallback-label svg { width: 44px; height: 44px; opacity: 0.85; }
.img-frame img { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   16. SHARED FORM STYLES (homepage lead form + contact intake form)
   -------------------------------------------------------------------------- */
.lead-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .lead-form .form-grid { grid-template-columns: 1fr 1fr; }
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  min-width: 0; /* prevent grid blowout from input intrinsic width */
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  min-height: 44px; /* mobile tap target */
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg-base);
  color: var(--color-text-primary);
}
.lead-form textarea { resize: vertical; }
.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.lead-form .full { grid-column: 1 / -1; }
.lead-form .consent-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.lead-form .consent-row input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
  min-width: 18px;
  height: 18px;
}
.lead-form button[type="submit"] { width: 100%; min-height: 44px; }
@media (min-width: 480px) {
  .lead-form button[type="submit"] { width: auto; }
}
.form-note { margin: 14px 0 0; font-size: 13px; color: var(--muted); }
.form-note[data-status="success"] { color: var(--color-primary); font-weight: var(--fw-semibold); }
.form-note[data-status="error"],
.form-note.is-error { color: #b3261e; font-weight: var(--fw-semibold); }
.consent-disclosure {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   17. FOOTER SOCIAL ROW (hidden until real profile URLs exist in config.js)
   -------------------------------------------------------------------------- */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  color: var(--color-text-inverse);
  transition: color var(--transition-base), border-color var(--transition-base),
              background-color var(--transition-base);
}
.footer-social a:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-secondary);
  background: var(--color-secondary);
}
.footer-social svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   18. GORILLADESK WIDGET COEXISTENCE
   -------------------------------------------------------------------------- */
/* Portal links triggered via the GorillaDesk widget have no href */
[data-portal-link][role="button"] { cursor: pointer; }

/* Keep the widget launcher clear of the fixed mobile quick-contact bar */
@media (max-width: 1023.98px) {
  #gorilladesk-portal-widget-menu-icon {
    bottom: calc(74px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* --------------------------------------------------------------------------
   19. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .mobile-cta, .skip-link, .nav-toggle, .utility-bar { display: none; }
}

/* --------------------------------------------------------------------------
   20. CLIENT-PREVIEW POLISH (v14.4)
   Premium national-service-company craft on the existing structure.
   Layout patterns inspired by 21st.dev (hero, cards, CTA, FAQ, testimonials,
   footer). Pure CSS + existing JS only. No color-scheme, content, or
   architecture changes — additive refinement of the approved v14.2 build.
   -------------------------------------------------------------------------- */

/* 20.1 Editorial eyebrow — clean label, no decorative dash */
.eyebrow::before {
  content: none;
  display: none;
}

/* 20.2 Premium feature/trust cards (homepage pillars + interior feature grids) */
.feature {
  background: var(--color-bg-base);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.feature:hover::before { opacity: 1; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.feature-icon svg { width: 24px; height: 24px; }

/* 20.3 Premium testimonial cards */
.review-card {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.review-card::after {
  content: "\201C";
  position: absolute;
  top: -0.15em;
  right: 0.35em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.08;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* 20.4 Richer CTA panel */
.cta-panel {
  background: linear-gradient(150deg, var(--color-bg-cream) 0%, #FBF6E9 100%);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* 20.5 Service cards — steadier premium rest state + focus ring */
.service-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* 20.6 Mobile spacing rhythm + full-width tap-friendly CTAs */
@media (max-width: 640px) {
  .section { padding-block: var(--space-12); }
  .button-row .btn { flex: 1 1 100%; }
  /* Denser one-column service cards: ~17% less padding, natural height,
     tighter description-to-link gap — content unchanged, targets ≥44px. */
  .service-card { padding: var(--space-5); gap: var(--space-2); }
  .service-card p { line-height: 1.5; }
  .service-card .arrow { padding-top: var(--space-2); min-height: 24px; }
  /* Denser proof/trust cards: same icons, headings, and claims — just less
     air and more controlled body type on small screens. */
  .feature-grid { gap: var(--space-3); margin-top: var(--space-6); }
  .feature { padding: var(--space-4) var(--space-5); }
  .feature-icon { width: 38px; height: 38px; margin-bottom: var(--space-3); }
  .feature-icon svg { width: 20px; height: 20px; }
  .feature p { font-size: 0.875rem; line-height: 1.55; }
  .proof-band-grid { gap: 14px 16px; }
}

/* --------------------------------------------------------------------------
   21. GOOGLE REVIEWS WIDGET SECTION (Taggbox)
   Native-feeling wrapper around the isolated third-party widget.
   White background, ~80px vertical rhythm, rounded + soft-shadow card,
   green heading, amber stars, amber CTA. No schema, no head JS.
   -------------------------------------------------------------------------- */
.reviews-widget {
  background: var(--color-bg-base);
  padding-block: 80px;
}
@media (max-width: 640px) {
  .reviews-widget { padding-block: 48px; }
}
.reviews-widget-card {
  max-width: var(--container-max);
  margin-inline: auto;
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 5vw, 56px);
  text-align: center;
}
.reviews-widget-head {
  max-width: 62ch;
  margin-inline: auto;
}
.reviews-widget-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 var(--space-3);
}
.reviews-widget-stars {
  color: var(--color-secondary);
  font-size: 1.3rem;
  letter-spacing: 2px;
  line-height: 1;
}
/* Native proof summary above the live widget: verified score + stars. */
.reviews-widget-score {
  font-size: 1.75rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--color-text-primary);
}
.reviews-widget-source {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}
.reviews-widget h2 {
  color: var(--color-primary);           /* green heading */
  margin-bottom: var(--space-3);
}
.reviews-widget-sub {
  color: var(--color-text-secondary);
  margin: 0 auto var(--space-8);
}
.reviews-widget-embed {
  margin-block: var(--space-6);
}
/* Keep the third-party widget inside the card and off the page edges */
.reviews-widget-embed .taggbox {
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: auto;
}
.reviews-widget-fallback {
  display: none;
  max-width: 46rem;
  margin: var(--space-5) auto 0;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  text-align: center;
}
.reviews-widget-fallback h3 {
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
}
.reviews-widget-fallback p {
  margin-inline: auto;
  margin-bottom: var(--space-5);
  color: var(--color-text-secondary);
}
.reviews-widget-fallback .button-row {
  justify-content: center;
}
.reviews-widget--fallback .reviews-widget-embed {
  display: none;
}
.reviews-widget--fallback .reviews-widget-fallback {
  display: block;
}
.reviews-widget--loaded .reviews-widget-fallback {
  display: none;
}
.reviews-widget-cta {
  margin-top: var(--space-6);
}
.reviews-widget-cta .button-row { justify-content: center; }


/* v14.5.1 War Room refinements */
.hero-cta-row { gap: var(--space-3); }
@media (min-width: 720px) {
  .hero-cta-row { flex-wrap: wrap; }
}
.reviews-widget { padding-block: var(--space-12); }
.reviews-widget-sub { margin-bottom: var(--space-5); }
.reviews-widget-embed { margin-block: var(--space-4); }
.reviews-widget-embed .taggbox { min-height: 460px; max-height: 460px; }
@media (max-width: 640px) {
  .reviews-widget-card {
    padding: var(--space-5) var(--space-4);
    border-radius: var(--radius-lg);
  }
  .reviews-widget-sub {
    margin-bottom: var(--space-4);
  }
  .reviews-widget-embed .taggbox { min-height: 460px; max-height: 460px; }
  .reviews-widget-fallback {
    margin-top: var(--space-4);
    padding: var(--space-4);
  }
  .reviews-widget-fallback h3 {
    font-size: 1rem;
  }
  .reviews-widget-fallback p {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: var(--space-4);
  }
}
