:root {
  --ink: #102039;
  --muted: #5d6c7f;
  --line: #dce5ef;
  --paper: #f7fafc;
  --wash: #edf5f2;
  --navy: #05285f;
  --navy-2: #031b42;
  --blue: #0f67c6;
  --green: #4b9d28;
  --green-2: #dff1d8;
  --white: #ffffff;
  --alert: #f5b83d;
  --shadow: 0 24px 80px rgba(3, 27, 66, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(3, 27, 66, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  font-size: 0.92rem;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.site-nav .nav-cta {
  background: var(--alert);
  color: var(--navy-2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px auto;
  background: var(--white);
}

.hero {
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 118px clamp(18px, 5vw, 64px) 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(75, 157, 40, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(5, 40, 95, 0.98), rgba(3, 27, 66, 0.97) 54%, #0a3c88);
}

.hero-content {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.band .eyebrow,
.quote .eyebrow {
  color: #8bd46d;
}

.hero h1,
.intro h2,
.section-heading h2,
.band h2,
.split h2,
.quote h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--alert);
  color: var(--navy-2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-panel {
  display: grid;
  gap: 18px;
  justify-items: center;
  align-self: center;
}

.hero-panel > img {
  width: min(360px, 84vw);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.emergency-card {
  width: min(360px, 100%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.emergency-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.emergency-card strong,
.emergency-card span {
  display: block;
}

.emergency-card strong {
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1;
}

.emergency-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.intro,
.recommendations,
.section,
.band,
.quote {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.band h2,
.split h2,
.quote h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.intro p:last-child,
.band p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.recommendations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--navy-2);
  color: var(--white);
}

.recommendations article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.recommendations span {
  color: var(--alert);
  font-size: 1.75rem;
  font-weight: 900;
}

.recommendations h2 {
  margin: 34px 0 8px;
  font-size: 1.16rem;
  line-height: 1.15;
}

.recommendations p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 30px;
}

.services {
  background: var(--wash);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(3, 27, 66, 0.06);
  color: var(--white);
  isolation: isolate;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.service-card::before {
  background-image: var(--service-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.service-card::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 27, 66, 0.88), rgba(3, 27, 66, 0.58) 58%, rgba(3, 27, 66, 0.22)),
    linear-gradient(0deg, rgba(3, 27, 66, 0.58), rgba(3, 27, 66, 0.18));
}

.service-card.urgent {
  color: var(--white);
  border-color: var(--navy);
}

.service-card .icon {
  color: #98e676;
  font-weight: 900;
}

.service-card.urgent .icon,
.service-card.urgent p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card h3,
.timeline h3 {
  margin: 48px 0 10px;
  font-size: 1.25rem;
}

.service-card p,
.timeline p,
.faq p,
.checklist p {
  color: var(--muted);
}

.service-card p {
  color: rgba(255, 255, 255, 0.86);
}

.biohazard-bg {
  --service-image: url("assets/service-biohazard-cleanup.png");
}

.hoarding-bg {
  --service-image: url("assets/service-hoarding-cleanup.png");
}

.odor-bg {
  --service-image: url("assets/service-odor-removal.png");
}

.carpet-bg {
  --service-image: url("assets/service-carpet-cleaning.png");
}

.disinfection-bg {
  --service-image: url("assets/service-disinfection.png");
}

.barrier-bg {
  --service-image: url("assets/service-odor-barriers.png");
}

.ozone-bg {
  --service-image: url("assets/service-ozone-treatment.png");
}

.emergency-bg {
  --service-image: url("assets/service-emergency-response.png");
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 6vw, 80px);
  color: var(--white);
  background: var(--navy);
}

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

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

.proof-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.proof-grid h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

.band p {
  color: rgba(255, 255, 255, 0.78);
}

.stats {
  display: grid;
  gap: 12px;
  margin: 0;
}

.stats div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stats dt {
  color: var(--alert);
  font-size: 1.35rem;
  font-weight: 900;
}

.stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.timeline article {
  position: relative;
  padding-top: 28px;
  border-top: 3px solid var(--green);
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-2);
  color: var(--navy);
  font-weight: 900;
}

.timeline h3 {
  margin-top: 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #f3f7fb;
}

.checklist {
  display: grid;
  gap: 14px;
}

.checklist p {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 1.04rem;
}

.checklist span {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--green-2);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  background: var(--navy-2);
  color: var(--white);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
}

address {
  margin-top: 28px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
}

address a {
  color: var(--alert);
}

.contact-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-apps a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
}

.photo-fields {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.photo-fields legend {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: #020f25;
}

.site-footer p {
  margin: 0;
}

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--alert);
  color: var(--navy-2);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 22%, rgba(75, 157, 40, 0.24), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.thanks {
  width: min(760px, 100%);
  text-align: center;
}

.thanks img {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
}

.thanks h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.04;
}

.thanks p:not(.eyebrow) {
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.thanks a:not(.button) {
  color: var(--alert);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .service-grid,
  .recommendations,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .hero-panel {
    justify-items: start;
  }

  .hero-panel > img,
  .emergency-card {
    width: min(320px, 100%);
  }

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

  .intro,
  .band,
  .split,
  .quote {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: rgba(3, 27, 66, 0.97);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 6px;
  }

  .hero {
    min-height: 820px;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.45rem);
  }

  .service-grid,
  .timeline,
  .recommendations,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    padding-bottom: 82px;
  }
}
