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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #ede7da;
  --bg-warm: #f7f1e4;
  --surface: rgba(255, 250, 242, 0.86);
  --surface-strong: #fffdf8;
  --surface-tint: #f3ebde;
  --surface-dark: rgba(28, 50, 19, 0.9);
  --line: rgba(45, 90, 27, 0.12);
  --line-strong: rgba(45, 90, 27, 0.22);
  --text: #1f2c1a;
  --muted: #5f6b5a;
  --green: #2d5a1b;
  --green-deep: #203f14;
  --green-soft: #dae6d0;
  --gold: #c9a227;
  --gold-soft: #f0e2b1;
  --sand: #efe4c6;
  --sand-deep: #dbc59c;
  --sage-mist: #dde5d6;
  --stone: #ad9473;
  --olive-hero: #425a40;
  --olive-hero-deep: #344832;
  --khaki: #b6a276;
  --khaki-bright: #d2c193;
  --shadow: 0 22px 60px rgba(53, 61, 42, 0.12);
  --radius-lg: 10px;
  --radius-md: 6px;
  --sans: "Barlow", sans-serif;
  --condensed: "Barlow Semi Condensed", sans-serif;
  --serif: "Cormorant Garamond", serif;
  --logo-display: "Saira Stencil One", sans-serif;
  --logo-sub: "Syncopate", sans-serif;
}

body {
  font-family: var(--sans);
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 162, 39, 0.14), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(45, 90, 27, 0.12), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(186, 148, 84, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf6ec 0%, var(--bg) 36%, #e7e6da 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 90, 27, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 90, 27, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 78%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.28), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(201, 162, 39, 0.12), transparent 14%),
    radial-gradient(circle at 72% 72%, rgba(45, 90, 27, 0.08), transparent 18%);
  opacity: 0.65;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
}

body.menu-locked {
  overflow: hidden;
}

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

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

.sample-bar,
.command-strip,
.section,
.site-footer {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav,
.hero {
  width: 100%;
}

.sample-bar {
  margin-top: 18px;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.78rem;
  border: 1px solid rgba(201, 162, 39, 0.32);
  border-radius: 6px;
  background: rgba(255, 252, 245, 0.76);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sample-bar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sample-bar-mark {
  width: 128px;
  height: auto;
}

.sample-bar .sep {
  opacity: 0.35;
}

.site-nav {
  margin-top: 16px;
  padding: 12px clamp(16px, 2.6vw, 28px);
  position: sticky;
  top: 0;
  z-index: 20;
  border: 1px solid var(--line);
  border-left: none;
  border-right: none;
  border-radius: 0;
  background: rgba(255, 252, 245, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 30px rgba(53, 61, 42, 0.08);
  transition:
    padding 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.site-nav.is-scrolled {
  padding: 9px clamp(16px, 2.6vw, 28px);
  border-color: rgba(240, 226, 177, 0.16);
  background: rgba(31, 56, 20, 0.86);
  box-shadow: 0 14px 30px rgba(20, 28, 16, 0.16);
}

.site-nav-inner {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3e573b 0%, #32472f 100%);
  color: #fffdf5;
  box-shadow: 0 12px 28px rgba(22, 31, 18, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.nav-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(22, 31, 18, 0.24);
}

.site-nav.is-scrolled .nav-logo {
  min-height: 58px;
  background: linear-gradient(135deg, rgba(239, 228, 198, 0.08) 0%, rgba(210, 193, 147, 0.04) 100%);
  box-shadow: none;
}

.brand-mark {
  display: inline-flex;
  color: var(--khaki);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: auto;
}

.brand-mark-nav {
  width: 44px;
  flex: 0 0 44px;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-copy-nav {
  gap: 0.22rem;
}

.logo-title-sm {
  font-family: var(--logo-display);
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-subtitle-sm {
  font-family: var(--logo-sub);
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 253, 245, 0.78);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  margin: 0 12px;
  padding: 6px;
  border: 1px solid rgba(45, 90, 27, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.36);
  transition: background 0.24s ease, border-color 0.24s ease;
}

.site-nav.is-scrolled .nav-links {
  border-color: rgba(240, 226, 177, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.nav-meta {
  min-width: 152px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px;
}

.nav-meta-label {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-phone {
  margin-top: 0.18rem;
  font-family: var(--condensed);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green-deep);
}

.site-nav.is-scrolled .nav-meta-label {
  color: rgba(255, 253, 245, 0.54);
}

.site-nav.is-scrolled .nav-phone {
  color: #fff9ec;
}

.nav-links a,
.nav-cta,
.nav-toggle,
.mobile-nav a,
.btn {
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  flex: 1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--muted);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(45, 90, 27, 0.1);
  color: var(--green);
  transform: translateY(-1px);
}

.site-nav.is-scrolled .nav-links a {
  color: rgba(255, 253, 245, 0.72);
}

.site-nav.is-scrolled .nav-links a:hover,
.site-nav.is-scrolled .nav-links a.active {
  background: rgba(240, 226, 177, 0.12);
  color: #fff9ec;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  gap: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn-solid {
  background: var(--green);
  color: #f4f8eb;
  box-shadow: 0 14px 28px rgba(45, 90, 27, 0.18);
}

.nav-cta {
  min-width: 214px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, #e0bf63 100%);
  color: var(--green-deep);
  box-shadow: 0 14px 28px rgba(201, 162, 39, 0.22);
}

.site-nav.is-scrolled .nav-cta {
  box-shadow: 0 14px 28px rgba(10, 14, 8, 0.22);
}

.btn-ghost {
  border: 1px solid rgba(45, 90, 27, 0.18);
  background: rgba(255, 255, 255, 0.4);
  color: var(--green);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-cta:active,
.btn:active {
  transform: translateY(0);
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.nav-toggle {
  min-width: 148px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(45, 90, 27, 0.12);
  background: rgba(255, 255, 255, 0.54);
  color: var(--green);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.site-nav.is-scrolled .nav-toggle {
  border-color: rgba(240, 226, 177, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff9ec;
}

.nav-toggle-text {
  display: inline-flex;
  align-items: center;
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav-toggle-bars span {
  width: 20px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 32px;
  background:
    radial-gradient(circle at 18% 16%, rgba(201, 162, 39, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(28, 50, 19, 0.98) 0%, rgba(18, 33, 12, 0.98) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-nav.menu-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-inner {
  width: min(100%, 520px);
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.mobile-nav-kicker {
  margin-bottom: 0.5rem;
  color: rgba(240, 226, 177, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-nav a {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff9ec;
  font-size: clamp(1.5rem, 7vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease, color 0.22s ease;
}

.site-nav.menu-open .mobile-nav a,
.site-nav.menu-open .mobile-nav-footer {
  opacity: 1;
  transform: translateY(0);
}

.site-nav.menu-open .mobile-nav a:nth-child(2) {
  transition-delay: 0.06s;
}

.site-nav.menu-open .mobile-nav a:nth-child(3) {
  transition-delay: 0.12s;
}

.site-nav.menu-open .mobile-nav a:nth-child(4) {
  transition-delay: 0.18s;
}

.site-nav.menu-open .mobile-nav a:nth-child(5) {
  transition-delay: 0.24s;
}

.site-nav.menu-open .mobile-nav a:nth-child(6) {
  transition-delay: 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold-soft);
}

.mobile-nav-cta {
  margin-top: 0.7rem;
  padding: 0.95rem 1.25rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, #e0bf63 100%);
  color: var(--green-deep) !important;
  font-size: 0.98rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.mobile-nav-footer {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  transition-delay: 0.34s;
}

.mobile-nav-footer a {
  min-height: auto;
  padding: 0;
  color: rgba(255, 249, 236, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  margin-top: 0;
  min-height: min(860px, calc(100svh - 118px));
  padding: 68px clamp(20px, 4vw, 72px) 46px;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(210, 193, 147, 0.08), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(210, 193, 147, 0.06), transparent 16%),
    linear-gradient(180deg, var(--olive-hero) 0%, var(--olive-hero-deep) 100%);
  box-shadow: none;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 74% 22%, rgba(239, 228, 198, 0.06) 0 1px, transparent 1px 18px),
    linear-gradient(120deg, rgba(239, 228, 198, 0.04) 0%, transparent 28%, rgba(239, 228, 198, 0.02) 58%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 92%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(240, 226, 177, 0.12), transparent 14%),
    radial-gradient(circle at 24% 72%, rgba(255, 255, 255, 0.06), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.8;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  min-height: 100%;
  margin: 0 auto;
}

.eyebrow,
.strip-label,
.panel-label,
.service-tag,
.stat-label,
.process-number,
.media-kicker,
.pill-label,
.form-intro {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.strip-label,
.panel-label,
.service-tag,
.stat-label,
.process-number,
.media-kicker,
.pill-label {
  color: var(--green);
}

.hero-copy .eyebrow {
  transition-delay: 0.05s;
}

.hero-copy h1 {
  transition-delay: 0.14s;
}

.hero-copy .hero-lead {
  transition-delay: 0.24s;
}

.hero-copy .hero-actions {
  transition-delay: 0.34s;
}

.hero-copy .hero-pills {
  transition-delay: 0.44s;
}

.section h2,
.proof-card h3,
.service-body h3,
.process-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-brand-lockup {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 880px);
  align-items: center;
  gap: 34px;
  justify-content: start;
}

.hero-lead,
.section-intro p:last-child,
.service-body p,
.process-step p,
.proof-card p,
.reserve-copy > p,
.footer-note,
.hero-media-copy p,
.stat-card p,
.form-note,
.review-card blockquote {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--muted);
}

.hero-mark-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 352px;
  padding-top: 8px;
}

.brand-mark-hero {
  width: min(100%, 228px);
  color: var(--khaki);
  filter: drop-shadow(0 18px 26px rgba(17, 24, 14, 0.12));
}

.hero-wordmark {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-wordmark .eyebrow {
  color: rgba(239, 228, 198, 0.72);
}

.logo-title {
  margin-top: 0.8rem;
  font-family: var(--logo-display);
  font-size: clamp(4.6rem, 9vw, 10rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--khaki);
  text-wrap: balance;
}

.logo-subtitle {
  margin-top: 0.9rem;
  font-family: var(--logo-sub);
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.68em;
  text-transform: uppercase;
  color: var(--khaki-bright);
}

.hero-caption {
  max-width: 62ch;
  margin-top: 1.2rem;
  color: rgba(239, 228, 198, 0.76);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-bottom {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 20px;
  align-items: start;
}

.hero-copy {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(239, 228, 198, 0.1);
  background: rgba(19, 29, 16, 0.2);
  backdrop-filter: blur(14px);
}

.hero .hero-lead {
  color: rgba(239, 228, 198, 0.86);
}

.hero .btn-solid {
  background: linear-gradient(135deg, var(--khaki) 0%, var(--khaki-bright) 100%);
  color: #23311f;
  box-shadow: 0 14px 28px rgba(17, 24, 14, 0.18);
}

.hero .btn-ghost {
  border-color: rgba(239, 228, 198, 0.16);
  background: rgba(239, 228, 198, 0.06);
  color: var(--khaki-bright);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-signal {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-signal span {
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  background: rgba(239, 228, 198, 0.08);
  border: 1px solid rgba(239, 228, 198, 0.1);
  color: rgba(239, 228, 198, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.pill,
.service-card,
.process-shell,
.proof-card,
.reserve-card,
.form-card,
.command-strip > div {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.pill {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero .pill {
  background: rgba(19, 29, 16, 0.2);
  border-color: rgba(239, 228, 198, 0.1);
  box-shadow: none;
}

.hero .pill-label {
  color: var(--khaki-bright);
}

.hero .pill-value {
  color: rgba(239, 228, 198, 0.82);
}

.pill-label {
  display: block;
  margin-bottom: 0.44rem;
}

.pill-value {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

.area-chips span {
  padding: 0.48rem 0.8rem;
  border-radius: 4px;
  background: rgba(45, 90, 27, 0.08);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
}

.service-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(45, 90, 27, 0.1);
}

.command-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pest-picker {
  width: min(1220px, calc(100% - 40px));
  margin: -12px auto 14px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(45, 90, 27, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 90% -10%, rgba(210, 193, 147, 0.32), transparent 42%),
    linear-gradient(180deg, rgba(47, 77, 37, 0.96) 0%, rgba(34, 57, 28, 0.96) 100%);
  box-shadow: 0 26px 52px rgba(23, 31, 20, 0.22);
}

.pest-picker-head {
  max-width: 760px;
}

.pest-picker-head .strip-label {
  color: rgba(239, 228, 198, 0.86);
}

.pest-picker-head h2 {
  margin-top: 0.72rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 0.98;
  color: #fff9e8;
}

.pest-picker-head p {
  margin-top: 0.76rem;
  color: rgba(239, 228, 198, 0.86);
  line-height: 1.62;
}

.pest-picker-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pest-picker-card {
  min-height: 124px;
  display: grid;
  place-items: center;
  gap: 0.7rem;
  padding: 14px 12px;
  border-radius: 8px;
  border: 1px solid rgba(239, 228, 198, 0.14);
  background:
    linear-gradient(180deg, rgba(250, 245, 231, 0.08) 0%, rgba(250, 245, 231, 0.02) 100%);
  color: #fffaf0;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.pest-picker-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 228, 198, 0.32);
  background:
    linear-gradient(180deg, rgba(250, 245, 231, 0.16) 0%, rgba(250, 245, 231, 0.06) 100%);
}

.pest-picker-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(239, 228, 198, 0.24);
  background: rgba(239, 228, 198, 0.07);
}

.pest-picker-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pest-picker-name {
  font-family: var(--condensed);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pest-picker-note {
  max-width: 16ch;
  color: rgba(239, 228, 198, 0.78);
  font-size: 0.74rem;
  line-height: 1.5;
}

.pest-picker-card--more {
  place-content: center;
  background:
    linear-gradient(180deg, rgba(45, 90, 27, 0.32) 0%, rgba(45, 90, 27, 0.2) 100%);
}

.pest-picker-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.pest-guide {
  width: min(1220px, calc(100% - 40px));
  margin: -10px auto 14px;
  padding: 20px;
  border: 1px solid rgba(130, 112, 73, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(249, 244, 233, 0.94) 0%, rgba(236, 231, 217, 0.82) 100%);
  box-shadow: 0 24px 52px rgba(53, 61, 42, 0.1);
}

.pest-guide-head {
  max-width: 760px;
}

.pest-guide-head p {
  margin-top: 0.72rem;
  color: var(--muted);
  line-height: 1.68;
}

.pest-guide-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pest-guide-card {
  position: relative;
  min-height: 208px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(130, 112, 73, 0.12);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96) 0%, rgba(243, 236, 223, 0.86) 100%);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pest-guide-card::before,
.pest-guide-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.pest-guide-card::before {
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, 0.2), transparent 18%),
    linear-gradient(140deg, rgba(45, 90, 27, 0.06), transparent 54%);
}

.pest-guide-card::after {
  inset: auto -6% -18% -8%;
  height: 46%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(191, 172, 133, 0.34) 0%, rgba(136, 120, 92, 0.56) 100%);
}

.pest-guide-card h3,
.pest-guide-meta,
.pest-guide-code {
  position: relative;
  z-index: 1;
}

.pest-guide-card h3 {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 0.96;
}

.pest-guide-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.pest-guide-code {
  width: fit-content;
  min-width: 38px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  border-radius: 4px;
  background: rgba(45, 90, 27, 0.08);
  color: var(--green);
  font-family: var(--condensed);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pest-guide-meta {
  display: block;
  margin-top: 1rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pest-guide-card--ants::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, 0.24), transparent 18%),
    radial-gradient(circle at 72% 36%, rgba(45, 90, 27, 0.16) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 40%, rgba(45, 90, 27, 0.16) 0 6px, transparent 7px),
    radial-gradient(circle at 86% 44%, rgba(45, 90, 27, 0.16) 0 5px, transparent 6px);
}

.pest-guide-card--spiders::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, 0.18), transparent 18%),
    repeating-radial-gradient(circle at 82% 36%, rgba(45, 90, 27, 0.14) 0 1px, transparent 1px 9px);
}

.pest-guide-card--roaches::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, 0.22), transparent 18%),
    linear-gradient(160deg, rgba(45, 90, 27, 0.08), transparent 52%),
    radial-gradient(ellipse at 78% 38%, rgba(110, 87, 61, 0.24) 0 11%, transparent 12%);
}

.pest-guide-card--rodents::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, 0.18), transparent 18%),
    linear-gradient(140deg, rgba(45, 90, 27, 0.06), transparent 52%),
    linear-gradient(90deg, transparent 0 68%, rgba(110, 87, 61, 0.14) 68% 70%, transparent 70% 74%, rgba(110, 87, 61, 0.14) 74% 76%, transparent 76% 100%);
}

.pest-guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 90, 27, 0.22);
  box-shadow: 0 24px 48px rgba(53, 61, 42, 0.12);
}

.issue-gallery {
  width: min(1220px, calc(100% - 40px));
  margin: 26px auto 0;
}

.issue-gallery-head {
  max-width: 760px;
}

.issue-gallery-head h2,
.issue-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.issue-gallery-head h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  line-height: 0.98;
}

.issue-gallery-head p {
  margin-top: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

.issue-gallery-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.issue-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(130, 112, 73, 0.12);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96) 0%, rgba(244, 238, 226, 0.88) 100%);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.issue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.issue-card figcaption {
  padding: 18px;
}

.issue-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.72rem;
  border-radius: 4px;
  background: rgba(45, 90, 27, 0.08);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.issue-card h3 {
  margin-top: 0.92rem;
  font-size: 1.72rem;
  line-height: 0.98;
}

.issue-card p {
  margin-top: 0.76rem;
  color: var(--muted);
  line-height: 1.66;
}

.issue-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 90, 27, 0.22);
  box-shadow: 0 28px 56px rgba(53, 61, 42, 0.14);
}

.command-strip > div {
  padding: 20px;
  border-radius: 8px;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.command-strip > div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.2) 0%, rgba(45, 90, 27, 0.42) 100%);
}

.command-strip > div:nth-child(2) {
  background: linear-gradient(180deg, rgba(248, 241, 225, 0.92) 0%, rgba(255, 250, 243, 0.84) 100%);
}

.command-strip > div:nth-child(3) {
  background: linear-gradient(180deg, rgba(235, 241, 229, 0.9) 0%, rgba(255, 252, 245, 0.82) 100%);
}

.command-strip p {
  margin-top: 0.68rem;
  color: var(--muted);
  line-height: 1.68;
}

.command-strip > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 52px rgba(53, 61, 42, 0.14);
}

.section {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 244, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.services {
  background: linear-gradient(180deg, rgba(250, 244, 232, 0.9) 0%, rgba(240, 244, 233, 0.76) 100%);
}

.process {
  background: linear-gradient(180deg, rgba(247, 239, 221, 0.92) 0%, rgba(255, 251, 243, 0.78) 100%);
}

.proof {
  background: linear-gradient(180deg, rgba(241, 245, 236, 0.9) 0%, rgba(251, 246, 237, 0.78) 100%);
}

.reserve {
  background: linear-gradient(180deg, rgba(250, 244, 233, 0.92) 0%, rgba(255, 250, 243, 0.8) 100%);
}

.section-intro {
  max-width: 760px;
}

.section-intro h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.section-intro p:last-child {
  margin-top: 0.9rem;
}

.service-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.94) 0%, rgba(247, 241, 228, 0.9) 100%);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card.service-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: stretch;
}

.service-card.service-wide .service-media {
  min-height: 100%;
}

.service-card.service-wide .service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 24px 18px;
}

.service-media {
  min-height: 208px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.52) 0%, rgba(227, 233, 215, 0.72) 100%);
}

.media-kicker {
  position: relative;
  z-index: 1;
}

.media-art {
  position: absolute;
  inset: 48px 16px 16px;
  border-radius: 6px;
  border: 1px solid rgba(130, 112, 73, 0.14);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 249, 236, 0.92) 0%, rgba(235, 226, 205, 0.84) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.media-art::before,
.media-art::after {
  content: "";
  position: absolute;
}

.media-art::before {
  inset: auto -10% -18% -10%;
  height: 62%;
  border-radius: 50%;
}

.media-art::after {
  inset: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0.9;
}

.media-art-ant {
  background:
    radial-gradient(circle at 78% 20%, rgba(225, 188, 112, 0.72) 0 9%, transparent 10%),
    linear-gradient(180deg, rgba(250, 244, 229, 0.96) 0%, rgba(224, 213, 186, 0.88) 54%, rgba(199, 184, 149, 0.94) 100%);
}

.media-art-ant::before {
  background: linear-gradient(180deg, rgba(165, 188, 143, 0.9) 0%, rgba(116, 141, 91, 0.98) 100%);
}

.media-art-ant::after {
  background:
    radial-gradient(circle at 26% 64%, rgba(45, 90, 27, 0.18) 0 10px, transparent 11px),
    radial-gradient(circle at 33% 58%, rgba(45, 90, 27, 0.18) 0 6px, transparent 7px),
    linear-gradient(90deg, transparent 0 70%, rgba(134, 111, 74, 0.38) 70% 72%, transparent 72%),
    linear-gradient(180deg, transparent 0 62%, rgba(105, 126, 82, 0.3) 62% 100%);
}

.media-art-rodent {
  background: linear-gradient(180deg, rgba(246, 239, 223, 0.96) 0%, rgba(219, 204, 173, 0.9) 100%);
}

.media-art-rodent::before {
  inset: 18px 18px auto 18px;
  height: 72px;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(180deg, rgba(130, 100, 70, 0.92) 0%, rgba(94, 71, 49, 0.96) 100%);
  clip-path: polygon(0 100%, 14% 46%, 40% 18%, 62% 34%, 82% 10%, 100% 100%);
}

.media-art-rodent::after {
  inset: auto 24px 22px 24px;
  height: 66px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(228, 214, 188, 0.98) 0%, rgba(203, 185, 154, 0.98) 100%);
  box-shadow:
    0 -30px 0 -10px rgba(247, 240, 224, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 78px 0 0 0 rgba(255, 255, 255, 0.08),
    inset 156px 0 0 0 rgba(255, 255, 255, 0.08);
}

.media-art-safe {
  background:
    radial-gradient(circle at 72% 24%, rgba(225, 188, 112, 0.5) 0 10%, transparent 11%),
    linear-gradient(180deg, rgba(239, 245, 235, 0.98) 0%, rgba(217, 229, 208, 0.94) 100%);
}

.media-art-safe::before {
  inset: 26px auto auto 28px;
  width: 118px;
  height: 138px;
  border-radius: 8px 8px 10px 10px;
  background: linear-gradient(180deg, rgba(99, 135, 76, 0.96) 0%, rgba(65, 96, 46, 0.98) 100%);
  clip-path: polygon(50% 0, 92% 16%, 92% 58%, 50% 100%, 8% 58%, 8% 16%);
}

.media-art-safe::after {
  inset: 28px 28px 28px auto;
  width: 110px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 36% 38%, rgba(255, 255, 255, 0.28) 0 22%, transparent 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
}

.media-art-commercial {
  background: linear-gradient(180deg, rgba(248, 241, 226, 0.96) 0%, rgba(223, 213, 190, 0.9) 100%);
}

.media-art-commercial::before {
  inset: auto -6% -14% -6%;
  height: 58%;
  background: linear-gradient(180deg, rgba(176, 165, 132, 0.82) 0%, rgba(141, 129, 99, 0.94) 100%);
  border-radius: 8px 8px 0 0;
}

.media-art-commercial::after {
  inset: 18px 24px 22px 24px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(120, 143, 98, 0.2) 0 26%, transparent 26% 100%),
    linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.34) 14% 17%, transparent 17% 32%, rgba(255, 255, 255, 0.34) 32% 35%, transparent 35% 50%, rgba(255, 255, 255, 0.34) 50% 53%, transparent 53% 68%, rgba(255, 255, 255, 0.34) 68% 71%, transparent 71% 100%);
}

.service-body {
  padding: 20px;
}

.service-body h3 {
  margin-top: 0.72rem;
  font-size: 2rem;
  line-height: 0.98;
}

.service-body p {
  margin-top: 0.78rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(53, 61, 42, 0.16);
}

.service-card:hover .media-art {
  transform: scale(1.02);
  border-color: rgba(45, 90, 27, 0.32);
}

.process-shell {
  margin-top: 26px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(237, 230, 209, 0.54) 0%, rgba(255, 252, 245, 0.4) 100%);
}

.process-step {
  padding: 20px;
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(130, 112, 73, 0.12);
  transition: transform 0.24s ease, background 0.24s ease;
}

.process-step h3 {
  margin-top: 0.8rem;
  font-size: 1.9rem;
  line-height: 1;
}

.process-step p {
  margin-top: 0.65rem;
  font-size: 0.92rem;
}

.process-step:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.proof-card {
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94) 0%, rgba(240, 244, 233, 0.84) 100%);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.proof-card h3 {
  margin-top: 0.75rem;
  font-size: 2.3rem;
  line-height: 0.98;
}

.proof-card p {
  margin-top: 0.82rem;
}

.review-card {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.96) 0%, rgba(245, 236, 214, 0.88) 100%);
}

.local-card {
  background: linear-gradient(180deg, rgba(244, 248, 239, 0.96) 0%, rgba(235, 240, 228, 0.88) 100%);
}

.review-stars {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.review-card blockquote {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--text);
}

.review-note {
  margin-top: 1rem;
}

.area-chips {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 0.72rem 1rem;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(225, 234, 216, 0.9) 0%, rgba(247, 239, 220, 0.9) 100%);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 600;
}

.proof-card:hover,
.reserve-card:hover,
.form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 56px rgba(53, 61, 42, 0.14);
}

.reserve {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.96fr);
  gap: 24px;
  align-items: start;
}

.reserve-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reserve-card {
  padding: 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94) 0%, rgba(246, 239, 224, 0.84) 100%);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.reserve-card.accent {
  background: linear-gradient(180deg, rgba(240, 226, 177, 0.52) 0%, rgba(255, 249, 238, 0.9) 100%);
}

.reserve-card p {
  margin-top: 0.75rem;
  line-height: 1.72;
  color: var(--muted);
}

.form-card {
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.96) 0%, rgba(243, 236, 222, 0.88) 100%);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.form-intro {
  color: var(--green);
}

.form-badge {
  padding: 0.52rem 0.82rem;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(225, 234, 216, 0.92) 0%, rgba(245, 236, 214, 0.92) 100%);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-row {
  margin-top: 16px;
}

.form-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.62rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field-code {
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(225, 234, 216, 0.92) 0%, rgba(245, 236, 214, 0.92) 100%);
  color: var(--green);
  font-size: 0.76rem;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid rgba(132, 118, 84, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font: inherit;
}

.form-row input::placeholder {
  color: #82907e;
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: rgba(45, 90, 27, 0.32);
  box-shadow: 0 0 0 4px rgba(45, 90, 27, 0.08);
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.88rem;
}

.site-footer {
  margin: 28px auto 34px;
  padding: 24px 0 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.footer-brand span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(225, 234, 216, 0.9) 0%, rgba(245, 236, 214, 0.92) 100%);
  color: var(--green);
  font-family: var(--condensed);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-note {
  margin-top: 0.82rem;
  max-width: 720px;
}

.footer-credit {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid rgba(45, 90, 27, 0.12);
  background: rgba(255, 252, 245, 0.78);
  color: var(--green);
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.footer-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(53, 61, 42, 0.12);
}

.footer-mark {
  width: 132px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (max-width: 1120px) {
  .hero,
  .reserve {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 42px 34px 34px;
  }

  .hero-pills,
  .pest-picker-grid,
  .issue-gallery-grid,
  .pest-guide-grid,
  .reserve-grid,
  .process-shell,
  .service-grid,
  .proof-grid,
  .command-strip {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.service-wide {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .sample-bar {
    font-size: 0.6rem;
    gap: 0.5rem;
  }

  .nav-links,
  .nav-meta,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .hero {
    min-height: auto;
    padding: 32px 24px 28px;
  }

  .hero-brand-lockup,
  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-brand-lockup {
    gap: 24px;
  }

  .hero-mark-frame {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 0;
  }

  .logo-title {
    font-size: clamp(3.5rem, 14vw, 5.8rem);
  }

  .hero-pills,
  .issue-gallery-grid,
  .pest-guide-grid,
  .service-grid,
  .proof-grid,
  .reserve-grid,
  .process-shell,
  .command-strip {
    grid-template-columns: 1fr;
  }

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

  .service-card.service-wide {
    grid-template-columns: 1fr;
  }

  .service-card.service-wide .service-body {
    padding: 20px;
  }

  .section {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    padding: 10px 16px;
  }

  .site-nav.is-scrolled {
    padding: 8px 16px;
  }
}

@media (max-width: 640px) {
  .sample-bar,
  .pest-picker,
  .issue-gallery,
  .pest-guide,
  .command-strip,
  .section,
  .site-footer {
    width: min(100% - 24px, 1220px);
  }

  .sample-bar {
    flex-wrap: wrap;
    text-align: center;
  }

  .brand-mark-nav,
  .footer-brand span {
    width: 36px;
    flex-basis: 36px;
  }

  .nav-logo {
    min-height: 60px;
    padding: 10px 14px;
  }

  .sample-bar-mark {
    width: 126px;
  }

  .logo-copy span {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .logo-subtitle-sm {
    display: none;
  }

  .form-card {
    padding: 18px;
  }

  .pest-guide {
    padding: 18px;
  }

  .pest-picker {
    padding: 20px 16px 16px;
  }

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

  .pest-picker-card {
    min-height: 112px;
    padding: 12px 10px;
  }

  .pest-picker-icon {
    width: 50px;
    height: 50px;
  }

  .pest-picker-icon svg {
    width: 36px;
    height: 36px;
  }

  .issue-card figcaption {
    padding: 16px;
  }

  .pest-guide-card {
    min-height: auto;
    padding: 16px;
  }

  .footer-mark {
    width: 96px;
  }

  .service-body h3,
  .issue-card h3,
  .local-card h3,
  .process-step h3 {
    font-size: 1.7rem;
  }

  .section-intro h2 {
    font-size: 2.1rem;
  }
}
