/* ============================================================
   moldremovalbatonrouge.net — shared stylesheet for the inner
   pages restored from the old WordPress build.

   Lines below the "PAGE-LEVEL ADDITIONS" banner are new. Everything
   above it is the exact token/component CSS that index.html carries
   inline, copied verbatim so an inner page and the home page render
   from the same design system. index.html is deliberately left
   untouched — it keeps its own inline copy.
   ============================================================ */

/* ============================================================
   Design tokens — same sky-blue primary scale as the reference
   Next.js build, ported to plain custom properties.
   ============================================================ */
:root {
  --primary-50:  #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);

  --nav-h: 5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: #fff;
  color: var(--gray-900);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; margin: 0; font-weight: 700; }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a  { color: inherit; text-decoration: none; }
svg { display: block; flex-shrink: 0; }

/* ---------- Focus visibility (WCAG 2.4.7) ----------
   Every interactive element gets the same high-contrast ring. :focus-visible
   keeps it off mouse clicks but always on for keyboard users. */
:focus-visible {
  outline: 3px solid var(--primary-800);
  outline-offset: 2px;
  border-radius: .25rem;
}
/* On dark backgrounds the dark-blue ring would disappear, so invert it. */
.footer :focus-visible,
.cta-band :focus-visible,
.warning-panel :focus-visible,
.call-bar:focus-visible {
  outline-color: #fff;
}

/* Inline links inside running text must not rely on colour alone (WCAG 1.4.1). */
.text-link {
  color: var(--primary-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.text-link:hover { text-decoration-thickness: 2px; }
.warning-panel .text-link { color: #fff; }

/* ---------- Skip link (WCAG 2.4.1) ---------- */
.skip-link {
  /* fixed, not absolute: an absolutely-positioned skip link sits at the top of
     the document, so tabbing to it after scrolling would reveal nothing. */
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%, -150%);
  z-index: 100;
  padding: .75rem 1.5rem;
  background-color: var(--primary-800);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 .5rem .5rem;
  transition: transform .15s;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Layout ---------- */
.container-custom {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .container-custom { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container-custom { padding-inline: 2rem; } }

.section { padding-block: 5rem; }
.section-sm { padding-block: 3rem; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); color: var(--gray-900); margin-bottom: 1rem; }
.section-head p  { font-size: 1.25rem; color: var(--gray-600); max-width: 48rem; margin-inline: auto; }

.bg-gray  { background-color: var(--gray-50); }
.bg-white { background-color: #fff; }

/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: background-color .2s, color .2s, box-shadow .2s, border-color .2s;
}
.btn-primary {
  background-color: var(--primary-700);
  color: #fff;
  border: 2px solid var(--primary-700);
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { background-color: var(--primary-800); border-color: var(--primary-800); box-shadow: var(--shadow-xl); }
.btn-secondary {
  background-color: #fff;
  color: var(--primary-700);
  border: 2px solid var(--primary-700);
}
.btn-secondary:hover { background-color: var(--primary-50); }

/* Inverted variants used inside the solid-blue CTA band */
.btn-on-blue        { background-color: #fff; color: var(--primary-700); border-color: #fff; }
.btn-on-blue:hover  { background-color: var(--gray-100); border-color: var(--gray-100); }
.btn-ghost-white    { background-color: transparent; color: #fff; border-color: #fff; }
.btn-ghost-white:hover { background-color: rgba(255,255,255,.12); }

/* ============================================================
   Navigation — fixed white bar, CSS-only mobile disclosure
   ============================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background-color: #fff;
  box-shadow: var(--shadow-lg);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.logo { display: flex; align-items: center; gap: .625rem; }
.logo svg { color: var(--primary-700); }
.logo-mark { height: 3rem; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .lt-1 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
.logo-text .lt-2 { font-size: .7rem; font-weight: 600; color: var(--primary-700); letter-spacing: .04em; }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a.nav-link { color: var(--gray-700); font-weight: 500; transition: color .2s; }
.nav-links a.nav-link:hover { color: var(--primary-700); }
.nav-cta { display: flex; align-items: center; gap: 1rem; margin-left: .5rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; color: var(--primary-700); font-weight: 700; white-space: nowrap; }

/* The menu toggle is a real <button aria-expanded> rather than a label+checkbox,
   so keyboard and screen-reader users can open the mobile menu at all. */
.nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: .5rem;
  margin-right: -.5rem;
  color: var(--gray-700);
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: .375rem;
}
.nav-burger:hover { color: var(--primary-700); }
.nav-burger .icon-close { display: none; }
.nav-burger[aria-expanded="true"] .icon-close { display: block; }
.nav-burger[aria-expanded="true"] .icon-open  { display: none; }

.nav-mobile { display: none; border-top: 1px solid var(--gray-200); padding-block: 1rem; }
.nav-mobile.is-open { display: block; }
.nav-mobile a.nav-link {
  display: block;
  padding: .625rem 1rem;
  color: var(--gray-700);
  font-weight: 500;
  border-radius: .375rem;
}
.nav-mobile a.nav-link:hover { background-color: var(--primary-50); color: var(--primary-700); }
.nav-mobile-foot { padding: 1rem; margin-top: .5rem; border-top: 1px solid var(--gray-200); }
.nav-mobile-foot .nav-phone { margin-bottom: 1rem; }
.nav-mobile-foot .btn-primary { width: 100%; }

@media (min-width: 1024px) {
  .nav-links  { display: flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }
}

/* ============================================================
   Hero
   ============================================================ */
/* The hero photo is carried over from the previous build, where it was a
   container background (center right / cover) rather than an inline image.
   The tint layer on top is not decorative: hero text is dark-on-light, so the
   overlay is what keeps it readable over the photo. 0.88 alpha is the measured
   floor at which every hero text colour still clears its WCAG ratio against a
   pure-black pixel, so nothing below ~0.90 is used anywhere text can land. */
.hero {
  position: relative;
  background-image:
    linear-gradient(rgba(240, 249, 255, 0.94), rgba(240, 249, 255, 0.94)),
    url("/wp-content/uploads/2025/05/client-property-in-baton-rouge-after-mold-remediation-completed.png");
  background-position: center center, center right;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  /* Two columns: text on the left needs the heavy tint, the right only carries
     the opaque form card, so the photo can come through there. */
  .hero {
    background-image:
      linear-gradient(100deg,
        rgba(240, 249, 255, 0.97) 0%,
        rgba(240, 249, 255, 0.93) 46%,
        rgba(240, 249, 255, 0.60) 100%),
      url("/wp-content/uploads/2025/05/client-property-in-baton-rouge-after-mold-remediation-completed.png");
  }
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.hero h1 .accent { display: block; color: var(--primary-700); }
.hero h1 .accent-inline { color: var(--primary-700); }
.hero-sub { font-size: 1.25rem; color: var(--gray-700); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .875rem; color: var(--gray-600); }
.hero-badges div { display: flex; align-items: center; gap: .5rem; }
.hero-badges svg { color: var(--primary-700); }

/* ---------- Lead form card ---------- */
.lead-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  padding: 1.5rem;
}
@media (min-width: 1024px) { .lead-card { padding: 2rem; } }
.lead-card h2 { font-size: 1.5rem; color: var(--gray-900); margin-bottom: .25rem; }
.lead-card .lead-sub { color: var(--gray-600); margin-bottom: 1.5rem; }
.lead-form { display: flex; flex-direction: column; gap: 1rem; }
/* Visible persistent labels — a placeholder alone vanishes on input and fails
   WCAG 3.3.2 for anyone who loses their place mid-form. */
.lead-form label {
  display: block;
  margin-bottom: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.lead-form .req { color: #b91c1c; }
.form-note { font-size: .8125rem; color: var(--gray-600); margin-bottom: 1rem; }
.lead-form ::placeholder { color: var(--gray-600); opacity: 1; }
.lead-form input, .lead-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--gray-900);
  border: 1px solid var(--gray-300);
  border-radius: .5rem;
  background-color: #fff;
}
.lead-form textarea { resize: vertical; min-height: 5.5rem; }
.lead-form input:focus-visible, .lead-form textarea:focus-visible {
  outline: 3px solid var(--primary-800);
  outline-offset: 1px;
  border-color: var(--primary-800);
}
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lead-form .btn-primary { width: 100%; }
.lead-note { font-size: .8125rem; color: var(--gray-600); text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Trust stat band
   ============================================================ */
.stats { border-block: 1px solid var(--gray-200); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; color: var(--primary-700); margin-bottom: .25rem; }
.stat-lbl { color: var(--gray-600); }

/* ============================================================
   Card grids (services, process, reviews)
   ============================================================ */
.grid-3 { display: grid; gap: 2rem; }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  transition: box-shadow .2s;
}
.card:hover { box-shadow: var(--shadow-xl); }
.card-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--primary-100);
  color: var(--primary-700);
  border-radius: .5rem;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.25rem; font-weight: 600; color: var(--gray-900); margin-bottom: .75rem; }
.card p  { color: var(--gray-600); }
/* Second paragraph in a service card carries the extra detail copy */
.card p + p { margin-top: .75rem; font-size: .9375rem; }

/* Home-page service cards link into the matching section on /services/.
   `display:inline` rather than inline-flex on purpose: a couple of these
   labels wrap to two lines, and a flex row strands the arrow out at the far
   right of the card instead of following the last word. */
.card-more { margin-top: 1rem; }
.card-more a {
  color: var(--primary-800);
  font-weight: 600;
  font-size: .9375rem;
}
.card-more a svg {
  display: inline-block;
  vertical-align: -3px;
  margin-left: .25rem;
}
.card-more a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Image-topped cards ----------
   The media block is pulled out to the card edges with negative margins so
   the photo sits flush under the rounded top corners. Every photo is forced
   to 16:9 with object-fit so the mismatched source ratios line up. */
.card-media {
  margin: -1.5rem -1.5rem 1.25rem;
  aspect-ratio: 16 / 9;
  background-color: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Company / expertise prose ---------- */
.prose-lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.pillar {
  background-color: #fff;
  border-radius: .5rem;
  border-top: 4px solid var(--primary-700);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
}
.pillar h3 { font-size: 1.375rem; color: var(--gray-900); margin-bottom: .75rem; }
.pillar p  { color: var(--gray-600); }

/* ---------- Full-width feature image ---------- */
.feature-image {
  margin-top: 3rem;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.feature-image img { display: block; width: 100%; height: auto; }

/* ---------- Footer newsletter ---------- */
.newsletter form { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.newsletter input {
  width: 100%;
  padding: .7rem 1rem;
  font: inherit;
  font-size: .9375rem;
  color: #fff;
  background-color: var(--gray-800);
  border: 1px solid #374151;
  border-radius: .5rem;
}
.newsletter input::placeholder { color: var(--gray-400); opacity: 1; }
.newsletter label {
  display: block;
  margin-bottom: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
}
.newsletter input:focus-visible { outline: 3px solid #fff; outline-offset: 1px; }
.newsletter button { width: 100%; }
.newsletter p.nl-sub { font-size: .875rem; }

/* ---------- Why choose us ---------- */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); color: var(--gray-900); margin-bottom: 1.5rem; }
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; color: var(--gray-700); }
.check-list svg { color: var(--primary-700); margin-top: .175rem; }

.warning-panel {
  background-color: var(--primary-900);
  color: #fff;
  border-radius: .75rem;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
}
.warning-panel h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.warning-panel .wp-sub { color: var(--primary-200); margin-bottom: 1.5rem; }
.warning-panel ul { display: flex; flex-direction: column; gap: .875rem; }
.warning-panel li { display: flex; align-items: flex-start; gap: .75rem; color: var(--primary-100); }
.warning-panel svg { color: var(--primary-300); margin-top: .175rem; }
.warning-panel .wp-foot {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .9375rem; color: var(--primary-200);
}
.warning-panel .wp-foot a { color: #fff; font-weight: 700; }

/* ---------- Process steps ---------- */
.step-num {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--primary-700);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.grid-4 { display: grid; gap: 2rem; }
@media (min-width: 768px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Service areas ---------- */
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 2rem;
}
@media (min-width: 640px)  { .area-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .area-list { grid-template-columns: repeat(4, 1fr); } }
.area-list li { display: flex; align-items: center; gap: .5rem; color: var(--gray-700); }
.area-list svg { color: var(--primary-700); }

/* ---------- Reviews ---------- */
.review { background-color: var(--gray-50); border-radius: .5rem; padding: 1.5rem; }
.stars { display: flex; gap: .125rem; margin-bottom: 1rem; color: #facc15; }
.review p.quote { color: var(--gray-700); font-style: italic; margin-bottom: 1rem; }
.review .who { font-weight: 600; color: var(--gray-900); }
.review .where { font-size: .875rem; color: var(--gray-600); }

/* ---------- FAQ ---------- */
.faq { max-width: 48rem; margin-inline: auto; display: flex; flex-direction: column; gap: 1rem; }
.faq details {
  background-color: #fff;
  border: 1px solid var(--gray-200);
  border-radius: .5rem;
  padding: 1.25rem 1.5rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1.0625rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--primary-700);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: .875rem; color: var(--gray-600); }

/* ---------- CTA band ---------- */
.cta-band { background-color: var(--primary-700); text-align: center; }
.cta-band h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); color: #fff; margin-bottom: 1rem; }
.cta-band p  { font-size: 1.25rem; color: var(--primary-100); max-width: 42rem; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

/* ---------- Footer ---------- */
.footer { background-color: var(--gray-900); color: var(--gray-300); }
.footer-grid { display: grid; gap: 2rem; padding-block: 3rem; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer .logo svg { color: var(--primary-400); }
/* The logo PNG is matted on opaque white, so on the dark footer it would read
   as a hard white rectangle. Make that a deliberate rounded chip instead. */
.footer .logo-mark {
  height: 3.5rem;
  background-color: #fff;
  border-radius: .5rem;
  padding: .25rem;
}
.footer .logo-text .lt-1 { color: #fff; }
.footer .logo-text .lt-2 { color: var(--primary-400); }
.footer h3 { color: #fff; font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.footer p.blurb { font-size: .875rem; margin-block: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: .375rem; }
/* Standalone list links need a >=24px tall hit area (WCAG 2.5.8). Inline links
   inside a sentence are exempt, so .text-link is left alone. */
.footer ul a, .footer .contact-list a {
  display: inline-block;
  padding-block: .25rem;
}
.footer a:hover { color: var(--primary-400); text-decoration: underline; }
.footer .contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9375rem; }
.footer .contact-list svg { color: var(--primary-400); margin-top: .25rem; }
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-block: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  color: var(--gray-400);
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem;
  background-color: var(--primary-700);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 -4px 12px rgba(0,0,0,.15);
}
@media (min-width: 1024px) { .call-bar { display: none; } }
@media (max-width: 1023px) { .footer-bottom { padding-bottom: 5rem; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}

/* ============================================================
   PAGE-LEVEL ADDITIONS — inner pages only
   The home page is a single scrolling document, so it never needed
   a page banner, breadcrumbs, or long-form running prose. These are
   the pieces the restored inner pages add on top.
   ============================================================ */

/* ---------- Page banner ----------
   Stands in for the home page hero. Same tinted-photo treatment, but
   short, because an inner page's job is to get to its content. */
.page-hero {
  background-image:
    linear-gradient(rgba(240, 249, 255, 0.95), rgba(240, 249, 255, 0.95)),
    url("/wp-content/uploads/2025/05/client-property-in-baton-rouge-after-mold-remediation-completed.png");
  background-position: center center, center right;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--gray-900);
  max-width: 56rem;
}
.page-hero .page-sub {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: var(--gray-700);
  max-width: 52rem;
}
.page-hero .hero-actions { margin-top: 2rem; margin-bottom: 0; }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: .875rem;
  color: var(--gray-600);
}
.crumbs a { color: var(--primary-800); text-decoration: underline; text-underline-offset: 2px; }
.crumbs [aria-current="page"] { color: var(--gray-600); }
.crumbs .sep { color: var(--gray-400); }

/* ---------- Long-form prose ----------
   The reset at the top of this file strips margins from p/ul so the
   component CSS can own spacing. Running text needs them back, scoped
   to .prose so nothing else is affected. */
.prose { max-width: 48rem; color: var(--gray-700); font-size: 1.0625rem; }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--gray-900);
  margin-top: 2.75rem;
}
.prose h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-top: 2rem;
}
.prose h2 + p, .prose h3 + p { margin-top: .875rem; }
.prose strong { color: var(--gray-900); }
.prose a { color: var(--primary-800); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: .5rem; display: list-item; }
.prose li::marker { color: var(--primary-700); }
.prose figure { margin: 2rem 0 0; }
.prose figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .75rem;
  box-shadow: var(--shadow-lg);
}
.prose figcaption {
  margin-top: .625rem;
  font-size: .875rem;
  color: var(--gray-600);
  text-align: center;
}
.prose hr { border: 0; border-top: 1px solid var(--gray-200); margin-top: 2rem; }

/* A wider two-column shell: prose on the left, sticky helper card right. */
.page-body { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) {
  .page-body { grid-template-columns: minmax(0, 1fr) 22rem; }
  .page-aside { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
}
.aside-card {
  background-color: #fff;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--primary-700);
  border-radius: .75rem;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}
.aside-card h2, .aside-card h3 { font-size: 1.25rem; color: var(--gray-900); margin-bottom: .75rem; }
.aside-card p { color: var(--gray-600); font-size: .9375rem; margin-bottom: 1.25rem; }
.aside-card .btn-primary { width: 100%; }
.aside-card .aside-phone {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: .875rem; color: var(--primary-800); font-weight: 700;
}
.aside-card ul { display: flex; flex-direction: column; gap: .625rem; }
.aside-card ul a { color: var(--gray-700); display: inline-block; padding-block: .125rem; }
.aside-card ul a:hover { color: var(--primary-700); text-decoration: underline; }
.aside-card ul [aria-current="page"] { color: var(--primary-800); font-weight: 700; }

/* ---------- Blog index cards ---------- */
.post-list { display: grid; gap: 2rem; }
@media (min-width: 768px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
.post-card {
  background-color: #fff;
  border: 1px solid var(--gray-200);
  border-radius: .75rem;
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.post-card .post-date { font-size: .8125rem; font-weight: 600; color: var(--primary-700); text-transform: uppercase; letter-spacing: .04em; }
.post-card h2 { font-size: 1.375rem; color: var(--gray-900); }
.post-card h2 a:hover { color: var(--primary-700); }
.post-card p { color: var(--gray-600); }
.post-card .read-more { color: var(--primary-800); font-weight: 600; display: inline-flex; align-items: center; gap: .375rem; }
.post-card .read-more:hover { text-decoration: underline; }

/* ---------- Article meta line ---------- */
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  margin-top: 1rem; font-size: .9375rem; color: var(--gray-600);
}
.post-meta .dot { color: var(--gray-400); }

/* ---------- Contact detail blocks ---------- */
.contact-blocks { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .contact-blocks { grid-template-columns: repeat(2, 1fr); } }
.contact-block {
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: .625rem;
  padding: 1.25rem;
}
.contact-block h3 {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1rem; color: var(--gray-900); margin-bottom: .5rem;
}
.contact-block h3 svg { color: var(--primary-700); }
.contact-block p, .contact-block a { color: var(--gray-700); font-size: .9375rem; }
.contact-block a { color: var(--primary-800); font-weight: 600; }
