:root {
  --navy: #0d1a2b;
  --navy-medium: #12233a;
  --navy-light: #1a3050;
  --green: #8eb340;
  --green-dark: #6f9430;
  --green-light: #b7d878;
  --cream: #f8f7f2;
  --cream-dark: #f1efe6;
  --white: #ffffff;
  --text: #1b2430;
  --text-muted: #536074;
  --border: #e4e1d5;
  --shadow: 0 18px 45px rgba(13, 26, 43, 0.15);
  --content-width: 1200px;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

p,
h1,
h2,
h3,
ol,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.18;
}

p {
  line-height: 1.7;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--green);
}

.button--primary:hover {
  background: var(--green-dark);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.button--outline-dark {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.button--outline-dark:hover {
  color: var(--white);
  background: var(--navy);
}

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

.button--light:hover {
  background: var(--cream-dark);
}

.button--full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-row {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 180px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--navy);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover {
  color: var(--green-dark);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-quote {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 650px;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(13, 26, 43, 0.84), rgba(13, 26, 43, 0.56)), url("../images/hero-team.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 6px solid var(--green);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: center;
  padding-block: 72px;
}

.section-label {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-label--light {
  color: var(--green-light);
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  letter-spacing: -0.03em;
}

.hero-summary {
  max-width: 620px;
  margin-top: 22px;
  color: #d6dce6;
  font-size: 1.05rem;
}

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

.quote-card {
  padding: 30px;
  color: var(--text);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.quote-card h2 {
  font-size: 1.35rem;
}

.quote-card > p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.quote-form {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  color: var(--navy);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 7px;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(142, 179, 64, 0.22);
  border-color: var(--green-dark);
}

.form-note,
.form-status {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.section {
  padding-block: 88px;
}

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

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

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.section-heading > p:last-child {
  margin-top: 14px;
  color: var(--text-muted);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: flex-end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(13, 26, 43, 0.12);
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(13, 26, 43, 0.15) 15%, rgba(13, 26, 43, 0.92) 100%);
  transition: background 180ms ease;
}

.service-card:hover::before {
  background: linear-gradient(180deg, rgba(13, 26, 43, 0.1) 5%, rgba(13, 26, 43, 0.96) 100%);
}

.service-card--general {
  background-image: url("../images/service-general-pest.jpg");
}

.service-card--rodents {
  background-image: url("../images/service-rodent-control.jpg");
}

.service-card--wildlife {
  background-image: url("../images/service-wildlife.jpg");
}

.service-card--bed-bugs {
  background-image: url("../images/service-bed-bugs.jpg");
}

.service-card--inspection {
  background-image: url("../images/service-inspection.jpg");
}

.service-card--exclusion {
  background-image: url("../images/service-exclusion.jpg");
}

.service-card--mosquito {
  background-image: url("../images/mosquito-window-screen.jpg");
  background-position: center 56%;
}

.service-card--featured {
  grid-column: 1 / -1;
  min-height: 280px;
}

.service-card--featured .service-card__content {
  max-width: 720px;
}

.service-card__content {
  width: 100%;
  padding: 26px;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.service-card p {
  margin-top: 9px;
  color: #dfe4eb;
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--green-light);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.service-card a span {
  transition: transform 160ms ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.property-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.property-service + .property-service {
  margin-top: 72px;
}

.property-service--reverse .property-service__image {
  order: 2;
}

.property-service__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.property-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-service__content h3 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.property-service__content > p:last-of-type {
  max-width: 560px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.property-service__content .button {
  margin-top: 24px;
}

.about-section {
  padding-block: 88px;
  color: var(--white);
  background: var(--navy);
}

.about-content {
  max-width: 940px;
  text-align: center;
}

.about-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.about-intro {
  max-width: 700px;
  margin: 16px auto 0;
  color: #bdc6d4;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
  list-style: none;
  text-align: left;
}

.about-list li {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(13, 26, 43, 0.08);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.about-list li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--navy);
  background: var(--green-light);
  border-radius: 50%;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.about-list h3 {
  margin-top: 16px;
  color: var(--navy);
  font-size: 1rem;
}

.about-list p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.contact-banner {
  padding-block: 54px;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-dark), var(--green));
}

.contact-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.family-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.family-mark img {
  width: 155px;
  height: auto;
  padding: 7px 10px;
  background: var(--white);
  border-radius: 7px;
}

.family-mark span {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-banner h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.contact-banner p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-banner__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
  padding-block: 64px 50px;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-column h2 {
  margin-bottom: 16px;
  font-size: 0.84rem;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-column li,
.footer-column address,
.footer-column a {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-column address {
  display: grid;
  gap: 10px;
}

.footer-column a:hover {
  color: var(--green-dark);
}

.footer-bottom {
  padding-block: 20px;
  color: var(--white);
  background: var(--navy-medium);
}

.footer-bottom p {
  font-size: 0.78rem;
}

.announcement {
  width: min(460px, calc(100% - 32px));
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
}

.announcement::backdrop {
  background: rgba(13, 26, 43, 0.76);
  backdrop-filter: blur(4px);
}

.announcement form {
  position: relative;
  padding: 38px 32px 30px;
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.announcement__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: var(--text-muted);
  background: var(--cream-dark);
  border: 0;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
}

.announcement__stop-logo {
  width: 112px;
  height: auto;
  margin: 12px auto 8px;
}

.announcement__lead {
  margin-top: 10px;
  color: var(--text-muted);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement__brand-logo {
  width: 245px;
  height: auto;
  margin: 4px auto 8px;
}

.announcement h2 {
  font-size: 1.35rem;
}

.announcement p:last-of-type {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.announcement .button {
  margin-top: 24px;
}

:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .header-quote {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .quote-card {
    max-width: 720px;
  }

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

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

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, var(--content-width));
  }

  .header-row {
    min-height: 70px;
    flex-wrap: wrap;
  }

  .brand {
    width: 165px;
  }

  .js .menu-toggle {
    display: block;
  }

  .primary-nav {
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 18px;
    margin: 0;
  }

  .primary-nav a {
    width: 100%;
    padding: 11px 0;
  }

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

  .js .primary-nav {
    display: none;
  }

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

  .hero {
    min-height: 0;
    background-image: linear-gradient(rgba(13, 26, 43, 0.76), rgba(13, 26, 43, 0.66)), url("../images/hero-team.jpg");
    background-position: 42% center;
  }

  .hero-layout {
    padding-block: 58px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.6rem);
  }

  .property-service,
  .property-service--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .property-service--reverse .property-service__image {
    order: 0;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .contact-banner__content {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .section,
  .about-section {
    padding-block: 68px;
  }

  .hero-layout {
    padding-block: 48px;
  }

  .hero-actions,
  .contact-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-banner__actions .button {
    width: 100%;
  }

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

  .form-row,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .property-service + .property-service {
    margin-top: 56px;
  }

  .family-mark {
    align-items: flex-start;
    flex-direction: column;
  }

  .announcement form {
    padding: 34px 22px 24px;
  }
}

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

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



.design-credit {
  background: #101010;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.design-credit__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #d7d7d7;
  text-transform: uppercase;
  white-space: nowrap;
}

.design-credit__label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.design-credit__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.design-credit__brand img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex: 0 0 auto;
}

.freshwork-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: #ffffff;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
}

.freshwork-wordmark__work {
  color: #f2a400;
  margin-inline: 0.22em;
}

.freshwork-wordmark__domain {
  color: #ffffff;
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
}

.design-credit__brand:hover .freshwork-wordmark,
.design-credit__brand:focus-visible .freshwork-wordmark {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .design-credit__inner {
    min-height: 54px;
    gap: 7px;
    padding-inline: 12px;
  }

  .design-credit__label {
    font-size: 0.48rem;
    letter-spacing: 0.09em;
  }

  .design-credit__brand {
    gap: 5px;
  }

  .design-credit__brand img {
    width: 21px;
    height: 21px;
  }

  .freshwork-wordmark {
    font-size: 0.72rem;
  }
}

