/* =========================================================================
   PARADISE PEST & WILDLIFE — Design System v2
   Aesthetic: Florida Veteran. Warm cream canvas, deep navy authority,
   rust/amber CTA, olive/sage trust accent. Bitter slab + Source Sans 3.
   Built for a 65-year-old homeowner to feel completely safe calling.
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,300..900;1,300..900&family=Source+Sans+3:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  /* --- Color ----------------------------------------------------------- */
  --cream: #faf6ee;            /* warm off-white canvas */
  --cream-2: #f3ecdc;          /* slightly deeper cream — section alt */
  --paper: #ffffff;            /* card surface */
  --paper-warm: #fffaf0;       /* alt warm card */

  --navy: #0f2740;             /* deep authority navy — primary text & brand */
  --navy-soft: #1d3a58;
  --navy-dim: #2a4666;

  --ink: #1a2332;              /* near-black for body */
  --slate: #4a5568;            /* secondary text */
  --muted: #7a7468;            /* muted warm gray */

  --rust: #c25d2e;             /* warm rust amber — primary CTA */
  --rust-deep: #a44d24;
  --rust-soft: #f3dccd;

  --olive: #6b8552;            /* sage olive — trust badge / military hint */
  --olive-deep: #556a40;
  --olive-soft: #e6ecdc;

  --gold: #c8a44a;             /* veteran badge / award accent */
  --gold-soft: #f4e8c4;

  --teal: #2bb3c0;             /* truck wrap turquoise — secondary brand */
  --teal-deep: #1f8d99;
  --teal-soft: #d8f1f4;

  --line: #e8dfca;             /* warm soft border */
  --line-strong: #d4c8a8;

  --danger: #c0392b;
  --ok: var(--olive-deep);

  /* --- Typography ----------------------------------------------------- */
  --display: "Bitter", "Georgia", "Times New Roman", serif;
  --body: "Source Sans 3", -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-body: 1.08rem;
  --fs-body-lg: 1.22rem;
  --fs-h6: 1.05rem;
  --fs-h5: 1.3rem;
  --fs-h4: 1.6rem;
  --fs-h3: 2.05rem;
  --fs-h2: clamp(2rem, 4.4vw, 3.2rem);
  --fs-h1: clamp(2.6rem, 6.8vw, 4.8rem);

  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-body: 1.65;

  /* --- Spacing & layout ---------------------------------------------- */
  --gutter: 1.5rem;
  --container: 1240px;
  --container-narrow: 900px;
  --section-y: clamp(4rem, 8.5vw, 7.5rem);
  --section-y-tight: clamp(2.4rem, 5vw, 4rem);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(15,39,64,0.06), 0 1px 3px rgba(15,39,64,0.04);
  --shadow-md: 0 4px 12px rgba(15,39,64,0.06), 0 12px 32px -12px rgba(15,39,64,0.10);
  --shadow-lg: 0 10px 24px rgba(15,39,64,0.08), 0 28px 60px -20px rgba(15,39,64,0.18);

  --t-fast: 160ms cubic-bezier(.2,.7,.2,1);
  --t-med: 280ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 520ms cubic-bezier(.16,.7,.18,1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea, button { font: inherit; color: inherit; }

::selection { background: var(--rust); color: white; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: -0.005em;
  margin: 0 0 0.6em;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: -0.02em; font-weight: 700; text-wrap: balance; hyphens: manual; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p { margin: 0 0 1em; color: var(--ink); max-width: 64ch; text-wrap: pretty; }
p.lead { font-size: var(--fs-body-lg); color: var(--ink); max-width: 60ch; line-height: 1.55; text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--rust);
  display: inline-block;
}

.serif-i { font-family: var(--display); font-style: italic; font-weight: 600; }

.muted { color: var(--slate); }
.accent { color: var(--rust); }
.navy-text { color: var(--navy); }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}
.container-narrow { max-width: var(--container-narrow); }

section { position: relative; padding-block: var(--section-y); }
section.tight { padding-block: var(--section-y-tight); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
}
.section-head .lead { color: var(--slate); }

.divider { height: 1px; background: var(--line); margin-block: 0; }
.rule-lime { /* keep selector for legacy markup; restyle for new palette */
  height: 3px;
  width: 56px;
  background: var(--rust);
  display: block;
  margin: 1.6rem 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.5rem var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.brand img { height: 40px; width: auto; }
.brand--img { gap: 0; }
.brand--img img {
  height: 144px;
  width: 144px;
  object-fit: contain;
  display: block;
  transition: transform var(--t-fast);
}
.brand--img:hover img { transform: scale(1.03); }
@media (max-width: 960px) {
  .brand--img img { height: 92px; width: 92px; }
}
.brand--foot img {
  height: 220px;
  width: 220px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}
.brand .brand-mark {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  background: var(--navy); color: var(--cream);
  border-radius: var(--r-sm);
  font-family: var(--display); font-weight: 800; font-size: 1.25rem;
  position: relative;
}
.brand .brand-mark::after {
  /* tiny rust badge corner — military rank dot */
  content: "";
  position: absolute;
  top: -3px; right: -3px;
  width: 12px; height: 12px;
  background: var(--rust);
  border: 2px solid var(--cream);
  border-radius: 50%;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}
.nav a {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
  font-family: var(--body);
}
.nav a:hover { color: var(--rust); }
.nav a[aria-current="page"] { color: var(--rust); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.1rem;
  height: 2px;
  background: var(--rust);
}

.header-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1.1;
  font-family: var(--body);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-left: 2px solid var(--line-strong);
  white-space: nowrap;
  transition: color var(--t-fast);
  color: var(--navy);
}
.header-cta:hover { color: var(--rust); }
.header-cta__small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.15rem;
}
.header-cta__phone {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  display: block;
}
.header-cta:hover .header-cta__phone { color: var(--rust); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 20px; height: 2px;
  background: var(--navy);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
  transition: transform var(--t-fast);
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 7px); }

@media (max-width: 960px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
  }
  .brand { font-size: 1rem; }
  .brand .brand-mark { width: 38px; height: 38px; font-size: 1.1rem; }
  .nav-toggle { display: inline-block; order: 3; }
  .header-cta { padding: 0.35rem 0.6rem; order: 2; border-left: 0; }
  .header-cta__small { display: none; }
  .header-cta__phone { font-size: 1.05rem; }
  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1.4rem var(--gutter) 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med), transform var(--t-med);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a {
    padding: 1rem 0.4rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
  }
  .nav a[aria-current="page"]::after { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.7rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15,39,64,0.06);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lime { /* legacy class name — restyled */
  background: var(--rust);
  color: white;
  border-color: var(--rust);
}
.btn--lime:hover { background: var(--rust-deep); border-color: var(--rust-deep); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--dark {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn--dark:hover { background: var(--navy-soft); border-color: var(--navy-soft); }
.btn--lg { padding: 1.2rem 2rem; font-size: 1.1rem; }
.btn .arr { transition: transform var(--t-fast); }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}
.hero::before {
  /* warm radial wash + faint palm-frond shapes */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(200, 164, 74, 0.18), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(107, 133, 82, 0.14), transparent 60%);
  z-index: -1;
}
.hero::after {
  /* warm paper texture — subtle, not grainy */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.45  0 0 0 0 0.30  0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: multiply;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.25fr 1fr; gap: 4rem; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem 0.5rem 0.6rem;
  background: var(--olive-soft);
  border: 1px solid var(--olive);
  border-radius: 999px;
  margin-bottom: 1.4rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--olive-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__badge::before {
  content: "★";
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--olive-deep);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.2rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 1.4rem;
  color: var(--navy);
}
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(20px); animation: wordIn .8s cubic-bezier(.2,.75,.2,1) forwards; }
.hero h1 .word--em { color: var(--rust); font-style: italic; }
.hero h1 .word--em {
  font-style: italic;
  color: var(--rust);
}
.hero h1 .word:nth-child(1){ animation-delay: .05s; }
.hero h1 .word:nth-child(2){ animation-delay: .12s; }
.hero h1 .word:nth-child(3){ animation-delay: .19s; }
.hero h1 .word:nth-child(4){ animation-delay: .26s; }
.hero h1 .word:nth-child(5){ animation-delay: .33s; }
.hero h1 .word:nth-child(6){ animation-delay: .40s; }
.hero h1 .word:nth-child(7){ animation-delay: .47s; }
.hero h1 .word:nth-child(8){ animation-delay: .54s; }

@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  color: var(--ink);
  max-width: 56ch;
  margin: 0 0 2rem;
  line-height: 1.55;
  opacity: 0; transform: translateY(12px);
  animation: wordIn .8s cubic-bezier(.2,.75,.2,1) .58s forwards;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.4rem;
  opacity: 0; transform: translateY(12px);
  animation: wordIn .8s cubic-bezier(.2,.75,.2,1) .72s forwards;
}

.hero__sidecard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.7rem 1.6rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  opacity: 0; transform: translateY(20px);
  animation: wordIn .8s cubic-bezier(.2,.75,.2,1) .85s forwards;
}
.hero__sidecard::before {
  /* warm gold accent stripe at top */
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.hero__sidecard .eyebrow { margin-bottom: 0.6rem; }
.hero__sidecard .num {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0;
}
.hero__sidecard .num__unit {
  font-family: var(--body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 1.35em;
  margin-left: 0.1em;
}
.hero__sidecard p { margin: 0.5rem 0 1.2rem; font-size: 0.98rem; color: var(--slate); }
.hero__sidecard .phone-big {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
  margin: 0.4rem 0 0.4rem;
  transition: color var(--t-fast);
}
.hero__sidecard .phone-big:hover { color: var(--rust); }
.hero__sidecard small { color: var(--slate); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   FAST STRIP (was lime marquee — now navy authority strip)
   ============================================================ */
.fast-strip {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  border-block: 0;
  position: relative;
  z-index: 3;
}
.fast-strip__track {
  display: flex;
  gap: 4rem;
  padding: 0.95rem 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.fast-strip span { display: inline-flex; align-items: center; gap: 0.7rem; }
.fast-strip span::before {
  content: "★";
  color: var(--gold);
  font-size: 0.7rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 55% at 85% 25%, rgba(200, 164, 74, 0.14), transparent 60%),
    radial-gradient(40% 45% at 5% 90%, rgba(107, 133, 82, 0.10), transparent 65%);
  z-index: -1;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin: 0 0 1.2rem;
  max-width: 22ch;
  color: var(--navy);
  text-wrap: balance;
}
.page-hero p.lead { max-width: 60ch; color: var(--slate); }
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.page-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.page-hero__meta span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rust);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar {
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 700px) { .trustbar__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .trustbar__grid { grid-template-columns: repeat(6, 1fr); } }

.trustbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.8rem 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1000px) {
  .trustbar__item { border-bottom: 0; }
  .trustbar__item:nth-child(6n) { border-right: 0; }
}
@media (min-width: 700px) and (max-width: 999px) {
  .trustbar__item:nth-child(3n) { border-right: 0; }
}
@media (max-width: 699px) {
  .trustbar__item:nth-child(2n) { border-right: 0; }
}

.trustbar__icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy);
  border: 2px solid var(--olive);
  box-shadow: inset 0 0 0 4px var(--paper), 0 0 0 1px var(--olive-soft);
  position: relative;
}
.trustbar__icon svg { width: 28px; height: 28px; fill: var(--navy); }
.trustbar__label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--navy);
}

/* ============================================================
   CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 760px)  { .cards.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px)  { .cards.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.7rem 1.6rem;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--rust);
  box-shadow: var(--shadow-md);
}

.card__num {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--rust);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
}
.card__num::after { content: ""; flex: 1; height: 2px; background: var(--line); }

.card h3 {
  font-size: 1.55rem;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--navy);
}
.card p { color: var(--slate); margin-bottom: 1.2rem; font-size: 0.99rem; line-height: 1.55; }
.card .card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}
.card .card__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 0.95rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.card .card__list li:first-child { border-top: 0; }
.card .card__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0.4rem;
  width: 18px; height: 18px;
  color: var(--olive-deep);
  font-weight: 700;
  font-size: 0.95rem;
  display: grid; place-items: center;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--rust);
  border-bottom: 2px solid var(--rust);
  padding-bottom: 0.25rem;
  transition: gap var(--t-fast), color var(--t-fast);
  font-family: var(--body);
}
.card__cta:hover { gap: 0.8rem; color: var(--rust-deep); }

/* Testimonial card */
.tcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.tcard::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: var(--gold);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.tcard__stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.tcard__quote {
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 1.4rem;
  font-style: italic;
}
.tcard__quote::before { content: "“"; color: var(--rust); font-weight: 700; margin-right: 0.05em; }
.tcard__quote::after  { content: "”"; color: var(--rust); font-weight: 700; margin-left: 0.05em; }
.tcard__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.tcard__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem;
}
.tcard__name { font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.1; font-family: var(--display); }
.tcard__city { color: var(--slate); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   SPLIT (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 5fr 6fr; gap: 4rem; }
  .split--reverse { grid-template-columns: 6fr 5fr; direction: rtl; }
  .split--reverse > * { direction: ltr; }
}

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: var(--cream-2);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__media--landscape { aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .badge {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rust);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: var(--shadow-md);
  font-family: var(--body);
}
.split__media .badge::before {
  content: "★"; font-size: 0.9rem; color: var(--gold);
}

/* ============================================================
   FACT GRID
   ============================================================ */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}
@media (min-width: 800px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact {
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
@media (min-width: 800px) {
  .fact { border-bottom: 0; }
  .fact:nth-child(4n) { border-right: 0; }
}
@media (max-width: 799px) {
  .fact:nth-child(2n) { border-right: 0; }
  .fact:nth-last-child(-n+2) { border-bottom: 0; }
}
.fact__num {
  display: block;
  font-family: var(--display);
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.fact__label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  font-weight: 700;
}

/* ============================================================
   CITIES (flowing pills — already proven layout)
   ============================================================ */
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
}
.city {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.3rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: default;
}
.city::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  counter-reset: stepCounter;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  padding: 1.8rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  counter-increment: stepCounter;
  box-shadow: var(--shadow-sm);
}
.step::before {
  content: counter(stepCounter, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--rust);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.step h4 { font-size: 1.25rem; margin: 0 0 0.5rem; color: var(--navy); }
.step p { font-size: 0.97rem; color: var(--slate); margin: 0; line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq details {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--rust);
  transition: transform var(--t-fast);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 1rem;
  color: var(--ink);
  max-width: 70ch;
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 80% 30%, rgba(200, 164, 74, 0.18), transparent 60%),
    radial-gradient(40% 60% at 12% 75%, rgba(194, 93, 46, 0.18), transparent 60%);
  z-index: -1;
}
.cta-band h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--cream);
}
.cta-band p { color: rgba(250,246,238,0.85); }
.cta-band .eyebrow { color: var(--gold); }
.cta-band .eyebrow::before { background: var(--gold); }
.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .cta-band__grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}
.cta-band__phone {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--t-fast);
}
.cta-band__phone:hover { color: var(--gold); }
.cta-band__sub { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.cta-band .btn--lime {
  background: var(--rust);
  color: white;
  border-color: var(--rust);
}
.cta-band .btn--lime:hover { background: var(--rust-deep); border-color: var(--rust-deep); }

/* ============================================================
   FORMS
   ============================================================ */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.7rem;
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.form::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
@media (min-width: 700px) { .form { padding: 2.4rem 2.2rem; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 700px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.field label .req { color: var(--rust); margin-left: 0.2rem; }

.field input,
.field select,
.field textarea {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font-size: 1rem;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--body);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%230f2740'><path d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--rust);
  background: var(--paper);
  box-shadow: 0 0 0 3px var(--rust-soft);
}

.field--radio { gap: 0.7rem; }
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.radio-group input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  margin: 0;
  position: relative;
}
.radio-group input[type="radio"]:checked {
  border-color: var(--rust);
  background: var(--rust);
  box-shadow: inset 0 0 0 3px var(--paper);
}
.radio-group label:has(input:checked) {
  color: var(--rust);
  border-color: var(--rust);
  background: var(--rust-soft);
}

.form button[type="submit"] {
  background: var(--rust);
  color: white;
  border: 0;
  border-radius: var(--r-sm);
  padding: 1.15rem 1.5rem;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  font-family: var(--body);
  box-shadow: var(--shadow-sm);
}
.form button[type="submit"]:hover {
  transform: translateY(-1px);
  background: var(--rust-deep);
  box-shadow: var(--shadow-md);
}

.form-foot { font-size: 0.86rem; color: var(--slate); text-align: center; }

/* Two-column contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: start;
}
@media (min-width: 980px) {
  .contact-layout { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}

.contact-side {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.contact-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.contact-block h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--body);
  font-weight: 700;
  color: var(--rust);
  margin: 0 0 0.9rem;
}
.contact-block .phone-xl {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color var(--t-fast);
}
.contact-block .phone-xl:hover { color: var(--rust); }
.contact-block .email-xl {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-all;
  transition: color var(--t-fast);
}
.contact-block .email-xl:hover { color: var(--rust); }
.contact-block ul { list-style: none; margin: 0; padding: 0; }
.contact-block ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
}
.contact-block ul li:last-child { border-bottom: 0; }
.contact-block .badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem;
}
.contact-block .badges span {
  background: var(--olive-soft);
  color: var(--olive-deep);
  border: 1px solid var(--olive);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--body);
}

/* ============================================================
   PEST GRID
   ============================================================ */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
}
@media (min-width: 700px) { .pest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .pest-grid { grid-template-columns: repeat(4, 1fr); } }
.pest {
  padding: 1.5rem 1.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast);
}
.pest:hover { background: var(--cream-2); }
.pest__name {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.pest p { font-size: 0.92rem; color: var(--slate); margin: 0; line-height: 1.55; }

/* Section background variant — alternating warm */
section.alt-bg {
  background: var(--cream-2);
  border-block: 1px solid var(--line);
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
.ty {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.ty::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(200, 164, 74, 0.18), transparent 70%);
  z-index: -1;
}
.ty__inner {
  text-align: center;
  max-width: 660px;
  padding: 0 var(--gutter);
}
.ty__check {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--olive-deep);
  color: var(--cream);
  display: grid; place-items: center;
  margin: 0 auto 2rem;
  font-size: 2.4rem;
  line-height: 1;
  box-shadow: 0 14px 40px -8px rgba(107,133,82,0.35);
}
.ty h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--navy);
}
.ty p { color: var(--ink); margin: 0 auto 2rem; font-size: 1.15rem; }
.ty .urgent {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.ty .urgent .phone-big {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--rust);
  margin: 0.5rem 0 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 4.5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--olive));
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  margin-bottom: 3rem;
}
@media (min-width: 760px)  { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }

.foot-block h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
}
.foot-block p { color: rgba(250,246,238,0.78); font-size: 0.96rem; }
.foot-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-block a { color: rgba(250,246,238,0.85); font-size: 0.96rem; transition: color var(--t-fast); }
.foot-block a:hover { color: var(--gold); }
.foot-block li { color: rgba(250,246,238,0.78); font-size: 0.96rem; }

.foot-brand .brand { font-size: 1.4rem; color: var(--cream); }
.foot-brand .brand-mark { background: var(--rust); color: white; }
.foot-brand .brand-mark::after { background: var(--gold); border-color: var(--navy); }
.foot-brand p { max-width: 36ch; margin-top: 1rem; }
.foot-phone {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0.4rem;
  transition: color var(--t-fast);
}
.foot-phone:hover { color: var(--gold); }

.foot-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(250,246,238,0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250,246,238,0.6);
  letter-spacing: 0.02em;
}
.foot-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.foot-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(250,246,238,0.08);
  border: 1px solid rgba(250,246,238,0.18);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--body);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.tel-link { color: inherit; transition: color var(--t-fast); }
.tel-link:hover { color: var(--rust); }

.center-text { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.6rem; }
.mt-4 { margin-top: 2.4rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.6rem; }
.mb-4 { margin-bottom: 2.4rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero h1 .word, .hero__sub, .hero__ctas, .hero__sidecard { opacity: 1; transform: none; }
}

@media print {
  .hero::before, .hero::after, .page-hero::before { display: none; }
  body { background: white; color: black; }
  .announce-bar, .sticky-call, .fast-strip, .stat-band { display: none !important; }
}

/* ============================================================
   ANNOUNCEMENT BAR (slim band above the header)
   ============================================================ */
.announce-bar {
  background: var(--rust);
  color: white;
  text-align: center;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.55rem var(--gutter);
  position: relative;
  z-index: 101;
}
.announce-bar a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 700;
  white-space: nowrap;
}
.announce-bar a:hover { color: var(--gold-soft); }
.announce-bar__sep {
  display: inline-block;
  margin: 0 0.6rem;
  opacity: 0.6;
}
@media (max-width: 600px) {
  .announce-bar { font-size: 0.85rem; padding: 0.5rem var(--gutter); }
  .announce-bar__hide-sm { display: none; }
}

/* ============================================================
   STICKY MOBILE CALL BUTTON
   ============================================================ */
.sticky-call {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom, 0));
  background: var(--rust);
  color: white;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.005em;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-top: 2px solid var(--rust-deep);
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.25);
  text-decoration: none;
}
.sticky-call::before {
  content: "📞";
  font-size: 1.15rem;
}
@media (max-width: 760px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 70px; }
}

/* ============================================================
   HERO OWNER CARD (Nick portrait replacing the 24hr stat card)
   ============================================================ */
.hero__owner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--cream-2);
  opacity: 0; transform: translateY(20px);
  animation: wordIn .8s cubic-bezier(.2,.75,.2,1) .85s forwards;
  border: 1px solid var(--line);
}
.hero__owner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__owner__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.4rem 1.2rem;
  background: linear-gradient(180deg, rgba(15,39,64,0) 0%, rgba(15,39,64,0.85) 60%, rgba(15,39,64,0.95) 100%);
  color: white;
}
.hero__owner__name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 0.15rem;
  color: white;
}
.hero__owner__role {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.7rem;
}
.hero__owner__phone {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: white;
  text-decoration: none;
  transition: color var(--t-fast);
}
.hero__owner__phone:hover { color: var(--gold); }
.hero__owner__phone small {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__owner__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--rust);
  color: white;
  padding: 0.4rem 0.75rem 0.4rem 0.6rem;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
}
.hero__owner__badge::before {
  content: "★";
  color: var(--gold-soft);
  font-size: 0.85rem;
}

/* ============================================================
   FULL-BLEED PHOTO BANNER (truck section break)
   ============================================================ */
.banner {
  position: relative;
  min-height: clamp(280px, 38vw, 480px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-block: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,39,64,0.78) 0%, rgba(15,39,64,0.55) 50%, rgba(15,39,64,0.25) 100%);
  z-index: -1;
}
.banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding: 3rem var(--gutter);
  color: white;
}
.banner .eyebrow {
  color: var(--teal);
  margin-bottom: 1rem;
}
.banner .eyebrow::before { background: var(--teal); }
.banner h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 0 0.6rem;
  text-wrap: balance;
}
.banner p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0;
}

/* ============================================================
   SERVICE CARD PHOTO (top-of-card thumbnail)
   ============================================================ */
.card--photo { padding: 0; overflow: hidden; }
.card--photo .card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-2);
}
.card--photo .card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.card--photo:hover .card__media img { transform: scale(1.04); }
.card--photo .card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,39,64,0.35) 100%);
  pointer-events: none;
}
.card--photo .card__body { padding: 1.6rem 1.7rem 1.4rem; }
.card--photo .card__num {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--rust);
  color: white;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin: 0;
  z-index: 2;
  font-size: 0.72rem;
}
.card--photo .card__num::after { display: none; }

/* ============================================================
   STAT BAND (replaces the marquee)
   ============================================================ */
.stat-band {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--navy-soft);
}
.stat-band__grid {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.6rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.stat-band__item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.5rem;
}
.stat-band__item:last-child { border-right: 0; }
.stat-band__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-band__label {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.85);
}
@media (max-width: 700px) {
  .stat-band__grid { grid-template-columns: 1fr; gap: 0.4rem; }
  .stat-band__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-block: 0.7rem; }
  .stat-band__item:last-child { border-bottom: 0; }
}

/* Slight teal accent integration */
.trustbar__icon { background: var(--teal-soft); border-color: var(--teal); color: var(--navy); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 4.5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rust), var(--gold), var(--olive));
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  margin-bottom: 3rem;
}
@media (min-width: 760px)  { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }

.foot-block h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
}
.foot-block p { color: rgba(250,246,238,0.78); font-size: 0.96rem; }
.foot-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-block a { color: rgba(250,246,238,0.85); font-size: 0.96rem; transition: color var(--t-fast); }
.foot-block a:hover { color: var(--gold); }
.foot-block li { color: rgba(250,246,238,0.78); font-size: 0.96rem; }

.foot-brand .brand { font-size: 1.4rem; color: var(--cream); }
.foot-brand p { max-width: 36ch; margin-top: 1rem; }
.foot-phone {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0.4rem;
  transition: color 160ms ease;
}
.foot-phone:hover { color: var(--gold); }

.foot-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(250,246,238,0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250,246,238,0.6);
}
.foot-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.foot-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background: rgba(250,246,238,0.08);
  border: 1px solid rgba(250,246,238,0.18);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--body);
}

@media (max-width: 760px) {
  .site-footer { padding-bottom: calc(2rem + 80px); }
}

/* ============================================================
   GOOGLE REVIEWS BADGE
   ============================================================ */
.reviews-badge {
  margin-top: 2.4rem;
  padding: 1.4rem 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.reviews-badge__rating {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.reviews-badge__stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  line-height: 1;
}
.reviews-badge strong {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.reviews-badge__count {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate);
}
.reviews-badge .btn {
  padding: 0.85rem 1.3rem;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .reviews-badge { flex-direction: column; align-items: flex-start; }
  .reviews-badge .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FLAT-RATE CALLOUT (service-area page)
   ============================================================ */
.flat-rate-callout {
  margin-top: 2.4rem;
  padding: 1.6rem 1.8rem;
  background: var(--olive-soft);
  border: 1px solid var(--olive);
  border-left: 4px solid var(--olive-deep);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 60ch;
}
.flat-rate-callout__eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.flat-rate-callout__text {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
  max-width: none;
}

/* ============================================================
   FOOTER SOCIAL LINK
   ============================================================ */
.foot-social {
  margin-top: 1rem;
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(200,164,74,0.35);
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.foot-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.foot-social svg { flex-shrink: 0; }

/* Footer "see full" link */
.foot-block .foot-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  margin-top: 0.4rem;
  border-bottom: 1px solid rgba(200,164,74,0.4);
  padding-bottom: 0.25rem;
  transition: color 160ms ease, border-color 160ms ease, gap 160ms ease;
}
.foot-block .foot-link:hover {
  color: white;
  border-color: white;
  gap: 0.7rem;
}

/* Mobile: stronger dark overlay on the banner so text always reads clean */
@media (max-width: 760px) {
  .banner::before {
    background: linear-gradient(180deg, rgba(15,39,64,0.55) 0%, rgba(15,39,64,0.85) 60%, rgba(15,39,64,0.92) 100%);
  }
  .banner__inner {
    padding: 4rem var(--gutter) 2.4rem;
  }
  .banner h2 {
    max-width: none;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .banner p {
    max-width: none;
  }
}

/* ============================================================
   MOBILE HARDENING — explicit stacking + smaller hero photo
   Applied below 760px (phones) — covers iPhones, Androids, narrow tablets
   ============================================================ */
@media (max-width: 760px) {
  /* Hero: force vertical stack, text first, photo second */
  .hero { padding: 3rem 0 2.5rem; }
  .hero__grid {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 1.05;
  }
  .hero__sub {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.4rem;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Owner photo card: less tall, doesn't dominate the stack */
  .hero__owner {
    aspect-ratio: 4/3;
    max-width: 100%;
  }
  .hero__owner__overlay {
    padding: 1rem 1.1rem 0.9rem;
  }
  .hero__owner__name { font-size: 1.15rem; }
  .hero__owner__phone { font-size: 1.3rem; }

  /* Stat band: tighter on mobile */
  .stat-band__num { font-size: 1.6rem; }

  /* Truck banner: ensure text is centered and overlay is strong */
  .banner {
    min-height: 320px;
    background-position: center bottom;
  }
  .banner::before {
    background: linear-gradient(180deg, rgba(15,39,64,0.55) 0%, rgba(15,39,64,0.85) 50%, rgba(15,39,64,0.95) 100%) !important;
  }
  .banner__inner {
    padding: 3rem var(--gutter) 2.4rem;
  }
  .banner h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.1;
    max-width: none !important;
  }
  .banner p {
    font-size: 0.95rem;
    max-width: none !important;
  }
}

/* Even narrower phones (under 480px) — extra safety */
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero__owner { aspect-ratio: 5/4; }
  .banner { min-height: 280px; }
  .banner h2 { font-size: 1.4rem; }
}

/* ============================================================
   MOBILE FIXES v2 — based on real iPhone screenshots
   ============================================================ */
@media (max-width: 760px) {
  /* Move the OWNER & OPERATOR badge so it doesn't cover Nick's face */
  .hero__owner__badge {
    top: auto;
    bottom: auto;
    right: auto;
    left: 0.85rem;
    top: 0.85rem;
    font-size: 0.68rem;
    padding: 0.32rem 0.65rem 0.32rem 0.5rem;
  }

  /* Truck banner: make overlay near-solid so the truck reads as background texture only */
  .banner::before {
    background: linear-gradient(180deg, rgba(15,39,64,0.92) 0%, rgba(15,39,64,0.95) 100%) !important;
  }
  .banner {
    min-height: 260px;
  }
  .banner__inner {
    padding: 2.5rem var(--gutter) 2rem;
  }
  .banner .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.7rem;
  }
  .banner h2 {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 0.7rem;
  }
  .banner p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Owner overlay tight up */
  .hero__owner__role {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }
  .hero__owner__overlay {
    padding: 1rem 1rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero__owner__badge {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }
  .banner h2 { font-size: 1.35rem; }
  .banner p { font-size: 0.9rem; }
}

/* === FINAL MOBILE OVERRIDE — hide badge on phone === */
@media (max-width: 900px) {
  .hero__owner__badge { display: none !important; }
}

/* === MOBILE: text BELOW photo, not overlaid === */
@media (max-width: 760px) {
  .hero__owner {
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    aspect-ratio: auto !important;
  }
  .hero__owner img {
    border-radius: var(--r-lg) !important;
    box-shadow: var(--shadow-md) !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    width: 100%;
    height: auto;
  }
  .hero__owner__overlay {
    position: static !important;
    background: none !important;
    padding: 1.2rem 0.2rem 0 !important;
    color: var(--navy) !important;
  }
  .hero__owner__role {
    color: var(--rust) !important;
    font-size: 0.72rem !important;
    margin-bottom: 0.35rem !important;
  }
  .hero__owner__name {
    color: var(--navy) !important;
    font-size: 1.45rem !important;
    margin-bottom: 0.25rem !important;
  }
  .hero__owner__phone {
    color: var(--navy) !important;
    font-size: 1.65rem !important;
  }
  .hero__owner__phone small {
    color: var(--rust) !important;
  }
}
