/* Newark Rat & Rodent Control — real photography, proper logo, still fast and static. */
:root {
  --ink: #1a2430;
  --paper: #ffffff;
  --muted: #5b6672;
  --line: #e2e7e3;
  --brand: #1f5c3f;
  --brand-dark: #163f2b;
  --brand-light: #e8f1eb;
  --call: #c23b22;
  --call-dark: #9c2e19;
  --panel: #f6f8f6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }

.topbar {
  background: var(--brand-dark);
  color: #fff;
  font-size: 13.5px;
  padding: 7px 0;
  text-align: center;
  letter-spacing: .2px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }

header.site {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header.site .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.brand-logo { height: 52px; width: auto; display: block; }
.call-btn {
  background: var(--call);
  color: #fff;
  padding: 12px 22px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(194,59,34,.28);
}
.call-btn:hover { background: var(--call-dark); }
.call-btn.small { padding: 8px 14px; font-size: 14px; }

nav.main {
  background: var(--brand-dark);
}
nav.main .wrap { display: flex; flex-wrap: wrap; gap: 2px 22px; padding: 10px 0; font-size: 14px; }
nav.main a { color: #d3e6da; text-decoration: none; font-weight: 500; }
nav.main a:hover { color: #fff; }

/* Hero with real photography */
.hero {
  position: relative;
  color: #fff;
  padding: 64px 0 56px;
  background-color: var(--brand-dark);
  background-image: linear-gradient(135deg, #1f5c3f, #163f2b);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero.hero--compact { padding: 44px 0 40px; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,22,.78), rgba(15,30,22,.62) 55%, rgba(15,30,22,.85));
  z-index: -1;
}
.hero h1 { font-size: 34px; margin: 0 0 12px; max-width: 20ch; line-height: 1.15; }
.hero p.lead { font-size: 18px; max-width: 56ch; color: #eef3ef; }
.hero .hero-actions { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .photo-credit { position: absolute; right: 16px; bottom: 8px; font-size: 10.5px; color: rgba(255,255,255,.55); z-index: 5; }

/* Trust badge strip */
.trust-strip {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 20px 34px; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); }
.trust-item img { width: 28px; height: 28px; flex-shrink: 0; }

main { padding: 40px 0 40px; }
h2 { font-size: 23px; margin-top: 42px; margin-bottom: 12px; }
h3 { font-size: 17px; }
p { color: #2c3742; }
ul.check { list-style: none; padding: 0; }
ul.check li { padding-left: 24px; position: relative; margin-bottom: 9px; }
ul.check li::before { content: "\2713"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* Icon service cards */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 22px 0; }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(20,30,24,.06);
  transition: box-shadow .15s ease, transform .15s ease;
}
.card:hover { box-shadow: 0 6px 18px rgba(20,30,24,.1); transform: translateY(-2px); }
.card img.card-icon { margin-bottom: 10px; }
.card a.card-title { font-weight: 700; text-decoration: none; font-size: 16.5px; color: var(--ink); display: block; margin-bottom: 4px; }
.card a.card-title:hover { color: var(--brand); }
.card p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* Photo + text split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 30px 0;
}
@media (max-width: 700px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: 10px; box-shadow: 0 4px 16px rgba(20,30,24,.12); }
.split figcaption { font-size: 11.5px; color: var(--muted); margin-top: 6px; }

.cta-block {
  background: var(--brand-light);
  border: 1px solid #cfe2d6;
  border-radius: 10px;
  padding: 26px;
  text-align: center;
  margin: 34px 0;
}
.cta-block h3 { margin-top: 0; }
.cta-block .call-btn { display: inline-block; margin-top: 10px; }

/* FAQ (native details/summary, no JS) */
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: #fff;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--brand); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 10px 0 0; }

.disclosure {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 36px;
}

footer.site {
  background: var(--brand-dark);
  color: #d3e6da;
  padding: 26px 0;
  margin-top: 10px;
  font-size: 13px;
}
footer.site a { color: #fff; }
footer.site .cols { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; }
footer.site .foot-logo { height: 30px; margin-bottom: 8px; filter: brightness(0) invert(1); }
