/* =========================================================================
   IECertify — brand styling layer over Bootstrap 5.
   Palette + type from the brand guide (branding/colorsandfonts.docx):
   Navy #002B3D, Teal #4A90A2, Red #D1313D, Gray #F4F4F4, White.
   Montserrat (headings) + Open Sans (body). Square edges, solid color blocks,
   minimal shadow — a technical/engineering feel, not a SaaS landing page.
   ========================================================================= */

:root {
  /* Brand palette */
  --navy:        #002B3D;
  --navy-700:    #013449;
  --navy-600:    #0a4258;
  --teal:        #4A90A2;
  --teal-600:    #3d7c8c;
  --teal-050:    #eef4f6;
  --teal-700:    #3a747f;   /* CTA band gradient start — 5.27:1 with #fff */
  --teal-800:    #356878;   /* CTA band gradient end   — 6.17:1 with #fff */
  --red:         #D1313D;
  --red-600:     #b6262f;
  --gray-bg:     #F4F4F4;
  --gray-line:   #e2e6e8;
  --ink:         #1e2b31;   /* body text — slightly warmer than pure navy */
  --ink-soft:    #4d5a60;
  --white:       #ffffff;

  /* Type scale (1.25 ratio, fluid on the large end) */
  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-display: clamp(2.1rem, 1.4rem + 3vw, 3.4rem);
  --fs-h1:      clamp(1.9rem, 1.4rem + 2.2vw, 2.8rem);
  --fs-h2:      clamp(1.55rem, 1.25rem + 1.3vw, 2.1rem);
  --fs-h3:      1.3rem;
  --fs-lead:    clamp(1.05rem, 1rem + 0.35vw, 1.25rem);

  /* Layout rhythm */
  --wrap:       1140px;
  --wrap-narrow: 820px;
  --section-y:  clamp(3rem, 2rem + 4vw, 5.5rem);
  --radius:     12px;      /* soft, warm corners */
  --radius-sm:  8px;
  --shadow:     0 2px 12px rgba(0, 43, 61, 0.06);
  --shadow-lift: 0 16px 44px rgba(0, 43, 61, 0.13);
}

/* ------------------------------------------------------------------ base --- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  background: var(--white);
}

h1, h2, h3, h4, h5, .display {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p { margin-bottom: 1rem; }
a { color: var(--teal-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy); }

.lead { font-size: var(--fs-lead); color: var(--ink-soft); }

.container, .container-lg { max-width: var(--wrap); }
.wrap-narrow { max-width: var(--wrap-narrow); margin-inline: auto; }

.section { padding-block: var(--section-y); }
.section--gray { background: var(--gray-bg); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--tint { background: var(--teal-050); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 0.5rem;
}
.section--navy .eyebrow { color: #7fb6c4; }
.promo .eyebrow { color: #fff; }

/* Accessible focus + skip link */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--navy); color: #fff; padding: 0.6rem 1rem;
}
.skip-link:focus { left: 0; color: #fff; }

/* ----------------------------------------------------------------- buttons - */
.btn { font-family: var(--font-head); font-weight: 600; border-radius: var(--radius-sm);
  padding: 0.7rem 1.5rem; letter-spacing: 0.01em; transition: background-color .15s, color .15s, transform .15s, box-shadow .15s; }
.btn-cta { box-shadow: 0 6px 16px rgba(209, 49, 61, 0.24); }
.btn-cta:hover { box-shadow: 0 8px 22px rgba(209, 49, 61, 0.32); transform: translateY(-1px); }

.btn-cta { background: var(--red); color: #fff; border: 2px solid var(--red); }
.btn-cta:hover, .btn-cta:focus { background: var(--red-600); border-color: var(--red-600); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; border: 2px solid var(--navy); }
.btn-navy:hover, .btn-navy:focus { background: var(--navy-600); border-color: var(--navy-600); color: #fff; }

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

.btn-ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* ------------------------------------------------------------------ topbar - */
.topbar { background: var(--navy); color: rgba(255,255,255,0.9); font-size: 0.85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding-block: 0.4rem; }
.topbar__msg { font-family: var(--font-head); font-weight: 600; letter-spacing: 0.02em; }
.topbar a { color: #fff; font-weight: 700; text-decoration: none; }
.topbar a:hover { color: #9fd0dc; }
.topbar__hours { color: rgba(255,255,255,0.6); font-weight: 400; }
.topbar__lang { margin-left: 0.9rem; padding-left: 0.9rem; border-left: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-head); font-weight: 700; }
@media (max-width: 575px) { .topbar__lang { margin-left: 0; padding-left: 0; border-left: 0; } }

/* ------------------------------------------------------------------ header - */
/* Frosted sticky header, matching the hero-card glass treatment.
   The blur lives on a ::before layer, NOT the header itself — an element with
   backdrop-filter becomes a "backdrop root", which would stop the nested
   dropdown's own backdrop blur from sampling the page behind it. */
.site-header { position: sticky; top: 0; z-index: 1030; background: transparent;
  border-bottom: 1px solid var(--gray-line); box-shadow: var(--shadow); }
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, 0.92); }
@supports ((backdrop-filter: blur(7px))) or ((-webkit-backdrop-filter: blur(7px))) {
  .site-header::before { background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
}
/* Text brand: serif wordmark (matches the logo's Times-style face) + tagline. */
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-text__name { font-family: "Times New Roman", Times, Georgia, serif; font-weight: 700;
  font-size: 2rem; color: var(--navy); letter-spacing: 0.07em; /* airier, like the
  spaced serif letters in the logo wordmark */ }
.brand-text__tag { font-family: "Times New Roman", Times, Georgia, serif; font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--red);
  margin-top: 0.3rem; }
.brand-text:hover .brand-text__name { color: var(--navy-600); }
.navbar { padding-block: 0.5rem;
  /* Bootstrap's .navbar-expand-lg rule outranks a plain padding override at
     desktop widths — set its variable instead so links get breathing room. */
  --bs-navbar-nav-link-padding-x: 1.1rem; }
.navbar-nav .nav-link { font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--teal-600); }
.nav-link--phone { color: var(--navy) !important; white-space: nowrap; }
.nav-item--call { margin-left: 0.4rem; }
/* Frosted-glass dropdown, matching the hero card treatment. */
.dropdown-menu { border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow-lift); padding: 0.4rem; background: rgba(255,255,255,0.92); }
@supports ((backdrop-filter: blur(7px))) or ((-webkit-backdrop-filter: blur(7px))) {
  .dropdown-menu { background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
}
.dropdown-item { font-family: var(--font-head); font-weight: 600; color: var(--navy); padding: 0.55rem 1.1rem; }
.dropdown-item:hover, .dropdown-item.active { background: var(--teal-050); color: var(--navy); }
.dropdown-item.active { border-left: 3px solid var(--red); }

/* -------------------------------------------------------------------- hero - */
/* Bright photo + a translucent floating card with navy text — warm and inviting.
   Parallax (like the Weebly original): the photo stays fixed while the page
   scrolls. Desktop only — iOS/Android handle background-attachment poorly —
   and disabled for users who prefer reduced motion. */
.hero { position: relative; background-color: #e7eef0; overflow: hidden;
  background-size: cover; background-position: center 40%; background-repeat: no-repeat; }
/* Responsive hero background: WebP with a JPEG fallback (the plain url() line),
   sized to the viewport. Kept as a background — not an <img> — so the parallax
   below works. Breakpoints match the preload media queries in index.html so no
   size downloads twice. */
.hero {
  background-image: url("../img/hero-manufactured-home-800.jpg");
  background-image: image-set(
    url("../img/hero-manufactured-home-800.webp") type("image/webp"),
    url("../img/hero-manufactured-home-800.jpg")  type("image/jpeg"));
}
@media (min-width: 641px) {
  .hero {
    background-image: url("../img/hero-manufactured-home-1280.jpg");
    background-image: image-set(
      url("../img/hero-manufactured-home-1280.webp") type("image/webp"),
      url("../img/hero-manufactured-home-1280.jpg")  type("image/jpeg"));
  }
}
@media (min-width: 1200px) {
  .hero {
    background-image: url("../img/hero-manufactured-home-1920.jpg");
    background-image: image-set(
      url("../img/hero-manufactured-home-1920.webp") type("image/webp"),
      url("../img/hero-manufactured-home-1920.jpg")  type("image/jpeg"));
  }
}
@media (min-width: 992px) { .hero { background-attachment: fixed; } }
@media (prefers-reduced-motion: reduce) { .hero { background-attachment: scroll; } }
.hero::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 55%); }
.hero .container { position: relative; }
.hero__inner { position: relative; max-width: 600px;
  margin-block: clamp(2.25rem, 1.6rem + 3vw, 4.5rem);
  background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(255,255,255,0.65);
  border-radius: 18px; box-shadow: var(--shadow-lift);
  padding: clamp(1.6rem, 1.1rem + 2vw, 2.75rem); }
/* Frosted-glass card where supported: more of the photo shows through while
   the blur keeps navy text comfortably readable. */
@supports ((backdrop-filter: blur(7px))) or ((-webkit-backdrop-filter: blur(7px))) {
  .hero__inner { background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
}
.hero__eyebrow { font-family: var(--font-head); font-style: italic; font-weight: 600;
  color: var(--teal-600); letter-spacing: 0.01em; margin-bottom: 0.5rem; }
.hero h1 { color: var(--navy); font-size: clamp(1.7rem, 1.3rem + 1.9vw, 2.5rem); font-weight: 800; }
.hero .lead { color: var(--ink-soft); }
.hero__points { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1rem; }
.hero__points li { position: relative; padding-left: 1.6rem; font-family: var(--font-head);
  font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.hero__points li::before { content: "\2713"; position: absolute; left: 0; color: var(--teal);
  font-weight: 700; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__phone { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__reviews { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.15rem;
  font-family: var(--font-head); font-weight: 700; color: var(--navy); text-decoration: none;
  font-size: 0.95rem; }
.hero__reviews:hover { color: var(--teal-600); }
.hero__reviews .review-stars { color: #f4b400; letter-spacing: 1px; }
@media (max-width: 575px) { .hero__points { grid-template-columns: 1fr; } }

/* price / turnaround pill */
.pill { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--red);
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  padding: 0.3rem 0.8rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ------------------------------------------------------------- service card */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.svc-card { background: #fff; border: 1px solid var(--gray-line); border-top: 4px solid var(--teal);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; display: flex;
  flex-direction: column; transition: transform .15s, box-shadow .15s, border-color .15s; }
.svc-card:hover { box-shadow: var(--shadow-lift); border-top-color: var(--red); transform: translateY(-3px); }
.svc-card { position: relative; }
.svc-card__badge { position: absolute; top: -12px; right: 14px; background: var(--red); color: #fff;
  font-family: var(--font-head); font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.28rem 0.7rem; border-radius: 100px; }
.svc-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.svc-card p { color: var(--ink-soft); flex: 1; }
.svc-card__icon { width: 44px; height: 44px; margin-bottom: 0.9rem; color: var(--teal); }
.svc-card__link { font-family: var(--font-head); font-weight: 700; text-decoration: none;
  color: var(--navy); margin-top: 0.8rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.svc-card__link::after { content: "\2192"; transition: transform .15s; }
.svc-card:hover .svc-card__link::after { transform: translateX(4px); }

/* --------------------------------------------------------------- step list - */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
  counter-reset: step; }
.step { position: relative; padding-left: 3.4rem; }
.step__num { position: absolute; left: 0; top: 0; width: 2.5rem; height: 2.5rem;
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); }

/* --------------------------------------------------------------- feature ul */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 700; font-family: var(--font-head); }
.check-list--red li::before { color: var(--red); }
.check-list strong { color: var(--navy); }

/* ------------------------------------------------------------ media / cards */
.rounded-media { border: 1px solid var(--gray-line); border-radius: var(--radius);
  box-shadow: var(--shadow); width: 100%; height: auto; }
.info-card { background: #fff; border: 1px solid var(--gray-line); border-left: 4px solid var(--teal);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; height: 100%; }
.info-card h3 { color: var(--navy); }
.info-card--red { border-left-color: var(--red); }

/* callout / note */
.note { background: var(--gray-bg); border-left: 4px solid var(--navy); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; font-size: 0.95rem; color: var(--ink-soft); }
.note--warn { border-left-color: var(--red); }

/* --------------------------------------------------------------- trust bar - */
.trust-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem;
  text-align: center; }
.trust-bar__item strong { display: block; font-family: var(--font-head); color: var(--navy);
  font-size: 1.9rem; line-height: 1; }
.trust-bar__item span { color: var(--ink-soft); font-size: 0.95rem; }
.section--navy .trust-bar__item strong { color: #fff; }
.section--navy .trust-bar__item span { color: rgba(255,255,255,0.7); }

/* ------------------------------------------------------- reviews / quote --- */
.reviews-embed { width: 100%; }
.quote { border-left: 4px solid var(--red); padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 1.2rem; font-style: italic; color: var(--navy); }
.quote cite { display: block; font-style: normal; font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem; color: var(--ink-soft); margin-top: 0.6rem; }

/* stars for the write-a-review link */
.review-stars { color: #f4b400; letter-spacing: 2px; font-size: 1.1rem; }

/* --------------------------------------------------------- coverage areas - */
.coverage h3 { color: var(--teal-600); border-bottom: 2px solid var(--gray-line);
  padding-bottom: 0.4rem; margin-top: 1.5rem; }
.coverage h4 { font-family: var(--font-head); color: var(--navy); font-size: 1.05rem; margin-top: 1rem; }
.coverage ul { color: var(--ink-soft); }
.coverage .county { color: var(--navy); font-weight: 600; }

/* ------------------------------------------------------- red promo band ---- */
/* Bold brand-red statement panel (Verizon-style frame) kept engineer-class:
   fact-driven copy, no acid accents, subtle diagonal texture, brand red. */
.promo { position: relative; overflow: hidden; border-radius: 18px; color: #fff;
  box-shadow: var(--shadow-lift);
  padding: clamp(2.5rem, 1.9rem + 3vw, 4.75rem) clamp(1.5rem, 1rem + 3vw, 3.5rem);
  /* Brushed-steel red: layered diagonal sheen so the light appears to rake
     across angled metal slats, rather than flat stripes.
     top→bottom: directional gloss · wide soft slats · fine brushed grain · base red */
  background:
    linear-gradient(122deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 24%,
      rgba(255,255,255,0) 46%, rgba(0,0,0,0.10) 78%, rgba(0,0,0,0.20) 100%),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,0.075) 0px, rgba(255,255,255,0) 26px,
      rgba(0,0,0,0.075) 52px, rgba(255,255,255,0) 78px,
      rgba(255,255,255,0.075) 104px),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px,
      rgba(0,0,0,0.03) 2px, rgba(0,0,0,0) 5px),
    linear-gradient(135deg, #d1313d 0%, #b3222c 100%); }
.promo::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  /* soft moving glint across the panel */
  background: linear-gradient(122deg, transparent 38%, rgba(255,255,255,0.14) 47%,
    rgba(255,255,255,0.04) 52%, transparent 60%); }
.promo::after { content: ""; position: absolute; inset: 12px; z-index: 0;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 12px; pointer-events: none; }
.promo__inner { position: relative; z-index: 1; }
.promo h2 { color: #fff; font-weight: 800;
  font-size: clamp(1.6rem, 1.15rem + 2vw, 2.6rem); }
.promo .lead { color: #fff; }
.promo__actions { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem;
  align-items: center; justify-content: center; margin-top: 1.6rem; }
.btn-on-red { background: #fff; color: var(--navy); border: 2px solid #fff; }
.btn-on-red:hover, .btn-on-red:focus { background: var(--navy); color: #fff; border-color: #fff; }
.promo__phone { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  color: #fff; text-decoration: none; }
.promo__phone:hover { color: #ffe1e3; }

/* Secondary "prefer to talk?" line under a primary Get Started button — the
   form leads; the phone stays available but visually secondary. */
.cta-band__alt, .promo__alt { font-size: 0.95rem; color: #fff; }
.cta-band__alt a, .promo__alt a { color: #fff; font-weight: 700;
  text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.cta-band__alt a:hover, .promo__alt a:hover { color: #fff; }

/* ------------------------------------------------------------- CTA band ---- */
.cta-band { background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-800) 100%); color: #fff; }
.cta-band h2 { color: #fff; }
/* Subhead: the teal-band counterpart to `.promo .lead` above — without it the
   `.lead` default (--ink-soft, dark) shows once the inline white is removed
   (Section 2 Edit 6). Required to hit the 5.27:1 the SEO-FIXES verify table lists. */
.cta-band .lead { color: #fff; }
.cta-band .phone-lg { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: #fff;
  text-decoration: none; }
.cta-band .phone-lg:hover { color: #dbeef2; }

/* --------------------------------------------------------- form embed ------ */
.form-embed-wrap { width: 100%; }
.form-embed-wrap iframe { width: 100%; min-height: 2600px; border: 0; display: block; }
@media (max-width: 576px) { .form-embed-wrap iframe { min-height: 2900px; } }
/* Shorter CRM forms (e.g. the inspector sign-up) */
.form-embed-wrap--compact iframe { min-height: 1500px; }

/* ------------------------------------------------------------------ team --- */
.team-card { text-align: center; }
.team-card img { width: 240px; height: 240px; max-width: 100%; object-fit: cover; border-radius: 50%;
  border: 4px solid var(--teal-050); margin-bottom: 1rem; }
.team-card h3 { margin-bottom: 0.1rem; }
.team-card .role { font-family: var(--font-head); font-weight: 600; color: var(--teal-600);
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.family-photo { display: inline-block; }
.family-photo img { max-width: 340px; width: 100%; }
.family-photo figcaption { max-width: 340px; }

/* ---------------------------------------------------------------- footer --- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding-block: 3rem 1.5rem;
  font-size: 0.95rem; margin-top: 0; }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
/* The badge is navy-on-transparent — a white circular chip keeps it visible on
   the navy footer and makes it read like an actual stamp. */
.footer-badge { width: 64px; height: 64px; background: #fff; border-radius: 50%; padding: 5px; }
.footer-wordmark { font-family: "Times New Roman", Times, Georgia, serif; font-weight: 700;
  font-size: 1.7rem; color: #fff; text-decoration: none; letter-spacing: 0.07em; }
.footer-wordmark span { color: #fff; }
.about-badge { width: min(220px, 62%); height: auto; }
.footer-tagline { font-family: var(--font-head); font-weight: 600; color: #fff;
  margin-top: 0.6rem; margin-bottom: 0.3rem; letter-spacing: 0.02em; }
.footer-note { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-heading { font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: #fff; margin-bottom: 0.9rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.15); margin-top: 2.2rem; padding-top: 1.2rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-powered { color: #9fd0dc; }

/* ------------------------------------------------------- sticky mobile call */
/* Mobile sticky bar: Get Started leads (wide, red); Call stays available
   (secondary, navy) — form-first, but calling is one tap away. */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; display: flex;
  gap: 1px; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.03em;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2); }
.sticky-cta a { padding: 0.9rem 0.5rem; text-align: center; text-decoration: none; color: #fff; }
.sticky-cta__go { flex: 1 1 64%; background: var(--red); }
.sticky-cta__go:hover, .sticky-cta__go:focus { background: var(--red-600); color: #fff; }
.sticky-cta__call { flex: 1 1 36%; background: var(--navy); }
.sticky-cta__call:hover, .sticky-cta__call:focus { background: var(--navy-600); color: #fff; }
@media (max-width: 991px) { body { padding-bottom: 3.4rem; } }

/* ------------------------------------------------------------- state map --- */
.oregon-map { width: 100%; max-width: 520px; height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 43, 61, 0.12)); }

/* ---------------------------------------------------------- breadcrumb ----- */
.breadcrumb-bar { background: var(--gray-bg); border-bottom: 1px solid var(--gray-line);
  font-size: 0.85rem; }
.breadcrumb-bar .container { padding-block: 0.6rem; }
.breadcrumb-bar a { color: var(--teal-600); text-decoration: none; }
.breadcrumb-bar .sep { color: var(--ink-soft); margin-inline: 0.4rem; }
.breadcrumb-bar .current { color: var(--ink-soft); }

/* ------------------------------------------------------------- page header - */
.page-head { background: linear-gradient(180deg, var(--teal-050) 0%, #ffffff 100%); color: var(--ink);
  padding-block: clamp(2.4rem, 1.8rem + 3vw, 4rem); border-bottom: 1px solid var(--gray-line); }
.page-head h1 { color: var(--navy); }
.page-head .lead { color: var(--ink-soft); max-width: 640px; }

/* ---------------------------------------------------------------- utilities */
.text-red { color: var(--red) !important; }
.text-teal { color: var(--teal-600) !important; }
.text-navy { color: var(--navy) !important; }
.bg-tint { background: var(--teal-050); }
img { max-width: 100%; }
.img-cover { object-fit: cover; }

/* ---------------------------------------------------- reduced motion ------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important;
      scroll-behavior: auto !important; }
  .svc-card:hover { transform: none; }
}
