/* ═══════════════════════════════════════════════════════════════
   SHIELD PEST CONTROL — EDITORIAL ARTISAN DESIGN SYSTEM
   Warm terracotta + forest green + cream | Playfair + Outfit
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:      #F8F4EE;
  --cream-dark: #F0E9DC;
  --cream-deep: #E8DECE;
  --parchment:  #DDD0BB;

  --forest:     #1F3D2A;
  --forest-mid: #2D5A3D;
  --forest-lt:  #3D7A53;
  --forest-pale:#E8F0EA;
  --forest-ink: rgba(31,61,42,0.08);

  --terra:      #C4622D;
  --terra-deep: #A84E22;
  --terra-lt:   #D97843;
  --terra-pale: #FBF0EB;
  --terra-ink:  rgba(196,98,45,0.10);

  --amber:      #E8A835;
  --amber-pale: #FDF6E3;
  --charcoal:   #1C1C1C;
  --ink:        #2C2C2C;
  --slate:      #5C6B5E;
  --stone:      #8A9B8E;
  --mist:       #B8C9BB;

  /* Typography */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Outfit', system-ui, sans-serif;
  --mono:   'Courier Prime', 'Courier New', monospace;

  /* Spacing */
  --sp-xs: 4px;  --sp-sm: 8px;   --sp-md: 16px;
  --sp-lg: 24px; --sp-xl: 40px;  --sp-2xl: 64px;
  --sp-3xl: 96px; --sp-4xl: 128px;

  /* Radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px;
  --r-xl: 24px; --r-2xl: 40px; --r-pill: 999px;

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(31,61,42,0.08);
  --sh-md:  0 6px 24px rgba(31,61,42,0.12);
  --sh-lg:  0 16px 48px rgba(31,61,42,0.14);
  --sh-xl:  0 32px 80px rgba(31,61,42,0.16);
  --sh-terra: 0 8px 32px rgba(196,98,45,0.20);
  --sh-warm:  0 4px 20px rgba(232,168,53,0.18);

  /* Easing */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-io:   cubic-bezier(0.4, 0, 0.2, 1);

  --t-fast: 0.15s var(--ease-io);
  --t-mid:  0.3s  var(--ease-out);
  --t-slow: 0.5s  var(--ease-out);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TEXTURE OVERLAY ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.7;
}

/* ── HEXAGON PATTERN ────────────────────────────────────────── */
.hex-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,16 58,36 30,50 2,36 2,16' fill='none' stroke='%231F3D2A' stroke-width='0.5' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}
.hex-pattern-terra {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,16 58,36 30,50 2,36 2,16' fill='none' stroke='%23C4622D' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--forest); line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--slate); line-height: 1.75; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--terra); flex-shrink: 0; }

.label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.wrap    { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-md { max-width: 860px;  margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width: 640px;  margin: 0 auto; padding: 0 32px; }

.section    { padding: 112px 0; position: relative; overflow: hidden; }
.section-sm { padding: 72px 0;  position: relative; overflow: hidden; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr;       gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  padding: 14px 30px; border-radius: var(--r-sm);
  transition: all var(--t-mid); position: relative; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-terra {
  background: var(--terra); color: #fff;
  box-shadow: var(--sh-terra);
}
.btn-terra:hover {
  background: var(--terra-deep);
  box-shadow: 0 12px 40px rgba(196,98,45,0.30);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--forest); color: var(--cream);
  box-shadow: var(--sh-md);
}
.btn-forest:hover {
  background: var(--forest-mid);
  box-shadow: 0 12px 40px rgba(31,61,42,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent; color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest); color: var(--cream);
  transform: translateY(-2px);
}

.btn-outline-terra {
  background: transparent; color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline-terra:hover {
  background: var(--terra); color: #fff;
  transform: translateY(-2px);
}

.btn-cream {
  background: var(--cream); color: var(--forest);
  box-shadow: var(--sh-md);
}
.btn-cream:hover { background: #fff; transform: translateY(-2px); }

.btn-lg { padding: 18px 40px; font-size: 1rem; border-radius: var(--r-md); }
.btn-xl { padding: 20px 48px; font-size: 1.05rem; border-radius: var(--r-md); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-w  { width: 100%; justify-content: center; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg);
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-slow);
}
.card:hover { border-color: var(--mist); box-shadow: var(--sh-lg); transform: translateY(-3px); }

.card-cream { background: var(--cream); border-color: var(--cream-deep); }
.card-forest { background: var(--forest); border-color: var(--forest-mid); color: var(--cream); }
.card-terra  { background: var(--terra);  border-color: var(--terra-deep); color: #fff; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,244,238,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(31,61,42,0.08);
  height: 68px; transition: all var(--t-mid);
}
.nav.scrolled {
  background: rgba(248,244,238,0.97);
  border-bottom-color: rgba(31,61,42,0.14);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 700; font-size: 1.2rem;
  color: var(--forest); letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--forest);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  box-shadow: var(--sh-sm);
}
.nav-logo span { color: var(--terra); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--slate);
  transition: all var(--t-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); background: var(--forest-ink); }
.nav-links a.active { color: var(--terra); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-tel {
  font-family: var(--mono); font-size: 0.8rem; color: var(--slate);
  padding: 7px 12px; border: 1px solid var(--cream-deep); border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.nav-tel:hover { color: var(--terra); border-color: var(--terra); }
.nav-ham {
  display: none; flex-direction: column; gap: 5px; padding: 7px;
  border-radius: var(--r-sm); cursor: pointer; transition: background var(--t-fast);
}
.nav-ham:hover { background: var(--forest-ink); }
.nav-ham span {
  display: block; width: 20px; height: 1.5px;
  background: var(--slate); border-radius: 2px; transition: all var(--t-mid);
}

/* ── BADGE / CHIP ───────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 500; border: 1px solid;
}
.chip-forest { color: var(--forest-mid); background: var(--forest-pale); border-color: rgba(31,61,42,0.15); }
.chip-terra  { color: var(--terra-deep); background: var(--terra-pale);  border-color: rgba(196,98,45,0.15); }
.chip-amber  { color: #92650A; background: var(--amber-pale); border-color: rgba(232,168,53,0.2); }

/* ── DIVIDER ────────────────────────────────────────────────── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--cream-deep), transparent); }
.divider-forest { height: 1px; background: linear-gradient(90deg, transparent, rgba(31,61,42,0.2), transparent); }

/* ── FORMS ──────────────────────────────────────────────────── */
.fg { display: flex; flex-direction: column; gap: 6px; }
.flbl {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--slate);
}
.finp {
  background: #fff; border: 1.5px solid var(--cream-deep); border-radius: var(--r-md);
  padding: 12px 16px; font-family: var(--sans); font-size: 0.9rem; color: var(--ink);
  outline: none; transition: border-color var(--t-fast), box-shadow var(--t-fast); width: 100%;
}
.finp::placeholder { color: var(--mist); }
.finp:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(196,98,45,0.10); }
textarea.finp { min-height: 120px; resize: vertical; }
select.finp {
  appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A9B8E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fcheck { display: flex; align-items: flex-start; gap: 10px; }
.fcheck input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--terra); margin-top: 3px; flex-shrink: 0; }
.fcheck label { font-size: 0.82rem; color: var(--stone); line-height: 1.5; }
.fcheck a { color: var(--terra); }

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(28,28,28,0.7);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity var(--t-mid);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream); border: 1px solid var(--cream-deep);
  border-radius: var(--r-xl); box-shadow: var(--sh-xl);
  width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto;
  padding: 44px; position: relative;
  transform: scale(0.94) translateY(16px); transition: transform var(--t-slow);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--terra));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: var(--cream-dark); color: var(--slate); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast); cursor: pointer; border: 1px solid var(--cream-deep);
}
.modal-close:hover { background: var(--terra); color: #fff; }

/* ── COOKIE ─────────────────────────────────────────────────── */
.cookie {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(0);
  width: min(720px, calc(100% - 40px));
  background: var(--forest); color: var(--cream);
  border-radius: var(--r-xl); box-shadow: var(--sh-xl);
  padding: 20px 28px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  z-index: 8000; transition: transform 0.5s var(--ease-out), opacity 0.4s;
}
.cookie.gone { transform: translateX(-50%) translateY(140%); opacity: 0; pointer-events: none; }
.cookie p { flex: 1; min-width: 180px; font-size: 0.85rem; color: var(--mist); margin: 0; }
.cookie a { color: var(--amber); }
.cookie-btns { display: flex; gap: 10px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--forest); color: var(--cream);
  padding: 88px 0 44px; position: relative; overflow: hidden;
}
footer::before { content: ''; position: absolute; inset: 0; }
.footer-hex {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,16 58,36 30,50 2,36 2,16' fill='none' stroke='%23fff' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 56px; margin-bottom: 60px; }
.foot-desc { font-size: 0.87rem; color: var(--mist); line-height: 1.75; margin: 14px 0 24px; max-width: 280px; }
.foot-social { display: flex; gap: 8px; }
.foot-soc {
  width: 36px; height: 36px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.12); color: var(--stone);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; transition: all var(--t-fast);
}
.foot-soc:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
.foot-col-h { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin-bottom: 20px; }
.foot-links li { margin-bottom: 10px; }
.foot-links a { font-size: 0.88rem; color: var(--mist); transition: color var(--t-fast); }
.foot-links a:hover { color: var(--amber); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.foot-copy { font-size: 0.8rem; color: var(--stone); }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { font-size: 0.8rem; color: var(--stone); transition: color var(--t-fast); }
.foot-legal a:hover { color: var(--amber); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ── STATS BAND ─────────────────────────────────────────────── */
.stats-band {
  background: var(--forest); padding: 56px 0; position: relative; overflow: hidden;
}
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 20px 28px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-weight: 700; font-size: 3rem;
  letter-spacing: -0.04em; color: #fff; line-height: 1; margin-bottom: 6px;
}
.stat-num sup { font-size: 1.3rem; vertical-align: super; }
.stat-lbl { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.10em; text-transform: uppercase; color: var(--mist); }

/* ── SERVICE CARD ───────────────────────────────────────────── */
.svc-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: var(--forest-pale); border: 1px solid rgba(31,61,42,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 20px; transition: all var(--t-mid);
}
.card:hover .svc-icon { background: var(--terra); border-color: var(--terra); transform: scale(1.05); }

/* ── PROCESS STEP ───────────────────────────────────────────── */
.proc-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 44px; position: relative; }
.proc-step:last-child { padding-bottom: 0; }
.proc-step::before {
  content: ''; position: absolute;
  left: 27px; top: 56px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--terra) 0%, transparent 100%); opacity: 0.2;
}
.proc-step:last-child::before { display: none; }
.proc-num {
  width: 56px; height: 56px; border-radius: var(--r-lg);
  background: var(--cream-dark); border: 1.5px solid var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.2rem; color: var(--terra); flex-shrink: 0;
}
.proc-body { padding-top: 12px; }
.proc-h { font-size: 1rem; margin-bottom: 6px; }
.proc-p { font-size: 0.86rem; color: var(--stone); line-height: 1.65; }

/* ── TESTIMONIAL ────────────────────────────────────────────── */
.testi-stars { color: var(--amber); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-q {
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  color: var(--ink); line-height: 1.7; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 0.9rem; color: #fff;
}
.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--forest); margin-bottom: 2px; }
.testi-loc  { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--stone); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--cream-deep); }
.faq-item:first-child { border-top: 1px solid var(--cream-deep); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-family: var(--serif); font-weight: 600; font-size: 1rem;
  color: var(--forest); text-align: left; cursor: pointer; transition: color var(--t-fast);
}
.faq-q:hover { color: var(--terra); }
.faq-ico {
  width: 26px; height: 26px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--cream-dark); border: 1px solid var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--stone); transition: all var(--t-mid);
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--terra); color: #fff; border-color: var(--terra); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out), padding var(--t-mid); }
.faq-ans.open { max-height: 300px; padding-bottom: 20px; }
.faq-ans p { font-size: 0.88rem; color: var(--stone); line-height: 1.72; }

/* ── TRUST CHIPS ────────────────────────────────────────────── */
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-chip {
  display: flex; align-items: center; gap: 7px; padding: 8px 15px;
  background: #fff; border: 1px solid var(--cream-deep); border-radius: var(--r-sm);
  font-size: 0.82rem; color: var(--slate); white-space: nowrap; box-shadow: var(--sh-sm);
}

/* ── CONTACT INFO ───────────────────────────────────────────── */
.ci-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--cream-deep); }
.ci-item:first-child { padding-top: 0; }
.ci-item:last-child  { border-bottom: none; }
.ci-icon {
  width: 40px; height: 40px; border-radius: var(--r-md); background: var(--forest-pale);
  border: 1px solid rgba(31,61,42,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-lbl { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stone); margin-bottom: 3px; }
.ci-val { font-weight: 600; font-size: 0.95rem; color: var(--forest); margin-bottom: 1px; }
.ci-sub { font-size: 0.8rem; color: var(--stone); }

/* ── INNER HERO ─────────────────────────────────────────────── */
.inner-hero {
  padding: 148px 0 72px; text-align: center; position: relative; overflow: hidden;
  background: var(--cream-dark);
}
.inner-hero::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--terra), transparent); }

/* ── BLOG CARD ──────────────────────────────────────────────── */
.blog-thumb { height: 210px; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; position: relative; }
.blog-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88) saturate(0.9); transition: transform var(--t-slow), filter var(--t-slow); }
.card:hover .blog-img { transform: scale(1.04); filter: brightness(0.93) saturate(1.0); }
.blog-body { padding: 28px; }
.blog-cat { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; display: block; }
.blog-h { font-size: 1.05rem; margin-bottom: 9px; line-height: 1.3; }
.blog-ex { font-size: 0.84rem; color: var(--stone); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-family: var(--mono); font-size: 0.7rem; color: var(--mist); margin-bottom: 14px; }
.blog-read { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--terra); transition: all var(--t-fast); }
.blog-read:hover { letter-spacing: 0.12em; }

/* ── ARTICLE ────────────────────────────────────────────────── */
.art-body {
  background: #fff; border: 1px solid var(--cream-deep); border-radius: var(--r-xl);
  padding: 56px 64px; margin-bottom: 40px;
}
.art-body h2 { font-size: 1.5rem; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--cream-deep); }
.art-body h2:first-child { margin-top: 0; }
.art-body p  { font-size: 0.95rem; color: var(--slate); line-height: 1.82; margin-bottom: 18px; }
.art-body ul { margin: 0 0 18px 20px; }
.art-body li { font-size: 0.95rem; color: var(--slate); margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.art-body strong { color: var(--forest); }
.read-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--forest), var(--terra)); width: 0%; z-index: 9998; transition: width 0.1s linear; }
.back-lnk { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em; color: var(--stone); margin-bottom: 28px; transition: color var(--t-fast), gap var(--t-mid); }
.back-lnk:hover { color: var(--terra); gap: 14px; }

/* ── LEGAL ──────────────────────────────────────────────────── */
.legal-doc { background: #fff; border: 1px solid var(--cream-deep); border-radius: var(--r-xl); padding: 56px 64px; max-width: 840px; margin: 0 auto; }
.legal-doc h2 { font-size: 1.15rem; margin: 40px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--cream-deep); }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p  { font-size: 0.88rem; color: var(--stone); line-height: 1.78; margin-bottom: 14px; }
.legal-doc ul { margin: 0 0 14px 20px; }
.legal-doc li { font-size: 0.88rem; color: var(--stone); margin-bottom: 6px; line-height: 1.7; list-style: disc; }
.legal-doc a  { color: var(--terra); }
.legal-meta   { font-family: var(--mono); font-size: 0.76rem; color: var(--stone); margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--cream-deep); }

/* ── PEST CARD (services) ───────────────────────────────────── */
.pest-card { padding: 32px; display: flex; flex-direction: column; }
.pest-icon { font-size: 2.4rem; margin-bottom: 16px; }
.pest-h  { font-size: 1.1rem; margin-bottom: 8px; }
.pest-p  { font-size: 0.86rem; color: var(--stone); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.pest-link { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--terra); transition: letter-spacing var(--t-mid); margin-top: auto; }
.pest-link:hover { letter-spacing: 0.14em; }

/* ── AREA GRID ──────────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 10px; }
.area-chip {
  padding: 11px 14px; background: #fff; border: 1px solid var(--cream-deep);
  border-radius: var(--r-sm); font-size: 0.84rem; color: var(--slate);
  display: flex; align-items: center; gap: 7px; transition: all var(--t-fast);
}
.area-chip::before { content: '📍'; font-size: 0.75rem; }
.area-chip:hover { border-color: var(--terra); color: var(--terra-deep); background: var(--terra-pale); }

/* ── PRICING ────────────────────────────────────────────────── */
.price-card { padding: 36px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.price-card.pop { background: var(--forest); border-color: var(--forest-mid); }
.price-card.pop::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--terra), var(--amber)); }
.price-card.pop h3, .price-card.pop .price-num, .price-card.pop .price-feat { color: #fff !important; }
.price-card.pop .price-unit, .price-card.pop .price-tier { color: var(--mist) !important; }
.price-card.pop .price-hr { background: rgba(255,255,255,0.1); }
.price-tier { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.price-num { font-family: var(--serif); font-weight: 700; font-size: 3.2rem; letter-spacing: -0.04em; color: var(--forest); line-height: 1; margin-bottom: 4px; }
.price-num sup { font-size: 1.3rem; vertical-align: super; }
.price-unit { font-family: var(--mono); font-size: 0.76rem; color: var(--stone); margin-bottom: 20px; }
.price-hr { height: 1px; background: var(--cream-deep); margin: 20px 0; }
.price-feats { display: flex; flex-direction: column; gap: 0; margin-bottom: 26px; flex: 1; }
.price-feat { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 0.86rem; color: var(--slate); border-bottom: 1px solid var(--cream-deep); }
.price-feat:last-child { border-bottom: none; }
.price-check { font-size: 0.8rem; color: var(--terra); flex-shrink: 0; margin-top: 2px; }
.price-badge { position: absolute; top: 20px; right: 20px; background: var(--terra); color: #fff; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.08em; padding: 4px 10px; border-radius: var(--r-pill); }

/* ── MAP FRAME ──────────────────────────────────────────────── */
.map-frame {
  aspect-ratio: 4/3; border-radius: var(--r-xl); overflow: hidden;
  background: var(--cream-dark); border: 1px solid var(--cream-deep);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.map-frame::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--cream-deep) 1px, transparent 1px), linear-gradient(90deg, var(--cream-deep) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-inner { position: relative; z-index: 1; text-align: center; }

/* ── UTILITY ────────────────────────────────────────────────── */
.tc  { text-align: center; }
.mt-auto { margin-top: auto; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-tel { display: none; }
  .nav-ham { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--cream-deep);
    padding: 14px 20px; box-shadow: var(--sh-md);
  }
  .nav-links.open a { padding: 10px 14px; }
  .split { grid-template-columns: 1fr; gap: 48px; direction: ltr; }
  .split.flip { direction: ltr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .frow { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .wrap, .wrap-md { padding: 0 20px; }
  .art-body, .legal-doc { padding: 30px 20px; }
  .modal { padding: 28px 20px; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
}
@media (max-width: 500px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-cell:last-child { border-bottom: none; }
  .cookie { padding: 16px; }
}
