:root {
  --navy: #062f50;
  --navy-deep: #031f35;
  --navy-soft: #0b4066;
  --teal: #149caf;
  --teal-bright: #27b8c7;
  --teal-pale: #dff3f5;
  --mist: #eaf6f7;
  --paper: #fbfdfd;
  --white: #ffffff;
  --ink: #102c3f;
  --slate: #567080;
  --line: #d6e5e9;
  --shadow: 0 22px 64px rgba(3, 31, 53, 0.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100% - 40px));
  --font: Aptos, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Arial Rounded MT Bold", "Trebuchet MS", Aptos, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6.4vw, 6.2rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

h1 em,
h2 em {
  color: var(--teal);
  font-style: normal;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 11vw, 150px);
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #6edbe5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 58px;
  padding: 14px 23px;
  color: var(--white);
  font-family: var(--font-display);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(20, 156, 175, 0.2);
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--teal-bright);
  box-shadow: 0 14px 30px rgba(20, 156, 175, 0.3);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  gap: 16px;
  font-size: 0.8rem;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--navy);
  background: var(--mist);
}

.topbar {
  color: #cce7ec;
  background: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.topbar-inner > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.topbar a {
  color: var(--white);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #43d39e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(67, 211, 158, 0.13);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 253, 253, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(6, 47, 80, 0.08);
  box-shadow: 0 8px 28px rgba(3, 31, 53, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--navy);
}

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

.brand-image-window {
  position: relative;
  display: block;
  width: 270px;
  aspect-ratio: 1350 / 350;
  overflow: hidden;
  background: var(--white);
}

.brand-svg {
  display: block;
  width: 270px;
  height: auto;
}

.brand-original-image {
  position: absolute;
  top: -94.3%;
  left: -6.67%;
  display: block;
  width: 113.78%;
  max-width: none;
  height: auto;
}

.brand-mark {
  width: 38px;
}

.brand-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.045em;
}

.brand-name span {
  color: var(--navy-soft);
}

.brand-tagline {
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.46em;
}

.custom-logo-link,
.custom-logo {
  display: block;
}

.custom-logo {
  width: auto;
  max-width: min(280px, 42vw);
  max-height: 64px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav .menu a {
  position: relative;
  color: #294659;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 680;
}

.primary-nav .menu a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav .menu a:hover::after,
.primary-nav .menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle > span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 47, 80, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 47, 80, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper) 58%, #edf8f9 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.hero::before {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: rgba(20, 156, 175, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  min-height: 700px;
  padding-block: 70px 80px;
}

.hero-copy {
  max-width: 700px;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 52px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 760;
}

.call-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--teal);
  background: var(--mist);
  border-radius: 50%;
}

.phone-icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.call-icon .phone-icon {
  width: 15px;
  height: 15px;
}

.topbar-phone,
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-phone .phone-icon {
  width: 13px;
  height: 13px;
}

.footer-phone .phone-icon {
  width: 14px;
  height: 14px;
  color: #6edbe5;
}

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hero-proof > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.hero-proof span {
  max-width: 66px;
  color: var(--slate);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1.08;
  place-items: center;
  justify-self: end;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -3;
  width: 79%;
  height: 79%;
  background: var(--navy);
  border-radius: 44% 56% 60% 40% / 45% 42% 58% 55%;
  box-shadow: var(--shadow);
  content: "";
  transform: rotate(-7deg);
}

.hero-visual::after {
  position: absolute;
  z-index: -2;
  width: 62%;
  height: 62%;
  background: linear-gradient(145deg, rgba(39, 184, 199, 0.3), rgba(39, 184, 199, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.hero-emblem-panel {
  display: grid;
  width: 57%;
  aspect-ratio: 1;
  place-items: center;
  background: var(--white);
  border: 7px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(3, 31, 53, 0.2);
}

.hero-original-mark {
  position: relative;
  display: block;
  width: 55%;
  aspect-ratio: 220 / 225;
  overflow: hidden;
  background: var(--white);
}

.hero-original-mark img {
  position: absolute;
  top: -2%;
  left: -240.9%;
  width: 603.64%;
  max-width: none;
  height: auto;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(20, 156, 175, 0.3);
  border-radius: 50%;
}

.orbit-one {
  width: 93%;
  height: 93%;
}

.orbit-two {
  width: 68%;
  height: 68%;
  border-color: rgba(255, 255, 255, 0.2);
}

.service-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  color: var(--navy);
  font-family: var(--font-display);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(3, 31, 53, 0.12);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-node:hover,
.service-node:focus-visible {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-2px);
}

.node-insect { top: 8%; left: 18%; }
.node-rodent { top: 25%; left: -2%; }
.node-outdoor { top: 10%; right: 10%; }
.node-wildlife { top: 39%; right: -4%; }
.node-prevention { right: 0; bottom: 20%; }
.node-repair { bottom: 11%; left: 6%; }

.availability-card {
  position: absolute;
  right: auto;
  bottom: 2%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid rgba(6, 47, 80, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.availability-card > div {
  display: flex;
  flex-direction: column;
}

.availability-card strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.76rem;
}

.availability-card span:last-child {
  color: var(--slate);
  font-size: 0.66rem;
}

.trust-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.commercial-callout {
  padding-block: 62px;
  color: #cce0e6;
  background: var(--navy-deep);
}

.commercial-callout-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.commercial-callout h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.commercial-callout p:not(.eyebrow) {
  margin-bottom: 24px;
  color: #a9c4cc;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 100px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }

.trust-grid > div > span:last-child {
  display: flex;
  flex-direction: column;
  color: var(--slate);
  font-size: 0.68rem;
  line-height: 1.4;
}

.trust-grid strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.83rem;
}

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--teal);
  background: var(--mist);
  border-radius: 50%;
  font-weight: 800;
}

.section-heading > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--slate);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 62px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 36px 32px;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  background: rgba(39, 184, 199, 0.12);
  border-radius: 50%;
  content: "";
  transform: scale(0.5);
  transition: transform 260ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  z-index: 1;
  color: #d9ecf0;
  background: var(--navy);
  box-shadow: 0 20px 44px rgba(3, 31, 53, 0.16);
  transform: translateY(-5px);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  transform: scale(1);
}

.service-card h3 {
  transition: color 220ms ease;
}

.service-card:hover h3,
.service-card:focus-visible h3 {
  color: var(--white);
}

.service-card p {
  color: var(--slate);
  font-size: 0.89rem;
  line-height: 1.62;
  transition: color 220ms ease;
}

.service-card:hover p,
.service-card:focus-visible p {
  color: #bbd2da;
}

.card-link {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.approach {
  color: #cce0e6;
  background: var(--navy-deep);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: stretch;
  gap: clamp(55px, 8vw, 110px);
}

.approach-visual {
  position: relative;
  display: flex;
  min-height: 560px;
  padding: 48px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 100px 0 0;
}

.approach-visual::after {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
  opacity: 0.17;
}

.contour-lines {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 85% 75%, transparent 0 31px, rgba(89, 207, 220, 0.12) 32px 33px);
}

.approach-kicker {
  position: relative;
  z-index: 1;
  color: #79d9e2;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.approach blockquote {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: auto 0;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.approach-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.approach-badge strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  background: #79d9e2;
  border-radius: 50%;
  font-size: 0.75rem;
}

.approach-badge span {
  font-size: 0.74rem;
  font-weight: 700;
}

.approach-copy {
  align-self: center;
}

.approach-copy h2 {
  color: var(--white);
}

.approach-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 38px;
  color: #a9c2cb;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.check-list li > span {
  color: #6edbe5;
  font-size: 0.72rem;
  font-weight: 800;
}

.check-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.97rem;
}

.check-list p {
  margin: 0;
  color: #91adb8;
  font-size: 0.82rem;
}

.centered {
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
}

.process-number {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--teal);
  background: var(--mist);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.process-line {
  position: absolute;
  top: 26px;
  left: 73px;
  width: calc(100% - 36px);
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 7px, transparent 7px 13px);
}

.process-grid li:last-child .process-line {
  display: none;
}

.process-grid h3 {
  font-size: 1.35rem;
}

.process-grid p {
  color: var(--slate);
  font-size: 0.88rem;
}

.coverage {
  position: relative;
  overflow: hidden;
  color: #cce0e6;
  background: var(--navy);
}

.coverage::after {
  position: absolute;
  top: -30%;
  right: -7%;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(39, 184, 199, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(39, 184, 199, 0.035), 0 0 0 130px rgba(39, 184, 199, 0.025);
  content: "";
}

.coverage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.coverage h2 {
  color: var(--white);
}

.coverage-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #a9c2cb;
}

.area-cloud {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #dcebef;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 720;
}

.area-pill i {
  width: 6px;
  height: 6px;
  background: var(--teal-bright);
  border-radius: 50%;
}

.reviews {
  background: #f7fbfb;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.reviews-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.google-rating {
  display: grid;
  min-width: 230px;
  padding: 22px 26px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(3, 31, 53, 0.08);
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
}

.google-wordmark {
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  grid-column: 1 / -1;
}

.google-rating strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.review-stars {
  color: #f6a800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.google-rating small {
  color: var(--slate);
  font-size: 0.72rem;
  grid-column: 2;
}

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

.review-card {
  display: flex;
  min-height: 280px;
  padding: clamp(26px, 3vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px rgba(3, 31, 53, 0.07);
  flex-direction: column;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-source {
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: auto 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 680;
  line-height: 1.35;
}

.review-card blockquote p {
  margin: 28px 0;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: var(--mist);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  place-items: center;
}

.review-card footer strong {
  color: var(--ink);
  font-size: 0.85rem;
}

.review-card:nth-child(2) { transition-delay: 80ms; }
.review-card:nth-child(3) { transition-delay: 160ms; }

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
}

.reviews-footer small {
  color: var(--slate);
  font-size: 0.72rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 130px);
}

.faq .section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 760;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--teal);
  background: var(--mist);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 680px;
  padding: 0 50px 25px 0;
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.contact-section {
  padding: 0 0 clamp(88px, 10vw, 130px);
}

.blog-preview {
  background: var(--mist);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: stretch;
  gap: clamp(42px, 8vw, 110px);
}

.blog-preview .section-heading {
  align-self: center;
}

.blog-feature-card {
  position: relative;
  display: flex;
  min-height: 470px;
  padding: clamp(34px, 6vw, 64px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(110, 219, 229, 0.32) 0 8%, transparent 8.5%),
    radial-gradient(circle at 78% 22%, transparent 0 20%, rgba(110, 219, 229, 0.12) 20.5% 21%, transparent 21.5%),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  flex-direction: column;
  justify-content: space-between;
}

.blog-feature-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 230px;
  height: 230px;
  background: rgba(39, 184, 199, 0.14);
  border: 1px solid rgba(110, 219, 229, 0.24);
  border-radius: 50%;
  content: "";
}

.blog-feature-card > span,
.blog-feature-card > em {
  position: relative;
  z-index: 1;
  color: #78d9e2;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-feature-card strong {
  position: relative;
  z-index: 1;
  max-width: 420px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  padding: clamp(45px, 7vw, 85px);
  color: var(--white);
  background: linear-gradient(125deg, var(--navy) 0%, #075371 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.request-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
  padding: clamp(44px, 6vw, 74px);
  color: var(--white);
  background:
    radial-gradient(circle at 8% 92%, rgba(39, 184, 199, 0.17) 0 13%, transparent 13.5%),
    linear-gradient(125deg, var(--navy) 0%, #075371 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.request-intro h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.request-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 28px;
  color: #bad3db;
  font-size: 0.95rem;
}

.request-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 760;
}

.phone-icon-circle {
  width: 44px;
  height: 44px;
  padding: 12px;
  color: #6edbe5;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.request-phone span {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.request-phone small {
  color: #8eb1bd;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
}

.request-form-panel {
  padding: clamp(28px, 4vw, 44px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(3, 31, 53, 0.2);
}

.jobber-form-panel {
  min-width: 0;
  padding: clamp(24px, 3.5vw, 38px);
  overflow: hidden;
}

.jobber-form-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.jobber-form-intro span {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 780;
}

.jobber-form-intro small {
  max-width: 260px;
  color: var(--slate);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: right;
}

.jobber-request-host {
  min-height: 520px;
}

.jobber-request-host:empty::before {
  display: grid;
  min-height: 160px;
  color: var(--slate);
  background: var(--mist);
  border-radius: 12px;
  content: "Loading secure request form…";
  font-size: 0.8rem;
  place-items: center;
}

.jobber-request-host iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}

.jobber-form-fallback {
  margin: 20px 0 0;
  text-align: center;
}

.jobber-form-fallback a {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 750;
}

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

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 760;
}

.form-field-wide { grid-column: 1 / -1; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7fbfc;
  border: 1px solid #c8dce1;
  border-radius: 9px;
  outline: 0;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 450;
  line-height: 1.45;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 156, 175, 0.12);
}

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

.request-submit {
  width: 100%;
  margin-top: 20px;
}

.form-privacy {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 0.7rem;
  text-align: center;
}

.form-notice {
  display: flex;
  gap: 3px;
  padding: 14px 16px;
  margin-bottom: 18px;
  flex-direction: column;
  border-radius: 9px;
  font-size: 0.78rem;
}

.form-notice-success {
  color: #0d593f;
  background: #e6f8f1;
  border: 1px solid #b8ead8;
}

.form-notice-error {
  color: #7a2d2d;
  background: #fff0f0;
  border: 1px solid #f0cccc;
}

.contact-card h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
}

.contact-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.contact-email {
  color: #b8d9df;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding-top: 76px;
  color: #9eb8c2;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.82fr 1.35fr;
  gap: 48px;
  padding-bottom: 60px;
}

.site-brand-light,
.site-brand-light .brand-name {
  color: var(--white);
}

.site-brand-light .brand-image-window {
  padding: 0;
  border-radius: 0;
}

.site-brand-light .brand-svg {
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand p {
  max-width: 430px;
  margin: 28px 0 0;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.footer-list {
  color: #9eb8c2;
  font-size: 0.82rem;
  line-height: 1.8;
}

.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  color: #9eb8c2;
  font-size: 0.78rem;
  line-height: 1.45;
  list-style: none;
}

.footer-area-list li {
  position: relative;
  padding-left: 12px;
}

.footer-area-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--teal-bright);
  border-radius: 50%;
  content: "";
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #6edbe5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #6f909d;
  font-size: 0.7rem;
}

.mobile-action-bar {
  display: none;
}

.content-area {
  min-height: 60vh;
}

.page-header {
  max-width: 850px;
  margin-bottom: 50px;
}

.content-card {
  padding: 30px;
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.entry-content {
  max-width: 820px;
}

.entry-content > *:not(.alignwide):not(.alignfull) {
  max-width: 760px;
}

.error-page {
  min-height: 62vh;
}

.service-page-hero {
  position: relative;
  padding-block: clamp(72px, 9vw, 120px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 47, 80, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 47, 80, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper) 50%, var(--mist));
  background-size: 42px 42px, 42px 42px, auto;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 44px;
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-breadcrumb a {
  color: var(--teal);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.service-page-hero h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--slate);
  font-size: 1.12rem;
}

.service-hero-panel {
  position: relative;
  min-height: 440px;
  padding: 52px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 0 88px 0 0;
  box-shadow: var(--shadow);
}

.service-hero-panel::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  background: rgba(39, 184, 199, 0.16);
  border: 1px solid rgba(110, 219, 229, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(39, 184, 199, 0.04), 0 0 0 110px rgba(39, 184, 199, 0.025);
  content: "";
}

.service-panel-number {
  display: block;
  margin-bottom: 100px;
  color: #6edbe5;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-hero-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.service-tag-list {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 9px;
  padding: 0;
  margin: 28px 0 0;
  flex-wrap: wrap;
  list-style: none;
}

.service-tag-list li {
  padding: 8px 12px;
  color: #d7edf0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.69rem;
  font-weight: 700;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 9vw, 130px);
}

.service-overview-grid h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
}

.service-overview-copy > p {
  color: var(--slate);
  font-size: 1.03rem;
}

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

.help-card {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.help-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 850;
}

.help-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.help-card p {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.55;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 9vw, 130px);
}

.service-detail-grid h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 3.9rem);
}

.service-detail-copy {
  align-self: center;
}

.service-detail-copy p {
  color: #b8d1d9;
  font-size: 1.02rem;
}

.service-detail-copy p:last-child {
  margin-bottom: 0;
}

.page-faq {
  background: var(--paper);
}

.related-services {
  padding-top: 0;
}

.service-plan {
  color: #cce0e6;
  background: var(--navy-deep);
}

.service-plan h2 {
  color: var(--white);
}

.service-plan .process-grid h3 {
  color: var(--white);
}

.service-plan .process-grid p {
  color: #9eb8c2;
}

.service-plan .process-number {
  color: #6edbe5;
  background: rgba(39, 184, 199, 0.12);
}

.service-plan .process-line {
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.18) 0 7px, transparent 7px 13px);
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.related-heading h2 {
  margin-bottom: 0;
}

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

.related-card {
  display: flex;
  min-height: 190px;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-4px);
}

.related-card > span:first-child {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 850;
}

.related-card strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.16rem;
  transition: color 180ms ease;
}

.related-card:hover strong,
.related-card:focus-visible strong {
  color: var(--white);
}

.related-arrow {
  color: var(--teal);
}

.blog-hero,
.article-hero {
  padding-block: clamp(80px, 10vw, 140px);
  background:
    linear-gradient(90deg, rgba(6, 47, 80, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 47, 80, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper) 45%, var(--mist));
  background-size: 42px 42px, 42px 42px, auto;
}

.blog-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 6.4vw, 6rem);
}

.blog-hero > .site-shell > p:last-child {
  max-width: 700px;
  color: var(--slate);
  font-size: 1.1rem;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: stretch;
  gap: 18px;
}

.blog-list-card,
.blog-index-note {
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-md);
}

.blog-list-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.blog-list-meta,
.blog-index-note > span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-list-card h2 {
  max-width: 760px;
  margin: 28px 0 20px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.blog-list-card p {
  max-width: 720px;
  color: var(--slate);
}

.blog-list-card > strong {
  color: var(--teal);
  font-family: var(--font-display);
}

.blog-index-note {
  display: flex;
  min-height: 330px;
  color: #c8dce2;
  background: var(--navy);
  flex-direction: column;
  justify-content: space-between;
}

.blog-index-note p {
  margin: 0;
}

.article-hero {
  padding-top: 70px;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}

.article-hero h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

.article-deck {
  max-width: 760px;
  color: var(--slate);
  font-size: 1.12rem;
}

.article-signal {
  display: flex;
  min-height: 330px;
  padding: 36px;
  color: #c8dce2;
  background: var(--navy);
  border-radius: 0 64px 0 0;
  box-shadow: var(--shadow);
  flex-direction: column;
  justify-content: space-between;
}

.article-signal span {
  color: #6edbe5;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.article-signal strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
}

.article-signal p {
  margin: 0;
  font-size: 0.86rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
  justify-content: space-between;
  gap: clamp(55px, 8vw, 110px);
  padding-block: clamp(78px, 10vw, 130px);
}

.article-body {
  color: #29495d;
}

.article-body h2 {
  margin: 64px 0 20px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.article-body p,
.article-body li {
  font-size: 1rem;
  line-height: 1.8;
}

.article-body a {
  color: #087f91;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-intro {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.3rem !important;
  font-weight: 700;
}

.article-callout {
  padding: 30px;
  margin-top: 54px;
  color: var(--white);
  background: var(--navy);
  border-left: 6px solid var(--teal-bright);
  border-radius: var(--radius-sm);
}

.article-callout strong {
  color: #6edbe5;
  font-family: var(--font-display);
}

.article-callout p {
  margin: 8px 0 0;
}

.article-faq summary {
  font-size: 0.96rem;
}

.article-sources {
  padding-top: 12px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin-top: 30px;
  font-size: 1.3rem;
}

.article-sources p {
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.article-aside > div {
  position: sticky;
  top: 130px;
  padding: 34px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.article-aside span:first-child {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.article-aside p {
  color: var(--slate);
  font-size: 0.85rem;
}

.article-aside .button {
  width: 100%;
  margin-bottom: 18px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.service-card:nth-child(2),
.process-grid li:nth-child(2) { transition-delay: 80ms; }
.service-card:nth-child(3),
.process-grid li:nth-child(3) { transition-delay: 160ms; }
.service-card:nth-child(4) { transition-delay: 80ms; }
.service-card:nth-child(5) { transition-delay: 160ms; }
.service-card:nth-child(6) { transition-delay: 240ms; }

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

  .primary-nav {
    position: fixed;
    top: 121px;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 141px);
    padding: 28px;
    overflow: auto;
    align-items: stretch;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

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

  .primary-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav .menu a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 25px;
  }

  .hero-proof > div { padding-inline: 13px; }

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

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:first-child { padding-left: 24px; }

  .approach-grid,
  .coverage-grid,
  .faq-grid { gap: 60px; }

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

@media (max-width: 800px) {
  :root { --shell: min(100% - 32px, 680px); }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 68px 80px;
  }

  .hero-copy { max-width: 650px; }

  .hero-visual {
    width: min(510px, 95%);
    margin-top: 15px;
    justify-self: center;
  }

  .split-heading,
  .approach-grid,
  .coverage-grid,
  .faq-grid,
  .contact-card,
  .request-card,
  .footer-grid,
  .service-hero-grid,
  .service-overview-grid,
  .service-detail-grid,
  .commercial-callout-inner,
  .blog-preview-grid,
  .reviews-heading,
  .blog-index-grid,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .review-grid { grid-template-columns: 1fr; }
  .google-rating { width: min(100%, 300px); }

  .article-aside > div { position: static; }

  .split-heading { gap: 26px; }

  .approach-visual { min-height: 480px; }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-grid li {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 20px;
  }

  .process-number { grid-row: span 2; }
  .process-line { display: none; }
  .process-grid h3 { margin-top: 4px; }

  .coverage-grid { gap: 55px; }

  .area-cloud { justify-content: flex-start; }

  .review-card { min-height: 230px; }

  .contact-card { align-items: start; gap: 35px; }

  .request-card { align-items: start; gap: 38px; }

  .footer-grid { gap: 40px; }

  .service-hero-panel { min-height: 380px; }
  .help-grid, .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-md: 18px;
    --radius-lg: 24px;
  }

  html { scroll-padding-top: 84px; }

  body {
    padding-bottom: 72px;
    font-size: 16px;
    line-height: 1.6;
  }

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

  h1,
  .service-page-hero h1,
  .blog-hero h1,
  .article-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 12vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  h2,
  .service-overview-grid h2,
  .service-detail-grid h2,
  .faq .section-heading h2,
  .contact-card h2,
  .blog-list-card h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 9.5vw, 2.45rem);
    line-height: 1.06;
  }

  h3 { font-size: 1.18rem; }

  .section { padding-block: 58px; }

  .reviews-heading { gap: 26px; }
  .reviews-heading h2 { font-size: clamp(2.25rem, 10vw, 2.8rem); }
  .google-rating { width: 100%; }
  .reviews-footer { align-items: flex-start; flex-direction: column; }

  .eyebrow {
    gap: 9px;
    margin-bottom: 16px;
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

  .eyebrow > span { width: 24px; }

  .button {
    min-height: 54px;
    width: 100%;
    padding: 13px 18px;
    gap: 18px;
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .topbar-inner {
    min-height: 34px;
    justify-content: center;
  }

  .topbar-inner > span { display: none; }

  .topbar a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    font-size: 0.69rem;
    letter-spacing: 0.05em;
  }

  .site-header { background: rgba(251, 253, 253, 0.98); }

  .header-inner { min-height: 70px; }

  .brand-mark { width: 32px; }
  .brand-name { font-size: 1rem; }
  .brand-tagline { font-size: 0.4rem; }
  .brand-image-window { width: 188px; }
  .brand-svg { width: 188px; }

  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--white);
    border-radius: 11px;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    max-height: calc(100dvh - 94px);
    padding: 20px;
    border-radius: 18px;
  }

  .primary-nav .menu a {
    padding: 14px 2px;
    font-size: 0.98rem;
  }

  .primary-nav .nav-cta {
    width: 100%;
    margin-top: 2px;
  }

  .hero { min-height: 0; }

  .hero-grid {
    min-height: 0;
    gap: 28px;
    padding-block: 34px 48px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(2.5rem, 11.3vw, 2.95rem);
  }

  .hero-lede {
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    margin-bottom: 30px;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .text-link {
    justify-content: center;
    min-height: 48px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(6, 47, 80, 0.07);
    border-radius: 10px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(6, 47, 80, 0.08);
    border-radius: 14px;
  }

  .hero-proof > div,
  .hero-proof > div:first-child {
    align-items: center;
    min-width: 0;
    padding: 13px 7px;
    flex-direction: column;
    gap: 5px;
  }

  .hero-proof strong { font-size: 1.45rem; }

  .hero-proof span {
    max-width: 64px;
    font-size: 0.58rem;
    text-align: center;
  }

  .hero-visual {
    width: min(308px, 96%);
    margin-top: 0;
  }

  .service-node {
    padding: 6px 8px;
    gap: 5px;
    font-size: 0.54rem;
    letter-spacing: 0.025em;
  }

  .node-insect { top: 7%; left: 16%; }
  .node-rodent { top: 27%; left: -1%; }
  .node-outdoor { top: 9%; right: 7%; }
  .node-wildlife { top: 41%; right: -1%; }
  .node-prevention { right: 2%; bottom: 19%; }
  .node-repair { bottom: 10%; left: 4%; }

  .availability-card {
    bottom: 0;
    gap: 10px;
    width: max-content;
    max-width: 78%;
    padding: 12px 14px;
  }

  .availability-card strong { font-size: 0.69rem; }
  .availability-card span:last-child { font-size: 0.59rem; }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 88px;
    padding: 15px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(2n) { border-right: 0; }
  .trust-grid > div:nth-last-child(-n + 2) { border-bottom: 0; }

  .trust-icon {
    width: 32px;
    height: 32px;
  }

  .trust-grid > div > span:last-child { font-size: 0.61rem; }
  .trust-grid strong { font-size: 0.75rem; }

  .split-heading {
    gap: 18px;
    margin-bottom: 34px;
  }

  .split-heading > p,
  .section-heading > p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    border: 0;
  }

  .service-card {
    min-height: 0;
    padding: 25px 24px 23px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(3, 31, 53, 0.055);
  }

  .service-card h3 { margin-bottom: 9px; }

  .service-card p {
    margin-bottom: 0;
    font-size: 0.84rem;
  }

  .card-link {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 22px;
    font-size: 0.69rem;
  }

  .commercial-callout { padding-block: 52px; }

  .commercial-callout-inner { gap: 26px; }

  .commercial-callout h2 { font-size: 2.05rem; }

  .commercial-callout p:not(.eyebrow) {
    margin-bottom: 20px;
    font-size: 0.91rem;
  }

  .approach-grid { gap: 38px; }

  .approach-visual {
    min-height: 330px;
    padding: 28px;
    border-radius: 0 58px 0 0;
  }

  .approach blockquote {
    max-width: 280px;
    font-size: 2rem;
  }

  .approach-copy > p:not(.eyebrow) {
    margin-bottom: 26px;
    font-size: 0.91rem;
  }

  .check-list li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 17px 0;
  }

  .centered { margin-bottom: 42px; }

  .process-grid { gap: 28px; }

  .process-grid li {
    grid-template-columns: 46px 1fr;
    column-gap: 15px;
  }

  .process-number {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }

  .process-grid h3 {
    margin: 1px 0 6px;
    font-size: 1.08rem;
  }

  .process-grid p {
    margin-bottom: 0;
    font-size: 0.82rem;
  }

  .coverage-grid { gap: 38px; }

  .coverage-copy > p:not(.eyebrow) {
    margin-bottom: 22px;
    font-size: 0.91rem;
  }

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

  .area-pill {
    justify-content: flex-start;
    padding: 9px 12px;
    font-size: 0.7rem;
  }

  .review-grid {
    display: grid;
    grid-auto-columns: minmax(278px, 86%);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    padding: 2px 2px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar { display: none; }

  .review-card {
    min-height: 225px;
    scroll-snap-align: start;
  }

  .blog-preview-grid { gap: 34px; }

  .blog-feature-card {
    min-height: 300px;
    padding: 30px;
    border-radius: var(--radius-md);
  }

  .blog-feature-card strong { font-size: 2.2rem; }

  .faq-grid { gap: 34px; }

  .accordion summary {
    gap: 14px;
    padding: 20px 0;
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .accordion summary span {
    width: 28px;
    height: 28px;
  }

  .accordion details p {
    padding: 0 38px 20px 0;
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .contact-section { padding-bottom: 68px; }

  .contact-card {
    gap: 28px;
    padding: 34px 24px;
    border-radius: var(--radius-md);
  }

  .request-card {
    gap: 30px;
    padding: 34px 22px 22px;
    border-radius: var(--radius-md);
  }

  .request-intro h2 {
    margin-bottom: 16px;
    font-size: 2.28rem;
  }

  .request-intro > p:not(.eyebrow) {
    margin-bottom: 22px;
    font-size: 0.88rem;
  }

  .phone-icon-circle {
    width: 40px;
    height: 40px;
    padding: 11px;
  }

  .request-form-panel {
    padding: 24px 18px;
    border-radius: 15px;
  }

  .jobber-form-panel { padding: 22px 14px; }

  .jobber-request-host { min-height: 210px; }

  .jobber-form-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .jobber-form-intro small {
    max-width: none;
    text-align: left;
  }

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

  .form-field-wide { grid-column: auto; }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 52px;
    font-size: 1rem;
  }

  .form-field textarea { min-height: 104px; }

  .contact-actions { width: 100%; }

  .site-footer { padding: 56px 0 20px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 42px;
  }

  .footer-grid > div:not(.footer-brand) {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-area-list {
    gap: 10px 16px;
    font-size: 0.8rem;
  }

  .footer-brand p {
    margin-top: 20px;
    font-size: 0.8rem;
  }

  .footer-bottom {
    align-items: flex-start;
    min-height: 0;
    padding-block: 22px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 9px;
    min-height: 72px;
    padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(6, 47, 80, 0.1);
    box-shadow: 0 -10px 30px rgba(3, 31, 53, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 52px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 11px;
  }

  .mobile-action-call {
    color: var(--navy);
    background: var(--mist);
    border: 1px solid var(--line);
  }

  .mobile-action-call .phone-icon {
    width: 16px;
    height: 16px;
    color: var(--teal);
  }

  .mobile-action-request {
    color: var(--white);
    background: var(--teal);
    box-shadow: 0 8px 20px rgba(20, 156, 175, 0.24);
  }

  .service-page-hero { padding-block: 46px 64px; }

  .service-breadcrumb {
    gap: 7px;
    margin-bottom: 28px;
    overflow: hidden;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .service-breadcrumb > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .service-hero-grid { gap: 34px; }

  .service-hero-grid > *,
  .article-hero-grid > * { min-width: 0; }

  .service-hero-copy > p:not(.eyebrow) {
    margin-bottom: 26px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .service-hero-panel {
    min-height: 280px;
    padding: 28px;
    border-radius: 0 56px 0 0;
  }

  .service-panel-number { margin-bottom: 58px; }

  .service-hero-panel h2 { font-size: 1.9rem; }

  .service-tag-list { margin-top: 20px; }

  .service-overview-grid,
  .service-detail-grid { gap: 30px; }

  .service-overview-copy > p,
  .service-detail-copy p { font-size: 0.94rem; }

  .help-grid { margin-top: 30px; }

  .help-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    min-height: 0;
    padding: 22px 20px;
    column-gap: 10px;
  }

  .help-card span {
    grid-row: 1 / span 2;
    margin: 2px 0 0;
  }

  .help-card h3 { font-size: 1rem; }

  .help-card p {
    margin-top: 8px;
    font-size: 0.78rem;
  }

  .related-heading {
    align-items: flex-start;
    margin-bottom: 30px;
    flex-direction: column;
  }

  .related-card {
    min-height: 150px;
    padding: 22px;
  }

  .blog-hero,
  .article-hero { padding-block: 52px 64px; }

  .article-hero { padding-top: 44px; }

  .article-hero-grid { gap: 32px; }

  .article-deck {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .article-signal {
    min-height: 235px;
    padding: 28px;
    border-radius: 0 48px 0 0;
  }

  .article-signal strong { font-size: 1.75rem; }

  .blog-index-grid { gap: 14px; }

  .blog-list-card,
  .blog-index-note { padding: 28px 24px; }

  .blog-list-card h2 { margin: 22px 0 16px; }

  .blog-index-note { min-height: 230px; }

  .article-layout { padding-block: 64px; }

  .article-body h2 {
    margin: 44px 0 16px;
    font-size: 1.9rem;
  }

  .article-body p,
  .article-body li {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .article-intro { font-size: 1.12rem !important; }

  .article-callout {
    padding: 24px 20px;
    margin-top: 40px;
  }

  .article-aside > div { padding: 26px 22px; }

  .content-card { padding: 24px 20px; }
}

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