:root {
  --brand-red: #df2621;
  --brand-red-dark: #b71f1b;
  --brand-red-soft: #fff2f1;
  --charcoal: #363334;
  --ink: #242122;
  --muted: #696568;
  --paper: #fefefe;
  --surface: #f5f6f7;
  --surface-dark: #1e1c1d;
  --line: #e4e3e4;
  --line-dark: rgba(255, 255, 255, 0.14);
  --success: #138a4b;
  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow-xs: 0 8px 20px rgba(36, 33, 34, 0.06);
  --shadow-sm: 0 14px 34px rgba(36, 33, 34, 0.09);
  --shadow-md: 0 24px 60px rgba(36, 33, 34, 0.14);
  --section-space: 92px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-poppins), Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
p,
a,
button,
label,
summary {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 52px;
  line-height: 1.08;
}

h2 {
  font-size: 42px;
  line-height: 1.14;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
}

:focus-visible {
  outline: 3px solid rgba(223, 38, 33, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  translate: 0 -150%;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
}

.skip-link:focus {
  translate: 0 0;
}

.shell {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
  scroll-margin-top: 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ffcfcd;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.dark-heading h2 {
  color: white;
}

.dark-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 19px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button svg,
.header-cta svg,
.text-link svg,
.service-card > a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--brand-red);
  color: white;
  box-shadow: 0 12px 26px rgba(223, 38, 33, 0.24);
}

.button-primary:hover {
  background: var(--brand-red-dark);
  box-shadow: 0 16px 32px rgba(223, 38, 33, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(20, 18, 19, 0.24);
  color: white;
}

.button-ghost:hover,
.button-outline-light:hover {
  border-color: white;
  background: white;
  color: var(--charcoal);
}

.button-light {
  background: white;
  color: var(--brand-red);
  box-shadow: var(--shadow-xs);
}

.button-light:hover {
  background: var(--charcoal);
  color: white;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.58);
  color: white;
}

.button-dark {
  background: var(--charcoal);
  color: white;
  box-shadow: var(--shadow-xs);
}

.button-dark:hover {
  background: var(--brand-red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--brand-red);
}

.topbar {
  min-height: 38px;
  background: var(--brand-red);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
}

.topbar-inner,
.topbar-contact,
.topbar-canada,
.topbar a {
  display: flex;
  align-items: center;
}

.topbar-inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 20px;
}

.topbar-contact {
  gap: 22px;
}

.topbar-canada,
.topbar a {
  gap: 7px;
}

.topbar svg {
  width: 15px;
  height: 15px;
}

.topbar a:hover {
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  border-bottom: 1px solid rgba(36, 33, 34, 0.06);
  background: rgba(254, 254, 254, 0.96);
  box-shadow: 0 8px 26px rgba(36, 33, 34, 0.07);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  min-height: 76px;
}

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

.brand img {
  width: 42px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 600;
}

.brand small {
  margin-top: 4px;
  color: var(--brand-red);
  font-size: 9px;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #4d494b;
  font-size: 13px;
  font-weight: 500;
}

.primary-nav > a {
  position: relative;
  padding-block: 26px;
}

.primary-nav > a::after {
  position: absolute;
  right: 50%;
  bottom: 18px;
  left: 50%;
  height: 2px;
  background: var(--brand-red);
  content: '';
  transition: right 180ms ease, left 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
  color: var(--brand-red);
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  right: 0;
  left: 0;
}

.mobile-nav-contact {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  background: var(--brand-red);
  color: white;
  box-shadow: 0 10px 22px rgba(223, 38, 33, 0.2);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  background: var(--brand-red-dark);
  box-shadow: 0 14px 28px rgba(223, 38, 33, 0.26);
}

.menu-toggle,
.menu-scrim {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  overflow: hidden;
  background: #242122;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(26, 23, 24, 0.94) 0%, rgba(26, 23, 24, 0.76) 56%, rgba(26, 23, 24, 0.46) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: center;
  min-height: 560px;
  padding-block: 40px;
}

.hero-copy {
  color: white;
  animation: fade-up 560ms ease both;
}

.hero-copy h1 {
  color: white;
}

.canada-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 8px 12px 8px 9px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 600;
}

.canada-badge svg {
  width: 19px;
  height: 19px;
  color: var(--brand-red);
}

.hero-lead {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions,
.section-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 500;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: #ff6f6a;
}

.quote-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-md);
  padding: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  animation: fade-up 620ms 90ms ease both;
}

.quote-card-heading > span {
  color: var(--brand-red);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.quote-card h2 {
  margin-top: 3px;
  font-size: 23px;
}

.quote-card-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

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

.field {
  display: grid;
  align-content: start;
  gap: 5px;
}

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

.field label {
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 500;
}

.field label span {
  color: var(--brand-red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d9d8d9;
  border-radius: var(--radius-sm);
  padding: 0 10px;
  outline: none;
  background: white;
  color: var(--ink);
  font-size: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 62px;
  padding-block: 9px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(223, 38, 33, 0.7);
  box-shadow: 0 0 0 3px rgba(223, 38, 33, 0.1);
}

.field input[aria-invalid='true'],
.field select[aria-invalid='true'] {
  border-color: var(--brand-red);
}

.field-error {
  color: var(--brand-red-dark);
  font-size: 10px;
  line-height: 1.35;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  cursor: pointer;
  background: var(--brand-red);
  color: white;
  box-shadow: 0 12px 24px rgba(223, 38, 33, 0.2);
  font-size: 13px;
  font-weight: 600;
}

.form-submit:hover:not(:disabled) {
  background: var(--brand-red-dark);
}

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

.form-submit svg {
  width: 18px;
  height: 18px;
}

.form-status {
  min-height: 16px;
  margin: -6px 0 0;
  color: var(--success);
  font-size: 10px;
  text-align: center;
}

.quote-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.quote-contact-row a:hover {
  color: var(--brand-red);
}

.about-section {
  background: var(--paper);
}

.split-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.section-copy > p:not(.eyebrow),
.process-copy > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.canadian-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  border-radius: var(--radius-md);
  padding: 15px 16px;
  background: var(--brand-red-soft);
  box-shadow: var(--shadow-xs);
}

.canadian-note > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--brand-red);
}

.canadian-note strong,
.canadian-note span {
  display: block;
}

.canadian-note strong {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
}

.canadian-note span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
}

.check-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-grid svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--brand-red);
}

.about-media {
  position: relative;
  min-width: 0;
}

.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.image-caption span,
.image-caption strong {
  display: block;
}

.image-caption span {
  color: var(--brand-red);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.image-caption strong {
  margin-top: 3px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
}

.services-section {
  background: var(--surface-dark);
}

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

.service-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 320px;
  border-radius: var(--radius-md);
  padding: 24px;
  background: white;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  background: var(--brand-red-soft);
  color: var(--brand-red);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 19px;
}

.service-card p {
  margin: 13px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 600;
}

.service-card > a:hover {
  color: var(--brand-red-dark);
}

.process-section {
  background: var(--surface);
}

.process-layout {
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 33, 34, 0.08);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-md);
}

.process-media {
  display: grid;
  align-content: center;
  gap: 14px;
  height: 100%;
  padding: 30px;
  background: #f0f1f2;
}

.process-media img {
  width: 100%;
  height: auto;
  max-height: 510px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: white;
  box-shadow: var(--shadow-sm);
}

.process-media-note {
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: white;
  box-shadow: var(--shadow-xs);
}

.process-media-note strong,
.process-media-note span {
  display: block;
}

.process-media-note strong {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
}

.process-media-note span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.process-copy {
  padding: 48px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  border-top: 1px solid var(--line);
}

.process-list > li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-red);
  color: white;
  font-size: 11px;
  font-weight: 600;
}

.process-list h3 {
  font-size: 16px;
}

.process-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.section-actions {
  align-items: center;
  margin-top: 26px;
}

.pests-section {
  background: #181617;
}

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

.pest-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pest-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #111;
}

.pest-media img {
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.pest-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.82));
}

.pest-media h3 {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: white;
  font-size: 21px;
  font-weight: 500;
}

.pest-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  padding: 20px;
}

.pest-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.treatment-focus {
  display: grid;
  gap: 4px;
  min-height: 106px;
  border-radius: var(--radius-sm);
  padding: 13px;
  background: var(--brand-red-soft);
}

.treatment-focus span {
  color: var(--brand-red);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.treatment-focus strong {
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.pest-signs {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 7px;
  min-height: 74px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pest-signs li {
  height: fit-content;
  border-radius: 999px;
  padding: 7px 9px;
  background: #f0f1f2;
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 500;
}

.pest-body .button {
  width: 100%;
  padding-inline: 12px;
}

.pest-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  background: var(--brand-red);
  color: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.pest-help span,
.pest-help strong {
  display: block;
}

.pest-help span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.pest-help strong {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 500;
}

.experience-section {
  background: white;
}

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

.experience-grid article {
  min-height: 236px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.experience-grid article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 600;
}

.experience-grid h3 {
  font-size: 18px;
}

.experience-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.areas-section {
  position: relative;
  overflow: hidden;
  background: #0d0c0d;
}

.areas-section::before {
  position: absolute;
  top: 4%;
  left: 8%;
  width: 420px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(223, 38, 33, 0.2);
  filter: blur(78px);
  content: '';
}

.areas-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 24px;
}

.areas-copy {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
  color: white;
  box-shadow: 0 24px 64px rgba(223, 38, 33, 0.1);
}

.areas-copy h2 {
  color: white;
}

.areas-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.coverage-list {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.coverage-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.08);
}

.coverage-list dt {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.coverage-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.map-frame {
  min-height: 446px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: #171617;
  box-shadow: 0 24px 64px rgba(223, 38, 33, 0.12);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 446px;
  border: 0;
}

.area-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.area-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 11px;
  background: white;
  color: var(--charcoal);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  font-size: 10px;
  font-weight: 500;
  transition: background-color 160ms ease, color 160ms ease;
}

.area-links a:hover {
  background: var(--brand-red);
  color: white;
}

.area-links svg {
  width: 13px;
  height: 13px;
  color: var(--brand-red);
}

.area-links a:hover svg {
  color: white;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro .text-link {
  margin-top: 24px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0 20px;
  background: white;
  box-shadow: var(--shadow-xs);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-size: 18px;
  font-weight: 400;
  transition: rotate 180ms ease;
}

.faq-list details[open] summary span {
  rotate: 45deg;
}

.faq-list details p {
  margin: -3px 0 18px;
  padding-right: 44px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.booking-section {
  background: var(--surface);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-md);
}

.booking-copy {
  padding: 48px;
  background: var(--brand-red);
  color: white;
}

.booking-copy h2 {
  color: white;
}

.booking-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

.booking-actions {
  margin-top: 26px;
}

.booking-canada {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.booking-canada svg {
  width: 20px;
  height: 20px;
}

.booking-details {
  display: grid;
  align-content: center;
  padding: 44px;
}

.booking-details h3 {
  font-size: 26px;
}

.booking-details ul {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.booking-details li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}

.booking-details li:first-child {
  border-top: 1px solid var(--line);
}

.booking-details li > svg {
  width: 22px;
  height: 22px;
  color: var(--brand-red);
}

.booking-details li strong,
.booking-details li span {
  display: block;
}

.booking-details li strong {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
}

.booking-details li span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.site-footer {
  background: #141214;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto minmax(280px, 0.9fr);
  gap: 38px;
  align-items: center;
  padding-block: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand img {
  width: 38px;
  height: 42px;
  object-fit: contain;
}

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

.footer-brand strong {
  font-size: 14px;
  font-weight: 600;
}

.footer-brand span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-contact svg,
.footer-address svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--brand-red);
}

.footer-address {
  display: flex;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-block: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.footer-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom svg {
  width: 16px;
  height: 16px;
  color: var(--brand-red);
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: grid;
  gap: 8px;
}

.floating-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 136px;
  min-height: 44px;
  border: 2px solid white;
  border-radius: 999px;
  padding: 0 15px 0 12px;
  color: white;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-button svg {
  width: 20px;
  height: 20px;
}

.floating-button.whatsapp {
  background: #1ea95a;
}

.floating-button.call {
  background: var(--charcoal);
}

.floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .pest-card:hover {
    transform: translateY(-4px);
  }

  .service-card:hover {
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
  }

  .pest-card:hover {
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.3);
  }

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

@media (max-width: 1080px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .header-inner {
    gap: 22px;
  }

  .primary-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
  }

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

  .service-card {
    min-height: 280px;
  }

  .treatment-focus,
  .pest-signs {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --section-space: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0;
    cursor: pointer;
    background: white;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    z-index: 3;
    display: grid;
    width: min(340px, calc(100vw - 32px));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 10px;
    background: white;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a {
    border-radius: var(--radius-sm);
    padding: 12px 13px;
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav > a:hover {
    background: var(--brand-red-soft);
  }

  .mobile-nav-contact {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }

  .mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    background: var(--surface);
    color: var(--charcoal);
    font-size: 12px;
  }

  .mobile-nav-contact svg {
    width: 18px;
    height: 18px;
    color: var(--brand-red);
  }

  .menu-scrim {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    border: 0;
    padding: 0;
    background: rgba(20, 18, 19, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .menu-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 50px;
  }

  .hero-shade {
    background: rgba(26, 23, 24, 0.8);
  }

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

  .quote-card {
    width: min(100%, 690px);
  }

  .split-layout,
  .process-layout,
  .areas-layout,
  .faq-layout,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .split-layout {
    gap: 40px;
  }

  .about-media {
    order: -1;
  }

  .process-layout {
    max-width: 720px;
  }

  .areas-layout {
    gap: 16px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }

  .faq-layout {
    gap: 34px;
  }

  .faq-intro {
    position: static;
  }

  .booking-panel {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 62px;
  }

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

  .shell {
    width: min(100% - 36px, var(--container));
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  h3 {
    font-size: 19px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading > p:last-child {
    font-size: 13px;
  }

  .topbar-contact a:last-child {
    display: none;
  }

  .topbar-inner {
    gap: 12px;
  }

  .topbar,
  .topbar-inner {
    min-height: 34px;
  }

  .topbar {
    font-size: 9px;
  }

  .site-header,
  .header-inner {
    min-height: 68px;
  }

  .header-inner {
    gap: 9px;
  }

  .brand img {
    width: 34px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .header-cta {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header-cta svg {
    width: 20px;
    height: 20px;
    color: white;
  }

  .hero-layout {
    padding-block: 38px 44px;
  }

  .hero-image {
    object-position: 44% center;
  }

  .canada-badge {
    font-size: 10px;
  }

  .hero-lead {
    margin-top: 15px;
    font-size: 13px;
  }

  .hero-actions,
  .section-actions,
  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .section-actions .button,
  .booking-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .quote-contact-row {
    display: grid;
    text-align: center;
  }

  .section-copy > p:not(.eyebrow),
  .process-copy > p:not(.eyebrow),
  .faq-intro > p:not(.eyebrow) {
    font-size: 13px;
  }

  .about-media img {
    aspect-ratio: 4 / 3;
  }

  .image-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .canadian-note {
    align-items: flex-start;
  }

  .check-grid,
  .service-grid,
  .pest-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

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

  .process-media {
    padding: 14px;
  }

  .process-copy,
  .areas-copy,
  .booking-copy,
  .booking-details {
    padding: 24px;
  }

  .process-list li {
    grid-template-columns: 36px 1fr;
  }

  .process-list > li > span {
    width: 34px;
    height: 34px;
  }

  .pest-media {
    aspect-ratio: 16 / 10;
  }

  .pest-body {
    padding: 18px;
  }

  .pest-help {
    display: grid;
    padding: 18px;
  }

  .pest-help .button {
    width: 100%;
  }

  .experience-grid article {
    min-height: auto;
    padding: 22px;
  }

  .experience-grid article > span {
    margin-bottom: 18px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 310px;
  }

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

  .faq-list details {
    padding-inline: 16px;
  }

  .faq-list summary {
    min-height: 58px;
    font-size: 13px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .booking-details h3 {
    font-size: 23px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 28px;
  }

  .footer-address {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    padding-bottom: 88px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .floating-button {
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
  }

  .floating-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .topbar-canada {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .brand span {
    display: none;
  }

  .process-copy,
  .areas-copy,
  .booking-copy,
  .booking-details {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
