:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0b0b0b;
  --panel-strong: #111111;
  --ink: #ffffff;
  --muted: #a6a6a6;
  --soft: #e8e8e8;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 225, 0, 0.35);
  --brand: #ffdf00;
  --brand-deep: #b39400;
  --teal: #5fd2dc;
  --danger: #ff6b4a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
  --max: 1200px;
  --pad: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 223, 0, 0.05), rgba(255, 223, 0, 0) 420px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 34px),
    var(--bg);
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.site-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), 1240px);
  min-height: 68px;
  padding: 10px 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  min-width: 148px;
  height: 48px;
  overflow: hidden;
  border-radius: 4px;
  background: #ffffff;
}

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

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-link {
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 223, 0, 0.7);
  border-radius: 8px;
  color: #080808;
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(255, 223, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ffe94a;
}

.button.is-active {
  outline: 2px solid rgba(255, 255, 255, 0.34);
  outline-offset: 2px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

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

.button-small {
  min-height: 38px;
  padding: 0 14px;
}

.button-wide {
  width: 100%;
}

.mobile-call-float {
  display: none;
}

.discount-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.discount-modal[hidden] {
  display: none;
}

.discount-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.discount-dialog {
  position: relative;
  width: min(100%, 500px);
  padding: 34px;
  border: 1px solid rgba(255, 223, 0, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 223, 0, 0.1), rgba(255, 255, 255, 0.025)),
    #080808;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.74);
}

.discount-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  line-height: 1;
}

.discount-dialog h2 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: 44px;
  line-height: 1.02;
}

.discount-dialog p {
  color: var(--soft);
  line-height: 1.65;
}

.discount-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.discount-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.discount-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 14px;
  outline: none;
}

.discount-form input:focus {
  border-color: var(--brand);
}

.discount-note {
  min-height: 20px;
  margin: 0;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.discount-note.is-error,
.form-note.is-error,
.newsletter-note.is-error {
  color: var(--danger);
}

.discount-call {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

@keyframes mobileCallColor {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--brand);
  font-weight: 800;
}

.text-link:hover {
  color: #fff4a0;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  padding: 150px var(--pad) 56px;
  isolation: isolate;
}

.hero-image,
.subhero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), #050505 96%);
}

.hero-content {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 104px;
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 44px auto 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.52);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 32px;
  line-height: 1;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--brand);
  color: #050505;
}

.ticker div {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px var(--pad);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.detail-main h2 {
  margin-bottom: 16px;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.about-copy p,
.contact-copy p,
.detail-main p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.approach-card,
.value-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.approach-card span,
.value-card span {
  display: block;
  margin-bottom: 58px;
  color: var(--brand);
  font-weight: 900;
}

.approach-card h3,
.value-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.approach-card p,
.value-card p {
  color: var(--muted);
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card a {
  display: grid;
  grid-template-rows: 300px 1fr;
  height: 100%;
}

.service-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #080808;
  opacity: 0.88;
  transition:
    filter 450ms ease,
    opacity 450ms ease;
}

.service-card::after {
  display: none;
}

.service-card:hover img {
  filter: saturate(1.08) brightness(1.06);
  opacity: 1;
}

.card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: inline-flex;
  min-width: 62px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(10px);
  font-size: 42px;
  font-weight: 900;
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel);
}

.service-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.service-card-meta span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 223, 0, 0.28);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 223, 0, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.service-card p {
  color: var(--soft);
  line-height: 1.55;
}

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

.concern-card,
.pest-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.concern-card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.concern-card h3,
.focus-copy h3,
.pest-group h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.concern-card p,
.focus-copy p,
.pest-group p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.pest-group p {
  font-size: 14px;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  max-width: none;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  padding-right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
}

.about-band img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  padding: 16px;
  object-fit: contain;
  border-radius: 8px;
  background: #080808;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 640px;
}

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

.location-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.location-chip:hover {
  border-color: var(--line-strong);
  background: #111111;
}

.location-chip span {
  font-weight: 850;
}

.location-chip small {
  color: var(--brand);
  font-weight: 900;
}

.locations-overview {
  padding-top: 56px;
}

.service-area-panel {
  display: grid;
  gap: 18px;
}

.area-group {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 223, 0, 0.08), transparent 42%),
    var(--panel);
}

.area-group-copy p {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-group-copy h3 {
  max-width: 460px;
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.05;
}

.area-group-copy span {
  display: block;
  max-width: 540px;
  color: var(--muted);
  line-height: 1.65;
}

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

.area-list a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 850;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.area-list a::after {
  content: "View";
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-list a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 223, 0, 0.38);
  background: rgba(255, 223, 0, 0.08);
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.contact-methods a {
  display: inline-flex;
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.contact-methods.large a {
  font-size: 34px;
}

.quote-stack {
  display: grid;
  gap: 16px;
}

.call-now-card {
  display: grid;
  gap: 4px;
  align-items: center;
  justify-items: center;
  min-height: 110px;
  padding: 22px;
  border: 1px solid rgba(255, 223, 0, 0.72);
  border-radius: 8px;
  color: #080808;
  background:
    linear-gradient(135deg, #ffdf00, #fff0a2),
    var(--brand);
  box-shadow: 0 18px 48px rgba(255, 223, 0, 0.22);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.call-now-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(255, 223, 0, 0.3);
}

.call-now-card span {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.call-now-card strong {
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.quote-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.82);
  box-shadow: var(--shadow);
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.newsletter-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  padding: 0 14px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.newsletter-form input:focus {
  border-color: var(--brand);
}

.quote-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

.quote-form .button {
  margin-top: 18px;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 850;
}

.accordion-mark {
  color: var(--brand);
  font-size: 24px;
  font-weight: 900;
}

.accordion-panel {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.subhero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 650px;
  padding: 170px var(--pad) 76px;
  isolation: isolate;
}

.subhero-compact {
  min-height: 560px;
}

.locations-hero {
  min-height: 430px;
  padding-top: 138px;
  padding-bottom: 46px;
}

.locations-overview .section-heading {
  margin-bottom: 32px;
}

.subhero-content {
  width: min(860px, 100%);
  max-width: var(--max);
  margin: 0 auto;
}

.subhero h1 {
  margin-bottom: 18px;
  font-size: 78px;
  line-height: 0.98;
}

.subhero p {
  max-width: 720px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.6;
}

.service-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.62) 52%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), #050505 98%);
}

.service-hero img {
  object-fit: contain;
  padding: 120px max(var(--pad), 6vw) 78px;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 223, 0, 0.12), transparent 34%),
    #060606;
}

.service-hero img {
  object-fit: contain;
  object-position: right center;
  background: #050505;
  opacity: 0.62;
}

.narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
}

.narrative-copy {
  color: var(--soft);
  font-size: 21px;
  line-height: 1.7;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
}

.process-list span {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(255, 223, 0, 0.12);
}

.process-list p {
  margin: 0;
  color: var(--soft);
}

.detail-aside {
  position: sticky;
  top: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.detail-aside h3 {
  font-size: 26px;
}

.detail-aside ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.detail-aside li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.covered-list {
  margin-bottom: 24px;
  padding-top: 6px;
}

.covered-list h3 {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 16px;
  text-transform: uppercase;
}

.covered-list ul {
  margin-bottom: 0;
}

.quote-page-section {
  max-width: 920px;
}

.quote-page-section .quote-form {
  max-width: none;
}

.site-footer {
  max-width: calc(var(--max) + 48px);
  margin: 80px auto 24px;
  padding: 42px 42px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.6fr 1.1fr;
  gap: 42px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer a:hover {
  color: var(--brand);
}

.footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 22px;
  border-radius: 4px;
  background: #ffffff;
}

.newsletter-form {
  position: relative;
  margin-top: 24px;
}

.newsletter-form input {
  padding-right: 54px;
}

.newsletter-form button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #050505;
  font-size: 22px;
  font-weight: 900;
}

.newsletter-note {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 70px;
  color: var(--muted);
  font-size: 13px;
}

.back-to-top {
  display: inline-flex;
  min-width: 44px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
  }

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

  .primary-nav a {
    min-height: 46px;
  }

  .header-actions {
    justify-self: end;
  }

  .call-link {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-metrics,
  .approach-grid,
  .values-grid,
  .service-grid,
  .concern-grid,
  .pest-directory,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-band,
  .contact-split,
  .narrative-grid,
  .detail-grid,
  .area-group {
    grid-template-columns: 1fr;
  }

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

  .detail-aside {
    position: relative;
    top: 0;
  }

  .subhero h1 {
    font-size: 58px;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 10px;
  }

  .site-shell {
    padding-bottom: 92px;
  }

  .mobile-call-float {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 80;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 223, 0, 0.76);
    border-radius: 8px;
    color: #050505;
    background: linear-gradient(90deg, #ffdf00, #fff2a6, #5fd2dc, #ffdf00);
    background-size: 260% 100%;
    box-shadow: 0 18px 52px rgba(255, 223, 0, 0.28);
    animation: mobileCallColor 4s ease-in-out infinite;
  }

  body.modal-open .mobile-call-float {
    display: none;
  }

  body.has-form-call-card .mobile-call-float {
    display: none;
  }

  .mobile-call-float span {
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-call-float strong {
    font-size: 20px;
    line-height: 1;
    font-weight: 950;
    white-space: nowrap;
  }

  .brand {
    width: 120px;
    min-width: 120px;
    height: 42px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 128px;
    padding-bottom: 40px;
  }

  .hero-overlay,
  .subhero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), #050505 96%);
  }

  .service-hero img {
    padding: 96px 18px 48px;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 1;
  }

  .hero-lede,
  .subhero p {
    font-size: 17px;
  }

  .discount-modal {
    padding: 14px;
  }

  .discount-dialog {
    padding: 28px 18px 20px;
  }

  .discount-dialog h2 {
    font-size: 34px;
  }

  .hero-metrics,
  .approach-grid,
  .values-grid,
  .service-grid,
  .concern-grid,
  .pest-directory,
  .area-list,
  .location-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 28px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .locations-hero {
    min-height: 360px;
    padding-top: 110px;
    padding-bottom: 26px;
  }

  .locations-hero h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .locations-hero p {
    font-size: 15px;
    line-height: 1.45;
  }

  .locations-overview {
    padding-top: 28px;
  }

  .locations-overview .section-heading {
    margin-bottom: 24px;
  }

  .locations-overview .section-heading h2 {
    font-size: 32px;
  }

  .locations-overview .section-heading p {
    font-size: 15px;
    line-height: 1.5;
  }

  .locations-overview .area-group {
    padding: 20px;
  }

  .locations-overview .area-list {
    order: -1;
  }

  .section-heading.split {
    display: grid;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .detail-main h2 {
    font-size: 38px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card a {
    grid-template-rows: 250px 1fr;
  }

  .about-band {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .subhero {
    min-height: 540px;
    padding-top: 130px;
    padding-bottom: 54px;
  }

  .subhero h1 {
    font-size: 42px;
  }

  .contact-methods.large a {
    font-size: 24px;
  }

  .call-now-card {
    min-height: 96px;
    padding: 18px;
  }

  .call-now-card strong {
    font-size: 29px;
  }

  .quote-form {
    padding: 18px;
  }

  .site-footer {
    margin-top: 48px;
    padding: 24px 18px;
  }

  .footer-bottom {
    display: grid;
    margin-top: 42px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
