:root {
  --navy: #061c3d;
  --navy-soft: #1a3155;
  --gold: #ffc759;
  --gold-deep: #f0b93e;
  --cream: #fff9ee;
  --cream-strong: #fff4dd;
  --page-border: rgba(6, 28, 61, 0.08);
  --page-border-strong: rgba(6, 28, 61, 0.14);
  --text-muted: rgba(6, 28, 61, 0.7);
  --text-muted-strong: rgba(6, 28, 61, 0.75);
  --text-faint: rgba(6, 28, 61, 0.6);
  --text-location: #42526b;
  --white-soft: rgba(255, 255, 255, 0.72);
  --white-muted: rgba(255, 255, 255, 0.7);
  --white-faint: rgba(255, 255, 255, 0.5);
  --shadow-card: 0 24px 60px -12px rgba(6, 28, 61, 0.35);
  --shadow-hero: 0 30px 80px -10px rgba(6, 28, 61, 0.18);
  --shadow-map: 0 20px 50px -10px rgba(6, 28, 61, 0.12);
  --shadow-float: 0 12px 36px rgba(6, 28, 61, 0.18);
  --section-space: 88px;
  --section-head-space: 52px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  font-family: "Inter", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

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

.wrap {
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section,
.section-dark,
.locations-section,
.cta-band,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-cream {
  background: var(--cream);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 834px;
  margin-bottom: var(--section-head-space);
}

.section-head--wide {
  max-width: 700px;
  margin-bottom: var(--section-head-space);
}

.eyebrow {
  margin: 0;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.eyebrow--light {
  color: var(--gold);
}

.eyebrow--small {
  font-size: 11px;
  letter-spacing: 1.5px;
}

.section-title {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1.04px;
}

.section-title--light {
  color: #fff;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.96px;
}

.section-title--faq {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.88px;
}

.section-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-copy--light {
  color: var(--white-muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-copy--faq {
  color: rgba(6, 28, 61, 0.65);
  font-size: 15px;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 199, 89, 0.45);
  outline-offset: 3px;
}

.btn-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.btn-icon--lg {
  width: 28px;
  height: 28px;
}

.btn-primary {
  padding: 0 20px 0 24px;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(240, 185, 62, 0.45);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffcd67;
  box-shadow: 0 14px 34px rgba(240, 185, 62, 0.5);
}

.btn-primary:active {
  background: #f0b93e;
  box-shadow: 0 8px 18px rgba(240, 185, 62, 0.34);
}

.btn-primary--flat {
  box-shadow: none;
}

.btn-dark {
  padding: 0 20px 0 22px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 18px rgba(6, 28, 61, 0.15);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #0d2a57;
  box-shadow: 0 12px 28px rgba(6, 28, 61, 0.22);
}

.btn-dark:active {
  background: #04152f;
  box-shadow: 0 6px 14px rgba(6, 28, 61, 0.16);
}

.btn-dark--compact {
  padding-left: 20px;
}

.btn-dark--full {
  width: 100%;
  justify-content: center;
  color: var(--gold);
}

.btn:disabled {
  opacity: 0.78;
  cursor: wait;
}

.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  box-shadow: 0 0 0 rgba(6, 28, 61, 0);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(6, 28, 61, 0.06);
  box-shadow: 0 10px 24px rgba(6, 28, 61, 0.08);
}

.btn-outline:active {
  background: rgba(6, 28, 61, 0.12);
  box-shadow: 0 4px 12px rgba(6, 28, 61, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid #e6e8ec;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

main > section[id] {
  scroll-margin-top: 108px;
}

.announce-bar {
  display: none;
}

.nav-bar {
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 64px;
  height: 48px;
  object-fit: contain;
}

.brand-wordmark {
  font-family: "Lexend", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(6, 28, 61, 0.75);
  font-size: 14px;
  font-weight: 500;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--navy);
  background: rgba(255, 199, 89, 0.16);
}

.nav-link.active {
  color: var(--navy);
  font-weight: 600;
  background: rgba(255, 199, 89, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 199, 89, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.hero-section {
  background: var(--cream);
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 620px);
  align-items: center;
  gap: 60px;
}

.hero-copy-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.hero-kicker-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 7px;
  width: 7px;
  height: 12px;
  margin-right: -1px;
  overflow: visible;
}

.hero-kicker-mark img {
  display: block;
  width: 12px;
  height: 7px;
  max-width: none;
  transform: rotate(-90deg);
  transform-origin: center;
}

.hero-kicker-text {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 3px;
  background: var(--gold);
  padding: 6px 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.hero-title {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -2.1px;
}

.hero-lead {
  margin: 0;
  color: var(--text-muted-strong);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: "Lexend", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.stat-star {
  width: 24px;
  height: 24px;
}

.stat-label {
  margin: 0;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.hero-image-frame {
  overflow: hidden;
  min-height: 640px;
  border-radius: 36px;
  box-shadow: var(--shadow-hero);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-bar {
  background: var(--cream-strong);
  padding: 24px 0;
}

.trust-marquee {
  overflow: hidden;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-marquee 24s linear infinite;
}

.trust-list {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  color: rgba(6, 28, 61, 0.45);
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 340px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid transparent;
  padding: 32px 28px;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  background: var(--navy);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.service-label {
  margin: 0;
  color: rgba(6, 28, 61, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.service-card--featured .service-label {
  color: var(--gold-deep);
}

.service-card:hover .service-label,
.service-card:focus-within .service-label {
  color: var(--gold);
}

.service-title {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.23px;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.service-card:hover .service-title,
.service-card:focus-within .service-title {
  color: #fff;
}

.service-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.service-card:hover .service-copy,
.service-card:focus-within .service-copy {
  color: rgba(255, 255, 255, 0.78);
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.service-card:hover .service-link,
.service-card:focus-within .service-link {
  color: var(--gold);
}

.service-link-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 0;
  line-height: 1;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    background-color 220ms ease;
}

.service-link-icon::before {
  content: "\2192";
  font-size: 14px;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: translateY(-2px) scale(1.04);
}

.service-card:hover .service-title,
.service-card:focus-within .service-title {
  transform: translateY(-1px);
}

.service-card:hover .service-copy,
.service-card:focus-within .service-copy {
  transform: translateY(-1px);
}

.service-card:hover .service-link,
.service-card:focus-within .service-link {
  transform: translateY(-1px);
}

.service-card:hover .service-link-icon,
.service-card:focus-within .service-link-icon {
  transform: translateX(3px);
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pest-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--page-border);
  border-radius: 20px;
  background: #fff;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.pest-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 28, 61, 0.14);
  box-shadow: 0 22px 52px -24px rgba(6, 28, 61, 0.28);
}

.pest-media {
  position: relative;
  height: 220px;
  background: #efd98e;
  overflow: hidden;
}

.pest-media img {
  width: 100%;
  height: 100%;
  transition:
    transform 280ms ease,
    filter 280ms ease;
}

.pest-card:hover .pest-media img {
  transform: scale(1.045);
}

.fit-cover img {
  object-fit: cover;
}

.fit-contain img {
  object-fit: contain;
}

.fit-wildlife img {
  position: absolute;
  top: 5.84%;
  left: -7.72%;
  width: 124.5%;
  height: 105.76%;
  max-width: none;
  object-fit: contain;
}

.pest-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.pest-card:hover .pest-badge {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(6, 28, 61, 0.08);
}

.pest-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 146px;
  padding: 18px 20px 22px;
  transition: transform 220ms ease;
}

.pest-card:hover .pest-body {
  transform: translateY(-2px);
}

.pest-title {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.15;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.pest-card:hover .pest-title {
  color: var(--navy-soft);
  transform: translateY(-1px);
}

.pest-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.pest-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.23;
  transition: color 220ms ease;
}

.pest-card:hover .pest-copy {
  color: rgba(6, 28, 61, 0.78);
}

.pest-arrow {
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.pest-card:hover .pest-arrow {
  transform: translateX(4px);
  color: var(--navy);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
  row-gap: 20px;
}

.checklist-card {
  min-height: 300px;
  border-radius: 24px;
  background: var(--cream);
  padding: 32px 28px;
}

.checklist-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.checklist-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.checklist-title {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.26;
  letter-spacing: -0.23px;
}

.checklist-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.checklist-item img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  min-height: 231px;
  border-radius: 24px;
  background: var(--cream);
  padding: 32px 28px;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  padding: 8px 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.process-title {
  margin: 20px 0;
  font-family: "Lexend", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.process-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: var(--section-space) 0;
}

.why-us::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 420px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #0a3449;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 640px);
  gap: 80px;
  align-items: start;
}

.why-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

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

.why-card {
  min-height: 204px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-4px);
  background: rgba(255, 199, 89, 0.3);
  border-color: rgba(255, 199, 89, 0.4);
  box-shadow: 0 20px 44px -24px rgba(255, 199, 89, 0.42);
}

.why-icon-shell {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.why-icon-shell img {
  width: 32px;
  height: 32px;
}

.why-card:hover .why-icon-shell,
.why-card:focus-within .why-icon-shell {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px rgba(6, 28, 61, 0.12);
}

.why-card-title {
  margin: 14px 0;
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  transition: transform 220ms ease;
}

.why-card-copy {
  margin: 0;
  color: var(--white-muted);
  font-size: 14px;
  line-height: 1.35;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.why-card:hover .why-card-title,
.why-card:focus-within .why-card-title,
.why-card:hover .why-card-copy,
.why-card:focus-within .why-card-copy {
  transform: translateY(-1px);
}

.why-card:hover .why-card-copy,
.why-card:focus-within .why-card-copy {
  color: rgba(255, 255, 255, 0.82);
}

.locations-section {
  padding: var(--section-space) 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 32px;
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  background: var(--cream);
  padding: 16px 24px;
  box-shadow: 0 0 0 rgba(33, 27, 22, 0);
}

.locations-grid.has-reveal .location-chip {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}

.locations-grid.has-reveal.is-visible .location-chip {
  animation: location-chip-reveal 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-index, 0) * 85ms);
}

.location-chip img {
  width: 24px;
  height: 24px;
}

.location-chip span {
  color: var(--text-location);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

@keyframes location-chip-reveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(6px);
    box-shadow: 0 0 0 rgba(33, 27, 22, 0);
  }

  65% {
    opacity: 1;
    transform: translateY(-3px) scale(1.01);
    filter: blur(0);
    box-shadow: 0 18px 34px rgba(33, 27, 22, 0.08);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow: 0 0 0 rgba(33, 27, 22, 0);
  }
}

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: var(--section-head-space);
}

.reviews-head .section-head {
  margin-bottom: 0;
}

.reviews-toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
}

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(6, 28, 61, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.reviews-button:hover,
.reviews-button:focus-visible {
  border-color: rgba(255, 199, 89, 0.8);
  background: rgba(255, 199, 89, 0.22);
  box-shadow: 0 12px 24px rgba(6, 28, 61, 0.08);
  transform: translateY(-1px);
}

.reviews-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(6, 28, 61, 0.08);
}

.reviews-button:disabled {
  cursor: default;
  opacity: 0.4;
  background: rgba(6, 28, 61, 0.04);
  box-shadow: none;
  transform: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 502px;
  border-radius: 24px;
  background: var(--cream);
  padding: 36px 32px;
}

.review-mark {
  color: var(--gold-deep);
  font-family: "Lexend", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.review-stars {
  width: 120.94px;
  height: 20.25px;
}

.review-copy {
  margin: 0;
  min-height: 196px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.review-person {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
}

.review-role {
  color: rgba(6, 28, 61, 0.55);
  font-size: 12px;
}

.cta-band {
  background: var(--gold);
  padding: var(--section-space) 0;
}

.cta-title {
  max-width: 927px;
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1.04px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 540px);
  align-items: stretch;
  gap: 40px;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 708px;
  height: 100%;
  border-radius: 28px;
  background: #dfe8f3;
  box-shadow: var(--shadow-map);
}

.map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #dfe8f3;
}

.map-embed {
  z-index: 0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #eef4fb 0%, #dde7f4 100%);
}

.map-fallback:hover,
.map-fallback:focus-visible {
  text-decoration: underline;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  border: 1px solid var(--page-border);
  border-radius: 28px;
  background: #fff;
  padding: 40px 32px;
}

.contact-title {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.54px;
}

.contact-copy {
  margin: 0;
  color: rgba(6, 28, 61, 0.65);
  font-size: 14px;
  line-height: 1.55;
}

.field-grid {
  display: grid;
  gap: 12px;
}

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

.field-grid--mixed {
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 18px;
}

.field-grid--date {
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--page-border);
  border-radius: 14px;
  background: var(--cream-strong);
  padding: 14px 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field.is-invalid {
  border-color: #c35a43;
  background: #fff1ed;
}

.field.is-invalid:focus-within {
  border-color: #c35a43;
  background: #fff1ed;
}

.field--select {
  position: relative;
  overflow: visible;
}

.field:focus-within {
  border-color: var(--gold-deep);
  background: var(--cream-strong);
  box-shadow: none;
}

.field-date {
  position: relative;
  overflow: visible;
}

.field-date.is-open {
  z-index: 8;
  border-color: #ffb21c;
  background: var(--cream-strong);
}

.field-label {
  color: rgba(6, 28, 61, 0.6);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  outline: none;
}

.field--phone {
  gap: 6px;
}

.field--phone:focus-within {
  border-color: var(--gold-deep);
  background: var(--cream-strong);
}

.field-phone-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
}

.field--phone .field-phone-code-input {
  width: 52px;
  min-width: 52px;
  flex: 0 0 52px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(6, 28, 61, 0.5);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.field--phone .field-phone-code-input::placeholder {
  color: rgba(6, 28, 61, 0.5);
}

.field--phone .field-phone-code-input:focus-visible {
  outline: none;
}

.field--phone:focus-within .field-phone-code-input,
.field--phone:focus-within input[name="phone"] {
  color: var(--navy);
}

.field--phone:focus-within .field-phone-divider {
  background: rgba(6, 28, 61, 0.22);
}

.field-phone-prefix {
  flex: 0 0 auto;
  color: rgba(6, 28, 61, 0.5);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.field-phone-divider {
  flex: 0 0 auto;
  width: 1px;
  height: 21.187px;
  background: rgba(6, 28, 61, 0.18);
}

.field--phone input {
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
}

.field--phone input::placeholder {
  color: rgba(6, 28, 61, 0.5);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(6, 28, 61, 0.5);
  opacity: 1;
}

.field textarea {
  min-height: 56px;
  line-height: 1.45;
}

.field-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field-date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: var(--navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.field-date-trigger:focus-visible {
  outline: none;
}

.field-date-display {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--navy);
}

.field-date-display.is-placeholder {
  color: rgba(6, 28, 61, 0.5);
}

.field-date-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: min(312px, calc(100vw - 32px));
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #f0b93e;
  border-radius: 5px;
  background: #fff4dd;
  box-shadow: 0 12px 32px rgba(6, 28, 61, 0.08);
  padding: 8px 16px 12px;
}

.field-date-popover[hidden] {
  display: none;
}

.date-popup-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  width: 280px;
  gap: 0;
}

.date-popup-nav {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: var(--gold-deep);
  cursor: pointer;
}

.date-popup-nav:focus-visible {
  outline: none;
  background: rgba(255, 199, 89, 0.17);
}

.date-popup-nav img {
  width: 24px;
  height: 24px;
  max-width: none;
}

.date-popup-nav--prev img {
  transform: rotate(180deg);
}

.date-popup-month {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.date-popup-grid {
  width: 280px;
}

.date-popup-grid--weekdays {
  display: grid;
  grid-template-columns: repeat(7, 40px);
  align-items: center;
}

.date-popup-weekday {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--gray-300);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}

.date-popup-grid--days {
  display: grid;
  grid-template-columns: repeat(7, 40px);
}

.date-popup-cell {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.date-popup-cell--muted {
  color: var(--gray-300);
}

.date-popup-cell--selected {
  background: var(--gold-deep);
  color: #fff;
}

.date-popup-cell:hover:not(.date-popup-cell--selected),
.date-popup-cell:focus-visible {
  outline: none;
  background: rgba(255, 199, 89, 0.17);
}

.field-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: var(--navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.field-dropdown-trigger:focus-visible {
  outline: none;
}

.field-dropdown-value {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--navy);
}

.field-dropdown-value.is-placeholder {
  color: rgba(6, 28, 61, 0.5);
}

.field-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 20;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid var(--gold-deep);
  border-radius: 14px;
  background: #fff4dd;
  padding: 8px 0;
}

.field-dropdown-menu[hidden] {
  display: none;
}

.field-dropdown-option {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  height: 32px;
  padding: 0 16px;
  border: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: var(--navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background-color 120ms ease;
}

.field-dropdown-option:hover,
.field-dropdown-option.is-selected {
  background: rgba(255, 199, 89, 0.17);
}

.field-dropdown-option:focus-visible {
  outline: none;
  background: rgba(255, 199, 89, 0.17);
}

.field-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.field-icon--sm {
  width: 16px;
  height: 16px;
}

.field-icon--calendar {
  width: 18px;
  height: 18px;
}

.field-icon--chevron {
  transition: transform 180ms ease;
  transform: scaleY(-1);
  transform-origin: center;
}

.field-dropdown.is-open {
  z-index: 6;
}

.field-dropdown.is-open .field-icon--chevron {
  transform: none;
}

@media (max-width: 640px) {
  .field-grid--date {
    grid-template-columns: 1fr;
  }

  .field-date-popover {
    width: min(312px, calc(100vw - 24px));
    padding: 8px 12px 12px;
  }

  .date-popup-head,
  .date-popup-grid {
    width: 100%;
  }

  .date-popup-grid--weekdays,
  .date-popup-grid--days {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .date-popup-weekday,
  .date-popup-cell {
    width: auto;
  }
}

.field--textarea {
  gap: 8px;
  padding-bottom: 30px;
}

.form-status {
  margin: 0;
  margin-top: -2px;
  min-height: 1.5em;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(6, 28, 61, 0.65);
}

.form-status.is-success {
  color: #0d6c3f;
}

.form-status.is-error {
  color: #a43f31;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 820px);
  align-items: start;
  gap: 60px;
}

.faq-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--page-border);
  border-radius: 18px;
  background: #fff;
}

.faq-item.is-open {
  border-color: var(--page-border-strong);
  background: var(--cream);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 28px;
  color: var(--navy);
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fdecc0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-item.is-open .faq-icon {
  background: var(--navy);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 24px;
  color: rgba(6, 28, 61, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: var(--section-space) 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) auto auto auto;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 40px;
  height: 40px;
}

.footer-brand-wordmark {
  font-family: "Lexend", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-heading {
  margin: 0 0 1px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.footer-link {
  color: var(--white-soft);
  font-size: 14px;
  font-weight: 500;
}

.footer-link--static {
  cursor: default;
}

.footer-bottom {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.footer-legal {
  margin: 0;
  color: var(--white-faint);
  font-size: 12px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link img {
  width: 32px;
  height: 32px;
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 24px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }

  .trust-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-marquee::-webkit-scrollbar {
    display: none;
  }

  .locations-grid.has-reveal .location-chip,
  .locations-grid.has-reveal.is-visible .location-chip {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    will-change: auto;
  }
}

@media (max-width: 1200px) {
  .wrap {
    width: min(1320px, calc(100% - 64px));
  }

  .hero-grid,
  .why-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-frame {
    max-width: 720px;
    width: 100%;
    min-height: 540px;
    justify-self: center;
  }

  .services-grid,
  .process-grid,
  .reviews-grid,
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .why-copy {
    max-width: 680px;
  }

  .contact-grid {
    gap: 28px;
  }

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

@media (max-width: 960px) {
  .section,
  .section-dark,
  .locations-section,
  .site-footer {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .cta-band {
    padding: 56px 0;
  }

  .section-head,
  .section-head--wide {
    margin-bottom: 44px;
  }

  .reviews-head {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 44px;
  }

  .reviews-toolbar {
    justify-content: space-between;
  }

  .announce-inner {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cluster {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border-bottom: 1px solid #e6e8ec;
    background: #fff;
    padding: 20px 20px 24px;
  }

  .nav-cluster.is-open {
    display: flex;
  }

  .nav-bar {
    position: relative;
  }

  .nav-inner {
    padding: 16px 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-title,
  .section-title,
  .cta-title {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -0.88px;
  }

  .section-title--light,
  .section-title--faq {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .hero-lead,
  .section-copy,
  .location-chip span {
    font-size: 16px;
  }

  .hero-image-frame,
  .map-card {
    min-height: 400px;
  }

  .services-grid,
  .pest-grid,
  .addon-grid,
  .process-grid,
  .why-features,
  .reviews-grid,
  .locations-grid,
  .field-grid--mixed,
  .field-grid--date,
  .field-grid--two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pest-card,
  .service-card,
  .process-card,
  .review-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .section,
  .section-dark,
  .locations-section,
  .site-footer {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-section {
    padding: 56px 0;
  }

  .section-head,
  .section-head--wide {
    margin-bottom: 36px;
  }

  .reviews-head {
    margin-bottom: 36px;
  }

  .reviews-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .announce-inner {
    gap: 12px;
  }

  .announce-item {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-title,
  .section-title,
  .section-title--light,
  .section-title--faq,
  .cta-title {
    font-size: clamp(34px, 8vw, 44px);
    letter-spacing: -0.5px;
  }

  .hero-kicker {
    max-width: 100%;
    align-items: center;
  }

  .hero-kicker-mark {
    flex-basis: 6px;
    width: 6px;
    height: 12px;
    margin-right: 0;
  }

  .hero-kicker-mark img {
    width: 10px;
    height: 6px;
  }

  .hero-kicker-text {
    font-size: 14px;
    line-height: 1.4;
    max-width: 100%;
    min-height: auto;
    white-space: normal;
    padding: 6px 10px;
  }

  .hero-actions,
  .hero-stats {
    width: 100%;
  }

  .hero-actions .btn,
  .contact-card .btn,
  .nav-cluster .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-image-frame,
  .map-card {
    min-height: 360px;
  }

  .why-us::before {
    content: none;
  }

  .why-grid {
    gap: 28px;
  }

  .why-features {
    gap: 12px;
  }

  .why-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .why-icon-shell {
    width: 40px;
    height: 40px;
  }

  .why-icon-shell img {
    width: 28px;
    height: 28px;
  }

  .why-card-title {
    margin: 12px 0 10px;
    font-size: 18px;
  }

  .why-card-copy {
    font-size: 13px;
    line-height: 1.45;
  }

  .trust-list {
    gap: 32px;
    padding-right: 32px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .field {
    padding: 12px 14px;
  }

  .field-grid--two,
  .field-grid--mixed,
  .field-grid--date {
    gap: 10px;
  }

  .field-date {
    width: 100%;
  }

  .field-date-popover {
    left: 0;
    right: auto;
    width: 100%;
    max-width: 312px;
    padding: 8px 12px 12px;
  }

  .field-date-popover,
  .field-dropdown-menu {
    box-shadow: 0 12px 32px rgba(6, 28, 61, 0.08);
  }

  .faq-question {
    padding-inline: 20px;
    font-size: 17px;
  }

  .faq-answer p {
    padding-inline: 20px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    gap: 16px;
  }

  .footer-socials {
    gap: 8px;
  }

  .social-link img {
    width: 28px;
    height: 28px;
  }
}
