/* National Fire & Water Repair */

:root {
  --black: #0d0d0d;
  --dark: #1c1c1c;
  --dark-soft: #2d2d2d;
  --white: #ffffff;
  --off-white: #fafafa;
  --warm-gray: #f3f2f0;
  --line: #e2e0dc;
  --text: #2a2a2a;
  --muted: #6b6560;
  --red: #d4242d;
  --red-hover: #b61f27;
  --red-light: #e83840;
  --red-rgb: 212, 36, 45;
  --red-soft: #f4a4a9;
  --blue: #1c6ea8;
  --blue-hover: #15547f;
  --blue-soft: #a9c9dd;
  /* Trust becomes the primary brand voice; red is reserved for true urgency
     (topbar, emergency CTAs, the emergency strip, phone numbers). */
  --brand: var(--blue);
  --brand-hover: var(--blue-hover);
  --brand-soft: var(--blue-soft);
  --font: 'Public Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-hero: 'Archivo', 'Public Sans', system-ui, sans-serif;
  --container: 1140px;
  --header-h: 72px;
  --topbar-h: 40px;
  --shadow-red: 0 4px 18px rgba(var(--red-rgb), 0.38);
  --shadow-red-strong: 0 8px 28px rgba(var(--red-rgb), 0.45), 0 0 24px rgba(var(--red-rgb), 0.18);
  --lucide-check-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 12px);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--white);
  background-image:
    radial-gradient(ellipse 90% 55% at 8% -5%, rgba(var(--red-rgb), 0.035), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 105%, rgba(21, 101, 168, 0.028), transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Lucide icons — official SVGs, 2px stroke sitewide */
.lucide {
  display: block;
  flex-shrink: 0;
  stroke-width: 2;
}
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.15rem); }
h3 { font-size: 1.15rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow { max-width: 720px; }
.container-narrow-lg { max-width: 820px; }

/* Top emergency bar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.topbar a:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s;
}

.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

.logo-link { flex-shrink: 0; }

.logo-img { height: 48px; width: auto; }

.main-nav { flex: 1; }

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
  justify-content: center;
}

.nav-list a {
  display: block;
  padding: 8px 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s;
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a.active {
  color: var(--brand);
}

.nav-mobile-cta .btn-emergency {
  color: var(--white) !important;
  background: var(--red);
}

.header-cta {
  flex-shrink: 0;
  text-align: right;
}

.header-cta-note {
  font-size: 0.6875rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-cta { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-emergency {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  animation: btn-glow-pulse 3.5s ease-in-out infinite;
}

.btn-emergency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.08) 44%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.08) 56%,
    transparent 62%
  );
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
  z-index: 0;
}

.btn-emergency::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 0;
}

.btn-emergency:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: var(--shadow-red-strong);
  transform: translateY(-1px);
  animation: none;
}

.btn-emergency:hover::before {
  animation: btn-shine-sweep 1.6s ease-in-out forwards;
}

.btn-emergency:active {
  transform: translateY(0);
  box-shadow: var(--shadow-red);
}

@keyframes btn-shine-sweep {
  from { transform: translateX(-160%) skewX(-18deg); }
  to { transform: translateX(160%) skewX(-18deg); }
}

@keyframes btn-glow-pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(var(--red-rgb), 0.32);
  }
  50% {
    box-shadow: 0 6px 22px rgba(var(--red-rgb), 0.48), 0 0 20px rgba(var(--red-rgb), 0.14);
  }
}

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-lg { padding: 14px 28px; font-size: 0.9375rem; }
.btn-block { width: 100%; }
.btn-header { padding: 9px 16px; font-size: 0.8125rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--topbar-h) + 48px) 0 64px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black) url('/assets/truck.png') center center / cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
}

.hero-texture { display: none; }

/* Homepage hero (SERVPRO-inspired: centered headline + floating locate bar) */
.hero-home {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 82vh;
  padding-bottom: 0;
  overflow: visible;
}

.hero-home .hero-bg {
  background: var(--black);
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-home .hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 46%;
  transform: scale(1.22);
  transform-origin: 78% 50%;
  filter: contrast(1.06) saturate(0.86) brightness(0.88);
  animation: hero-photo-settle 28s ease-out forwards;
}

@keyframes hero-photo-settle {
  from { transform: scale(1.18); }
  to { transform: scale(1.24); }
}

.hero-home .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-home .hero-bg::after {
  z-index: 2;
  background:
    linear-gradient(155deg, rgba(var(--red-rgb), 0.18) 0%, transparent 42%),
    linear-gradient(to right, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.42) 46%, rgba(8, 8, 8, 0.12) 66%, rgba(8, 8, 8, 0.72) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 40%),
    radial-gradient(ellipse 85% 75% at 48% 38%, rgba(0, 0, 0, 0.42) 0%, transparent 62%);
}

.hero-centered-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 0 40px;
}

.hero-home h1 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-hero);
  font-size: clamp(2.125rem, 5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
}

.hero-home .hero-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(255,255,255,0.78);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.hero-locate-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) auto;
  gap: 24px 32px;
  align-items: center;
  background: var(--white);
  color: var(--text);
  border-radius: 6px;
  padding: 22px 28px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06);
  margin-bottom: -52px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-locate-bar.is-revealed {
  animation: float-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-locate-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero-locate-office strong {
  display: block;
  font-size: 1.125rem;
  color: var(--black);
  margin-bottom: 2px;
}

.hero-locate-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.hero-locate-office a {
  font-size: 0.8125rem;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-locate-office a:hover { color: var(--brand-hover); }

.hero-locate-areas {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
}

.hero-locate-areas:hover { color: var(--brand); }

.hero-locate-certs {
  display: inline-block;
  margin-top: 12px;
}

.hero-locate-certs img {
  display: block;
  width: auto;
  height: 44px;
  opacity: 0.95;
}

.hero-locate-certs:hover img { opacity: 1; }

.hero-locate-emergency {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}

.hero-locate-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.hero-locate-facts li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-locate-facts li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  vertical-align: -1px;
  background-color: var(--brand);
  mask-image: var(--lucide-check-mask);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--lucide-check-mask);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.hero-locate-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.btn-hero-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 32px;
  min-width: 210px;
  border-radius: 4px;
  text-align: center;
}

.btn-hero-phone-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.btn-hero-phone-num {
  font-size: 1.3125rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-locate-online {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-locate-online:hover { color: var(--brand-hover); }

/* Service quick nav strip */
.service-quick-nav {
  position: relative;
  z-index: 2;
  background: var(--warm-gray);
  padding: 72px 0 20px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.service-quick-nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-quick-nav-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 92%, transparent);
}

.service-quick-nav-track {
  display: flex;
  width: max-content;
  animation: service-quick-nav-scroll 150s linear infinite;
}

.service-quick-nav-marquee:hover .service-quick-nav-track {
  animation-play-state: paused;
}

.service-quick-nav-list {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  padding-right: 12px;
}

.service-quick-nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 100px;
  padding: 10px 12px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.service-quick-nav-list a:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.service-quick-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--brand);
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-quick-nav-list a:hover .service-quick-nav-icon {
  color: var(--brand-hover);
  transform: scale(1.08);
}

.service-quick-nav-icon .lucide {
  width: 44px;
  height: 44px;
}

.service-quick-nav-label {
  text-align: center;
  line-height: 1.25;
}

.service-quick-nav-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  border: 2px solid rgba(var(--red-rgb), 0.22);
  border-radius: 8px;
  background: var(--white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.service-quick-nav-all:hover {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

@keyframes service-quick-nav-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-bg-photo {
    animation: none;
    transform: scale(1.22);
  }

  .btn-emergency,
  .mobile-sticky-cta {
    animation: none;
  }

  .btn-emergency::before,
  .mobile-sticky-cta::before {
    display: none;
  }

  .scroll-reveal,
  .scroll-reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .stats-band.is-revealed .stat-item {
    animation: none;
  }

  .hero-locate-bar.is-revealed {
    animation: none;
  }

  .service-quick-nav-track {
    animation: none;
  }

  .testimonial-marquee-track {
    animation: none;
  }

  .service-quick-nav-marquee {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: none;
  }

  .testimonial-marquee {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: none;
  }

  .service-quick-nav-marquee::-webkit-scrollbar { display: none; }

  .testimonial-marquee::-webkit-scrollbar { display: none; }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-soft);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--font-hero);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 14ch;
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
  max-width: 480px;
}

.hero-support {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
  max-width: 620px;
}

.trust-row li {
  padding: 12px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row li .lucide { flex-shrink: 0; color: var(--brand-soft); width: 14px; height: 14px; }

/* Form */
.hero-form-card {
  background: var(--white);
  color: var(--text);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.hero-form-card h2 {
  font-size: 1.125rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--brand);
}

.form-group { margin-bottom: 12px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}

.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 11px;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--off-white);
}

.form-group input[type="radio"],
.form-group input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  accent-color: var(--brand);
  flex-shrink: 0;
}

.form-group input:not([type="radio"]):not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 0;
  border-color: var(--brand);
  background: var(--white);
}

.form-note {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}

.form-note a { color: var(--brand); font-weight: 700; }

/* Sections */
.section {
  padding: 72px 0;
  position: relative;
}

.section-white { background: var(--white); }

.section-gray {
  background: var(--warm-gray);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.section-white.section-flow-top {
  margin-top: -1px;
  padding-top: 88px;
}

.section-white.section-flow-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  transform: translateY(-99%);
  pointer-events: none;
}

.section-gray.section-flow-top::before {
  background: var(--warm-gray);
}
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-emergency {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
  overflow: hidden;
}

.section-emergency h2 { color: var(--white); }

.section-header { margin-bottom: 40px; max-width: 640px; }
.section-header-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p, .section-lead { margin-top: 12px; color: var(--muted); font-size: 1.0625rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }
.section-cta-center { text-align: center; margin-top: 40px; }

.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.section-label-light { color: var(--brand-soft); }

.split-intro {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.45;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 0;
  transition: background 0.15s, transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.service-card:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.service-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--warm-gray);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 20px 22px 24px;
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--brand);
}

.service-icon .lucide { width: 100%; height: 100%; }
.service-icon-blue { color: var(--blue); }

.service-card h3 { margin-bottom: 8px; font-size: 1rem; }

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

.service-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand);
}

.service-link:hover { text-decoration: underline; }

/* Homepage services showcase */
.services-showcase {
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(var(--red-rgb), 0.06) 0%, transparent 68%);
  pointer-events: none;
}

.services-showcase-header {
  max-width: 760px;
  padding: 72px 0 40px;
}

.services-showcase-header-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-showcase-header h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.services-showcase-subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

.services-showcase-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-showcase-carousel {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.service-showcase-slides {
  display: grid;
  grid-template: 1fr / 1fr;
  margin-bottom: 24px;
}

.service-showcase-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
  pointer-events: none;
}

.service-showcase-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-showcase-media {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-showcase-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.service-showcase-region {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.service-showcase-body h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 14px;
}

.service-showcase-body p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-showcase-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.service-showcase-link:hover { color: var(--brand); }

.service-showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.service-showcase-tab {
  border: none;
  background: none;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s;
}

.service-showcase-tab:hover,
.service-showcase-tab.is-active {
  color: var(--brand);
}

.services-showcase-footer {
  padding: 28px 0 72px;
  text-align: center;
}

.featured-service {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.featured-service--white { background: var(--white); }
.featured-service--gray { background: var(--warm-gray); }

.featured-service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.featured-service--reverse .featured-service-media { order: 2; }
.featured-service--reverse .featured-service-body { order: 1; }

.featured-service-media {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Restoration photos (pre-composited before/after images) — never crop */
.photo-composite,
img[src*="before-after"] {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  aspect-ratio: auto;
  max-height: none;
}

.featured-service-media img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  max-height: 380px;
}

.featured-service-media img.photo-composite {
  height: auto;
  object-fit: unset;
  aspect-ratio: auto;
  max-height: none;
}

.featured-service-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.featured-service-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.featured-service-body h2 a {
  color: var(--black);
}

.featured-service-body h2 a:hover { color: var(--brand); }

.featured-service-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 560px;
}

.featured-service-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  margin-bottom: 22px;
}

.featured-answer h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.featured-answer p,
.featured-answer li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.featured-answer ul {
  list-style: none;
}

.featured-answer li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
}

.featured-answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
}

.featured-answer li strong { color: var(--text); font-weight: 600; }

.featured-callout {
  padding: 16px 18px;
  background: var(--white);
  border-left: 4px solid var(--brand);
  border-radius: 0 4px 4px 0;
  margin-bottom: 22px;
  max-width: 560px;
}

.featured-service--white .featured-callout {
  background: var(--warm-gray);
}

.featured-callout strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.featured-callout p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.featured-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secondary-services-wrap {
  padding: 64px 0 72px;
}

.secondary-services-header {
  max-width: 640px;
  margin-bottom: 32px;
}

.secondary-services-header h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 10px;
}

.secondary-services-header p {
  color: var(--muted);
  line-height: 1.6;
}

.secondary-services-list {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 36px;
}

.secondary-service-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.secondary-service-info h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.secondary-service-info h3 a {
  color: var(--black);
}

.secondary-service-info h3 a:hover { color: var(--brand); }

.secondary-service-info p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 640px;
}

.secondary-service-link {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand);
  padding-top: 2px;
}

.secondary-service-link:hover { text-decoration: underline; }

.services-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px;
  background: var(--warm-gray);
  border-radius: 6px;
  margin-bottom: 28px;
}

.services-trust-item strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.services-trust-item span {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

.secondary-services-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Emergency strip */
.emergency-strip {
  position: relative;
  background:
    radial-gradient(ellipse 55% 120% at 92% 50%, rgba(var(--red-rgb), 0.1) 0%, transparent 55%),
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 36px,
      rgba(255, 255, 255, 0.012) 36px,
      rgba(255, 255, 255, 0.012) 37px
    ),
    linear-gradient(125deg, #1e1e1e 0%, #111 48%, #0d0d0d 100%);
  color: var(--white);
  padding: 44px 0 64px;
  overflow: visible;
  z-index: 1;
}

.emergency-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 45%, rgba(var(--red-rgb), 0.35) 100%);
  z-index: 2;
}

.emergency-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -47px;
  height: 48px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 2;
}

.emergency-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.emergency-strip-text {
  padding-left: 22px;
  border-left: 3px solid var(--red);
  max-width: 620px;
}

.emergency-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 10px;
}

.emergency-strip-label::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(var(--red-rgb), 0.3);
}

.emergency-strip h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 8px;
  line-height: 1.25;
}

.emergency-strip p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  max-width: 520px;
  line-height: 1.55;
}

.emergency-strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 16px;
}

.emergency-strip-badges li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
}

.emergency-strip-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.emergency-strip-cta .btn-emergency {
  box-shadow: var(--shadow-red-strong);
}

.emergency-strip-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.48);
  text-align: right;
}

/* Ready / service area hero (from live site, cleaned up) */
.section-ready {
  position: relative;
  background: linear-gradient(130deg, #1a1a1a 0%, #101010 50%, #0d0d0d 100%);
  color: var(--white);
  overflow: hidden;
}

.services-showcase + .section-ready {
  padding-top: 100px;
}

.services-showcase + .section-ready::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 14%);
  pointer-events: none;
  z-index: 1;
}

.section-ready::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(var(--red-rgb), 0.08) 0%, transparent 55%),
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 36px,
      rgba(255, 255, 255, 0.012) 36px,
      rgba(255, 255, 255, 0.012) 37px
    );
  pointer-events: none;
}

.split-layout-ready {
  position: relative;
  z-index: 1;
  align-items: center;
}

.split-content-dark h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.split-content-dark h3 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ready-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 620px;
}

.ready-support {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 580px;
}

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
  margin-bottom: 28px;
}

.service-column-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: -4px 0 12px;
}

.content-list-dark li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
}

.ready-image {
  margin: 0;
}

.ready-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  display: block;
}

.ready-image figcaption {
  margin-top: 10px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.project-photo {
  overflow: hidden;
  background: var(--dark);
}

.project-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.project-body { padding: 20px 22px 22px; }

.project-type {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.project-type-fire { color: var(--red); }

.project-body h3 { margin-bottom: 4px; font-size: 1.05rem; }

.project-response {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.project-bullets li {
  position: relative;
  padding-left: 14px;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.project-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand);
}

/* Before & After */
.ba-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.ba-featured img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.ba-details h3 { margin-bottom: 12px; }
.ba-details p { color: var(--muted); margin-bottom: 20px; }

.ba-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
}

.ba-outcomes .lucide { flex-shrink: 0; color: var(--brand); margin-top: 3px; }

.ba-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ba-gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.ba-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.ba-gallery-item figcaption {
  padding: 10px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.ba-gallery-home {
  grid-template-columns: repeat(4, 1fr);
}

.ba-gallery-home-link {
  margin-top: 20px;
  text-align: center;
}

.ba-gallery-home .ba-gallery-item a {
  display: block;
}

.ba-gallery-home .ba-gallery-item a:hover { opacity: 0.92; }

.ba-gallery-home .ba-gallery-item figcaption {
  padding: 10px 2px 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.ba-gallery-home .ba-gallery-item figcaption a {
  color: inherit;
}

.ba-gallery-home .ba-gallery-item figcaption a:hover {
  color: var(--brand);
}

/* Insurance */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.insurance-card {
  background: var(--white);
  padding: 28px;
  border-radius: 6px;
  border-left: 4px solid var(--blue);
}

.insurance-card h3 { margin-bottom: 8px; font-size: 1rem; }
.insurance-card p { font-size: 0.875rem; color: var(--muted); }

.insurance-icon { display: none; }

.insurance-grid-home {
  max-width: 920px;
  margin: 0 auto;
}

.home-insurance-teaser .section-cta-center,
.home-guides-teaser .section-cta-center {
  margin-top: 28px;
}

/* Split / Why us */
.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-image img {
  border-radius: 6px;
  width: 100%;
}

.split-image-caption {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.split-content h2 { margin-bottom: 24px; }

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

.split-tagline {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}

.split-tagline a { color: var(--white); font-weight: 700; }

/* Service areas */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.area-map { display: none; }

.area-cities {
  columns: 2;
  column-gap: 32px;
}

.area-cities li {
  padding: 8px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}

.area-cities li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.area-callout {
  background: var(--dark);
  color: var(--white);
  padding: 32px;
  border-radius: 6px;
}

.area-callout h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.area-callout p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.area-grid { display: none; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.team-card figcaption {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.team-placeholder {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.team-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.team-placeholder-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-soft);
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-weight: 600;
}

.team-card:first-child .team-placeholder { aspect-ratio: 16/10; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--warm-gray);
  padding: 24px;
  border-radius: 6px;
}

.testimonial-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: var(--text);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.8125rem;
  display: block;
}

.testimonial-service {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.testimonial-service a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.testimonial-service a:hover {
  color: var(--brand);
}

.home-testimonials-ratings {
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.home-testimonials-ratings a {
  color: var(--blue);
}

.home-testimonials-ratings a:hover {
  color: var(--brand);
}

.home-testimonials-ratings span {
  margin: 0 8px;
  color: var(--muted);
  font-weight: 400;
}

.testimonial-marquee {
  overflow: hidden;
  margin-top: 32px;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.testimonial-marquee-track {
  display: flex;
  width: max-content;
  animation: testimonial-marquee-scroll 120s linear infinite;
}

.testimonial-marquee:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-marquee-row {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  padding-right: 20px;
}

.home-testimonials .testimonial-marquee .testimonial-card {
  flex-shrink: 0;
  width: min(360px, 85vw);
  margin: 0;
}

@keyframes testimonial-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-stars {
  margin-bottom: 12px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #c99700;
}

.home-testimonials .testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.home-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.home-trust-badges-link img {
  display: block;
  width: auto;
  height: 58px;
}

.home-trust-badges-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.home-trust-badges-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.home-trust-badges-links a:hover { color: var(--brand); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 6px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brand);
  margin-left: 12px;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Final CTA */
.final-cta-inner {
  position: relative;
  text-align: center;
}

.final-cta-inner p {
  color: rgba(255,255,255,0.7);
  margin: 12px auto 28px;
  max-width: 520px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--warm-gray);
  color: var(--text);
  padding: 48px 0 0;
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), rgba(var(--red-rgb), 0.2), var(--blue));
  opacity: 0.65;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 64px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-block {
  max-width: 320px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-logo {
  display: block;
  height: 52px;
  width: auto;
}

.footer-tagline {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  transition: background 0.15s, transform 0.15s;
}

.footer-social-btn .social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.footer-certs {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.cert-badges-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.15s;
}

.cert-badges-link:hover {
  opacity: 0.82;
}

.footer-emergency {
  text-align: right;
  justify-self: end;
  max-width: 420px;
}

.footer-emergency-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-phones {
  list-style: none;
}

.footer-phones li {
  margin-bottom: 10px;
}

.footer-phones li:last-child {
  margin-bottom: 0;
}

.footer-phone-region {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}

.footer-phones a {
  font-size: clamp(1.25rem, 2.4vw, 1.875rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--red);
}

.footer-phones a:hover {
  color: var(--red-hover);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.footer-col a {
  color: var(--text);
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  padding: 22px 0 28px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-credit {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-credit a {
  color: inherit;
}

.footer-credit a:hover {
  color: var(--brand);
}

.contact-social-list { list-style: none; margin-bottom: 20px; }
.contact-social-list li { margin-bottom: 6px; }
.contact-social-list a { color: var(--brand); font-weight: 600; }

.contact-certs {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-top: 8px;
}

.contact-office-list { list-style: none; margin-bottom: 24px; }
.contact-office-list li { margin-bottom: 16px; font-size: 0.9375rem; line-height: 1.6; color: var(--muted); }
.contact-office-list strong { color: var(--black); }
.contact-emergency-note { margin-top: 16px; font-size: 0.9375rem; color: var(--muted); }
.contact-emergency-note a { color: var(--brand); font-weight: 700; }

/* Stats band */
.stats-band {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 36px 0 52px;
  border-bottom: none;
  z-index: 1;
}

.stats-band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -47px;
  height: 48px;
  background: var(--warm-gray);
  clip-path: polygon(0 0, 100% 0, 100% 12%, 0 100%);
  pointer-events: none;
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item {
  padding: 8px;
  transition: transform 0.35s ease;
}

.stats-band.is-revealed .stat-item {
  animation: stat-pop 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.stats-band.is-revealed .stat-item:nth-child(1) { animation-delay: 0.05s; }
.stats-band.is-revealed .stat-item:nth-child(2) { animation-delay: 0.12s; }
.stats-band.is-revealed .stat-item:nth-child(3) { animation-delay: 0.19s; }
.stats-band.is-revealed .stat-item:nth-child(4) { animation-delay: 0.26s; }

@keyframes stat-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat-num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.stat-note {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

/* Brand quote band */
.brand-quote-band {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 88px 0 96px;
}

.brand-quote-inner {
  position: relative;
}

.brand-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 48px 72px;
  align-items: start;
}

.brand-quote-intro {
  max-width: 580px;
}

.brand-quote-eyebrow {
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.brand-quote-headline {
  margin-bottom: 22px;
  font-family: var(--font);
  font-size: clamp(2.75rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
}

.brand-quote-body {
  margin-bottom: 28px;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.65;
  color: var(--muted);
}

.brand-quote-card {
  margin: 0;
  padding: 28px 28px 24px 32px;
  background: #f7f6f3;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.brand-quote-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.brand-quote-mark {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--brand);
}

.brand-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: none;
}

.brand-quote p {
  font-family: var(--font);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.35;
  color: var(--text);
}

.brand-quote-attr {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-quote-band + .section-white,
.emergency-strip + .section-white {
  padding-top: 88px;
}

.home-trust-section {
  padding-top: 88px;
}

.home-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px 56px;
  align-items: start;
}

.home-trust-content h2 {
  margin-bottom: 16px;
}

.home-trust-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-trust-media .brand-quote-card {
  margin: 0;
}

.home-process-strip {
  background: var(--black);
  color: var(--white);
  padding: 72px 0;
}

.home-process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.home-process-header h2 {
  color: var(--white);
  margin-top: 8px;
}

.home-process-header .section-label {
  color: var(--brand-soft);
}

.home-process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: none;
  margin: 0;
  max-width: none;
}

.home-process-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}

.home-process-step strong {
  display: block;
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.home-process-step p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
}

.home-process-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.brand-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 0;
}

.brand-values li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 5px 10px;
}

@media (max-width: 960px) {
  .brand-quote-band {
    padding: 64px 0 72px;
  }

  .brand-quote-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .brand-quote-intro {
    max-width: none;
  }

  .brand-quote-card {
    max-width: 520px;
  }

  .home-trust-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* About page */
.page-pull-quote {
  margin: 0 0 32px;
  padding: 24px 28px;
  background: var(--warm-gray);
  border-left: 4px solid var(--brand);
  border-radius: 0 6px 6px 0;
}

.page-pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 10px;
}

.page-pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.owner-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 16px 0 24px;
}

.mission-grid h3 {
  font-size: 0.9375rem;
  margin: 0 0 6px;
}

.mission-grid p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.mini-stats div {
  background: var(--white);
  border-radius: 4px;
  padding: 12px 8px;
}

.mini-stats strong {
  display: block;
  font-size: 1.25rem;
  color: var(--brand);
}

.mini-stats span {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  margin-top: 2px;
}

.process-steps strong { color: var(--white); }

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 14px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 -6px 24px rgba(var(--red-rgb), 0.35);
  overflow: hidden;
  animation: btn-glow-pulse 3.5s ease-in-out infinite;
}

.mobile-sticky-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.1) 44%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(255, 255, 255, 0.1) 56%,
    transparent 62%
  );
  transform: translateX(-160%) skewX(-18deg);
  animation: btn-shine-loop 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine-loop {
  0%, 78%, 100% { transform: translateX(-160%) skewX(-18deg); }
  32% { transform: translateX(160%) skewX(-18deg); }
}

/* Scroll reveal & depth */
.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal-scale.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: calc(var(--header-h) + var(--topbar-h));
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 20px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }

  .main-nav.open .nav-list { flex-direction: column; }
  .main-nav.open .nav-list > li > a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open .nav-dropdown a {
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: none;
  }

  .nav-mobile-cta {
    display: block;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--line);
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .hero-form-card { max-width: 440px; }

  .hero-locate-bar {
    grid-template-columns: 1fr 1fr;
    margin-bottom: -40px;
  }

  .hero-locate-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-hero-phone { flex: 1; min-width: 200px; max-width: 320px; }

  .featured-service-inner,
  .featured-service-answers,
  .services-trust-bar { grid-template-columns: 1fr; }

  .service-showcase-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-showcase-media img { height: 240px; }

  .service-showcase-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .service-showcase-tabs::-webkit-scrollbar { display: none; }

  .service-showcase-tab { flex-shrink: 0; }

  .featured-service--reverse .featured-service-media,
  .featured-service--reverse .featured-service-body { order: unset; }

  .secondary-service-item {
    flex-direction: column;
    gap: 10px;
  }

  .featured-service-actions { flex-direction: column; }
  .featured-service-actions .btn { width: 100%; }

  .service-grid { grid-template-columns: 1fr 1fr; }
  .ba-showcase, .split-layout, .area-layout { grid-template-columns: 1fr; }
  .ba-gallery,
  .ba-gallery-home { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-emergency { text-align: left; justify-self: start; max-width: none; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }

  .topbar-inner span:first-child { display: none; }

  .section { padding: 52px 0; }
  .hero { min-height: auto; padding-bottom: 0; }

  .hero-home { min-height: auto; }

  .hero-centered-inner { padding: 24px 0 28px; }

  .hero-home h1 { max-width: none; font-size: clamp(1.75rem, 8vw, 2.25rem); }

  .hero-locate-bar {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    margin-bottom: -32px;
  }

  .hero-locate-cta { flex-direction: column; }

  .btn-hero-phone { width: 100%; max-width: none; }

  .service-quick-nav { padding-top: 56px; }

  .trust-row { grid-template-columns: 1fr 1fr; }

  .service-grid,
  .project-grid,
  .insurance-grid,
  .testimonial-grid { grid-template-columns: 1fr; }

  .ba-gallery-home { grid-template-columns: 1fr; }

  .home-process-steps { grid-template-columns: 1fr; }

  .home-trust-badges {
    flex-direction: column;
    text-align: center;
  }

  .emergency-strip-inner {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }

  .emergency-strip-text {
    padding-left: 0;
    border-left: none;
    max-width: none;
  }

  .emergency-strip-badges { justify-content: center; }

  .emergency-strip-cta {
    align-items: center;
  }

  .emergency-strip-note { text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .guides-hero { min-height: 260px; }
  .mobile-sticky-cta { display: flex; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .area-cities { columns: 1; }
}

/* ---- Inner pages & service layout ---- */

.page-hero,
.page-hero-short {
  background: var(--dark);
  color: var(--white);
  padding: calc(var(--header-h) + var(--topbar-h) + 40px) 0 48px;
}

.page-hero-short { padding-bottom: 36px; }
.page-hero h1, .page-hero-short h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-lead { color: rgba(255,255,255,0.78); font-size: 1.0625rem; max-width: 640px; }
.page-hero-label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-soft); margin-bottom: 10px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.45; }

.service-intro .breadcrumb { color: var(--muted); margin-bottom: 14px; }
.service-intro .breadcrumb a { color: var(--text); }
.service-intro .breadcrumb span { color: var(--muted); }

.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.page-content h2 { margin: 28px 0 14px; font-size: 1.35rem; }
.page-content h2:first-child { margin-top: 0; }

.content-list li,
.content-list-check li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
}

.content-list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  background-color: var(--brand);
  mask-image: var(--lucide-check-mask);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--lucide-check-mask);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.content-callout {
  margin-top: 28px;
  padding: 22px;
  background: var(--warm-gray);
  border-left: 4px solid var(--brand);
  border-radius: 4px;
}

.content-callout h3 { margin-bottom: 8px; font-size: 1.05rem; }
.content-callout p { color: var(--muted); margin-bottom: 12px; }

.page-sidebar .sidebar-box {
  background: var(--warm-gray);
  padding: 22px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.page-sidebar .sidebar-box h3 { font-size: 1rem; margin-bottom: 8px; }
.page-sidebar .sidebar-box p { font-size: 0.875rem; color: var(--muted); margin-bottom: 14px; }

.related-links { display: flex; flex-direction: column; gap: 8px; }
.related-links a { font-size: 0.875rem; font-weight: 600; color: var(--brand); }
.related-links a:hover { text-decoration: underline; }

.sidebar-box-dark {
  background: var(--dark);
  color: var(--white);
  padding: 24px;
  border-radius: 6px;
}

.sidebar-box-dark h3 {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.sidebar-box-dark p {
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.sidebar-box-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-box-dark .btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.sidebar-box-dark .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.sidebar-box-dark .btn-outline-dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.sidebar-box-dark .btn-outline-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.service-area-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--topbar-h) + 16px);
}

.service-area-sidebar .sidebar-box {
  margin-bottom: 0;
}

/* Service intro (real-site style) */
.service-intro {
  padding-top: calc(var(--header-h) + var(--topbar-h) + 32px);
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-intro-content h1 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-area-line {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.service-intro-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 22px 0 28px;
}

.check-grid li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.check-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background-color: var(--brand);
  mask-image: var(--lucide-check-mask);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: var(--lucide-check-mask);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.check-grid-areas { margin-top: 16px; }

.service-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-intro-media {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  aspect-ratio: 4 / 3;
  max-height: 420px;
  background: var(--warm-gray);
}

.service-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-intro-media img.photo-composite {
  height: auto;
  object-fit: unset;
  aspect-ratio: auto;
  max-height: none;
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-blue:hover {
  background: #125691;
  border-color: #125691;
}

/* Dark process section */
.service-process h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.process-steps {
  list-style: none;
  counter-reset: step;
  margin-bottom: 28px;
  max-width: 820px;
}

.process-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
}

/* Service area section */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.service-faq-content {
  max-width: 760px;
}

.service-area-section h2 { margin-bottom: 12px; }
.service-area-section p { color: var(--muted); margin-bottom: 8px; }

.split-content-light h2 { color: var(--black); }
.split-content-light .content-list-check li { color: var(--text); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-phone { font-size: 1.75rem; font-weight: 700; margin: 8px 0 16px; }
.contact-phone a { color: var(--red); }
.contact-phone-secondary { margin-bottom: 24px; }
.contact-info h2 { font-size: 1.1rem; margin-bottom: 6px; }

.form-intro { font-size: 0.875rem; color: var(--muted); margin-bottom: 14px; }
.form-intro a { color: var(--brand); font-weight: 700; }

/* Careers */
.careers-page {
  padding-top: calc(var(--header-h) + var(--topbar-h) + 32px);
}

.careers-page h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}

.careers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.careers-copy {
  max-width: 720px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.careers-copy p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.careers-copy p:last-child { margin-bottom: 0; }

.breadcrumb-light {
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumb-light a { color: var(--text); }
.breadcrumb-light span { color: var(--muted); }

/* Job postings */
.job-list { display: flex; flex-direction: column; gap: 24px; }

.job-card {
  padding: 28px;
  background: var(--warm-gray);
  border-radius: 6px;
  border-left: 4px solid var(--brand);
}

.job-card h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.job-lead {
  color: var(--muted);
  margin-bottom: 20px;
}

.job-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.job-columns h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Employment application */
.form-pending-notice {
  font-size: 0.875rem;
  color: var(--text);
  background: var(--warm-gray);
  border-left: 3px solid var(--blue);
  padding: 12px 14px;
  margin-bottom: 20px;
  line-height: 1.55;
}

.form-pending-notice a {
  color: var(--brand);
  font-weight: 700;
}

.faqs-page .faqs-group {
  margin-bottom: 36px;
}

.faqs-page .faqs-group h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.faqs-footer-note {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* Recovery Guides */
.guides-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + var(--topbar-h) + 48px) 0 56px;
  color: var(--white);
  overflow: hidden;
}

.guides-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black) url('/assets/truck.png') center center / cover no-repeat;
}

.guides-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
}

.guides-hero-inner {
  position: relative;
  z-index: 1;
}

.guides-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.guides-intro {
  padding-top: 56px;
  padding-bottom: 56px;
}

.guides-intro-inner {
  text-align: center;
}

.guides-intro-inner h2 {
  margin-bottom: 16px;
}

.guides-intro-inner p {
  color: var(--muted);
  font-size: 1.0625rem;
  margin-bottom: 12px;
}

.guides-intro-inner p:last-child {
  margin-bottom: 0;
}

.guides-catalog {
  padding-top: 56px;
  padding-bottom: 72px;
}

.guides-category {
  margin-bottom: 48px;
}

.guides-category:last-child {
  margin-bottom: 0;
}

.guides-category-title {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(var(--red-rgb), 0.22);
}

.guide-card-category {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.guide-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.guide-card h3 a {
  color: var(--black);
}

.guide-card h3 a:hover {
  color: var(--brand);
}

.guide-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.guide-card-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand);
}

.guide-card-link:hover {
  text-decoration: underline;
}

.guide-article h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.guide-article h2:first-child {
  margin-top: 0;
}

.guide-article p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

.guide-article p a {
  color: var(--brand);
  font-weight: 600;
}

.guide-related {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.guide-related h2 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.guide-related-list li {
  margin-bottom: 8px;
}

.guide-related-list a {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9375rem;
}

.sidebar-link-list li {
  margin-bottom: 8px;
}

.sidebar-link-list a {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
}

.sidebar-link-list a:hover {
  color: var(--brand);
}

.employment-form { margin-top: 8px; }

.form-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.form-section-note {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-group-narrow { max-width: 100px; }

.form-fieldset {
  border: none;
  padding: 0;
  margin-bottom: 12px;
}

.form-fieldset legend {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.radio-inline,
.radio-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.radio-stack {
  flex-direction: column;
  gap: 8px;
}

.radio-inline label,
.radio-stack label,
.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 0;
}

.form-checkbox {
  display: flex;
  margin: 20px 0 24px;
  line-height: 1.5;
}

.employer-block {
  padding: 22px;
  background: var(--warm-gray);
  border-radius: 6px;
  margin-bottom: 16px;
}

.employer-block h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.employer-block-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.employer-na-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 0;
}

.employer-block--disabled .employer-block-fields {
  opacity: 0.55;
}

.employer-block--disabled .employer-block-header h3 {
  color: var(--muted);
}

.employment-history-toggle {
  margin-top: 0;
  margin-bottom: 20px;
}

.form-section-resume input[type="file"] {
  width: 100%;
  font-size: 0.875rem;
  padding: 8px 0;
}

.resume-upload-status {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.resume-upload-status.is-success { color: var(--blue); }
.resume-upload-status.is-error { color: var(--brand); }

.form-legal {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.form-legal-block {
  padding: 20px;
  background: var(--warm-gray);
  border-radius: 6px;
  margin-bottom: 20px;
  max-height: 220px;
  overflow-y: auto;
}

.form-legal-block p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.form-legal-block p:last-child { margin-bottom: 0; }

.area-cities-page { columns: 2; column-gap: 24px; list-style: none; }
.area-cities-page li { padding: 6px 0; border-bottom: 1px solid var(--line); break-inside: avoid; }

.ba-gallery-page { grid-template-columns: repeat(3, 1fr); }

.service-card h3 a { color: var(--black); }
.service-card h3 a:hover { color: var(--brand); }

/* Nav dropdown */
.nav-item-has-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-caret {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px 0;
  z-index: 100;
  max-height: 70vh;
  overflow-y: auto;
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown,
.nav-item-has-dropdown.open .nav-dropdown {
  display: block;
}

.nav-dropdown li { display: block; }

.nav-dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 0;
}

.nav-dropdown a:hover {
  background: var(--warm-gray);
  color: var(--brand);
}

.nav-dropdown-trigger.active { color: var(--brand); }

@media (max-width: 1024px) {
  .nav-item-has-dropdown { width: 100%; }

  .nav-item-has-dropdown > .nav-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-item-has-dropdown.open > .nav-dropdown-trigger {
    border-bottom-color: transparent;
  }

  .nav-item-has-dropdown.open > .nav-dropdown-trigger .nav-caret {
    transform: rotate(180deg);
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    margin: 0 0 8px;
    padding: 6px;
    max-height: none;
    display: none;
    background: var(--warm-gray);
    border-radius: 6px;
  }

  .nav-item-has-dropdown.open .nav-dropdown { display: block; }

  .nav-dropdown a {
    padding: 10px 14px;
    border-bottom: none;
    border-radius: 4px;
  }

  .nav-dropdown a:hover {
    background: var(--white);
  }

  .nav-dropdown-trigger.active {
    background: transparent;
  }

  .nav-item-has-dropdown.open > .nav-dropdown-trigger.active {
    color: var(--brand);
  }

  .service-intro-grid,
  .page-layout,
  .service-area-grid,
  .contact-layout { grid-template-columns: 1fr; }

  .service-area-sidebar { position: static; }

  .check-grid { grid-template-columns: 1fr; }
  .service-columns { grid-template-columns: 1fr; }
  .job-columns { grid-template-columns: 1fr; }
  .form-row,
  .form-row-3 { grid-template-columns: 1fr; }
  .form-group-narrow { max-width: none; }
  .ba-gallery-page { grid-template-columns: 1fr 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .service-intro-actions { flex-direction: column; }
  .service-intro-actions .btn { width: 100%; }
  .ba-gallery-page { grid-template-columns: 1fr; }
}

/* Portal themes + layouts (from published.json appearance) */
/* Accent is recolored at runtime via --brand/--blue overrides in portal-content.js. --red stays fixed for urgency. */
body.layout-compact .hero.hero-home { padding-top: 40px; padding-bottom: 40px; }
body.layout-compact .hero-home .hero-tagline { font-size: clamp(2rem, 5vw, 2.75rem); }
body.layout-split-hero .hero-centered-inner { text-align: left; margin-left: 0; }
body.layout-emergency-banner .hero-locate-bar { position: sticky; top: 0; z-index: 40; }

/* Phase D: typography presets (active only once an owner picks one) */
body.has-font-preset { font-family: var(--font-body, inherit); }
body.has-font-preset h1,
body.has-font-preset h2,
body.has-font-preset h3,
body.has-font-preset .hero-tagline { font-family: var(--font-heading, inherit); }
