:root {
      --green-950: #365300;
      --green-900: #4e7500;
      --green-800: #557f00;
      --green-700: #639204;
      --green-600: #6fa10b;
      --lime: #639204;
      --lime-strong: #79aa1b;
      --lime-soft: #f0f5e3;
      --cream: #f8f5ed;
      --paper: #fffefb;
      --line: #dfe6d8;
      --ink: #243129;
      --muted: #657168;
      --white: #fff;
      --shadow-shell: 0 18px 48px rgba(78, 117, 0, .15);
      --shadow-card: 0 7px 22px rgba(78, 117, 0, .10);
      --shadow-hover: 0 15px 30px rgba(78, 117, 0, .16);
      --radius-sm: 7px;
      --radius-md: 11px;
      --radius-lg: 15px;
      --container: 1100px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 4% 0%, rgba(99, 146, 4, .18), transparent 25%),
        linear-gradient(145deg, #edf2e7 0%, #f9f7f0 58%, #edf3e3 100%);
      font-family: "Segoe UI", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open {
      overflow: hidden;
    }

    .skip-link {
      position: fixed;
      z-index: 1000;
      top: 10px;
      left: 10px;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      color: var(--white);
      background: var(--green-950);
      box-shadow: var(--shadow-card);
      text-decoration: none;
      transform: translateY(-160%);
      transition: transform .18s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .cookie_banner {
      position: fixed;
      z-index: 150;
      right: 14px;
      bottom: 14px;
    }

    .cookie_banner a {
      display: grid;
      width: 44px;
      height: 44px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .32);
      border-radius: 50%;
      background: var(--green-900);
      box-shadow: 0 8px 22px rgba(54, 83, 0, .28);
    }

    a {
      color: inherit;
    }

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

    button {
      font: inherit;
    }

    .site-shell {
      width: min(calc(100% - 32px), 1160px);
      margin: 18px auto;
      overflow: hidden;
      border: 1px solid rgba(78, 117, 0, .18);
      border-radius: var(--radius-lg);
      background: var(--paper);
      box-shadow: var(--shadow-shell);
    }

    .inner {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }

    .desktop-header {
      min-height: 82px;
      border-bottom: 1px solid #edf0e8;
      background: rgba(255, 254, 251, .98);
    }

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

    .logo {
      width: 250px;
      height: auto;
    }

    .contact-cluster {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-note {
      margin-bottom: 4px;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: .02em;
      text-align: right;
    }

    .header-phone-source table,
    .header-phone-source tbody,
    .header-phone-source tr {
      display: contents;
    }

    .header-phone-source td {
      display: none;
    }

    .header-phone-source td:first-child {
      display: block;
    }

    .header-phone-source img {
      display: none;
    }

    .header-phone-source a {
      display: inline-flex;
      align-items: center;
      color: var(--green-900);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: .02em;
      text-decoration: none;
      transition: color .2s ease, transform .2s ease;
    }

    .header-phone-source a::before {
      content: "☎";
      display: inline-grid;
      width: 28px;
      height: 28px;
      margin-right: 8px;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: linear-gradient(145deg, var(--green-600), var(--green-800));
      box-shadow: 0 4px 10px rgba(78, 117, 0, .18);
      font-size: 13px;
    }

    .header-phone-source a:hover {
      color: var(--green-600);
      transform: translateY(-1px);
    }

    .header-phone-source .gray_16 {
      color: inherit;
      font: inherit;
    }

    .phone {
      display: inline-flex;
      align-items: center;
      color: var(--green-900);
      font-size: 21px;
      font-weight: 800;
      letter-spacing: .02em;
      text-decoration: none;
      transition: color .2s ease, transform .2s ease;
    }

    .phone::before {
      content: "☎";
      display: inline-grid;
      width: 28px;
      height: 28px;
      margin-right: 8px;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: linear-gradient(145deg, var(--green-600), var(--green-800));
      box-shadow: 0 4px 10px rgba(78, 117, 0, .18);
      font-size: 13px;
    }

    .phone:hover {
      color: var(--green-600);
      transform: translateY(-1px);
    }

    .header-cta {
      display: inline-flex;
      min-height: 42px;
      padding: 10px 17px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--green-900);
      border-radius: var(--radius-md);
      color: var(--white);
      background: linear-gradient(180deg, var(--green-700), var(--green-900));
      box-shadow: 0 8px 18px rgba(78, 117, 0, .20);
      font-size: 12px;
      font-weight: 850;
      line-height: 1;
      text-decoration: none;
      transition: box-shadow .2s ease, filter .2s ease, transform .2s ease;
    }

    .header-cta:hover,
    .header-cta:focus-visible {
      filter: saturate(1.08) brightness(1.04);
      box-shadow: 0 12px 23px rgba(78, 117, 0, .27);
      transform: translateY(-2px);
    }

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

    .hamburger {
      display: none;
      width: 44px;
      height: 42px;
      padding: 0;
      border: 1px solid #cfdaca;
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, #fbfcf8, #eff5e8);
      box-shadow: 0 5px 14px rgba(78, 117, 0, .10);
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 4px auto;
      border-radius: 999px;
      background: var(--green-900);
      transition: transform .2s ease, opacity .2s ease;
    }

    .hamburger[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

    .hamburger[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
      position: relative;
      min-height: 315px;
      background: linear-gradient(135deg, var(--green-800), var(--green-600));
      box-shadow: inset 0 -20px 32px rgba(54, 83, 0, .12);
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: 1;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(54, 83, 0, .43) 0%, rgba(54, 83, 0, .09) 53%, rgba(54, 83, 0, .02) 100%);
    }

    .hero-media,
    .hero-media-link {
      position: absolute;
      inset: 0;
    }

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

    .hero .inner {
      position: relative;
      z-index: 2;
      min-height: 315px;
    }

    .hero-caption {
      position: absolute;
      left: 0;
      bottom: 28px;
      width: min(430px, 88%);
      padding: 17px 20px 18px;
      border-left: 4px solid var(--lime);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      color: var(--white);
      background: rgba(78, 117, 0, .90);
      box-shadow: 0 11px 25px rgba(0, 0, 0, .18);
    }

    .hero-caption strong {
      display: block;
      margin-bottom: 5px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 25px;
      font-weight: 600;
    }

    .hero-caption span {
      font-size: 13px;
      line-height: 1.55;
      opacity: .92;
    }

    .main-nav {
      position: relative;
      z-index: 20;
      background: linear-gradient(180deg, #4e7500 0%, #3f6100 100%);
      box-shadow: 0 4px 11px rgba(63, 97, 0, .18);
    }

    .main-nav > ul {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      width: min(100%, var(--container));
      min-height: 52px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .main-nav > ul > li {
      position: relative;
      min-width: 0;
    }

    .main-nav > ul > li > a,
    .nav-dropdown-toggle {
      display: flex;
      width: 100%;
      min-width: 0;
      height: 100%;
      min-height: 52px;
      padding: 8px 12px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-right: 1px solid rgba(255, 255, 255, .12);
      color: var(--white);
      background: transparent;
      font-size: 14px;
      font-weight: 650;
      line-height: 1.2;
      text-align: center;
      text-decoration: none;
      transition: background-color .2s ease, box-shadow .2s ease;
    }

    .nav-dropdown-toggle {
      cursor: pointer;
    }

    .nav-dropdown-toggle::after {
      content: "⌄";
      margin-left: 7px;
      font-size: 15px;
      line-height: 1;
      transition: transform .2s ease;
    }

    .has-dropdown.is-open > .nav-dropdown-toggle::after,
    .has-dropdown:hover > .nav-dropdown-toggle::after {
      transform: rotate(180deg);
    }

    .main-nav > ul > li:first-child > a {
      border-bottom: 4px solid var(--lime);
      background: rgba(255, 255, 255, .09);
    }

    .main-nav > ul > li > a:hover,
    .main-nav > ul > li > a:focus-visible,
    .nav-dropdown-toggle:hover,
    .nav-dropdown-toggle:focus-visible,
    .has-dropdown.is-open > .nav-dropdown-toggle {
      background: rgba(255, 255, 255, .11);
      box-shadow: inset 0 -3px 0 rgba(99, 146, 4, .88);
    }

    .dropdown-menu {
      position: absolute;
      z-index: 120;
      top: calc(100% + 1px);
      right: 0;
      display: none;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      width: 440px;
      margin: 0;
      padding: 9px;
      overflow: hidden;
      border: 1px solid rgba(78, 117, 0, .20);
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      background: var(--paper);
      box-shadow: 0 18px 34px rgba(54, 83, 0, .24);
      list-style: none;
    }

    .has-dropdown:hover > .dropdown-menu,
    .has-dropdown.is-open > .dropdown-menu {
      display: grid;
    }

    .dropdown-menu a {
      position: relative;
      display: flex;
      min-height: 41px;
      padding: 9px 12px 9px 26px;
      align-items: center;
      border-radius: var(--radius-sm);
      color: #435035;
      font-size: 12px;
      font-weight: 750;
      text-decoration: none;
      transition: color .18s ease, background-color .18s ease, padding-left .18s ease;
    }

    .dropdown-menu a::before {
      content: "";
      position: absolute;
      left: 12px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-700);
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible {
      padding-left: 30px;
      color: var(--green-900);
      background: var(--lime-soft);
    }

    .page-layout {
      display: grid;
      grid-template-columns: 238px minmax(0, 1fr);
      gap: 30px;
      padding-block: 30px 44px;
    }

    .sidebar {
      min-width: 0;
    }

    .sidebar-panel {
      position: sticky;
      top: 18px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: #fbfcf7;
      box-shadow: var(--shadow-card);
    }

    .sidebar-heading {
      padding: 14px 17px;
      color: var(--white);
      background: linear-gradient(135deg, var(--green-800), var(--green-700));
      font-family: Georgia, "Times New Roman", serif;
      font-size: 19px;
      font-weight: 600;
    }

    .pest-list {
      margin: 0;
      padding: 5px 0;
      list-style: none;
    }

    .pest-list a {
      position: relative;
      display: block;
      min-height: 37px;
      padding: 9px 28px;
      border-bottom: 1px solid #edf0e7;
      color: #415047;
      font-size: 13px;
      font-weight: 650;
      text-decoration: none;
      transition: color .18s ease, background-color .18s ease, padding-left .18s ease;
    }

    .pest-list a::before {
      content: "";
      position: absolute;
      top: 15px;
      left: 15px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #abc07d;
    }

    .pest-list a::after {
      content: "›";
      position: absolute;
      top: 7px;
      right: 14px;
      color: #8da18f;
      font-size: 19px;
    }

    .pest-list a:hover,
    .pest-list a:focus-visible {
      padding-left: 32px;
      color: var(--green-900);
      background: linear-gradient(90deg, var(--lime-soft), #fafcf5);
    }

    .pest-list li:first-child a {
      color: var(--green-900);
      background: linear-gradient(90deg, var(--lime-soft), #fafcf5);
    }

    .pest-list li:first-child a::before {
      top: 9px;
      left: 12px;
      width: 6px;
      height: 19px;
      border-radius: 3px;
      background: var(--green-700);
    }

    .audience-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7px;
      margin-top: 12px;
    }

    .audience-link {
      display: block;
      padding: 11px 7px;
      border: 1px solid #d7e2cd;
      border-radius: var(--radius-sm);
      color: var(--green-800);
      background: #f3f7eb;
      box-shadow: 0 3px 10px rgba(78, 117, 0, .07);
      font-size: 11px;
      font-weight: 800;
      text-align: center;
      text-decoration: none;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .audience-link:hover {
      border-color: rgba(99, 146, 4, .38);
      box-shadow: 0 8px 18px rgba(78, 117, 0, .12);
      transform: translateY(-2px);
    }

    .pest-mobile {
      display: none;
    }

    .content {
      min-width: 0;
    }

    .home-db-content {
      display: flow-root;
    }

    .eyebrow {
      margin-bottom: 8px;
      color: var(--green-700);
      font-size: 11px;
      font-weight: 850;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

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

    h1,
    h2,
    h3 {
      color: var(--green-900);
      font-family: Georgia, "Times New Roman", serif;
    }

    h1 {
      max-width: 760px;
      margin-bottom: 15px;
      font-size: clamp(34px, 4vw, 44px);
      font-weight: 600;
      line-height: 1.08;
    }

    h2 {
      margin-bottom: 9px;
      font-size: 27px;
      font-weight: 600;
      line-height: 1.18;
    }

    h3 {
      margin-bottom: 7px;
      font-size: 19px;
      font-weight: 600;
      line-height: 1.25;
    }

    .lead {
      max-width: 780px;
      margin-bottom: 12px;
      color: #4f5d54;
      font-size: 16px;
      line-height: 1.68;
    }

    .supporting-copy {
      max-width: 780px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .section {
      margin-top: 34px;
    }

    .section-heading {
      display: flex;
      margin-bottom: 17px;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
    }

    .section-heading p {
      max-width: 470px;
      margin-bottom: 2px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
      text-align: right;
    }

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

    .service-card {
      position: relative;
      min-height: 142px;
      padding: 20px 20px 18px 76px;
      overflow: hidden;
      border: 1px solid #d7e2cd;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, #f4f8ec 0%, #fffefb 82%);
      box-shadow: var(--shadow-card);
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .service-card:hover {
      border-color: rgba(99, 146, 4, .34);
      box-shadow: var(--shadow-hover);
      transform: translateY(-3px);
    }

    .service-mark {
      position: absolute;
      top: 20px;
      left: 19px;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 12px;
      color: var(--white);
      background: linear-gradient(145deg, var(--green-800), var(--green-950));
      box-shadow: 0 7px 15px rgba(78, 117, 0, .17);
      font-size: 12px;
      font-weight: 850;
    }

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

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

    .offer-card {
      position: relative;
      padding: 23px 23px 22px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--paper);
      box-shadow: var(--shadow-card);
    }

    .offer-card::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 90px;
      height: 90px;
      border-radius: 0 0 0 100%;
      background: linear-gradient(135deg, rgba(99, 146, 4, .22), rgba(99, 146, 4, .04));
    }

    .offer-card.business {
      color: #e2eee6;
      border-color: var(--green-900);
      background: linear-gradient(145deg, var(--green-950), var(--green-900));
    }

    .offer-card.business h3 {
      color: var(--white);
    }

    .offer-kicker {
      margin-bottom: 8px;
      color: var(--green-700);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .business .offer-kicker {
      color: var(--lime-strong);
    }

    .offer-card p {
      position: relative;
      margin-bottom: 13px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.62;
    }

    .offer-card.business p {
      color: #d0dfd4;
    }

    .offer-list {
      position: relative;
      margin: 0 0 17px;
      padding: 0;
      list-style: none;
    }

    .offer-list li {
      position: relative;
      margin-top: 8px;
      padding-left: 17px;
      color: #536057;
      font-size: 12px;
      line-height: 1.48;
    }

    .offer-list li::before {
      content: "";
      position: absolute;
      top: 7px;
      left: 0;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green-700);
      box-shadow: 0 0 0 3px rgba(99, 146, 4, .12);
    }

    .business .offer-list li {
      color: #d5e3d9;
    }

    .business .offer-list li::before {
      background: var(--lime-strong);
      box-shadow: 0 0 0 3px rgba(121, 170, 27, .15);
    }

    .offer-link {
      position: relative;
      display: inline-flex;
      min-height: 38px;
      padding: 9px 13px;
      align-items: center;
      border: 1px solid rgba(78, 117, 0, .26);
      border-radius: var(--radius-sm);
      color: var(--green-900);
      background: var(--lime-soft);
      font-size: 11px;
      font-weight: 850;
      text-decoration: none;
      transition: box-shadow .2s ease, transform .2s ease;
    }

    .offer-link::after {
      content: "→";
      margin-left: 8px;
      font-size: 14px;
    }

    .business .offer-link {
      border-color: rgba(255, 255, 255, .16);
      color: var(--green-950);
      background: var(--lime-strong);
    }

    .offer-link:hover {
      box-shadow: 0 8px 17px rgba(55, 84, 0, .18);
      transform: translateY(-2px);
    }

    .quality-note {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 15px;
      margin-top: 14px;
      padding: 17px 19px;
      align-items: center;
      border-left: 4px solid var(--lime);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      background: linear-gradient(105deg, var(--cream), #fbfcf7);
      box-shadow: 0 5px 16px rgba(78, 117, 0, .08);
    }

    .quality-note strong {
      display: grid;
      width: 40px;
      height: 40px;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: var(--green-700);
      box-shadow: 0 6px 14px rgba(78, 117, 0, .16);
      font-size: 16px;
    }

    .quality-note p {
      margin: 0;
      color: #4e5c53;
      font-size: 13px;
      line-height: 1.58;
    }

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

    .pest-card {
      position: relative;
      min-height: 138px;
      overflow: hidden;
      border: 1px solid #dce4d8;
      border-radius: var(--radius-md);
      background: #e9eee6;
      box-shadow: 0 5px 16px rgba(78, 117, 0, .09);
      text-decoration: none;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .pest-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 34%, rgba(54, 83, 0, .88) 100%);
    }

    .pest-card img {
      width: 100%;
      height: 138px;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .pest-card span {
      position: absolute;
      z-index: 2;
      right: 13px;
      bottom: 12px;
      left: 13px;
      color: var(--white);
      font-size: 14px;
      font-weight: 800;
    }

    .pest-card:hover {
      border-color: rgba(99, 146, 4, .40);
      box-shadow: var(--shadow-hover);
      transform: translateY(-3px);
    }

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

    .cta-section {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      margin-top: 36px;
      padding: 25px 27px;
      align-items: center;
      border-radius: var(--radius-md);
      color: #dfece3;
      background:
        radial-gradient(circle at 88% 0%, rgba(99, 146, 4, .24), transparent 30%),
        linear-gradient(135deg, var(--green-950), var(--green-800));
      box-shadow: 0 13px 27px rgba(78, 117, 0, .20);
    }

    .cta-section h2 {
      margin-bottom: 6px;
      color: var(--white);
      font-size: 25px;
    }

    .cta-section p {
      margin-bottom: 0;
      color: #cadbd0;
      font-size: 13px;
      line-height: 1.55;
    }

    .cta-button {
      display: inline-flex;
      min-width: 184px;
      min-height: 46px;
      padding: 11px 18px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .62);
      border-radius: var(--radius-md);
      color: var(--green-950);
      background: linear-gradient(180deg, #fffef8, #e9f1d8);
      box-shadow: 0 9px 20px rgba(0, 0, 0, .18);
      font-size: 14px;
      font-weight: 850;
      text-decoration: none;
      transition: box-shadow .2s ease, filter .2s ease, transform .2s ease;
    }

    .cta-button:hover,
    .cta-button:focus-visible {
      filter: saturate(1.06) brightness(1.03);
      box-shadow: 0 13px 25px rgba(0, 0, 0, .24);
      transform: translateY(-2px);
    }

    .site-footer {
      color: #c5d6ca;
      background: var(--green-900);
    }

    .site-footer .footer-main {
      display: grid;
      grid-template-columns: .72fr 2fr .78fr;
      gap: 24px;
      min-height: 112px;
      padding-block: 22px 16px;
      align-items: start;
      font-size: 11px;
    }

    .footer-brand strong {
      color: var(--white);
      font-size: 12px;
    }

    .footer-navigation {
      display: grid;
      gap: 12px;
    }

    .footer-links,
    .footer-pest-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 15px;
    }

    .footer-links a,
    .footer-pest-links a {
      color: #c5d6ca;
      text-decoration: none;
    }

    .footer-links a {
      color: var(--white);
      font-weight: 700;
    }

    .footer-pest-links {
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .footer-links a:hover,
    .footer-links a:focus-visible,
    .footer-pest-links a:hover,
    .footer-pest-links a:focus-visible {
      color: #dff0a8;
    }

    .footer-contact {
      text-align: right;
    }

    .footer-contact > br:last-child {
      display: none;
    }

    .footer-contact .gray_16,
    .footer-contact a {
      color: var(--white);
      font: inherit;
      text-decoration: none;
    }

    .footer-meta {
      display: flex;
      min-height: 44px;
      padding-block: 12px 18px;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, .14);
      font-size: 11px;
    }

    .footer-meta a {
      color: #d8e7db;
      text-decoration: none;
    }

    :focus-visible {
      outline: 3px solid rgba(99, 146, 4, .82);
      outline-offset: 3px;
    }

    @media (max-width: 900px) {
      .site-shell {
        width: min(calc(100% - 20px), 760px);
        margin: 10px auto;
        border-radius: 12px;
      }

      .inner {
        width: min(calc(100% - 30px), 700px);
      }

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

      .logo {
        width: 178px;
      }

      .contact-cluster {
        gap: 8px;
        margin-left: auto;
      }

      .contact-cluster > div {
        display: none;
      }

      .header-cta {
        min-height: 40px;
        padding: 9px 12px;
      }

      .header-cta-desktop {
        display: none;
      }

      .header-cta-mobile {
        display: inline;
      }

      .hamburger {
        display: block;
      }

      .hero,
      .hero .inner {
        min-height: 198px;
      }

      .hero-caption {
        bottom: 16px;
        padding: 12px 14px 13px;
      }

      .hero-caption strong {
        font-size: 20px;
      }

      .hero-caption span {
        font-size: 12px;
      }

      .main-nav {
        display: none;
        position: absolute;
        z-index: 100;
        top: 78px;
        right: 10px;
        left: 10px;
        overflow: hidden;
        border-radius: var(--radius-md);
        box-shadow: 0 18px 38px rgba(54, 83, 0, .30);
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav > ul {
        display: block;
        width: 100%;
      }

      .main-nav > ul > li > a,
      .nav-dropdown-toggle {
        min-height: 48px;
        padding: 12px 18px;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
        text-align: left;
      }

      .nav-dropdown-toggle::after {
        margin-left: auto;
      }

      .main-nav > ul > li:first-child > a {
        border-bottom: 1px solid rgba(255, 255, 255, .10);
        border-left: 4px solid var(--lime);
      }

      .dropdown-menu {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        padding: 7px;
        border: 0;
        border-radius: 0;
        background: var(--green-950);
        box-shadow: inset 0 5px 12px rgba(0, 0, 0, .10);
      }

      .dropdown-menu a {
        min-height: 40px;
        color: #edf4e3;
      }

      .dropdown-menu a:hover,
      .dropdown-menu a:focus-visible {
        color: var(--green-950);
        background: var(--lime-strong);
      }

      .page-layout {
        display: block;
        padding-block: 20px 32px;
      }

      .sidebar {
        display: none;
      }

      .pest-mobile {
        display: block;
        margin-bottom: 24px;
        border: 1px solid #d4dfca;
        border-radius: var(--radius-md);
        background: linear-gradient(180deg, #f9fbf4, #eff5e4);
        box-shadow: var(--shadow-card);
      }

      .pest-mobile summary {
        min-height: 48px;
        padding: 14px 44px 13px 16px;
        color: var(--green-900);
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
        list-style: none;
      }

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

      .pest-mobile summary::after {
        content: "⌄";
        position: absolute;
        right: 28px;
        color: var(--green-700);
        font-size: 19px;
      }

      .pest-mobile[open] summary::after {
        transform: rotate(180deg);
      }

      .pest-mobile .pest-list {
        border-top: 1px solid #d4dfca;
        background: var(--paper);
      }

      h1 {
        font-size: clamp(31px, 7vw, 39px);
      }

      .section-heading {
        display: block;
      }

      .section-heading p {
        max-width: none;
        text-align: left;
      }

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

      .site-footer .footer-main {
        grid-template-columns: 1fr 1.8fr;
        padding-block: 18px;
      }

      .footer-navigation {
        grid-column: 1 / -1;
        grid-row: 2;
      }

      .footer-contact {
        text-align: right;
      }
    }

    @media (max-width: 620px) {
      body {
        background: #eef2eb;
      }

      .site-shell {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
      }

      .inner {
        width: calc(100% - 28px);
      }

      .desktop-header {
        position: relative;
        z-index: 110;
      }

      .logo {
        width: min(155px, 46vw);
      }

      .contact-cluster {
        gap: 6px;
      }

      .header-cta {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 11px;
      }

      .hamburger {
        width: 42px;
        height: 40px;
      }

      .main-nav {
        top: 68px;
        right: 8px;
        left: 8px;
      }

      .hero {
        background-position: 48% center;
      }

      .hero,
      .hero .inner {
        min-height: 178px;
      }

      .hero-caption {
        width: min(320px, 92%);
        bottom: 13px;
      }

      .hero-caption strong {
        font-size: 18px;
      }

      .hero-caption span {
        font-size: 11px;
      }

      .page-layout {
        padding-block: 17px 28px;
      }

      .pest-mobile {
        margin-bottom: 22px;
      }

      h1 {
        margin-bottom: 13px;
        font-size: 30px;
      }

      h2 {
        font-size: 24px;
      }

      .lead {
        font-size: 15px;
        line-height: 1.62;
      }

      .supporting-copy {
        font-size: 13px;
      }

      .section {
        margin-top: 29px;
      }

      .services-grid,
      .offer-grid {
        grid-template-columns: 1fr;
      }

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

      .pest-grid {
        gap: 10px;
      }

      .pest-card,
      .pest-card img {
        min-height: 116px;
        height: 116px;
      }

      .quality-note {
        grid-template-columns: 1fr;
      }

      .quality-note strong {
        display: none;
      }

      .cta-section {
        grid-template-columns: 1fr;
        padding: 22px 20px;
      }

      .cta-button {
        width: 100%;
      }

      .site-footer .footer-main {
        display: block;
        text-align: center;
      }

      .footer-navigation {
        margin-block: 18px;
      }

      .footer-links,
      .footer-pest-links {
        justify-content: center;
      }

      .footer-contact {
        margin-top: 14px;
        text-align: center;
      }

      .footer-meta {
        display: grid;
        gap: 8px;
        padding-bottom: 18px;
        text-align: center;
      }
    }

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