/* ================================================================
   Pompano Termite Control — Design System v5 (Botanical Light)
   White paper · Botanical sage · Burnt umber · Cool stone
   Fraunces (display serif) + Inter (body) + JetBrains Mono (data)
   Research-inspired: Alta Pest Control · Cereal Magazine · NYT
   ================================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces — white-first, cool-paper accents */
  --bg: #ffffff;
  --bg-alt: #f3f4ef;          /* cool sage stone — section breaks */
  --bg-deep: #e7ede8;         /* deeper sage — hover / inset */
  --paper: #fafbf8;
  --paper-tint: #eef1ec;       /* faint cool sage tint */

  /* Ink — charcoal with subtle green undertone */
  --ink: #1c1f1c;
  --ink-soft: #2e3530;
  --muted: #5a6258;
  --muted-light: #8a948a;

  /* Hairlines */
  --line: #d4dcd5;            /* cool sage line */
  --line-strong: #b3bfb4;
  --line-ink: #1c1f1c;
  --line-forest: rgba(45, 90, 61, 0.18);

  /* PRIMARY: Warm gold — user-specified #ddbb66 */
  --forest-deep: #1c1f1c;       /* ink — dark surfaces (topbar, footer, final-CTA) */
  --forest: #ddbb66;            /* primary brand — warm gold */
  --forest-mid: #c8a04b;        /* mid gold — accent on dark */
  --forest-glow: rgba(221, 187, 102, 0.18);
  --forest-soft: #f5e9c8;       /* soft tint background */

  /* ACCENT: Burnt umber — wood/termite-themed warm accent, replaces brass */
  --brass: #8a4a2c;            /* warm umber signal */
  --brass-deep: #5e3018;       /* hover / pressed */
  --brass-bright: #b8693f;     /* highlight on dark */
  --brass-soft: #eddfd0;       /* warm tint background */
  --brass-glow: rgba(138, 74, 44, 0.14);

  /* TRUST: Warm honey (replaces verified moss) */
  --moss: #a8893f;
  --moss-bright: #ddbb66;

  /* Semantic */
  --danger: #8b1f1f;
  --success: #a8893f;
  --warning: #8b6914;

  /* Legacy aliases (so existing markup still resolves) */
  --brown-deep: var(--ink);
  --brown: var(--forest);
  --brown-soft: var(--forest-mid);
  --amber: var(--brass);
  --amber-soft: var(--brass-deep);
  --amber-glow: var(--brass-glow);
  --cream: var(--bg);
  --bone: var(--bg-alt);
  --bone-deep: var(--bg-deep);
  --charcoal: var(--ink);
  --wood-mid: var(--forest);
  --wood-light: var(--forest-mid);
  --rust: var(--brass);
  --rust-deep: var(--brass-deep);
  --rust-soft: var(--brass-soft);
  --rust-glow: var(--brass-glow);
  --bark: var(--forest);
  --bark-soft: var(--forest-mid);
  --honey: var(--brass);
  --teal-deep: var(--forest);
  --teal: var(--forest-mid);
  --teal-bright: var(--moss-bright);
  --teal-soft: var(--forest-soft);
  --teal-glow: var(--forest-glow);
  --coral: var(--brass);
  --coral-deep: var(--brass-deep);
  --coral-soft: var(--brass-soft);
  --coral-glow: var(--brass-glow);
  --palm: var(--forest);
  --palm-bright: var(--moss-bright);
  --palm-soft: var(--forest-soft);
  --seafoam-bg: var(--brass-soft);
  --sand: var(--paper-tint);
  --sand-deep: var(--brass);
  --line-teal: var(--line-forest);

  /* Type — Fraunces (modern serif, variable, optical sizing) + Inter + JetBrains Mono */
  --font-display: "Fraunces", "Iowan Old Style", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 980px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Shadows — soft, paper-like */
  --shadow-xs: 0 1px 0 rgba(20, 18, 16, 0.04), 0 1px 2px rgba(20, 18, 16, 0.04);
  --shadow-sm: 0 1px 2px rgba(20, 18, 16, 0.06);
  --shadow: 0 6px 20px -8px rgba(20, 18, 16, 0.14);
  --shadow-lg: 0 24px 60px -24px rgba(20, 18, 16, 0.22);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 260ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  min-width: 0;
}
img, svg { max-width: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-deep); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--coral); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding-left: 1.2em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.55em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.2rem); letter-spacing: -0.025em; font-weight: 500; font-variation-settings: "opsz" 144, "SOFT" 80; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.7rem); letter-spacing: -0.018em; font-weight: 500; font-variation-settings: "opsz" 96, "SOFT" 60; }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.55rem); font-weight: 600; font-variation-settings: "opsz" 36, "SOFT" 30; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1.05em; }
small { font-size: 0.85rem; color: var(--muted); }
strong, b { font-weight: 600; color: var(--ink); }
em { font-style: italic; }
mark { background: var(--rust-soft); color: var(--ink); padding: 0 4px; border-radius: 3px; }
::selection { background: var(--ink); color: var(--bg); }

/* ---------- Container ---------- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: clamp(36px, 5vw, 64px) 0; }
.section-head { margin-bottom: 48px; max-width: 720px; }
.section-eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.section-eyebrow::before {
  content: attr(data-num) "";
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brass);
  padding: 3px 7px;
  border: 1px solid var(--brass);
  border-radius: 2px;
  display: inline-block;
}
.section-eyebrow[data-num=""]::before, .section-eyebrow:not([data-num])::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--brass);
  padding: 0;
  border: 0;
  display: inline-block;
  transform: translateY(-4px);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--forest-deep);
  color: var(--brass-soft);
  font-size: 0.8rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(156, 124, 56, 0.18);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #ffffff; font-weight: 500; }
.topbar a:hover { color: var(--brass-bright); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(240, 231, 209, 0.95);
}
.topbar-pill::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 164, 74, 0.22);
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.16rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 40;
}
.brand-name small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.64rem;
  color: var(--brass-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > a, .nav-item > a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.93rem;
  position: relative;
  padding: 6px 0;
}
.nav-links > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-item > a:hover::after,
.nav-item > a.active::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Mobile nav drawer (CSS-only via <details>) ---------- */
.mobile-nav {
  display: none;
  position: relative;
}
.mobile-nav > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--ink);
  background: var(--bg);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: all var(--dur) var(--ease);
}
.mobile-nav > summary::-webkit-details-marker { display: none; }
.mobile-nav > summary::before {
  content: "";
  width: 18px; height: 12px;
  background-image:
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink)),
    linear-gradient(var(--ink), var(--ink));
  background-size: 18px 2px;
  background-position: 0 0, 0 5px, 0 10px;
  background-repeat: no-repeat;
}
.mobile-nav[open] > summary { background: var(--ink); color: #ffffff; }
.mobile-nav[open] > summary::before {
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-size: 18px 2px;
  background-position: 0 5px, 0 5px;
  transform: rotate(45deg);
  width: 14px; height: 2px;
}
.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, 80vw);
  background: var(--bg);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  z-index: 80;
}
.mobile-nav-panel h6 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 14px 22px 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.mobile-nav-panel h6:first-child { padding-top: 0; border-top: 0; margin-top: 4px; }
.mobile-nav-panel a {
  display: block;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  transition: background var(--dur) var(--ease);
}
.mobile-nav-panel a:hover { background: var(--paper-tint); color: var(--brass-deep); }
.mobile-nav-panel .nav-cta-mobile {
  display: block;
  margin: 14px 22px 6px;
  padding: 12px 18px;
  background: var(--forest);
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.mobile-nav-panel .nav-cta-mobile:hover { background: var(--brass-deep); color: #ffffff; }

/* Header sub-menu dropdowns */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { width: 10px; height: 7px; flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.nav-item:hover > a .nav-caret,
.nav-item:focus-within > a .nav-caret { transform: rotate(180deg); }
.nav-sub {
  position: absolute;
  top: 100%; left: -14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 260px;
  padding: 10px 0;
  margin-top: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
  z-index: 80;
}
.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear 0s;
}
.nav-sub a {
  display: block;
  width: 100%;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1.4;
  text-align: left;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-sub a::after { display: none !important; }
.nav-sub a:hover { color: var(--teal-deep); background: var(--seafoam-bg); }
.nav-sub-all {
  margin-top: 6px;
  padding-top: 12px !important;
  border-top: 1px solid var(--line);
  color: var(--coral) !important;
  font-weight: 600 !important;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary {
  background: var(--forest);
  color: #ffffff;
  border-color: var(--forest);
  box-shadow: 0 1px 0 var(--forest-deep), 0 4px 14px -6px var(--forest-glow);
}
.btn-primary:hover { background: var(--forest-deep); border-color: var(--forest-deep); color: #ffffff; box-shadow: 0 1px 0 #000, 0 10px 28px -8px rgba(13, 36, 24, 0.36); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: #ffffff; }
.btn-accent {
  background: var(--brass);
  color: #ffffff;
  border-color: var(--brass);
  box-shadow: 0 1px 0 var(--brass-deep);
}
.btn-accent:hover { background: var(--brass-deep); border-color: var(--brass-deep); }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Hero (homepage) ---------- */
.hero {
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 11vw, 130px);
  background-color: var(--bg);
  background-image:
    linear-gradient(95deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 38%, rgba(255,255,255,0.38) 65%, rgba(255,255,255,0.18) 100%),
    url("../img/hero.jpg");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 5%, rgba(45,90,61,0.06) 0, transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(138,74,44,0.06) 0, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest-mid) 35%, var(--brass) 70%, var(--brass-bright) 100%);
  pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-text { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.hero-eyebrow .dot { display: none; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--forest); font-style: italic; font-weight: 400; font-family: var(--font-display); position: relative; font-variation-settings: "opsz" 144, "SOFT" 100; }
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 0.1em;
  height: 6px;
  background: var(--brass-soft);
  opacity: 0.85;
  z-index: -1;
  border-radius: 0;
}
.hero-lede { font-size: 1.13rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 36px; max-width: 580px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-trust-item { display: flex; flex-direction: column; gap: 4px; }
.hero-trust-item b { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.hero-trust-item span { font-size: 0.82rem; color: var(--muted); line-height: 1.3; }
.hero-visual { display: none; }
.hero-visual svg { display: none; }

/* ---------- Page hero (subpages) — Pollinations photographic backdrop ---------- */
.page-hero {
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 88px);
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.88) 60%, rgba(255,255,255,0.96) 100%),
    url("../img/page-hero.jpg");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(45,90,61,0.06) 0, transparent 55%),
    radial-gradient(ellipse at 10% 85%, rgba(138,74,44,0.05) 0, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line-strong);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.page-hero .eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.page-hero h1 { max-width: 32ch; margin-bottom: 20px; }
.page-hero p.lede { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.7; max-width: 72ch; margin: 0 0 8px; }

/* ---------- Prose (article body) ---------- */
.prose { font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); }
.prose h2 { font-size: clamp(1.5rem, 2.5vw, 1.95rem); color: var(--ink); margin: 2.4em 0 0.55em; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; color: var(--ink); margin: 1.8em 0 0.5em; }
.prose p { margin: 0 0 1.1em; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--ink); border-bottom: 1px solid var(--brass); padding-bottom: 1px; transition: all var(--dur) var(--ease); font-weight: 500; }
.prose a:hover { color: var(--brass-deep); border-bottom-color: var(--brass-deep); border-bottom-width: 2px; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.prose ul li, .prose ol li { margin-bottom: 0.5em; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.78em;
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 0;
}

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}
.bento-card:hover { border-color: var(--forest); transform: translateY(-3px); box-shadow: 0 14px 32px -16px var(--forest-glow); }
.bento-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--brass);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.bento-card:hover::before { opacity: 1; }
/* Varied top-stripe accents per card position */
.bento .bento-card:nth-child(2)::before { background: var(--forest); opacity: 1; }
.bento .bento-card:nth-child(3)::before { background: var(--brass); opacity: 1; }
.bento .bento-card:nth-child(4)::before { background: var(--forest-mid); opacity: 1; }
.bento .bento-card:nth-child(5)::before { background: var(--brass-deep); opacity: 1; }
.bento .bento-card:nth-child(6)::before { background: var(--ink); opacity: 1; }
.bento-card.feature { grid-column: span 2; background: var(--forest-deep); color: var(--bg); border-color: var(--forest-deep); }
.bento-card.feature::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--brass);
  opacity: 1;
}
.bento-card.feature::after {
  content: "";
  position: absolute;
  top: 16px; right: 16px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--brass-bright);
  border-right: 2px solid var(--brass-bright);
}
.bento-card.feature h3 { color: #ffffff; }
.bento-card.feature p { color: rgba(240, 231, 209, 0.82); }
.bento-card.feature .bento-link { color: var(--brass-bright); }
.bento-card.feature .bento-link:hover { color: #ffffff; }
.bento-card.feature .icon-tile { background: rgba(156, 124, 56, 0.22); color: var(--brass-bright); border-color: rgba(201, 164, 74, 0.4); }
.bento-card.wide { grid-column: span 4; }
.bento-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.bento-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; line-height: 1.55; }
.icon-tile {
  width: 46px; height: 46px;
  background: var(--paper-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--forest);
  margin-bottom: 22px;
}
.icon-tile svg { width: 22px; height: 22px; }
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-deep);
  transition: gap var(--dur) var(--ease);
}
.bento-link:hover { gap: 10px; color: var(--ink); }
.bento-link .btn-icon { width: 14px; height: 14px; }

/* ---------- FAQ 50/50 split layout — image left, accordion right ---------- */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  margin-top: 32px;
}
.faq-split-image {
  position: relative;
  border: 1px solid var(--ink);
  overflow: hidden;
  min-height: 400px;
  align-self: stretch;
  height: 100%;
  background-color: var(--bg-alt);
  background-image: url("../img/faq-feature.jpg");
  background-size: cover;
  background-position: center;
}
.faq-split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(26,58,40,0.55) 100%);
  pointer-events: none;
}
.faq-split-image-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(26,58,40,0.85);
  padding: 6px 12px;
  border: 1px solid var(--brass);
  z-index: 2;
}
.faq-split-image-caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  z-index: 2;
  font-variation-settings: "opsz" 36, "SOFT" 40;
}
.faq-split-image-caption small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}
.faq-split-content {
  display: flex;
  flex-direction: column;
}
.faq-split-content > .section-head { margin-bottom: 24px; }
@media (max-width: 900px) {
  .faq-split { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .faq-split-image { min-height: 280px; height: 280px; }
}

/* ---------- FAQ accordion (premium editorial details/summary) ---------- */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--bg);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item[open] { background: var(--paper-tint); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 22px 56px 22px 28px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--dur) var(--ease);
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--brass);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--forest);
}
.faq-item summary:hover { color: var(--brass-deep); }
.faq-item p {
  padding: 0 56px 26px 28px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
/* Left accent bar on open item, rotating colors */
.faq-item[open]::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--brass);
}
.faq-item:nth-child(7n+1)[open]::before { background: var(--forest); }
.faq-item:nth-child(7n+2)[open]::before { background: var(--brass); }
.faq-item:nth-child(7n+3)[open]::before { background: var(--ink); }
.faq-item:nth-child(7n+4)[open]::before { background: var(--forest-mid); }
.faq-item:nth-child(7n+5)[open]::before { background: var(--brass-deep); }
.faq-item:nth-child(7n+6)[open]::before { background: var(--moss-bright); }
.faq-item:nth-child(7n)[open]::before { background: var(--forest); }

/* ---------- Stats band (inverted: deep forest + brass numerals — premium contrast) ---------- */
.stats-band {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-bright) 100%);
}
.stats-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(184, 105, 63, 0.08) 0, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(74, 122, 90, 0.10) 0, transparent 50%);
  pointer-events: none;
}
.stats-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border: 0;
  position: relative;
  z-index: 1;
}
.stats-band .stat {
  padding: 8px 32px 0;
  border-right: 1px solid rgba(184, 105, 63, 0.22);
  text-align: left;
}
.stats-band .stat:first-child { padding-left: 0; }
.stats-band .stat:last-child { border-right: 0; padding-right: 0; }
.stats-band .stat b {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--brass-bright);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  line-height: 1;
  margin-bottom: 14px;
  font-feature-settings: "tnum", "lnum";
  display: block;
}
.stats-band .stat span {
  font-size: 0.9rem;
  color: rgba(237, 223, 208, 0.78);
  line-height: 1.55;
  display: block;
  font-family: var(--font-body);
}

/* ---------- Process section (4-step chapter protocol with rotating accents) ---------- */
.process .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 12px;
  background: var(--bg);
  border: 1px solid var(--ink);
}
.process .process-step {
  padding: 40px 28px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--bg);
  transition: background var(--dur) var(--ease);
}
.process .process-step:last-child { border-right: 0; }
.process .process-step:hover { background: var(--paper-tint); }
.process .process-step::before {
  content: "";
  position: absolute;
  left: 28px; top: 0;
  width: 36px;
  height: 4px;
  background: var(--brass);
}
.process .process-step:nth-child(1)::before { background: var(--forest); }
.process .process-step:nth-child(2)::before { background: var(--brass); }
.process .process-step:nth-child(3)::before { background: var(--forest-mid); }
.process .process-step:nth-child(4)::before { background: var(--ink); }
.process .process-num {
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.9;
  display: block;
  margin-bottom: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-feature-settings: "lnum";
}
.process .process-step:nth-child(1) .process-num { color: var(--forest); }
.process .process-step:nth-child(2) .process-num { color: var(--brass); }
.process .process-step:nth-child(3) .process-num { color: var(--forest-mid); }
.process .process-step:nth-child(4) .process-num { color: var(--ink); }
.process .process-num::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--ink);
  margin-top: 14px;
  opacity: 0.3;
}
.process .process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.process .process-step p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Marquee ticker (editorial mono with umber bullets) ---------- */
.marquee {
  background: var(--ink);
  color: var(--brass-soft);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 60s linear infinite;
  width: fit-content;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-soft);
  padding: 0 32px;
  position: relative;
}
.marquee-item::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Service area map section (premium territorial map) ---------- */
.map-section {
  padding: clamp(56px, 8vw, 110px) 0;
  background: var(--bg-alt);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 100% 0%, rgba(45, 90, 61, 0.04) 0, transparent 40%),
    radial-gradient(ellipse at 0% 100%, rgba(138, 74, 44, 0.04) 0, transparent 40%);
  pointer-events: none;
}
.map-section .wrap { position: relative; z-index: 1; }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 32px;
}
.map-copy h2 { margin-bottom: 18px; }
.map-copy p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.map-legend {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 30px;
}
.map-legend-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.map-legend-row:last-child { border-bottom: 0; }
.map-legend-marker {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 1.5px solid var(--ink);
  background: var(--forest);
  transform: translateY(2px);
}
.map-legend-marker.tier-2 { background: var(--brass); }
.map-legend-marker.tier-3 { background: var(--bg); }
.map-legend-marker.hq { background: var(--ink); border-color: var(--ink); border-radius: 50%; }
.map-legend-text {
  flex: 1;
}
.map-legend-text b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.map-legend-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.map-canvas {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--ink);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.map-canvas svg { width: 100%; height: 100%; display: block; }
.map-corner-tag {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.map-corner-tag-right {
  position: absolute;
  bottom: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
@media (max-width: 960px) {
  .map-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-band .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .stats-band .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 24px; }
  .stats-band .stat:nth-child(2) { border-right: 0; }
  .stats-band .stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
  .process .process-grid { grid-template-columns: 1fr 1fr; }
  .process .process-step:nth-child(2) { border-right: 0; }
  .process .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 36px; }
  .process .process-step:nth-child(n+3) { padding-top: 36px; }
}
@media (max-width: 640px) {
  .process .process-grid { grid-template-columns: 1fr; }
  .process .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .process .process-step:last-child { border-bottom: 0; }
  .stats-band .stats-grid { grid-template-columns: 1fr; }
  .stats-band .stat { border-bottom: 1px solid var(--line); padding: 0 0 24px; }
}

/* ---------- Species cards (per-card accent identity) ---------- */
.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--bg);
}
.species-card {
  padding: 36px 32px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--dur) var(--ease);
  border-top: 4px solid transparent;
}
.species-card:last-child { border-right: 0; }
.species-card:nth-child(1) { border-top-color: var(--forest); background: linear-gradient(180deg, rgba(216, 227, 218, 0.35) 0%, var(--bg) 25%); }
.species-card:nth-child(2) { border-top-color: var(--brass); background: linear-gradient(180deg, rgba(237, 223, 208, 0.5) 0%, var(--bg) 25%); }
.species-card:nth-child(3) { border-top-color: var(--ink); background: linear-gradient(180deg, rgba(28, 31, 28, 0.06) 0%, var(--bg) 25%); }
.species-card:hover { background: var(--paper-tint); }
.species-card::before {
  content: attr(data-num);
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brass-deep);
}
.species-card:nth-child(3)::before { color: var(--ink); }
.species-illus {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.species-card:nth-child(1) .species-illus { background: var(--forest-soft); color: var(--forest-deep); border-color: var(--forest); }
.species-card:nth-child(2) .species-illus { background: var(--brass-soft); color: var(--brass-deep); border-color: var(--brass); }
.species-card:nth-child(3) .species-illus { background: var(--ink); color: var(--brass-bright); border-color: var(--ink); }
.species-illus svg { width: 56px; height: 56px; }
.species-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.015em;
}
.species-latin {
  display: block;
  font-family: var(--font-mono);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--brass-deep);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.species-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.species-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.species-facts li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.species-facts li b {
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  padding-top: 2px;
}
.species-facts li span {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* ---------- Wood-grain texture (subtle background motif) ---------- */
.wood-grain {
  background-image:
    repeating-linear-gradient(
      180deg,
      var(--paper-tint) 0px,
      var(--paper-tint) 2px,
      transparent 2px,
      transparent 14px
    );
}

/* ---------- Credentials strip (under page-hero) ---------- */
.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  margin: 0;
}
.cred-strip-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.cred-strip-item:last-child { border-right: 0; }
.cred-strip-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 6px;
}
.cred-strip-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.cred-strip-value small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 3px;
}

/* ---------- Signs grid (homepage) ---------- */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sign-card {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
}
.sign-card:hover { border-color: var(--forest); transform: translateY(-3px); box-shadow: 0 12px 28px -16px var(--forest-glow); }
.sign-card { display: flex; gap: 18px; align-items: flex-start; }
.sign-card .icon-mini {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 0;
  border: 1px solid var(--line);
}
.sign-card .icon-mini svg { width: 22px; height: 22px; }
/* Rotating icon-tile colors — each sign card carries a different accent */
.signs-grid .sign-card:nth-child(6n+1) .icon-mini { background: var(--forest-soft); color: var(--forest-deep); border-color: var(--forest); }
.signs-grid .sign-card:nth-child(6n+2) .icon-mini { background: var(--brass-soft); color: var(--brass-deep); border-color: var(--brass); }
.signs-grid .sign-card:nth-child(6n+3) .icon-mini { background: var(--bg-deep); color: var(--ink); border-color: var(--line-strong); }
.signs-grid .sign-card:nth-child(6n+4) .icon-mini { background: var(--paper-tint); color: var(--forest); border-color: var(--forest-mid); }
.signs-grid .sign-card:nth-child(6n+5) .icon-mini { background: var(--ink); color: var(--brass-bright); border-color: var(--ink); }
.signs-grid .sign-card:nth-child(6n) .icon-mini { background: var(--brass); color: #ffffff; border-color: var(--brass-deep); }
.sign-card h4 { margin-bottom: 8px; font-size: 1.05rem; color: var(--ink); }
.sign-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Stats grid ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { text-align: left; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { font-size: 0.88rem; color: var(--muted); }

/* ---------- Pricing / compare table ---------- */
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 0;
  overflow: hidden;
  font-size: 0.95rem;
  margin: 28px 0;
}
.compare thead { background: var(--forest-deep); }
.compare th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-bright);
  border-bottom: 1px solid var(--forest-deep);
}
.compare td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.compare td:nth-child(2) { font-family: var(--font-mono); font-feature-settings: "tnum"; color: var(--ink); font-weight: 500; }
.compare td:nth-child(3) { font-family: var(--font-mono); font-size: 0.88rem; color: var(--muted); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:nth-child(even) { background: var(--paper-tint); }
.compare tbody tr:hover { background: var(--forest-soft); }
.compare tbody tr:hover td.yes::after { background: var(--forest); }
.compare td.yes {
  color: transparent;
  position: relative;
  font-size: 0;
}
.compare td.yes::after {
  content: "FREE";
  display: inline-block;
  padding: 4px 10px;
  background: var(--brass);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}
.compare td.no { color: var(--muted); font-style: italic; }

/* ---------- Areas list (location hub) ---------- */
.areas-list {
  columns: 3;
  column-gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.areas-list li {
  break-inside: avoid;
  margin-bottom: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.areas-list a { color: var(--ink); font-size: 0.94rem; }
.areas-list a:hover { color: var(--coral); }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  padding: 18px 0;
  font-size: 0.84rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brass-deep); }
.crumbs span { color: var(--line-strong); margin: 0 8px; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--forest-deep);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--brass);
  pointer-events: none;
}
.final-cta h2 { color: #ffffff; margin-bottom: 14px; }
.final-cta h2 .accent { color: var(--brass-bright); font-style: normal; }
.final-cta p { color: rgba(240, 231, 209, 0.86); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta .btn-primary { background: var(--brass); border-color: var(--brass); box-shadow: 0 1px 0 var(--brass-deep); }
.final-cta .btn-primary:hover { background: #ffffff; color: var(--forest-deep); border-color: #ffffff; box-shadow: 0 12px 32px -8px rgba(0,0,0,0.3); }
.final-cta .btn-ghost { color: #ffffff; border-color: rgba(240, 231, 209, 0.4); background: transparent; }
.final-cta .btn-ghost:hover { background: rgba(240, 231, 209, 0.08); color: #ffffff; border-color: var(--brass-bright); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(230, 224, 208, 0.7);
  padding: 80px 0 36px;
  font-size: 0.92rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--brass);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .brand { color: var(--bg); }
.footer-brand .brand-name { color: var(--bg); }
.footer-nap {
  margin-top: 22px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.footer-nap b { display: block; color: var(--bg); margin-bottom: 4px; font-weight: 600; }
.footer-nap a { color: var(--brass-bright); }
.footer-nap a:hover { color: #ffffff; }
.footer-col h5 {
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255, 255, 255, 0.65); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--brass-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: var(--brass-bright); }

/* ---------- Card shells ---------- */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

/* ---------- Pills & tags ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ---------- Responsive ---------- */
/* ======================================================================
   RESPONSIVE — comprehensive mobile audit
   - 960px: tablet (3-col grids → 2-col, hero stacks)
   - 720px: mobile landscape (2-col → 1-col, compact header)
   - 480px: mobile portrait (tight padding, hide subtitles)
   ====================================================================== */

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card, .bento-card.feature { grid-column: span 1; }
  .bento-card.wide { grid-column: span 2; }
  .signs-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .areas-list { columns: 2; }
  .species-grid { grid-template-columns: 1fr; }
  .species-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .species-card:last-child { border-bottom: 0; }
  .map-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  /* Topbar — compact, hide left pill */
  .topbar { font-size: 0.7rem; padding: 8px 0; letter-spacing: 0.02em; }
  .topbar .wrap { gap: 8px; justify-content: flex-end; padding: 0 16px; }
  .topbar-left { display: none; }
  .topbar-right { gap: 14px; }
  .topbar a { font-size: 0.78rem; }

  /* Site header — compact, hide nav-links + brand subtitle */
  .site-header .nav { padding: 12px 16px; gap: 12px; }
  .brand { gap: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 0.96rem; line-height: 1; letter-spacing: -0.01em; }
  .brand-name small { display: none; }
  .nav-links { display: none; }
  .mobile-nav { display: inline-flex; }
  .nav-cta { padding: 9px 14px; font-size: 0.84rem; gap: 6px; }
  .nav-cta .btn-icon { width: 14px; height: 14px; }

  /* Hero — reduce padding, scale H1 */
  .hero { padding: clamp(40px, 8vw, 64px) 0 clamp(48px, 10vw, 80px); }
  .hero h1 { font-size: clamp(2.1rem, 7.5vw, 2.8rem); }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 18px 24px; padding-top: 22px; }
  .hero-trust-item b { font-size: 1.5rem; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 12px 18px; font-size: 0.92rem; }

  /* Page-hero (cross pages) */
  .page-hero { padding: clamp(40px, 8vw, 64px) 0 clamp(28px, 5vw, 48px); }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .page-hero p.lede { font-size: 1rem; }

  /* Section padding — tighter on mobile */
  .section { padding: clamp(40px, 8vw, 64px) 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(1.65rem, 6vw, 2.1rem); }

  /* Bento + signs + stats — single column */
  .bento { grid-template-columns: 1fr; gap: 16px; }
  .bento-card, .bento-card.feature, .bento-card.wide { grid-column: span 1; padding: 26px 22px; }
  .signs-grid { grid-template-columns: 1fr; gap: 16px; }
  .sign-card { padding: 22px 20px; }
  .stats-band { padding: clamp(40px, 7vw, 64px) 0; }
  .stats-band .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .stats-band .stat { padding: 0 0 18px 0; border-right: 0; border-bottom: 1px solid rgba(184,105,63,0.18); }
  .stats-band .stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
  .stats-band .stat b { font-size: clamp(2.2rem, 9vw, 3rem); }

  /* Process — stacked */
  .process .process-grid { grid-template-columns: 1fr; }
  .process .process-step { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 22px; }
  .process .process-step:last-child { border-bottom: 0; }
  .process .process-num { font-size: 3.4rem; margin-bottom: 16px; }

  /* Map — stack legend above canvas */
  .map-section { padding: clamp(40px, 8vw, 64px) 0; }
  .map-grid { gap: 28px; }
  .map-canvas { aspect-ratio: 5 / 4; }
  .map-corner-tag, .map-corner-tag-right { font-size: 0.6rem; letter-spacing: 0.16em; }

  /* FAQ split — stacked */
  .faq-split { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .faq-split-image { min-height: 240px; height: 240px; }
  .faq-item summary { font-size: 1rem; padding: 18px 48px 18px 22px; }
  .faq-item summary::after { right: 18px; font-size: 1.6rem; }
  .faq-item p { padding: 0 22px 22px 22px; font-size: 0.94rem; }

  /* Areas list (homepage neighborhoods grid) */
  .areas-list { columns: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Compare table */
  .compare { font-size: 0.86rem; }
  .compare th, .compare td { padding: 12px 12px; }
  .compare th { font-size: 0.66rem; letter-spacing: 0.08em; }

  /* Final CTA */
  .final-cta { padding: clamp(48px, 9vw, 72px) 0; }
  .final-cta h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }

  /* Marquee — slightly tighter */
  .marquee { padding: 11px 0; }
  .marquee-item { font-size: 0.7rem; padding: 0 22px; letter-spacing: 0.12em; }

  /* Crumbs */
  .crumbs { padding: 14px 0; font-size: 0.76rem; }
  .crumbs span { margin: 0 6px; }
}

@media (max-width: 480px) {
  /* Tightest screens — single phone view */
  .topbar a:not([href^="tel"]) { display: none; }
  .topbar .wrap { justify-content: center; }
  .site-header .nav { padding: 10px 12px; gap: 8px; }
  .brand-name { font-size: 0.86rem; max-width: 140px; }
  .nav-cta { padding: 8px 11px; font-size: 0.78rem; }
  .wrap, .wrap-narrow { padding: 0 16px; }
  .hero, .page-hero { padding-left: 0; padding-right: 0; }
  .stats-band .stats-grid { grid-template-columns: 1fr; }
  .stats-band .stat:nth-child(-n+3) { border-bottom: 1px solid rgba(184,105,63,0.18); padding-bottom: 18px; }
  .stats-band .stat:last-child { border-bottom: 0; }
  .compare th, .compare td { padding: 10px 8px; font-size: 0.82rem; }
}

/* ---------- Global mobile safety rules (apply at any width) ---------- */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video, svg, iframe { max-width: 100%; height: auto; }
table { max-width: 100%; }
.prose a, .prose p, .prose li { word-wrap: break-word; overflow-wrap: anywhere; }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 720px) {
  /* Force any wide table to scroll instead of pushing the page */
  .compare { display: block; overflow-x: auto; white-space: nowrap; }
  .compare tbody, .compare thead, .compare tr { display: table-row-group; }
  /* Prevent hero image from being letterboxed too aggressively */
  .hero, .page-hero { background-size: cover; background-position: center; }
  /* Long pricing tables stack cleanly */
  .pricing-table { font-size: 0.86rem; }
  .pricing-table th, .pricing-table td { padding: 10px 8px; }
  /* Footer columns full width */
  .footer-grid { grid-template-columns: 1fr !important; }
  /* Prevent the FAQ image caption from clipping */
  .faq-split-image-caption { font-size: 0.78rem; }
}

/* ---------- MO City internal-linking module: sibling-coverage + cross-service pills ---------- */
.areas-section {
  background: var(--bone, #f7f4eb);
  padding: clamp(56px, 8vw, 88px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.areas-section .areas-content { max-width: 980px; margin: 0 auto; }
.areas-section h2 {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  letter-spacing: -0.015em;
  margin: 8px 0 14px;
  color: var(--ink);
}
.areas-section p { color: var(--text-muted, #5e3018); line-height: 1.7; margin-bottom: 22px; max-width: 760px; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill {
  display: inline-flex;
  flex-direction: column;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.area-pill small {
  display: block;
  font-size: 0.74rem;
  color: var(--brass-deep, #b8693f);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.area-pill:hover {
  border-color: var(--brass, #ddbb66);
  background: var(--paper-tint, #faf6ea);
  transform: translateY(-1px);
}

.cross-service-section {
  background: #fff;
  padding: clamp(56px, 8vw, 88px) 0;
}
.cross-service-section .wrap-narrow { max-width: 980px; }
.cross-service-section h2 {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  letter-spacing: -0.015em;
  margin: 8px 0 14px;
  color: var(--ink);
}
.cross-service-section p { color: var(--text-muted, #5e3018); line-height: 1.7; margin-bottom: 22px; max-width: 760px; }
.service-pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.service-pill {
  display: inline-flex;
  flex-direction: column;
  padding: 12px 18px;
  background: var(--paper-tint, #faf6ea);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.service-pill small {
  display: block;
  font-size: 0.74rem;
  color: var(--brass-deep, #b8693f);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.service-pill:hover {
  border-color: var(--brass, #ddbb66);
  background: #fff;
  transform: translateY(-1px);
}

/* ---------- Skip link + a11y ---------- */
.skip-link { position: absolute; left: -10000px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; background: var(--ink); color: var(--bg); padding: 10px 16px; border-radius: 6px; z-index: 100; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 3px; }

/* ---------- SVG sprite hidden host ---------- */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
