/* ============================================================
   PREME PEST CONTROL — Global Stylesheet
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --green-950: #0f2005;
  --green-900: #14532d;
  --green-800: #2d5016;
  --green-700: #3d6b1f;
  --green-600: #4a7c2f;
  --green-500: #5a9035;
  --green-400: #7cb518;
  --green-300: #a3d35a;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;
  --orange-800: #9a3412;
  --orange-700: #c2410c;
  --orange-600: #e8620a;
  --orange-100: #ffedd5;
  --red-700: #b91c1c;
  --red-100: #fee2e2;
  --ink:   #111827;
  --ink-2: #1f2937;
  --muted: #4b5563;
  --muted-2: #6b7280;
  --line:  #e5e7eb;
  --line-2: #d1d5db;
  --paper: #ffffff;
  --soft:  #f9fafb;
  --soft-green: #f0fdf4;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.08), 0 1px 2px rgb(0 0 0 / 0.06);
  --shadow:    0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.06);
  --radius-sm: 0.375rem;
  --radius:    0.75rem;
  --radius-lg: 1rem;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}

h1 { font-weight: 900; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }
h4 { font-weight: 700; }

a { color: var(--green-700); }

img, iframe { max-width: 100%; }

p { margin: 0 0 1rem; }

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  overflow: hidden;
  z-index: 999;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; top: 0; }

:focus-visible {
  outline: 3px solid var(--orange-600);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Layout ── */
.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 2px 12px rgb(0 0 0 / 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  transition: opacity var(--transition);
}
.brand:hover { opacity: 0.88; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green-400);
  color: var(--green-950);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.site-nav a,
.site-nav summary,
.site-footer a { color: inherit; text-decoration: none; }

.site-nav > a,
.site-nav summary {
  font-size: 0.875rem;
  color: var(--green-100);
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.site-nav > a:hover,
.site-nav summary:hover {
  background: rgb(255 255 255 / 0.1);
  color: var(--white);
}

.nav-group { position: relative; }

.nav-group summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}
.nav-group[open] summary::after { transform: rotate(225deg) translateY(-2px); }

.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  z-index: 80;
  display: grid;
  gap: 0.15rem;
  min-width: 240px;
  max-height: min(72vh, 600px);
  overflow: auto;
  padding: 0.6rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: dropIn 0.18s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown.wide {
  min-width: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown a {
  color: var(--green-800);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--soft-green); color: var(--green-950); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  border: 1px solid rgb(255 255 255 / 0.25);
  background: rgb(255 255 255 / 0.1);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgb(255 255 255 / 0.18); }

.header-call { margin-left: 0.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.935rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgb(194 65 12 / 0.35);
}
.btn-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 6px 20px rgb(194 65 12 / 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgb(255 255 255 / 0.55);
}
.btn-secondary:hover {
  background: rgb(255 255 255 / 0.12);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow);
}
.btn-light:hover { box-shadow: var(--shadow-md); }

.btn-outline-light {
  border-color: rgb(255 255 255 / 0.45);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgb(255 255 255 / 0.12);
  border-color: var(--white);
}

.btn-ghost {
  background: var(--soft-green);
  color: var(--green-800);
  border-color: var(--green-100);
}
.btn-ghost:hover { background: var(--green-100); }

.pulse {
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgb(232 98 10 / 0.45); }
  50%       { box-shadow: 0 0 0 11px rgb(232 98 10 / 0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 60%, var(--green-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin: 0.25rem 0 1rem;
  color: var(--white);
}
.compact h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }

.hero-copy, .lede {
  font-size: 1.15rem;
  max-width: 680px;
  color: rgb(255 255 255 / 0.88);
  line-height: 1.7;
}
.lede { color: var(--muted); }

.hero-grid, .split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hero-media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.article-hero, .article-img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-list {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  color: rgb(255 255 255 / 0.88);
}
.trust-list li::before {
  content: "✓ ";
  color: var(--green-400);
  font-weight: 900;
}

.checklist {
  padding-left: 1.25rem;
}
.checklist li { margin: 0.4rem 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}
.section.alt { background: var(--soft); }
.section.green-tint { background: var(--soft-green); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--green-600);
  margin: 0 0 0.4rem;
}
.hero .eyebrow, .cta-band .eyebrow { color: var(--green-400); }

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  margin: 0.25rem 0 1rem;
  color: var(--green-800);
}
h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.25;
  color: var(--green-800);
  margin: 0 0 0.6rem;
}

/* ============================================================
   GRID & CARDS
   ============================================================ */
.grid { display: grid; gap: 1rem; }
.cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two   { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card, .panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--green-100);
  box-shadow: var(--shadow-md);
}
.card a { color: var(--green-700); font-weight: 700; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--soft-green);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--green-700);
  font-size: 1.45rem;
}

/* ── Stat Grid ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.stat-grid div {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-grid strong {
  display: block;
  font-size: 2.1rem;
  color: var(--green-800);
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-weight: 900;
}
.stat-grid span { color: var(--muted); font-size: 0.875rem; }

/* ── Service Grid ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  display: block;
  color: var(--ink);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.service-card h3 { color: var(--green-800); margin: 0.75rem 0 0.5rem; font-size: 1.05rem; }
.service-card p  { color: var(--muted); font-size: 0.9rem; margin: 0; }
.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--soft-green), var(--green-100));
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--green-700);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-item-icon {
  color: var(--green-600);
  font-size: 1.1rem;
}

/* ============================================================
   BADGE / CHIP
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.badge-green  { background: var(--green-100); color: var(--green-800); }
.badge-orange { background: var(--orange-100); color: var(--orange-800); }
.badge-red    { background: var(--red-100); color: var(--red-700); }

/* ============================================================
   NOTICE / ALERT BOX
   ============================================================ */
.notice {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  margin: 1.25rem 0;
}
.notice-warning {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #78350f;
}
.notice-error {
  background: var(--red-100);
  border: 1px solid #fca5a5;
  color: #7f1d1d;
}
.notice-info {
  background: var(--soft-green);
  border: 1px solid var(--green-100);
  color: var(--green-900);
}
.notice-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.4; }
.notice strong { display: block; margin-bottom: 0.2rem; }

/* ============================================================
   EXCLUSION LIST (Pests Not Covered)
   ============================================================ */
.exclusion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
  margin: 1.25rem 0;
}
.exclusion-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red-100);
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-weight: 600;
  color: #7f1d1d;
  font-size: 0.9rem;
}
.exclusion-item::before {
  content: "✗";
  font-weight: 900;
  color: var(--red-700);
  flex-shrink: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--white);
  padding: 2.5rem 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-top: 0; }
.cta-band p  { color: rgb(255 255 255 / 0.88); }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.area-link {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.area-link:hover {
  background: var(--soft-green);
  border-color: var(--green-100);
  transform: translateY(-1px);
}

.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form { display: grid; gap: 0.9rem; }
.lead-form label { display: grid; gap: 0.3rem; font-weight: 700; font-size: 0.9rem; }
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  background: var(--soft);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgb(74 124 47 / 0.15);
  background: var(--white);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 0.65rem; margin-top: 1rem; }
.faq details,
.faq .faq-list details {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq details:hover,
.faq .faq-list details:hover { border-color: var(--green-100); }
.faq details[open] { border-color: var(--green-100); box-shadow: var(--shadow); }
.faq summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--green-800);
  font-size: 1rem;
  padding-right: 1.5rem;
  position: relative;
  list-style: none;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--green-600);
  font-weight: 900;
  transition: transform var(--transition);
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p { margin-top: 0.75rem; color: #374151; }

/* ============================================================
   ARTICLE / CONTENT
   ============================================================ */
.content { max-width: 880px; }
.content p { color: #374151; }

.article-prose h2 { margin-top: 2.5rem; }
.article-prose h3 { margin-top: 1.6rem; color: var(--green-700); }
.article-prose ul,
.article-prose ol { margin: 1rem 0 1.5rem; }
.article-prose li { margin: 0.45rem 0; color: #374151; }
.article-prose a  { color: var(--green-700); font-weight: 700; text-underline-offset: 2px; }

.tldr-box {
  border-left: 4px solid var(--green-600);
  background: var(--soft-green);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 1.5rem;
  color: #374151;
}

.inline-cta, .weather-card {
  border-left: 4px solid var(--green-600);
  background: var(--soft-green);
  padding: 1rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

/* ── Table ── */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
table { width: 100%; border-collapse: collapse; min-width: 580px; background: #fff; }
th {
  background: var(--green-800);
  color: #fff;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
}
th, td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
tr:nth-child(even) td { background: var(--soft); }

/* ── Misc article helpers ── */
.mini-links { display: grid; gap: 0.45rem; margin-top: 0.8rem; }
.mini-links a { color: var(--green-700); font-weight: 700; text-decoration: none; }
.panel hr { border: 0; border-top: 1px solid var(--line); margin: 1.25rem 0; }
.article .content { margin-inline: auto; }
.article-hero { margin: 1rem 0 1.5rem; }
.article-img  { margin: 1rem 0; }

.sticky-panel { position: sticky; top: 88px; }

/* ── Steps ── */
.steps {
  display: grid;
  gap: 0.85rem;
  counter-reset: step;
  padding: 0;
  list-style: none;
}
.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  counter-increment: step;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-weight: 900;
  font-size: 0.875rem;
  flex-shrink: 0;
  font-family: Montserrat, sans-serif;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.82rem;
  color: rgb(255 255 255 / 0.72);
  margin-bottom: 0.75rem;
  padding: 0;
  list-style: none;
}
.breadcrumb a { color: rgb(255 255 255 / 0.82); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.35rem; opacity: 0.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-950);
  color: #d1d5db;
  padding: 3.5rem 0 1.25rem;
}
.site-footer h2 { font-size: 1.25rem; color: var(--white); margin: 0 0 0.6rem; }
.site-footer h3 { font-size: 0.95rem; color: var(--white); margin: 0 0 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
}
.site-footer a {
  display: block;
  margin: 0.32rem 0;
  color: #bbf7d0;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 0.4rem; margin-top: 0.5rem; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  color: #9ca3af;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.footer-legal-links a { color: #9ca3af; font-size: 0.82rem; margin: 0; }
.footer-legal-links a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    background: var(--green-900);
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    z-index: 60;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a,
  .site-nav summary { width: 100%; padding: 0.65rem 0.75rem; }

  .nav-group { width: 100%; }
  .nav-group summary { width: 100%; justify-content: space-between; }
  .dropdown, .dropdown.wide {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 300px;
    grid-template-columns: 1fr;
    margin-top: 0.5rem;
    box-shadow: none;
    animation: none;
  }

  .header-call { display: none; }

  .hero-grid, .split { grid-template-columns: 1fr; }

  .cards, .three, .area-grid, .footer-grid { grid-template-columns: 1fr 1fr; }

  .sticky-panel { position: static; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 580px)
   ============================================================ */
@media (max-width: 580px) {
  .cards, .three, .area-grid, .footer-grid, .stat-grid, .two { grid-template-columns: 1fr; }
  .exclusion-grid { grid-template-columns: 1fr; }

  .container { width: min(100% - 1.5rem, 1120px); }

  .hero { padding-top: 2.75rem; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }

  .btn { width: 100%; justify-content: center; }
  .site-nav .btn { width: auto; }

  .trust-bar-inner { gap: 0.85rem; }

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