/* All Seasons Pest Solutions — site stylesheet
   Design system: warm-modern, Florida-fresh, premium-local.
   Type: Manrope (sans) + Source Serif 4 (editorial accent).
   Color: navy primary, fresh green, warm gold CTA, off-white. */

:root {
  /* Palette */
  --navy-900: #0a2240;
  --navy-800: #0d2c4b;
  --navy-700: #14365a;
  --navy-50:  #eef2f8;

  --green-700: #1f6b3a;
  --green-600: #2e8b4f;
  --green-500: #3da164;
  --green-50:  #e9f4ec;

  --gold-600: #c98622;
  --gold-500: #e8a33d;
  --gold-400: #f3b755;
  --gold-50:  #fbf2e0;

  --bone:    #faf8f3;
  --paper:   #ffffff;
  --ink-900: #14181f;
  --ink-700: #2c333d;
  --ink-500: #5a6472;
  --ink-300: #aab2bd;
  --line:    #e6e3da;
  --line-soft: #efece4;

  /* Type */
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(13,44,75,0.06), 0 2px 6px rgba(13,44,75,0.04);
  --shadow:    0 4px 12px rgba(13,44,75,0.08), 0 12px 32px rgba(13,44,75,0.06);
  --shadow-lg: 0 12px 36px rgba(13,44,75,0.14), 0 32px 72px rgba(13,44,75,0.10);

  --header-h: 72px;
  --mobile-bar-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-800); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-600); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; text-wrap: pretty; }
.lead { font-size: 1.18rem; color: var(--ink-700); line-height: 1.55; }
.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: .9rem;
  display: inline-block;
}
.eyebrow.gold { color: var(--gold-600); }
.eyebrow.navy { color: var(--navy-800); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow    { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; position: relative; }
section.tight { padding: 56px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(232,163,61,0.35);
}
.btn-primary:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232,163,61,0.45);
}
.btn-secondary {
  background: var(--navy-800);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--navy-800);
}
.btn-ghost:hover { background: var(--navy-800); color: #fff; }
.btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-lg { padding: 18px 30px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%;
}
.service-image { padding: 24px 0 0; background: var(--paper); }
.service-image image-slot { border: 1px dashed rgba(13,44,75,0.18); }
.brand-mark {
  display: inline-flex; align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark .brand-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.site-header .brand-mark .brand-logo { height: 58px; }
.footer-brand .brand-mark { background: #fff; padding: 10px 14px; border-radius: 10px; display: inline-block; }
.footer-brand .brand-mark .brand-logo { height: 70px; }
@media (max-width: 720px) {
  .site-header .brand-mark .brand-logo { height: 46px; }
}
/* Legacy mark-circle styles retained for any stale renders */
.brand-mark .mark-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-800);
  display: grid; place-items: center;
  position: relative;
  flex: 0 0 auto;
}
.brand-mark .mark-circle::before {
  content: "";
  position: absolute; inset: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-400), var(--gold-600) 70%);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06) inset;
}
.brand-mark .mark-rays {
  position: absolute; inset: -2px;
}
.brand-mark .mark-name {
  font-weight: 800; font-size: 1.05rem; color: var(--navy-900);
  letter-spacing: -0.01em; line-height: 1.05;
}
.brand-mark .mark-sub {
  font-size: .68rem; color: var(--green-700); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 28px; list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  font-size: .95rem; font-weight: 600; color: var(--ink-700);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }
.header-cta {
  display: flex; align-items: center; gap: 14px;
}
.header-phone {
  font-weight: 700; color: var(--navy-900);
  display: flex; align-items: center; gap: 6px;
}
.header-phone svg { width: 16px; height: 16px; color: var(--green-600); }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--navy-50);
  align-items: center; justify-content: center;
  color: var(--navy-900);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1200px 520px at 80% -10%, rgba(232,163,61,0.18), transparent 60%),
    radial-gradient(ellipse 900px 600px at 0% 100%, rgba(46,139,79,0.12), transparent 60%),
    linear-gradient(180deg, #f5f1e7 0%, var(--bone) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,139,79,0.10);
  color: var(--green-700);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 4px rgba(46,139,79,0.18); }
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 18px;
}
.hero h1 .accent {
  color: var(--green-700);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-700);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
}
.trust-strip .item {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; color: var(--ink-700); font-weight: 500;
}
.trust-strip svg { width: 18px; height: 18px; color: var(--green-600); flex: 0 0 auto; }

/* Hero visual — Florida home placeholder */
.hero-visual {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #c2deef 0%, #a4cfe0 35%, #87b8a3 65%, #5d9776 100%);
}
.hero-visual .placeholder-label {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(13,44,75,0.78);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-mono);
  font-size: .72rem;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: .04em;
  z-index: 5;
}
.hero-visual .floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  z-index: 4;
}
.hero-visual .fc-rating { top: 24px; left: 24px; }
.hero-visual .fc-stat   { bottom: 80px; right: 24px; }
.hero-visual .fc-rating .stars { color: var(--gold-500); font-size: 1.1rem; line-height: 1; letter-spacing: 1px; }
.hero-visual .fc-rating .label { font-size: .78rem; color: var(--ink-500); margin-top: 3px; }
.hero-visual .fc-rating .num { font-weight: 800; color: var(--navy-900); }
.hero-visual .fc-stat .num { font-size: 1.4rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.hero-visual .fc-stat .label { font-size: .75rem; color: var(--ink-500); margin-top: 3px; }

/* ---------- Quote form ---------- */
.quote-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.quote-copy h2 { margin-bottom: 14px; }
.quote-copy .checks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.quote-copy .checks li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; color: var(--ink-700); }
.quote-copy .checks svg { width: 20px; height: 20px; color: var(--green-600); flex: 0 0 auto; margin-top: 2px; }

.quote-card {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.form-field label .opt { color: var(--ink-500); font-weight: 500; margin-left: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(46,139,79,0.12);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-disclaimer { font-size: .82rem; color: var(--ink-500); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  padding: 16px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: 14px;
}
.form-success.show { display: block; }

/* ---------- Why-Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-soft);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-50), #d8eddd);
  color: var(--green-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.why-card p { font-size: .95rem; color: var(--ink-700); margin: 0; }

/* ---------- Services grid ---------- */
.section-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end;
  margin-bottom: 48px;
}
.section-head .right { text-align: right; padding-bottom: 8px; }
.section-head .right p { color: var(--ink-700); margin: 0; max-width: 380px; margin-left: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}
.service-card .s-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card .s-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { font-size: .94rem; color: var(--ink-700); margin: 0 0 18px; flex: 1; }
.service-card .learn {
  font-size: .9rem; font-weight: 700; color: var(--green-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .learn svg { width: 14px; height: 14px; transition: transform .2s ease; }
.service-card:hover .learn svg { transform: translateX(3px); }

.service-card.flagship {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border: none;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.service-card.flagship h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.service-card.flagship p { color: rgba(255,255,255,0.78); font-size: 1.02rem; margin: 0; max-width: 560px; }
.service-card.flagship .s-icon {
  background: rgba(232,163,61,0.18);
  color: var(--gold-500);
  width: 64px; height: 64px;
  border-radius: 16px;
}
.service-card.flagship .s-icon svg { width: 32px; height: 32px; }
.service-card.flagship .flagship-badge {
  position: absolute; top: 20px; right: 24px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.service-card.flagship .learn { color: var(--gold-400); }
.service-card.flagship .learn:hover { color: var(--gold-500); }

/* ---------- Difference / checklist ---------- */
.difference {
  background: linear-gradient(180deg, var(--bone), #f0ece0);
  position: relative;
  overflow: hidden;
}
.difference::before {
  content: "";
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,163,61,0.15), transparent 70%);
  pointer-events: none;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.diff-narrative h2 { margin-bottom: 18px; }
.diff-narrative .pull {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--navy-900);
  border-left: 3px solid var(--gold-500);
  padding-left: 22px;
  margin: 28px 0 0;
  font-style: italic;
}
.diff-checklist {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.diff-checklist h3 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 22px;
}
.diff-checklist ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.diff-checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .98rem; color: var(--ink-900); font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.diff-checklist li:last-child { border-bottom: none; padding-bottom: 0; }
.diff-checklist svg { width: 22px; height: 22px; color: var(--green-600); flex: 0 0 auto; margin-top: 1px; }

/* ---------- About ---------- */
.about-section { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #d8def0, #b9c5dc);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-photo .badge {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex; gap: 12px; align-items: center;
  box-shadow: var(--shadow);
}
.about-photo .badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(61,161,100,0.22);
}
.about-photo .badge .label { font-size: .82rem; color: var(--ink-700); }
.about-photo .badge .label strong { color: var(--navy-900); display: block; font-size: .92rem; }

.about-copy h2 { margin-bottom: 16px; }
.about-copy .role {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
  display: inline-block;
}
.about-copy .pull-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--navy-900);
  font-style: italic;
  margin: 28px 0 24px;
  padding-left: 22px;
  border-left: 3px solid var(--gold-500);
}
.about-copy .signature {
  margin-top: 24px;
  display: flex; align-items: center; gap: 14px;
  font-size: .94rem;
}
.about-copy .signature .sig-name { font-weight: 700; color: var(--navy-900); }
.about-copy .signature .sig-role { color: var(--ink-500); font-size: .85rem; }

/* ---------- Service area ---------- */
.area-section { background: var(--bone); }
.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.area-map {
  background: var(--paper);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 420px;
  aspect-ratio: 5/4;
}
.area-map svg { width: 100%; height: auto; display: block; }
.area-map iframe { width: 100%; height: 100%; min-height: 420px; display: block; }
.area-map .map-attribution {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(13,44,75,0.12);
}
.area-map .map-attribution:hover { background: #fff; }
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.area-map svg { width: 100%; height: auto; display: block; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.city-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .94rem;
  color: var(--navy-900);
  transition: border-color .2s ease, transform .15s ease, color .2s ease;
}
.city-chip:hover { border-color: var(--green-600); color: var(--green-700); transform: translateY(-1px); }
.city-chip svg { width: 14px; height: 14px; color: var(--gold-500); flex: 0 0 auto; }
.city-chip.secondary { color: var(--ink-700); font-weight: 500; background: transparent; }
.city-chip.secondary svg { color: var(--ink-300); }

.counties-row {
  display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap;
  font-size: .9rem; color: var(--ink-500);
}
.counties-row strong { color: var(--navy-900); margin-right: 4px; }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--navy-900); color: #fff; overflow: hidden; }
.reviews-section h2 { color: #fff; }
.reviews-section .lead { color: rgba(255,255,255,0.78); }
.reviews-section .eyebrow { color: var(--gold-400); }

.reviews-meta {
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  margin-top: 28px;
}
.reviews-meta .stars-row { display: flex; align-items: center; gap: 10px; }
.reviews-meta .stars { color: var(--gold-500); font-size: 1.4rem; letter-spacing: 2px; }
.reviews-meta .rating-num { font-size: 1.6rem; font-weight: 800; }
.reviews-meta .rating-label { color: rgba(255,255,255,0.7); font-size: .9rem; }
.badge-strip {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cred-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .85rem;
  display: flex; align-items: center; gap: 10px;
}
.cred-badge .b-mark {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--gold-500);
  color: var(--navy-900);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .82rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.review-card .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 12px; }
.review-card .quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 0 18px;
  font-style: italic;
}
.review-card .who {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem;
}
.review-card .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: grid; place-items: center;
  color: var(--navy-900);
  font-weight: 800;
  font-size: .9rem;
}
.review-card .who-name { font-weight: 700; color: #fff; }
.review-card .who-loc { color: rgba(255,255,255,0.6); font-size: .82rem; }

/* ---------- Guarantee ---------- */
.guarantee-section {
  background: linear-gradient(135deg, #f6efdb 0%, #f4e5c2 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-card {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.seal {
  width: 130px; height: 130px;
  margin: 0 auto 28px;
  position: relative;
}
.seal-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2.5px dashed var(--gold-600);
  animation: rotate 40s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.seal-inner {
  position: absolute; inset: 14px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
  padding: 16px;
  font-weight: 600;
}
.guarantee-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.guarantee-section p { font-size: 1.18rem; color: var(--ink-700); margin: 0 auto; max-width: 560px; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--paper); }
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: grid; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bone);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--green-600); background: #fff; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-700);
  transition: transform .2s ease;
  flex: 0 0 auto;
  width: 24px; text-align: center;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 22px 22px;
  color: var(--ink-700);
  font-size: .98rem;
  line-height: 1.6;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700) 60%, #1a4a73);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 0%, rgba(232,163,61,0.25), transparent 60%),
    radial-gradient(ellipse 600px 300px at 0% 100%, rgba(46,139,79,0.18), transparent 60%);
  pointer-events: none;
}
.final-cta h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.final-cta p { color: rgba(255,255,255,0.78); font-size: 1.18rem; max-width: 560px; margin: 0 auto 32px; }
.final-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative;
}
.final-cta .phone-line {
  margin-top: 24px; font-size: .9rem; color: rgba(255,255,255,0.6);
  position: relative;
}
.final-cta .phone-line a { color: var(--gold-400); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: #07172a;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand-mark .mark-name { color: #fff; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,0.6); margin: 18px 0 0; max-width: 320px; }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact-line {
  margin-top: 18px;
  display: grid; gap: 6px;
  font-size: .9rem;
}
.footer-contact-line a { color: rgba(255,255,255,0.85); }
.social-row {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.8);
  transition: background .2s ease, color .2s ease;
}
.social-row a:hover { background: var(--gold-500); color: var(--navy-900); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Sticky mobile bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  z-index: 90;
  padding: 10px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
}
.mobile-bar .mb-call {
  background: var(--green-600);
  color: #fff;
}
.mobile-bar .mb-quote {
  background: var(--gold-500);
  color: var(--navy-900);
}
.mobile-bar svg { width: 16px; height: 16px; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 75;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-cta { margin-top: 24px; display: grid; gap: 10px; }

/* ---------- Subpage hero ---------- */
.page-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(ellipse 800px 360px at 80% 0%, rgba(232,163,61,0.12), transparent 60%),
    linear-gradient(180deg, #f5f1e7 0%, var(--bone) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { max-width: 620px; }
.breadcrumb {
  font-size: .85rem;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb .sep { margin: 0 8px; color: var(--ink-300); }

/* Service page two-col layout */
.service-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.service-page-grid .quote-card { position: sticky; top: calc(var(--header-h) + 24px); }
.service-hero-photo {
  margin: 0 0 40px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 8px 30px rgba(13,44,75,0.10);
}
.service-hero-photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16/9; object-fit: cover;
}
.service-inline-photo {
  border-radius: 14px; overflow: hidden;
  background: #eee;
  box-shadow: 0 6px 22px rgba(13,44,75,0.08);
}
.service-inline-photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16/10; object-fit: cover;
}
.service-inline-photo .photo-caption {
  padding: 14px 18px;
  font-size: 0.92rem;
  color: rgba(13,44,75,0.7);
  font-style: italic;
  background: #fff;
  margin: 0;
}
.content-block { margin-bottom: 56px; }
.content-block h2 { font-size: 1.6rem; margin-bottom: 16px; }
.content-block p { color: var(--ink-700); font-size: 1.02rem; }
.timeline { display: grid; gap: 18px; margin-top: 18px; }
.timeline-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.timeline-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .9rem;
}
.timeline-item h4 { margin-bottom: 4px; font-size: 1.02rem; }
.timeline-item p { font-size: .94rem; color: var(--ink-700); margin: 0; }

.pest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.pest-tag {
  padding: 12px 16px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy-900);
}

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.bg-paper { background: var(--paper); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.flagship { grid-column: span 2; grid-template-columns: auto 1fr; gap: 24px; padding: 32px; }
  .service-card.flagship .learn { grid-column: 1 / -1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .right { text-align: left; }
  .section-head .right p { margin-left: 0; }
}
@media (max-width: 760px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 480px; }
  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.flagship { grid-column: span 1; grid-template-columns: 1fr; padding: 28px; }
  .diff-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-page-grid { grid-template-columns: 1fr; }
  .service-page-grid .quote-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .form-row.two { grid-template-columns: 1fr; }
  .nav-links, .header-cta .header-phone, .header-cta .btn-secondary, .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: grid; }
  .header-cta .btn-primary { display: inline-flex; padding: 10px 16px; font-size: .9rem; }
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(var(--mobile-bar-h) + 12px); }
  .pest-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: 1fr; }
  .reviews-meta { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
