/* Robo Pest and Termites Control — landing page design system */

:root {
  --color-primary: #173d2e;
  --color-primary-dark: #0f2a20;
  --color-primary-soft: #e7f1eb;
  --color-secondary: #3c7a5d;
  --color-accent: #c45c12;
  --color-accent-hover: #a34b0e;
  --color-accent-soft: #f8ead8;
  --color-background: #f4f0e8;
  --color-surface: #ffffff;
  --color-surface-alt: #faf8f4;
  --color-text: #1b1e1b;
  --color-text-muted: #4a534c;
  --color-border: #d5ddd6;
  --color-error: #9b1c1c;
  --color-success: #166534;
  --color-focus: #c45c12;
  --color-overlay: rgba(15, 42, 32, 0.55);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(23, 61, 46, 0.05);
  --shadow-md: 0 18px 40px rgba(23, 61, 46, 0.12);
  --shadow-header: 0 8px 24px rgba(23, 61, 46, 0.1);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-space: clamp(64px, 8vw, 96px);
  --header-offset: 7.5rem;

  --font-display: Georgia, "Iowan Old Style", Palatino, "Times New Roman", serif;
  --font-body: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: clamp(1.35rem, 1.1rem + 0.9vw, 1.75rem);
  --text-2xl: clamp(1.7rem, 1.2rem + 1.6vw, 2.35rem);
  --text-3xl: clamp(2rem, 1.3rem + 2.4vw, 3.15rem);

  --leading-tight: 1.2;
  --leading-body: 1.65;
  --measure: 42rem;
  --ease: 180ms ease;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-text);
  background:
    radial-gradient(1200px 500px at 10% -10%, #e7f1eb 0%, transparent 55%),
    radial-gradient(900px 420px at 100% 8%, #f8ead8 0%, transparent 46%),
    var(--color-background);
  min-height: 100vh;
  padding-bottom: calc(72px + var(--safe-bottom));
  overflow-x: clip;
}

html.is-nav-open,
html.is-nav-open body {
  overflow: hidden;
}

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

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-accent);
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--alt {
  background: var(--color-surface);
}

.section--primary {
  background: var(--color-primary);
  color: #f4f7f5;
}

.section__intro {
  max-width: 44rem;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section--primary .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #d7eadf;
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
}

.section--primary h2,
.section--primary h3 {
  color: #fff;
}

h1 {
  font-size: var(--text-3xl);
  margin: 0 0 16px;
}

h2 {
  font-size: var(--text-2xl);
  margin: 0 0 14px;
}

h3 {
  font-size: var(--text-xl);
  margin: 0 0 10px;
}

p {
  margin: 0 0 14px;
}

.lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: var(--measure);
}

.muted {
  color: var(--color-text-muted);
}

.prose {
  max-width: var(--measure);
}

.prose p:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(196, 92, 18, 0.12);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-accent);
  color: #10240c;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #10240c;
}

.btn--secondary {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: none;
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.utility-bar {
  background: var(--color-primary-dark);
  color: #e6eee9;
  font-size: var(--text-xs);
}

.utility-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
  padding: 7px 0;
}

.utility-bar__place {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.utility-bar__place::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dcc9f;
  box-shadow: 0 0 0 4px rgba(125, 204, 159, 0.18);
  flex-shrink: 0;
}

.utility-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.utility-bar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.utility-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.utility-chip svg {
  flex-shrink: 0;
}

.utility-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.utility-chip--wa {
  background: #128c7e;
  border-color: #128c7e;
}

.utility-chip--wa:hover {
  background: #0e7a6e;
  color: #fff;
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid rgba(213, 221, 214, 0.9);
  box-shadow: 0 8px 24px rgba(23, 61, 46, 0.06);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-accent) 100%);
}

.site-top .site-header,
.nav-bar,
.site-top {
  overflow: visible;
}

.site-top .site-header {
  position: relative;
}

.site-top.is-stuck .site-header,
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-header);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 6px 10px;
  line-height: 0;
  box-shadow: var(--shadow-sm);
}

.logo picture {
  display: flex;
  align-items: center;
}

.logo img,
.logo svg {
  height: 48px;
  width: auto;
  max-width: 220px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-primary);
  cursor: pointer;
  position: relative;
  z-index: 70;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--ease), top var(--ease), background var(--ease);
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100dvh;
  background: var(--color-surface);
  padding: 76px 20px calc(96px + var(--safe-bottom));
  box-shadow: none;
  border-radius: 0;
  transform: translateX(100%);
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transition: transform var(--ease), visibility var(--ease);
  z-index: 55;
}

.primary-nav.is-open {
  transform: none;
  visibility: visible;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
  z-index: 54;
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  background: none;
  color: var(--color-primary-dark);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
}

.nav-list a:hover,
.nav-list a.is-active {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.nav-cta {
  margin-top: 16px;
  border-radius: 999px;
  min-height: 48px;
}

.hero {
  padding: 32px 0 56px;
  position: relative;
}

.hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  max-width: 14ch;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.trust-row__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font-size: var(--text-sm);
  font-weight: 700;
}

.trust-row__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
}

.hero__frame {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #234f3c 0%, #173d2e 55%, #3c7a5d 100%);
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-md);
  position: relative;
}

.hero__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.quote-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}

.quote-card h2,
.quote-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid--services {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card--photo {
  padding: 0;
  overflow: hidden;
  min-width: 0;
  border: 0;
  box-shadow: 0 10px 28px rgba(23, 61, 46, 0.1);
}

.card__media {
  display: block;
  overflow: hidden;
  position: relative;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(15, 42, 32, 0.28));
  pointer-events: none;
}

.card__media picture {
  display: block;
}

.card--photo img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 280ms ease;
}

a.card--photo:hover img {
  transform: scale(1.06);
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
  flex: 1;
}

a.card:hover,
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
  text-decoration: none;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  flex: 1;
}

.card__link {
  margin-top: 8px;
  font-weight: 700;
  color: var(--color-accent);
  font-size: var(--text-sm);
}

.split-grid {
  display: grid;
  gap: 20px;
}

.about-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.about-photo {
  margin: 0;
  display: grid;
  place-items: center;
}

.about-photo picture {
  display: grid;
  place-items: center;
}

.about-photo img {
  width: min(100%, 320px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 50%;
  border: 8px solid var(--color-primary-soft);
  box-shadow: var(--shadow-md);
  background: var(--color-primary-soft);
}

.location-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.location-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.location-card address {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-surface);
}

.location-map iframe,
.map-facade {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.map-facade {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 35%, #9ec9b4 0 8px, transparent 9px),
    radial-gradient(circle at 70% 60%, #c45c12 0 5px, transparent 6px),
    linear-gradient(160deg, #e7f1eb 0%, #d5ddd6 55%, #f8ead8 100%);
  color: var(--color-primary-dark);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.map-facade:hover,
.map-facade:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--color-accent);
}

.map-facade__pin {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--color-accent);
  transform: rotate(-45deg);
}

.map-facade__label {
  font-weight: 800;
}

.map-facade__sub {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.panel {
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.benefit {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
}

.process__item {
  position: relative;
  padding: 20px;
  border-left: 0;
  margin-left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.process__item:last-child {
  border-left-color: transparent;
}

.review-banner {
  background: var(--color-primary);
  color: #eef4f0;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}

.review-banner h2 {
  color: #fff;
}

.review-banner p {
  max-width: 42rem;
  color: #d5e4db;
}

.cta-banner {
  text-align: left;
  background:
    radial-gradient(600px 180px at 90% 0%, rgba(196, 92, 18, 0.22), transparent 60%);
}

.panel--home {
  background: var(--color-surface);
}

.panel--work {
  background: var(--color-primary);
  color: #eef4f0;
  border-color: transparent;
}

.panel--work h2,
.panel--work h3 {
  color: #fff;
}

.panel ul {
  margin: 12px 0 20px;
  padding-left: 1.1rem;
}

.panel li + li {
  margin-top: 6px;
}

.benefits {
  display: grid;
  gap: 16px;
}

.benefit {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
}

.benefit__num {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.process {
  display: grid;
  gap: 16px;
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__item {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--color-border);
  margin-left: 0;
  background: var(--color-surface);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.process__item:last-child {
  border-left-color: transparent;
}

.process__item::before {
  counter-increment: step;
  content: counter(step);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.process__item h3 {
  font-size: 1.2rem;
}

.quote {
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 0;
}

.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.quote footer {
  font-size: var(--text-sm);
  font-weight: 700;
}

.placeholder-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.area-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
}

.area-list li.is-hq {
  background: var(--color-primary-soft);
  border-color: #c5d9cc;
}

.area-list li span {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.faq-list {
  display: grid;
  gap: 16px;
  counter-reset: faq;
}

.faq-col {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 560;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
  transition: background var(--ease);
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: "";
}

.faq-item summary::before {
  content: counter(faq, decimal-leading-zero);
  counter-increment: faq;
  flex: 0 0 1.75rem;
  padding-top: 3px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
}

.faq-item summary::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin: 6px 2px 0 auto;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  transform: rotate(45deg);
  transition: transform var(--ease), margin var(--ease);
}

.faq-item summary:hover {
  background: var(--color-primary-soft);
}

.faq-item[open] {
  background: var(--color-surface-alt);
}

.faq-item[open] summary::after {
  margin-top: 10px;
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px 3.6rem;
  color: var(--color-text-muted);
  max-width: 40rem;
}

.contact-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.contact-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
}

.contact-row:hover {
  background: var(--color-primary-soft);
  color: inherit;
}

.contact-ico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

.contact-ico--wa {
  background: #e7f6f2;
  color: #128c7e;
}

.contact-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 560;
  color: var(--color-primary-dark);
  margin-bottom: 2px;
}

.contact-row span span {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.form-row {
  display: grid;
  gap: 14px;
}

address {
  font-style: normal;
}

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

.form--panel {
  margin: 0;
  position: static;
  width: auto;
}

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

.form-field label {
  font-weight: 700;
  font-size: var(--text-sm);
}

.req {
  color: var(--color-accent);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  color: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--color-error);
}

.field-error {
  color: var(--color-error);
  font-size: var(--text-xs);
  min-height: 1em;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--text-sm);
}

.consent input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.form-success {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: #eaf7ee;
  color: var(--color-success);
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.cta-banner .lead {
  color: #d5e4db;
}

.site-footer {
  position: relative;
  background:
    radial-gradient(700px 280px at 8% -10%, rgba(60, 122, 93, 0.28) 0%, transparent 58%),
    radial-gradient(520px 240px at 100% 12%, rgba(196, 92, 18, 0.16) 0%, transparent 52%),
    var(--color-primary-dark);
  color: #c5d6cd;
  padding: 64px 0 120px;
  border-top: 4px solid var(--color-secondary);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  gap: 36px 32px;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 16px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.footer-brand p {
  margin: 0;
  max-width: 28rem;
  font-size: var(--text-sm);
  line-height: 1.65;
}

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

.footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.footer-cta__call {
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.footer-cta__call:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.footer-cta__wa {
  background: #128c7e;
  border: 1px solid #128c7e;
}

.footer-cta__wa:hover {
  background: #0e7a6e;
  color: #fff;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ec9b4;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(158, 201, 180, 0.28);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.footer-links a {
  display: block;
  color: #d7e3dc;
  font-size: 0.95rem;
  padding: 7px 0 7px 2px;
  border-radius: 8px;
  transition: color var(--ease), padding-left var(--ease);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-contact {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d7e3dc;
  font-size: var(--text-sm);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.footer-contact a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.footer-contact strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ec9b4;
  margin-bottom: 2px;
}

.footer-ico {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(158, 201, 180, 0.16);
  color: #9ec9b4;
  margin-top: 2px;
}

.footer-ico--wa {
  background: rgba(18, 140, 126, 0.28);
  color: #7ee0d0;
}

.footer-map-sm {
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0f2a20;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-map-sm--link {
  display: grid;
  place-items: center;
  gap: 6px;
  color: #f3d5a8;
  text-decoration: none;
  text-align: center;
  padding: 16px;
}

.footer-map-sm--link .map-facade__pin {
  background: #c45c12;
}

.footer-map-sm--link strong {
  color: #fff;
  font-size: var(--text-sm);
}

.footer-map-sm--link:hover {
  color: #fff;
}

.footer-map-link {
  display: inline-flex;
  margin-top: 12px;
  font-size: var(--text-sm);
  font-weight: 800;
  color: #f3d5a8;
}

.footer-map-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--text-sm);
  color: #9aaea3;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  color: #9ec9b4;
}

.footer-credit a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #fff;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
  padding: 8px 12px calc(8px + var(--safe-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.mobile-bar a {
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
}

.mobile-bar a svg {
  flex-shrink: 0;
}

.mobile-bar a.accent {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  line-height: 1.15;
  padding: 8px 10px;
}

.sticky-actions {
  display: none;
}

.book-modal {
  border: 0;
  padding: 0;
  width: min(100% - 24px, 440px);
  max-height: min(90vh, 760px);
  background: transparent;
  overflow: auto;
}

.book-modal::backdrop {
  background: var(--color-overlay);
}

.book-modal__form {
  margin: 0;
  position: relative;
}

.book-modal .quote-card {
  margin: 0;
}

.book-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.book-modal__head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.book-modal__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.answer {
  font-size: var(--text-lg);
  max-width: var(--measure);
}

.section--facts {
  padding-block: 8px 48px;
}

.facts-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.facts-strip > div {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

.facts-strip dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.facts-strip dd {
  margin: 6px 0 0;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.guide-grid {
  display: grid;
  gap: 16px;
}

.guide-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.guide-card h3 {
  font-size: 1.2rem;
}

.guide-card .answer {
  font-size: var(--text-base);
  color: var(--color-text);
}

.guide-card p:last-child {
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.table-wrap table {
  margin: 0;
  border-radius: 0;
}

.table-caption {
  margin: 36px 0 0;
  font-size: var(--text-xl);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: var(--text-sm);
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

th {
  background: var(--color-primary-soft);
}

@media (max-width: 767px) {
  :root {
    --header-offset: 4.75rem;
    --section-space: 44px;
    --gutter: 16px;
    --text-base: 1rem;
  }

  .utility-bar {
    display: none;
  }

  .nav-bar {
    min-height: 64px;
    gap: 8px;
  }

  .logo {
    padding: 4px 8px;
    max-width: calc(100% - 64px);
  }

  .logo img,
  .logo svg {
    height: 40px;
    max-width: min(58vw, 180px);
  }

  .primary-nav {
    width: 100%;
    inset: 0;
    padding: 68px 16px calc(96px + var(--safe-bottom));
    overflow-y: auto;
  }

  .nav-cta {
    width: 100%;
    border-radius: 14px;
  }

  .hero {
    padding: 16px 0 28px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__frame,
  .hero__frame img {
    min-height: 0;
  }

  .btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn-row .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .trust-row__item {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .facts-strip {
    grid-template-columns: 1fr;
  }

  .section__intro {
    margin-bottom: 24px;
  }

  .card-grid--services {
    gap: 10px;
  }

  .card--photo img {
    height: 120px;
  }

  .card-grid--services .card__body {
    padding: 10px 12px 12px;
    gap: 4px;
  }

  .card-grid--services h3 {
    font-size: 0.92rem;
    margin: 0;
  }

  .card-grid--services .card__body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    font-size: 0.78rem;
  }

  .card-grid--services .card__link {
    margin-top: 2px;
    font-size: 0.75rem;
  }

  .about-photo img {
    width: min(72vw, 240px);
    border-width: 6px;
  }

  .guide-card {
    padding: 20px 16px;
  }

  .guide-card h3 {
    font-size: 1.05rem;
  }

  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .table-wrap table {
    min-width: 520px;
  }

  th,
  td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .panel {
    padding: 20px 16px;
  }

  .faq-item summary {
    padding: 16px;
    font-size: 0.98rem;
  }

  .faq-item p {
    padding: 0 16px 16px;
  }

  .area-list {
    gap: 8px;
  }

  .area-list li {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .location-card {
    padding: 20px 16px;
  }

  .location-map,
  .location-map iframe,
  .map-facade {
    min-height: 220px;
  }

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

  .review-banner {
    padding: 24px 16px;
  }

  .cta-banner .btn-row {
    grid-template-columns: 1fr;
  }

  .footer-brand .logo {
    padding: 8px 12px;
  }

  .footer-contact a {
    min-width: 0;
  }

  .footer-contact a span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer {
    padding: 40px 0 calc(112px + var(--safe-bottom));
  }

  .book-modal {
    width: min(100% - 16px, 440px);
    max-height: min(85dvh, 760px);
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 379px) {
  .btn-row {
    grid-template-columns: 1fr;
  }

  .logo img,
  .logo svg {
    height: 36px;
  }
}

@media (min-width: 768px) {
  .card-grid,
  .split-grid,
  .contact-grid,
  .hero__grid,
  .faq-list,
  .location-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-list {
    gap: 20px;
  }

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

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

  .card--photo img {
    height: 200px;
  }

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

  .area-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .process__item {
    border-left: 0;
    margin-left: 0;
    padding: 8px 8px 8px 0;
  }

  .process__item::before {
    position: static;
    margin-bottom: 12px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero__frame,
  .hero__frame img {
    min-height: 0;
  }

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

  .nav-cta {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .nav-toggle,
  .nav-backdrop {
    display: none;
  }

  .primary-nav {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    max-width: none;
    transform: none;
    visibility: visible;
    overflow: visible;
    padding: 0;
    background: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 2px;
    background: var(--color-primary-soft);
    padding: 4px;
    border-radius: 999px;
  }

  .nav-list a {
    width: auto;
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.84rem;
    border-radius: 999px;
    position: relative;
  }

  .nav-list a:hover,
  .nav-list a.is-active {
    background: #fff;
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
  }

  .nav-cta {
    margin-top: 0;
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.84rem;
    box-shadow: 0 8px 18px rgba(196, 92, 18, 0.22);
  }

  .card-grid--pests {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid--services {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .facts-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .area-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.85fr 0.85fr 1.25fr;
  }

  .site-footer {
    padding-bottom: 48px;
  }

  body {
    padding-bottom: 0;
  }

  .mobile-bar {
    display: none;
  }

  .sticky-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
  }

  .sticky-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: var(--shadow-md);
  }

  .sticky-book:hover {
    background: var(--color-accent-hover);
    color: #fff;
  }

  .sticky-icons {
    display: flex;
    gap: 10px;
  }

  .sticky-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    text-decoration: none;
  }

  .sticky-icon--wa {
    background: #128c7e;
    color: #fff;
  }

  .sticky-icon--wa:hover {
    background: #0e7a6e;
    color: #fff;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  a.card:hover,
  .card:hover {
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .mobile-bar,
  .sticky-actions,
  .book-modal,
  .nav-toggle,
  .quote-card {
    display: none !important;
  }
}
