/* ─────────────────────────────────────────
   SoJo Pest Control — main.css
   ───────────────────────────────────────── */

/* === TOKENS === */
:root {
  --green-primary:  #0c9d49;
  --green-dark:     #0c9d49;
  --green-deep:     #0D363C;
  --green-light:    #e8f7ee;
  --green-mid:      #d1f0de;

  --white:          #ffffff;
  --off-white:      #f8f9f6;
  --text-dark:      #1a2318;
  --text-mid:       #4a5e4d;
  --text-light:     #7a927d;

  --accent-gold:    #c8a84b;
  --red-flag:       #c0392b;

  --shadow-card:    0 2px 16px rgba(12,157,73,.08);
  --shadow-strong:  0 8px 40px rgba(12,157,73,.14);

  --font-display: 'Roboto', system-ui, sans-serif;
  --font-body:    'Roboto', system-ui, sans-serif;

  --text-xs:   .75rem;
  --text-sm:   .875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.5rem;
  --text-hero: clamp(2rem, 3.8vw, 3rem);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* === UTILITIES === */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.section-label--light { color: rgba(255,255,255,.85); }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-dark);
  color: #fff;
  padding: .875rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  border: 2px solid var(--green-dark);
  transition: background .2s, transform .15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff;
  padding: .875rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.45);
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  padding: .75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: var(--text-base);
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--green-dark); color: #fff; }

.btn-ghost--light {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost--light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--green-mid);
  transition: box-shadow .2s;
}
.site-nav.nav-scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
  padding-bottom: 2px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green-primary);
  border-bottom: 2px solid var(--green-primary);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--green-mid);
  border-radius: 6px;
  box-shadow: var(--shadow-strong);
  min-width: 200px;
  padding: .5rem 0;
  padding-top: .75rem;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: var(--text-sm);
  white-space: nowrap;
  border-bottom: none !important;
}
.dropdown li a:hover { background: var(--green-light); color: var(--green-dark); }

.nav-phone {
  background: var(--green-dark);
  color: #fff !important;
  padding: .5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: background .2s;
  border-bottom: none !important;
  flex-shrink: 0;
}
.nav-phone:hover { background: var(--green-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* === HERO === */
.hero {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Subtle texture — angled light band */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(12,157,73,.10) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 5% 80%, rgba(12,157,73,.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
  padding-left: max(40px, calc((100vw - 1200px) / 2 + 40px));
}

.hero-text {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(12,157,73,.18);
  border: 1px solid rgba(12,157,73,.35);
  color: var(--green-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--green-primary);
  font-weight: 300;
}

.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: var(--text-lg);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* Diagonal photo — right column, bleeds to viewport edge */
.hero-image {
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* === INTRO BAND === */
.intro-band {
  background: var(--green-dark);
  padding: 22px 40px;
}
.intro-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.intro-band p {
  color: rgba(255,255,255,.92);
  font-size: var(--text-base);
  font-weight: 400;
}
.intro-band strong { color: #fff; }

/* === SERVICES === */
.services-section {
  padding: 88px 0;
  background: var(--off-white);
}

.section-header {
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.section-intro {
  font-size: var(--text-lg);
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-strong); transform: translateY(-3px); }
.service-card-inner { display: block; text-decoration: none; color: inherit; height: 100%; }

.service-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-card-image img { width: 100%; height: 100%; object-fit: cover; }
.service-card-image .card-icon {
  font-size: 4rem;
  opacity: .4;
}

.service-card-body { padding: 1.5rem; }
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-dark);
  margin-bottom: .65rem;
  line-height: 1.2;
}
.service-card-body p {
  color: var(--text-mid);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.card-link {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: gap .15s;
}
.service-card:hover .card-link { letter-spacing: .02em; }

.services-cta { text-align: center; }

/* === FOUNDERS === */
.founders-section {
  padding: 88px 0;
  background: #fff;
}

/* Full-width header row */
.founders-header {
  margin-bottom: 48px;
  max-width: 680px;
}
.founders-header .section-label { margin-bottom: .5rem; }
.founders-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.founders-header .lead {
  font-size: var(--text-lg);
  color: var(--text-mid);
  line-height: 1.7;
}

/* Two-column: cards left, panel right */
.founders-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.founders-cards-col {
  display: flex;
  flex-direction: column;
}

.founder-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.founder-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid var(--green-primary);
}
.founder-card-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: .35rem;
}
.founder-card-title {
  font-size: var(--text-sm);
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: .75rem;
}
.founder-card p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.65;
}

/* Right column: visual panel */
.founders-visual {
  background: var(--green-deep);
  border-radius: 12px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.founders-visual::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(12,157,73,.12);
  pointer-events: none;
}

.founders-visual-headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.founders-visual-headline em {
  font-style: italic;
  color: var(--green-primary);
  font-weight: 300;
}
.founders-visual p {
  color: rgba(255,255,255,.7);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--green-primary);
  display: block;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-box .stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

.license-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(12,157,73,.15);
  border: 1px solid rgba(12,157,73,.3);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  font-size: var(--text-sm);
}
.license-badge strong {
  display: block;
  color: #fff;
  margin-bottom: .1rem;
}
.license-badge span { color: rgba(255,255,255,.55); font-size: var(--text-xs); }

/* === REVIEWS === */
.reviews-section {
  padding: 88px 0;
  background: var(--off-white);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Featured full-width review */
.review-featured {
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--green-primary);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-card);
  margin: 0 0 28px;
}
.review-featured p {
  font-size: var(--text-lg);
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.review-featured footer strong {
  display: block;
  color: var(--text-dark);
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
}
.review-featured footer span {
  color: var(--text-light);
  font-size: var(--text-xs);
  font-style: normal;
}

/* Three-column grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--green-primary);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  margin: 0;
}
.review-card p {
  font-size: var(--text-base);
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.review-card footer strong {
  display: block;
  color: var(--text-dark);
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
}
.review-card footer span {
  color: var(--text-light);
  font-size: var(--text-xs);
  font-style: normal;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.google-stars {
  color: var(--accent-gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1;
}
.google-score {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.google-label {
  font-size: var(--text-sm);
  color: var(--text-mid);
}

/* === AREAS === */
.areas-section {
  padding: 88px 0;
  background: var(--green-deep);
  color: #fff;
}
.areas-section .section-header h2 { color: #fff; }
.areas-section .section-intro { color: rgba(255,255,255,.7); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin: 48px 0;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background: rgba(255,255,255,.04);
  transition: background .2s, border-color .2s;
  min-height: 80px;
}
.area-card:hover { background: rgba(12,157,73,.2); border-color: var(--green-primary); }
.area-card--featured { background: var(--green-dark); border-color: var(--green-dark); }

.area-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  display: block;
  line-height: 1.2;
}
.area-county {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.85);
  margin-top: .25rem;
  display: block;
}

.areas-note {
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: var(--text-sm);
  margin-top: .5rem;
}

/* === FAQ === */
.faq-section {
  padding: 88px 0;
  background: var(--off-white);
}
.faq-container { max-width: 760px; }

.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--green-mid); }
.faq-item:first-child { border-top: 1px solid var(--green-mid); }

.faq-question {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem .25rem;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  color: var(--green-primary);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 .25rem 1.25rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-size: var(--text-base);
}
.faq-answer p + p { margin-top: .75rem; }

/* === CTA STRIP === */
.cta-strip {
  padding: 72px 0;
  background: var(--green-dark);
}
.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  line-height: 1.2;
}
.cta-strip h2 em { font-style: italic; font-weight: 300; }
.cta-strip p {
  color: rgba(255,255,255,.8);
  font-size: var(--text-base);
  margin-top: .35rem;
}
.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* White button for green bg */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--green-dark);
  padding: .875rem 1.75rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  border: 2px solid #fff;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

/* === FOOTER === */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { height: 42px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: var(--text-sm);
}
.footer-nap a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.footer-nap a:hover { color: var(--green-primary); }
.footer-nap .nap-license { color: var(--green-primary); font-weight: 500; margin-top: 4px; }

.footer-nav h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--green-primary); }

.footer-contact h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-hours {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.65);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.9); }

/* === MOBILE CALL BUTTON === */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--green-dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(12,157,73,.45);
  z-index: 200;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
.mobile-call-btn:hover { background: var(--green-dark); transform: translateY(-2px); }

/* === RESPONSIVE === */

/* Hero breaks earlier than everything else — image gets too narrow between 768–1100px */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 0;
    text-align: center;
    min-height: unset;
  }
  .hero-text {
    padding: 52px 20px 44px;
  }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-image {
    clip-path: none;
    order: -1;
  }
  .hero-image img { height: 380px; object-position: center 10%; }
}

@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-container { padding: 0 20px; }

  /* Nav */
  .nav-container { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--green-mid);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    margin-left: 0;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a {
    padding: .875rem 1.25rem;
    border-bottom: none !important;
    font-size: var(--text-base);
  }
  .has-dropdown .dropdown {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: var(--green-light);
    min-width: 0;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .has-dropdown.is-open .dropdown li a {
    padding: .75rem 1.75rem;
    font-size: var(--text-sm);
    color: var(--green-dark);
  }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-call-btn { display: flex; }

  /* Hero — tighten image height further on small phones */
  .hero-image img { height: 260px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  /* Interior pages */
  .page-hero { padding: 48px 0; }
  .content-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-founders-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }

  /* CTA strip */
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  /* Intro band */
  .intro-band { padding: 20px; }
  .intro-band-inner { flex-direction: column; text-align: center; gap: 1rem; }
}

/* ─────────────────────────────────────────
   INTERIOR PAGES
   ───────────────────────────────────────── */

/* Breadcrumb */
.breadcrumb {
  background: var(--green-light);
  padding: .6rem 0;
  font-size: var(--text-xs);
  color: var(--text-light);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.breadcrumb a { color: var(--text-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-primary); }
.breadcrumb span { color: var(--text-light); }

/* Page hero — interior header (no photo) */
.page-hero {
  background: var(--green-deep);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(12,157,73,.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--green-primary);
  font-weight: 300;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: var(--text-lg);
  max-width: 600px;
  line-height: 1.65;
}

/* Prose content section */
.content-section {
  padding: 72px 0;
  background: #fff;
}
.content-section.alt { background: var(--off-white); }

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-two-col > aside { align-self: stretch; }

.prose h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--text-dark);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-dark);
  margin-bottom: .5rem;
  margin-top: 1.5rem;
}
.prose p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.prose ul li {
  color: var(--text-mid);
  padding: .3rem 0 .3rem 1.4rem;
  position: relative;
  line-height: 1.6;
}
.prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 700;
}

/* Sidebar info card */
.info-card {
  background: var(--green-deep);
  border-radius: 10px;
  padding: 2rem;
  color: #fff;
  position: sticky;
  top: 88px;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: 1rem;
  color: #fff;
}
.info-card p {
  color: rgba(255,255,255,.7);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.info-card .btn-primary { width: 100%; justify-content: center; margin-bottom: .75rem; }
.info-card .btn-secondary { width: 100%; justify-content: center; }

.info-card-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
}
.info-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
}
.info-card-list li strong { color: #fff; }

/* Service page pest list cards */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin: 2rem 0;
}
.pest-card {
  background: #fff;
  border: 1px solid var(--green-mid);
  border-radius: 6px;
  padding: 1.1rem;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-mid);
  font-weight: 500;
}
.pest-card:hover { border-color: var(--green-primary); color: var(--green-primary); }

/* About page */
.about-founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.about-founder-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 2rem;
  border-top: 4px solid var(--green-primary);
}
.about-founder-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--text-dark);
  margin-bottom: .25rem;
}
.about-founder-card .role {
  color: var(--green-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 1rem;
  display: block;
}
.about-founder-card p {
  color: var(--text-mid);
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: .75rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1px solid var(--green-mid);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-dark);
  background: #fff;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(12,157,73,.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  border-radius: 4px;
  padding: .85rem 1rem;
  font-size: var(--text-sm);
  line-height: 1.5;
}
.form-status--success {
  background: var(--green-light);
  color: var(--green-deep);
  border: 1px solid var(--green-mid);
}
.form-status--error {
  background: #fff1ef;
  color: var(--red-flag);
  border: 1px solid rgba(192,57,43,.28);
}
.contact-form .btn-primary:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.contact-sidebar h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1.5rem;
}
.contact-detail strong {
  font-size: var(--text-sm);
  color: var(--text-dark);
  font-weight: 600;
}
.contact-detail span, .contact-detail a {
  font-size: var(--text-base);
  color: var(--text-mid);
  text-decoration: none;
}
.contact-detail a:hover { color: var(--green-primary); }
.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  color: var(--text-mid);
}
.contact-hours-table td { padding: .35rem 0; }
.contact-hours-table td:last-child { text-align: right; color: var(--text-dark); font-weight: 500; }

@media (max-width: 768px) {
  .breadcrumb-inner { padding: 0 20px; }
  .page-hero-inner { padding: 0 20px; }
  .content-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-founders-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .info-card { position: static; }
}
