:root {
  color-scheme: light;
  --ink: #061f2f;
  --ink-soft: #17354a;
  --muted: #5e6a70;
  --paper: #f3f3f2;
  --paper-strong: #edeceb;
  --white: #ffffff;
  --line: #dedddb;
  --moss: #115439;
  --moss-dark: #001457;
  --moss-soft: #e5f5e9;
  --terminix-green: #20aa4d;
  --terminix-green-dark: #115439;
  --terminix-green-soft: #a6ddb8;
  --terminix-navy: #001457;
  --clay: #ebce75;
  --clay-soft: #fbf3d6;
  --bayou: #001457;
  --bayou-soft: #dcedef;
  --leaf: #20aa4d;
  --field: #fbfbfb;
  --warning: #a9432f;
  --ring: rgba(32, 170, 77, 0.28);
  --shadow: 0 24px 64px rgba(0, 20, 87, 0.13);
  --soft-shadow: 0 12px 30px rgba(0, 20, 87, 0.08);
  --lift-shadow: 0 18px 42px rgba(0, 20, 87, 0.12);
  --radius: 6px;
  --font-body: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(229, 245, 233, 0.7), rgba(243, 243, 242, 0.45) 430px, transparent 780px),
    var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 4px;
}

#services,
#territory,
#method,
#lead,
#faq {
  scroll-margin-top: 0;
}

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

.icon {
  width: 1.125rem;
  height: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.125rem;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(22, 131, 58, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(22, 33, 30, 0.05);
}

.nav-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-text {
  min-width: 0;
}

.brand-mark {
  width: 154px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--terminix-green);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--terminix-navy);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--moss);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-phone,
.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.nav-phone {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(32, 170, 77, 0.24);
  border-radius: var(--radius);
  color: var(--terminix-green-dark);
  background: rgba(32, 170, 77, 0.09);
  font-weight: 950;
}

.nav-cta {
  padding: 0 16px;
  color: var(--white);
  background: var(--terminix-green);
  box-shadow: 0 10px 24px rgba(22, 131, 58, 0.22);
}

.button {
  padding: 0 18px;
  max-width: 100%;
  text-align: center;
  overflow-wrap: break-word;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active,
.nav-cta:active {
  transform: translateY(0);
}

.button-primary {
  color: var(--white);
  background: var(--terminix-green);
  box-shadow: 0 14px 30px rgba(32, 170, 77, 0.3);
}

.button-primary:hover {
  background: var(--terminix-green-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-dark {
  color: var(--white);
  background: var(--terminix-navy);
}

.button-dark:hover {
  background: #061f2f;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: none;
  place-items: center;
}

.hero {
  min-height: min(680px, calc(100svh - 118px));
  display: grid;
  align-items: center;
  padding: 58px 0 48px;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(6, 38, 22, 0.96) 0%, rgba(8, 47, 28, 0.8) 44%, rgba(9, 22, 18, 0.28) 100%),
    url("/assets/hero-scott-vent-assessment.png");
  background-size: cover;
  background-position: center right;
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: end;
}

.hero-panel {
  min-width: 0;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  padding: 18px;
  background: rgba(5, 33, 19, 0.22);
}

.hero-proof span,
.hero-proof strong {
  display: block;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 1.02rem;
}

.disclosure {
  grid-column: 1 / -1;
  max-width: 820px;
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid rgba(246, 177, 104, 0.72);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.signal-band {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(220, 237, 239, 0.5), rgba(255, 255, 255, 0.96)),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  width: min(1160px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.signal-grid div {
  min-width: 0;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #273630;
  font-weight: 900;
}

.signal-grid div span:last-child {
  min-width: 0;
  overflow-wrap: break-word;
}

.signal-grid .icon {
  color: var(--moss);
}

.section,
.method-inner,
.lead-section,
.faq-section,
.territory-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.intro-section,
.bilingual-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.section h2,
.terminix-section h2,
.method-section h2,
.lead-section h2,
.faq-section h2,
.territory-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-copy > p:last-child,
.intro-text p,
.lead-copy p,
.bilingual-section > p,
.section-heading p,
.territory-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-text p:first-child {
  margin-top: 0;
}

.services-section {
  border-top: 1px solid var(--line);
}

.terminix-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.terminix-section .section-heading {
  max-width: 820px;
}

.terminix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.terminix-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.terminix-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--terminix-green);
}

.terminix-grid .icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--terminix-navy);
}

.terminix-grid h3 {
  margin: 22px 0 10px;
  font-size: 1.12rem;
}

.terminix-grid p {
  margin: 0;
  color: var(--muted);
}

.expertise-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.expertise-grid article {
  position: relative;
  min-height: 244px;
  padding: 24px;
  border: 1px solid rgba(23, 96, 79, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(219, 232, 223, 0.58), rgba(255, 255, 255, 0.94)),
    var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.expertise-grid article::after,
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--terminix-green);
  opacity: 1;
}

.expertise-grid article:hover,
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 96, 79, 0.26);
  box-shadow: var(--lift-shadow);
}

.expertise-grid span {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--terminix-navy);
  font-size: 0.84rem;
  font-weight: 950;
}

.expertise-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
}

.expertise-grid p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 690px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 268px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-icon {
  width: 44px;
  height: 44px;
  padding: 9px;
  border-radius: var(--radius);
  color: var(--terminix-navy);
  background: var(--paper);
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 1.16rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.territory-section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.territory-copy {
  max-width: 780px;
  margin-bottom: 34px;
}

.territory-intel {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.territory-summary {
  position: sticky;
  top: 96px;
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(32, 170, 77, 0.18), transparent 46%),
    var(--terminix-navy);
  box-shadow: var(--shadow);
}

.territory-summary .section-kicker {
  color: var(--clay);
}

.territory-summary h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  line-height: 1.05;
}

.territory-summary p {
  color: rgba(255, 255, 255, 0.74);
}

.territory-signal-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.territory-signal-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 850;
}

.territory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.territory-area-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.territory-area-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--terminix-green);
}

.area-pressure {
  margin: 0 0 10px;
  color: var(--terminix-green-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.territory-area-card h3 {
  margin: 0;
  color: var(--terminix-navy);
  font-size: 1.18rem;
  line-height: 1.15;
}

.territory-area-card p:not(.area-pressure) {
  margin: 12px 0 0;
  color: var(--muted);
}

.territory-area-card dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 18px;
}

.territory-area-card dl div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.territory-area-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.territory-area-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.territory-add {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(32, 170, 77, 0.26);
  border-radius: var(--radius);
  color: var(--terminix-green-dark);
  background: rgba(32, 170, 77, 0.08);
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.territory-add:hover,
.territory-add:focus-visible {
  border-color: rgba(32, 170, 77, 0.42);
  background: rgba(32, 170, 77, 0.13);
  transform: translateY(-1px);
}

.territory-add.is-selected {
  color: var(--white);
  border-color: var(--terminix-green);
  background: var(--terminix-green);
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  display: inline-block;
}

.legend-dot.vector {
  background: var(--bayou);
}

.legend-dot.termite {
  background: var(--clay);
}

.legend-dot.ant {
  background: var(--moss);
}

.legend-dot.moisture {
  background: var(--bayou);
}

.data-source-strip {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.data-source-strip a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--moss-dark);
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.data-source-strip a:hover {
  border-color: rgba(23, 96, 79, 0.28);
  background: var(--white);
  transform: translateY(-1px);
}

.method-section {
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(190, 113, 54, 0.16), transparent 32%),
    var(--moss-dark);
}

.method-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.method-inner .section-kicker {
  color: #f0a13f;
}

.method-inner p {
  color: rgba(255, 255, 255, 0.74);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.method-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.method-list span {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--moss-dark);
  background: #eff5ed;
  font-weight: 950;
}

.method-list h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.method-list p {
  margin: 0;
}

.bilingual-section {
  border-bottom: 1px solid var(--line);
}

.lead-section {
  padding: 92px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.lead-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.direct-phone-card {
  margin-top: 26px;
  padding: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(32, 170, 77, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(32, 170, 77, 0.09);
  box-shadow: 0 10px 24px rgba(22, 33, 30, 0.06);
}

.direct-phone-card > .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--terminix-navy);
}

.direct-phone-card small,
.direct-phone-card strong {
  display: block;
}

.direct-phone-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.direct-phone-card strong {
  margin-top: 2px;
  font-size: 1.12rem;
}

.lead-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #25352f;
  font-weight: 900;
}

.lead-points .icon {
  color: var(--terminix-green);
}

.lead-form {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--terminix-green);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #273631;
  font-weight: 900;
}

.lead-form label > span {
  font-size: 0.92rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #c9d4cc;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--field);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--terminix-green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(32, 170, 77, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(32, 170, 77, 0.14);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(32, 170, 77, 0.08);
  font-weight: 700;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--terminix-green);
}

.form-submit {
  width: 100%;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 900;
}

.form-status.success {
  color: var(--moss);
}

.form-status.error {
  color: var(--warning);
}

.faq-section {
  padding: 0 0 92px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(22, 33, 30, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(23, 96, 79, 0.22);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 950;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--moss);
  font-weight: 950;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  min-height: 108px;
  padding: 24px max(16px, calc((100% - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: #101916;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  font-weight: 950;
  color: #f0a13f;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-radius: var(--radius);
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 42px;
    background-image:
      linear-gradient(90deg, rgba(11, 19, 17, 0.94) 0%, rgba(11, 19, 17, 0.76) 58%, rgba(11, 19, 17, 0.42) 100%),
      url("/assets/hero-scott-vent-assessment.png");
  }

  .hero-content,
  .territory-intel,
  .intro-section,
  .bilingual-section,
  .method-inner,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .territory-summary {
    position: static;
  }

  .territory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .disclosure {
    margin-top: -10px;
  }

  .signal-grid,
  .service-grid,
  .terminix-grid,
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-inner,
  .intro-section,
  .bilingual-section,
  .lead-section {
    gap: 36px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-bottom: 76px;
  }

  #services,
  #territory,
  #method,
  #lead,
  #faq {
    scroll-margin-top: 0;
  }

  .nav-shell,
  .hero-content,
  .signal-grid,
  .section,
  .terminix-section,
  .expertise-section,
  .method-inner,
  .lead-section,
  .faq-section,
  .territory-section {
    width: min(1160px, calc(100% - 24px));
  }

  .nav-shell {
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 134px;
    height: 32px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    padding: 28px 0 12px;
    background-image:
      linear-gradient(180deg, rgba(8, 15, 13, 0.82) 0%, rgba(8, 15, 13, 0.62) 48%, rgba(8, 15, 13, 0.9) 100%),
      url("/assets/hero-scott-vent-assessment.png");
    background-position: 63% center;
  }

  .hero-content {
    max-width: calc(100vw - 24px);
  }

  .hero h1 {
    max-width: calc(100vw - 24px);
    font-size: clamp(1.95rem, 8.4vw, 2.22rem);
    line-height: 1;
  }

  .hero-copy {
    max-width: calc(100vw - 24px);
    margin-top: 18px;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-proof {
    display: none;
  }

  .disclosure {
    margin-top: 0;
  }

  .signal-grid,
  .service-grid,
  .terminix-grid,
  .expertise-grid,
  .territory-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 0;
  }

  .signal-grid div {
    min-height: 58px;
    padding: 10px;
    border: 1px solid rgba(23, 96, 79, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 20px rgba(22, 33, 30, 0.05);
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .section,
  .terminix-section,
  .expertise-section,
  .territory-section,
  .lead-section,
  .method-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-card,
  .terminix-grid article,
  .expertise-grid article {
    min-height: 0;
    padding: 20px;
  }

  .direct-phone-card {
    width: 100%;
  }

  .service-card h3 {
    margin-top: 18px;
  }

  .territory-summary,
  .territory-area-card {
    padding: 20px;
  }

  .territory-signal-list {
    grid-template-columns: 1fr;
  }

  .territory-area-card {
    grid-template-rows: auto;
  }

  .territory-add {
    width: 100%;
  }

  .method-list li {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--moss), #0f7860);
    box-shadow: 0 16px 40px rgba(15, 54, 47, 0.28);
    font-weight: 950;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 9vw, 2.04rem);
  }

  .section h2,
  .terminix-section h2,
  .method-section h2,
  .lead-section h2,
  .faq-section h2,
  .territory-section h2 {
    font-size: 1.9rem;
    line-height: 1.05;
  }

  .territory-area-card h3 {
    font-size: 1.08rem;
  }
}

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