:root {
  --red: #c11618;
  --black: #101010;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("https://imagerepo.jordan-evans.workers.dev/media/localpestco/aboriginal-art-fish-and-geometric-patterns.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transform: scale(1.04);
  filter: blur(6px) brightness(0.4);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.25);
}

a {
  color: var(--red);
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 2px solid var(--red);
  padding: 10px 20px;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.top-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #e4e4e4;
  text-decoration: none;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  background: #fff;
}

.site-nav {
  position: relative;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(92vw, 380px);
  max-height: calc(100vh - 130px);
  overflow: auto;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 2px solid var(--red);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

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

.menu-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  white-space: nowrap;
}

.menu-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #e8e8e8;
  padding-top: 10px;
}

.menu-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.menu-heading {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f8f8f;
}

.menu-group .menu-link {
  font-weight: 600;
}

.wrap {
  width: min(1100px, 95%);
  margin: 16px auto;
}

.module {
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}

.hero img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.kicker {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--red);
}

.btn.ghost {
  background: #fff;
  color: var(--red);
}

.location-grid {
  columns: 2;
}

.sitemap-links {
  columns: 2;
  padding-left: 16px;
}

.content-media {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}

.content-media__image img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  display: block;
}

.content-media__image {
  margin: 0;
}

.content-media--reverse .content-media__image {
  order: -1;
}

.floating-call-cta {
  display: none;
}



.site-footer {
  margin-top: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
}

.footer-copy {
  margin: 12px 0 0;
}

.footer-title {
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a,
.footer-contact a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.footer-license {
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.footer-license strong {
  color: var(--red);
}

.license-feature h2 {
  margin-top: 0;
}
@media (max-width: 1024px) {
  body {
    padding-bottom: 84px;
  }

  .top {
    padding: 8px 10px;
    gap: 8px;
  }

  .brand span {
    display: none;
  }

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

  .top-actions {
    gap: 6px;
  }

  .top-contact {
    padding: 6px 8px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .menu-link {
    font-size: 0.98rem;
  }

  .floating-call-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 30;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 999px;
    padding: 13px 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  }

  .hero,
  .content-media,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .content-media--reverse .content-media__image {
    order: 0;
  }

  .location-grid,
  .sitemap-links {
    columns: 1;
  }
}
