﻿html { scroll-behavior: smooth; }

/* Progressive cross-document page transitions. */
@view-transition {
  navigation: auto;
}

body.pwl-page .site-masthead {
  view-transition-name: pwl-masthead;
}

body.pwl-page .mobile-call-cta {
  view-transition-name: pwl-mobile-call;
}

@keyframes pwl-page-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes pwl-page-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

::view-transition-old(root) {
  animation: pwl-page-out 250ms cubic-bezier(.4, 0, 1, 1) both;
}

::view-transition-new(root) {
  animation: pwl-page-in 340ms cubic-bezier(.22, 1, .36, 1) both;
}

/* Switch the persistent shell cleanly without translating it. */
::view-transition-group(pwl-masthead),
::view-transition-group(pwl-mobile-call) {
  animation-duration: 1ms;
}

::view-transition-old(pwl-masthead),
::view-transition-old(pwl-mobile-call) {
  animation: none;
  opacity: 0;
}

::view-transition-new(pwl-masthead),
::view-transition-new(pwl-mobile-call) {
  animation: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(root),
  ::view-transition-group(pwl-masthead),
  ::view-transition-group(pwl-mobile-call) {
    animation-delay: 0s !important;
    animation-duration: .01ms !important;
  }

  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-old(pwl-masthead),
  ::view-transition-new(pwl-masthead),
  ::view-transition-old(pwl-mobile-call),
  ::view-transition-new(pwl-mobile-call) {
    animation: none !important;
    transform: none !important;
  }
}

.pwl-page {
  /* Shared content scale. Brand, navigation, icons, and compact mobile hero copy remain deliberate exceptions. */
  --type-xs: .8rem;
  --type-sm: .9375rem;
  --type-body: 1rem;
  --type-body-lg: 1.125rem;
  --type-title-sm: 1.125rem;
  --type-title-md: 1.375rem;
  --type-heading: clamp(1.75rem, 2.8vw, 2.75rem);
  --type-display: clamp(2.5rem, 4vw, 4rem);
  --leading-tight: 1.05;
  --leading-heading: 1.16;
  --leading-body: 1.55;
  --leading-relaxed: 1.65;
  --pwl-trust-overlap: 66px;
  --pwl-trust-radius: 18px;
  --pwl-trust-shadow: 0 20px 44px rgba(16, 47, 73, .16);
  --pwl-trust-separator: rgba(49, 95, 127, .28);
  --pwl-trust-icon: #102f49;
  --pwl-trust-cta: #174a6a;
  --pwl-trust-cta-hover: #103a55;

  /* Template variables inherit this scoped scale across generated pages. */
  --h1-font-size: var(--type-display);
  --h2-font-size: var(--type-heading);
  --h3-font-size: var(--type-title-md);
  --h4-font-size: var(--type-title-md);
  --h5-font-size: var(--type-title-sm);
  --h6-font-size: var(--type-body-lg);
  --p-font-size: var(--type-body);
  --menu-font-size: var(--type-sm);
  --copyright-text-font-size: var(--type-sm);
}
.pwl-page [id] { scroll-margin-top: clamp(88px, 10vw, 148px); }
.pwl-page .cleanup-section { padding: 80px 0; }
.pwl-page .hero { min-height: 360px; }
.pwl-page .carousel-image-wrap::before { background: none; opacity: 0; }
.pwl-page .carousel-image { object-fit: contain; object-position: center top; background: #dbeef5; }
body.chd-hero-trust-layout.pwl-page .pwl-trust-section {
  background: transparent;
  margin-top: calc(-1 * var(--pwl-trust-overlap));
  padding: 0;
  position: relative;
  z-index: 12;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-bar {
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(49, 95, 127, .1);
  border-radius: var(--pwl-trust-radius);
  box-shadow: var(--pwl-trust-shadow);
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(205px, .9fr) minmax(205px, .9fr) minmax(280px, 1.2fr);
  min-height: 118px;
  overflow: hidden;
  padding: 16px;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-cell {
  align-items: center;
  color: #102f49;
  display: flex;
  gap: 15px;
  justify-content: center;
  min-width: 0;
  padding: 8px 20px;
  position: relative;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-cell + .pwl-trust-cell::before {
  background: var(--pwl-trust-separator);
  content: '';
  height: 58px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-link {
  color: #102f49;
  text-decoration: none;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-link:hover,
body.chd-hero-trust-layout.pwl-page .pwl-trust-link:focus { color: #d95d2a; text-decoration: none; }
body.chd-hero-trust-layout.pwl-page .pwl-trust-link:focus-visible,
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus-visible {
  outline: 3px solid rgba(22, 136, 168, .72);
  outline-offset: 4px;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb {
  gap: 18px;
  justify-content: flex-start;
  padding-left: 12px;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb img {
  flex: 0 0 auto;
  height: auto;
  max-width: 154px;
  width: 46%;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb strong { white-space: nowrap; }
body.chd-hero-trust-layout.pwl-page .pwl-trust-icon {
  align-items: center;
  color: var(--pwl-trust-icon);
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 2.35rem;
  justify-content: center;
  line-height: 1;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-copy strong {
  color: #102f49;
  font-size: var(--type-title-sm);
  font-weight: 700;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-copy span {
  color: #102f49;
  font-size: var(--type-body);
  font-weight: 500;
  margin-top: 2px;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-cell--booking { padding: 3px 0 3px 28px; }
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking {
  align-items: center;
  align-self: stretch;
  background: #fffdfb;
  border: 2px solid var(--pwl-trust-cta);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(16, 47, 73, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
  color: #102f49;
  display: grid;
  gap: 13px;
  grid-template-columns: 44px minmax(0, 1fr) 16px;
  min-height: 74px;
  padding: 9px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:hover,
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus {
  background: #f4fbfd;
  border-color: var(--pwl-trust-cta-hover);
  box-shadow: 0 11px 24px rgba(16, 47, 73, .11), inset 0 1px 0 rgba(255, 255, 255, .9);
  color: #102f49;
  text-decoration: none;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:hover .pwl-trust-icon,
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus .pwl-trust-icon {
  background: var(--pwl-trust-cta-hover);
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:hover .pwl-trust-arrow,
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus .pwl-trust-arrow {
  color: var(--pwl-trust-cta-hover);
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:active {
  background: #e9f7fb;
  border-color: var(--pwl-trust-cta-hover);
  box-shadow: 0 5px 12px rgba(16, 47, 73, .1);
  transform: translateY(1px);
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-icon {
  background: var(--pwl-trust-cta);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
  color: #fff;
  flex-basis: auto;
  font-size: 1.25rem;
  height: 44px;
  width: 44px;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy { align-items: flex-start; }
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy strong {
  color: var(--pwl-trust-cta-hover);
  font-size: var(--type-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy span {
  color: #102f49;
  font-size: var(--type-title-md);
  font-weight: 700;
}
body.chd-hero-trust-layout.pwl-page .pwl-trust-arrow {
  color: var(--pwl-trust-cta);
  font-size: 1.2rem;
  justify-self: end;
  line-height: 1;
}
body.chd-hero-trust-layout.pwl-page .pwl-service-strip {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(49, 95, 127, .13);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 47, 73, .08);
  column-gap: 4px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 12px;
  min-height: 50px;
  padding: 6px;
}
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a {
  align-items: center;
  border-radius: 8px;
  color: #102f49;
  display: flex;
  font-size: var(--type-body);
  font-weight: 500;
  justify-content: center;
  line-height: 1.35;
  padding: 7px 12px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a > span {
  display: inline-block;
  max-width: 100%;
  position: relative;
}
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a > span::after {
  background: currentColor;
  border-radius: 999px;
  bottom: -5px;
  content: '';
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(.45);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a:hover,
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a:focus {
  background: transparent;
  color: #103a55;
  text-decoration: none;
}
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a:hover > span::after,
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a:focus-visible > span::after {
  opacity: 1;
  transform: scaleX(1);
}
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a:active {
  background: linear-gradient(90deg, rgba(22, 136, 168, 0), rgba(22, 136, 168, .08), rgba(22, 136, 168, 0));
}
body.chd-hero-trust-layout.pwl-page .pwl-service-strip a:focus-visible {
  outline: 3px solid rgba(22, 136, 168, .72);
  outline-offset: 1px;
}
body.chd-hero-trust-layout.pwl-page .pwl-page-title {
  margin-top: clamp(42px, 4vw, 56px);
}
body.chd-hero-trust-layout.pwl-page .pwl-page-title h1 {
  color: #102f49;
  font-size: clamp(1.75rem, 2.3vw, 2.25rem);
  letter-spacing: -.025em;
  line-height: var(--leading-tight);
  margin: 0;
  overflow-wrap: anywhere;
  text-transform: none;
}
.pwl-page .pwl-page-intro { font-size: var(--type-body-lg); line-height: var(--leading-relaxed); margin: 12px 0 16px; max-width: 760px; }
body.chd-hero-trust-layout.pwl-page .pwl-trust-section + .pwl-booking-path { padding-top: 24px; }
body.chd-hero-trust-layout.pwl-page .pwl-trust-section + .cleanup-section { padding-top: clamp(28px, 3vw, 40px); }
.pwl-page .content-lede { font-size: var(--type-body-lg); line-height: var(--leading-relaxed); max-width: 850px; }
.pwl-page .pwl-roof-callout { align-items: center; background: linear-gradient(135deg, #f4fbfd, #fff); border: 1px solid rgba(35, 148, 174, .26); border-left: 4px solid #1688a8; border-radius: 12px; display: flex; gap: 24px; justify-content: space-between; margin: 28px 0; padding: clamp(20px, 2.4vw, 28px); }
.pwl-page .pwl-roof-callout .small-title { color: #176d9b; font-size: var(--type-xs); font-weight: 700; letter-spacing: .08em; margin: 0 0 7px; text-transform: uppercase; }
.pwl-page .pwl-roof-callout h2 { font-size: var(--type-title-md); line-height: var(--leading-heading); margin-bottom: 8px; }
.pwl-page .pwl-roof-callout h2 a { color: inherit; text-decoration: none; }
.pwl-page .pwl-roof-callout h2 a:hover, .pwl-page .pwl-roof-callout h2 a:focus { color: #d95d2a; text-decoration: underline; }
.pwl-page .pwl-roof-callout h2 a:focus-visible { outline: 3px solid rgba(22, 136, 168, .72); outline-offset: 3px; }
.pwl-page .pwl-roof-callout p:last-child { margin: 0; max-width: 760px; }
.pwl-page .pwl-roof-callout > a { flex: 0 0 auto; font-weight: 700; text-decoration: none; white-space: nowrap; }
.pwl-page .pwl-roof-callout > a:hover, .pwl-page .pwl-roof-callout > a:focus { color: #d95d2a; text-decoration: none; }
.pwl-page .cleanup-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 18px; margin-top: 28px; }
.pwl-page .cleanup-card { border: 1px solid rgba(49, 95, 127, .18); border-radius: 12px; padding: 20px; background: #fff; box-shadow: 0 10px 30px rgba(16, 47, 73, .07); height: 100%; }
.pwl-page .cleanup-card h2, .pwl-page .cleanup-card h3 { font-size: var(--type-title-md); line-height: var(--leading-heading); margin-bottom: 10px; }
.pwl-page .cleanup-card p, .pwl-page .cleanup-card li { font-size: var(--type-body); line-height: var(--leading-body); }
.pwl-page .city-request-card { height: auto; padding: clamp(30px, 3vw, 40px); }
.pwl-page .city-request-eyebrow { color: #176d9b; display: block; font-size: var(--type-xs); font-weight: 700; letter-spacing: .09em; margin-bottom: 14px; text-transform: uppercase; }
.pwl-page .city-request-card > h2 { font-size: clamp(1.65rem, 2.5vw, 2.15rem); margin-bottom: 16px; }
.pwl-page .city-request-intro { color: #496277; margin: 0 0 26px; }
.pwl-page .city-request-call { align-items: center; background: #174a6a; border: 2px solid #174a6a; border-radius: 8px; color: #fff; display: flex; font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 700; gap: 12px; justify-content: center; min-height: 58px; padding: 12px 18px; text-decoration: none; transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; width: 100%; }
.pwl-page .city-request-call:hover,
.pwl-page .city-request-call:focus { background: #103a55; border-color: #103a55; color: #fff; text-decoration: none; transform: translateY(-2px); }
.pwl-page .city-request-call:focus-visible { box-shadow: 0 0 0 4px rgba(22, 136, 168, .24); outline: 0; }
.pwl-page .city-request-call i { font-size: 1.35em; }
.pwl-page .city-request-prep { margin-top: 30px; }
.pwl-page .city-request-section-title { color: #176d9b; font-size: var(--type-xs); font-weight: 700; letter-spacing: .08em; margin: 0 0 18px; text-transform: uppercase; }
.pwl-page .city-request-prep-list { display: grid; gap: 18px 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.pwl-page .city-request-prep-list li { align-items: center; color: #315f7f; display: grid; font-size: var(--type-sm); font-weight: 600; gap: 10px; grid-template-columns: 40px minmax(0, 1fr); line-height: 1.3; min-width: 0; }
.pwl-page .city-request-icon { align-items: center; background: #eef7fb; border-radius: 50%; color: #176d9b; display: inline-flex; font-size: 1.15rem; height: 40px; justify-content: center; width: 40px; }
.pwl-page .city-request-process { border-bottom: 1px solid rgba(49, 95, 127, .18); border-top: 1px solid rgba(49, 95, 127, .18); margin: 30px 0 0; padding: 28px 0 26px; }
.pwl-page .city-request-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.pwl-page .city-request-step { color: #102f49; font-size: var(--type-xs); font-weight: 700; min-width: 0; position: relative; text-align: center; }
.pwl-page .city-request-step + .city-request-step::before { border-top: 1px solid rgba(23, 109, 155, .5); content: ''; position: absolute; right: 50%; top: 17px; width: 100%; z-index: 0; }
.pwl-page .city-request-step-number { align-items: center; background: #fff; border: 1px solid #176d9b; border-radius: 50%; color: #174a6a; display: inline-flex; font-size: .9rem; height: 36px; justify-content: center; margin-bottom: 8px; position: relative; width: 36px; z-index: 1; }
.pwl-page .city-request-step-label { display: block; line-height: 1.25; padding: 0 4px; position: relative; z-index: 1; }
.pwl-page .city-request-reassurance { align-items: center; color: #315f7f; display: flex; font-size: var(--type-sm); gap: 10px; line-height: 1.45; margin: 24px 0; }
.pwl-page .city-request-reassurance .city-request-icon { flex: 0 0 36px; height: 36px; width: 36px; }
.pwl-page .city-request-back { align-items: center; border-top: 1px solid rgba(49, 95, 127, .18); color: #176d9b; display: flex; font-size: var(--type-sm); font-weight: 700; gap: 8px; padding-top: 20px; text-decoration: none; }
.pwl-page .city-request-back:hover,
.pwl-page .city-request-back:focus { color: #d95d2a; text-decoration: none; }
.pwl-page .city-request-back:focus-visible { outline: 3px solid rgba(22, 136, 168, .3); outline-offset: 4px; }
.pwl-page .city-service-section { padding-bottom: clamp(104px, 9vw, 140px); }
.pwl-page .city-service-section .content-lede { margin-bottom: clamp(38px, 3.5vw, 50px); }
.pwl-page .city-service-layout { --bs-gutter-y: 50px; }
.pwl-page .city-service-copy > h2 { margin: 46px 0 16px; }
.pwl-page .city-service-copy > h2:first-child { margin-top: 0; }
.pwl-page .city-service-copy > p { margin-bottom: 0; }
.pwl-page .city-service-copy .service-links { margin-bottom: 0; }
@media (min-width: 992px) {
  .pwl-page .city-service-layout { --bs-gutter-x: clamp(28px, 4vw, 52px); }
}
@media (max-width: 575.98px) {
  .pwl-page .city-request-prep-list { grid-template-columns: 1fr; }
}
.pwl-page .review-proof-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); margin: 26px 0 50px; }
.pwl-page .review-proof-item { background: #f7fbfc; border: 1px solid rgba(49, 95, 127, .14); border-radius: 8px; padding: 16px; }
.pwl-page .review-proof-item strong { color: #102f49; display: block; font-size: var(--type-title-sm); line-height: var(--leading-heading); }
.pwl-page .review-proof-item span { color: #315f7f; display: block; font-size: var(--type-sm); margin-top: 5px; }
.pwl-page .review-theme-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); margin-top: 22px; }
.pwl-page .review-theme-card { background: #fff; border-left: 4px solid #1688a8; border-radius: 8px; box-shadow: 0 10px 26px rgba(16, 47, 73, .06); padding: 18px; }
.pwl-page .review-theme-card h3 { font-size: var(--type-title-sm); line-height: var(--leading-heading); margin-bottom: 8px; }
.pwl-page .review-theme-card p { margin-bottom: 0; }
.pwl-page .review-quote-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 24px; }
.pwl-page .review-quote-card { background: #fff; border: 1px solid rgba(49, 95, 127, .16); border-radius: 8px; box-shadow: 0 14px 34px rgba(16, 47, 73, .08); margin: 0; padding: 22px; }
.pwl-page .review-quote-card p { color: #102f49; font-size: var(--type-body); line-height: var(--leading-body); margin: 0; }
.pwl-page .review-quote-card footer { color: #315f7f; font-size: var(--type-sm); font-weight: 700; margin-top: 14px; }
.pwl-page .review-proof-strip { display: grid; gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 24px; }
.pwl-page .review-proof-strip figure { background: #fff; border: 1px solid rgba(49, 95, 127, .14); border-radius: 8px; box-shadow: 0 12px 28px rgba(16, 47, 73, .08); margin: 0; overflow: hidden; }
.pwl-page .review-proof-strip img { aspect-ratio: 4 / 3; display: block; object-fit: cover; width: 100%; }
.pwl-page .review-proof-strip figcaption { color: #102f49; font-size: var(--type-sm); font-weight: 700; line-height: var(--leading-heading); padding: 12px 14px; }
.pwl-page .review-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.pwl-page .review-actions .service-related-cta { min-width: 190px; width: auto; }
.pwl-page .review-actions .review-bbb-link { align-items: center; background: #fff; border: 1px solid rgba(49, 95, 127, .18); border-radius: 999px; color: #102f49; display: flex; font-weight: 700; justify-content: center; min-height: 50px; padding: 12px 18px; text-decoration: none; }
.pwl-page .review-actions .review-bbb-link:hover,
.pwl-page .review-actions .review-bbb-link:focus { background: #f7fbfc; color: #d95d2a; text-decoration: none; }
.pwl-page .review-section-gap { margin-top: clamp(64px, 6vw, 84px); }
.pwl-page .service-detail-layout { align-items: stretch; }
.pwl-page .service-detail-panel { background: linear-gradient(180deg, #f4fbfd, #fff); border: 1px solid rgba(49, 95, 127, .12); border-radius: 8px; box-shadow: 0 16px 40px rgba(16, 47, 73, .08); overflow: hidden; }
.pwl-page .service-detail-photo { display: block; height: clamp(300px, 32vw, 460px); object-fit: cover; width: 100%; }
.pwl-page .service-detail-proof { display: flex; flex-wrap: wrap; gap: 9px; padding: 18px; }
.pwl-page .service-detail-proof span { background: #fff; border: 1px solid rgba(49, 95, 127, .16); border-radius: 999px; color: #102f49; font-size: var(--type-sm); font-weight: 700; padding: 8px 12px; white-space: nowrap; }
.pwl-page .service-detail-support { border-top: 1px solid rgba(49, 95, 127, .12); margin: 0; }
.pwl-page .service-detail-support img { display: block; height: clamp(150px, 16vw, 205px); object-fit: cover; width: 100%; }
.pwl-page .service-detail-support figcaption { color: #315f7f; font-size: var(--type-sm); line-height: 1.45; padding: 12px 18px 16px; }
.pwl-page .pwl-service-photo-strip { display: grid; gap: 16px; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: clamp(28px, 3vw, 40px) 0; }
.pwl-page .pwl-service-photo-card { background: #fff; border: 1px solid rgba(49, 95, 127, .12); border-radius: 8px; box-shadow: 0 8px 20px rgba(16, 47, 73, .06); color: inherit; overflow: hidden; text-decoration: none; }
.pwl-page .pwl-service-photo-card:hover, .pwl-page .pwl-service-photo-card:focus { color: inherit; text-decoration: none; }
.pwl-page .pwl-service-photo-card:focus-visible { outline: 3px solid rgba(142, 217, 232, .9); outline-offset: 3px; }
.pwl-page .pwl-service-photo-card img { aspect-ratio: 1 / 1; display: block; object-fit: cover; width: 100%; }
.pwl-page .pwl-service-photo-card span { display: block; font-size: var(--type-sm); font-weight: 700; line-height: 1.35; padding: 11px 12px 12px; }
.pwl-page .service-detail-copy { max-width: 760px; }
.pwl-page .service-detail-copy .small-title { color: #1688a8; font-weight: 700; }
.pwl-page .service-detail-copy h2 { font-size: var(--type-heading); line-height: var(--leading-tight); margin: 10px 0 18px; }
.pwl-page .service-detail-copy p { font-size: var(--type-body-lg); line-height: var(--leading-relaxed); }
.pwl-page .service-detail-points { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
.pwl-page .service-detail-point { background: #fff; border: 1px solid rgba(49, 95, 127, .14); border-radius: 8px; padding: 18px; }
.pwl-page .service-detail-point h3 { font-size: var(--type-title-sm); line-height: var(--leading-heading); margin-bottom: 8px; }
.pwl-page .service-detail-point p { font-size: var(--type-body); line-height: var(--leading-body); margin: 0; }
.pwl-page .service-detail-point--wide { grid-column: 1 / -1; }
.pwl-page .service-related-card { background: #fff; border: 1px solid rgba(49, 95, 127, .14); border-radius: 8px; box-shadow: 0 16px 40px rgba(16, 47, 73, .08); padding: clamp(22px, 2.4vw, 34px); }
.pwl-page .service-related-card h2 { font-size: var(--type-title-md); line-height: var(--leading-heading); margin-bottom: 18px; }
.pwl-page .service-related-card .service-links { display: grid; gap: 10px; list-style: none; margin: 0 0 22px; padding: 0; }
.pwl-page .service-related-card .service-links a { align-items: center; background: #f7fbfc; border: 1px solid rgba(49, 95, 127, .12); border-radius: 999px; color: #102f49; display: flex; font-weight: 700; justify-content: space-between; padding: 10px 14px; text-decoration: none; }
.pwl-page .service-related-card .service-links a::after { content: '\2192'; color: #d95d2a; font-weight: 700; }
.pwl-page .service-related-card .service-links a:hover,
.pwl-page .service-related-card .service-links a:focus { background: #e9f7fa; color: #d95d2a; }
.pwl-page .service-related-cta { align-items: center; background: linear-gradient(135deg, #1d91aa, #315f7f); border-radius: 999px; color: #fff; display: flex; font-weight: 700; justify-content: center; min-height: 50px; padding: 12px 18px; text-decoration: none; }
.pwl-page .service-related-cta:hover,
.pwl-page .service-related-cta:focus { color: #fff; filter: brightness(1.04); text-decoration: none; }
.pwl-page .pwl-booking-path { padding: clamp(50px, 6vw, 76px) 0 54px; }
.pwl-page .pwl-booking-header { margin: 0 auto; max-width: 760px; text-align: center; }
.pwl-page .pwl-booking-header .small-title { align-items: center; display: inline-flex; gap: 12px; letter-spacing: .16em; }
.pwl-page .pwl-booking-header .small-title::before,
.pwl-page .pwl-booking-header .small-title::after { border-top: 1px solid #315f7f; content: ''; width: 54px; }
.pwl-page .pwl-process { display: grid; gap: clamp(18px, 2vw, 24px); grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; margin: 30px auto 0; max-width: 1320px; padding: 0; }
.pwl-page .pwl-process-step { display: flex; min-width: 0; text-align: center; }
.pwl-page .pwl-process-copy { background: #fff; border: 1px solid rgba(49, 95, 127, .13); border-radius: 16px; box-shadow: 0 8px 22px rgba(16, 47, 73, .055); box-sizing: border-box; color: inherit; display: block; min-height: 204px; padding: 22px 18px 20px; text-decoration: none; width: 100%; }
.pwl-page .pwl-process-step:first-child .pwl-process-copy { background: #f7fbfd; border-color: rgba(35, 148, 174, .26); box-shadow: 0 10px 24px rgba(16, 47, 73, .075); }
.pwl-page a.pwl-process-copy { border-color: rgba(35, 148, 174, .22); cursor: pointer; transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.pwl-page a.pwl-process-copy:hover,
.pwl-page a.pwl-process-copy:focus { color: inherit; text-decoration: none; }
.pwl-page a.pwl-process-copy:hover,
.pwl-page a.pwl-process-copy:focus-visible { background: #eef9fc; border-color: rgba(35, 148, 174, .5); box-shadow: 0 16px 34px rgba(16, 47, 73, .14); transform: translateY(-5px); }
.pwl-page a.pwl-process-copy:focus-visible { outline: 3px solid rgba(35, 148, 174, .3); outline-offset: 4px; }
.pwl-page a.pwl-process-copy:hover .pwl-process-icon,
.pwl-page a.pwl-process-copy:focus-visible .pwl-process-icon { background: #238faa; border-color: #238faa; color: #fff; transform: scale(1.07); }
.pwl-page a.pwl-process-copy:hover h3,
.pwl-page a.pwl-process-copy:focus-visible h3 { color: #1d7897; }
.pwl-page .pwl-process-icon { align-items: center; background: #f4fbfd; border: 1px solid rgba(49, 95, 127, .12); border-radius: 50%; color: #315f7f; display: inline-flex; font-size: 1.8rem; height: 58px; justify-content: center; margin-bottom: 4px; width: 58px; }
.pwl-page a.pwl-process-copy .pwl-process-icon,
.pwl-page a.pwl-process-copy h3 { transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.pwl-page .pwl-process-step:last-child .pwl-process-icon { color: #d95d2a; }
.pwl-page .pwl-process-step h3 { color: #102f49; font-size: var(--type-title-sm); line-height: var(--leading-heading); margin: 8px 0 7px; }
.pwl-page .pwl-process-step p { color: #315f7f; font-size: var(--type-body); line-height: var(--leading-body); margin: 0 auto; max-width: 245px; }
.pwl-page .pwl-gallery-showcase { background: #fff; border-top: 0; overflow: hidden; padding-top: clamp(84px, 7vw, 108px); padding-bottom: clamp(108px, 9vw, 140px); scroll-margin-top: 132px; width: 100%; }
.pwl-page .pwl-gallery-showcase .chd-project-showcase-intro { margin: 0 auto clamp(42px, 3.5vw, 54px); max-width: 1320px; padding: 0 24px; }
.pwl-page .pwl-gallery-showcase .chd-project-showcase-intro h1,
.pwl-page .pwl-gallery-showcase .chd-project-showcase-intro h2 { font-size: var(--type-heading); line-height: var(--leading-heading); max-width: 880px; }
.pwl-page .pwl-gallery-showcase .chd-project-showcase-intro p { max-width: 760px; }
.pwl-page .pwl-gallery-track { align-items: start; display: grid; gap: clamp(28px, 2.6vw, 40px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); margin: 0 auto; max-width: 1320px; padding: 0 24px; }
.pwl-page .pwl-gallery-card { align-self: start; background: #fff; border: 1px solid rgba(49, 95, 127, .1); border-radius: 8px; box-shadow: 0 12px 28px rgba(16, 47, 73, .09); margin: 0; overflow: hidden; }
.pwl-page .pwl-gallery-link { color: inherit; display: block; height: 100%; text-decoration: none; }
.pwl-page .pwl-gallery-link:hover,
.pwl-page .pwl-gallery-link:focus { color: inherit; text-decoration: none; }
.pwl-page .pwl-gallery-link:focus-visible { outline: 3px solid rgba(142, 217, 232, .9); outline-offset: 3px; }
.pwl-page .pwl-gallery-card img { aspect-ratio: 1 / 1; cursor: pointer; display: block; height: clamp(190px, 18vw, 260px); object-fit: cover; width: 100%; }
.pwl-page .pwl-gallery-card figcaption { background: #fff; border-top: 1px solid rgba(49, 95, 127, .1); padding: 16px 17px 18px; }
.pwl-page .pwl-gallery-card figcaption span { display: block; font-size: var(--type-body); margin-bottom: 7px; }
.pwl-page .pwl-gallery-card figcaption small { display: block; font-size: var(--type-sm); line-height: 1.5; }
@keyframes pwl-trust-enter {
  from {
    -webkit-backdrop-filter: blur(90px) saturate(1.38);
    backdrop-filter: blur(90px) saturate(1.38);
    background-color: rgba(255, 255, 255, .42);
    opacity: .8;
    transform: translateY(8px) scale(.997);
  }
  to {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    background-color: #fff;
    opacity: 1;
    transform: none;
  }
}
@keyframes pwl-service-menu-enter {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}
@keyframes pwl-booking-attention {
  0% { opacity: 0; }
  22% { opacity: .35; }
  68% { opacity: .27; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: no-preference) {
  .pwl-page.pwl-shell-enter .pwl-trust-bar {
    animation: pwl-trust-enter 1140ms cubic-bezier(.22, 1, .36, 1) both;
  }
  .pwl-page.pwl-shell-enter .pwl-service-strip {
    animation: pwl-service-menu-enter 520ms cubic-bezier(.22, 1, .36, 1) 90ms both;
  }
  .pwl-page.pwl-shell-enter .pwl-trust-booking::after {
    animation: pwl-booking-attention 4800ms cubic-bezier(.22, 1, .36, 1) 1210ms both;
    border-radius: 14px;
    box-shadow: inset 0 0 0 2px rgba(22, 136, 168, .27), inset 0 0 22px rgba(22, 136, 168, .21);
    content: '';
    inset: 2px;
    pointer-events: none;
    position: absolute;
  }
  .pwl-page.pwl-motion-ready [data-pwl-reveal] { opacity: 0; transform: translateY(4px); transition: opacity .66s cubic-bezier(.22, 1, .36, 1), transform .66s cubic-bezier(.22, 1, .36, 1); transition-delay: var(--pwl-reveal-delay, 0ms); will-change: opacity, transform; }
  .pwl-page.pwl-motion-ready [data-pwl-reveal].is-revealed { opacity: 1; transform: none; will-change: auto; }
}
@media (prefers-reduced-motion: no-preference) {
  .pwl-page .service-related-cta,
  .pwl-page .review-actions .review-bbb-link {
    transition: box-shadow .2s ease, filter .2s ease, transform .2s ease;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking {
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-icon {
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-arrow {
    transition: color .2s ease, transform .2s ease;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-service-strip a {
    transition: color .18s ease;
  }
  .pwl-page .service-related-cta:hover,
  .pwl-page .service-related-cta:focus-visible {
    box-shadow: 0 10px 20px rgba(16, 47, 73, .16);
    transform: translateY(-2px);
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:hover,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus-visible {
    box-shadow: 0 16px 30px rgba(16, 47, 73, .16), inset 0 1px 0 rgba(255, 255, 255, .9);
    transform: translateY(-3px);
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:hover .pwl-trust-icon,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus-visible .pwl-trust-icon {
    box-shadow: 0 6px 14px rgba(16, 47, 73, .22), inset 0 1px 0 rgba(255, 255, 255, .25);
    transform: scale(1.08);
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:hover .pwl-trust-arrow,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus-visible .pwl-trust-arrow {
    transform: translateX(4px);
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:active {
    box-shadow: 0 5px 12px rgba(16, 47, 73, .1);
    transform: translateY(1px);
  }
  .pwl-page .review-actions .review-bbb-link:hover,
  .pwl-page .review-actions .review-bbb-link:focus-visible {
    box-shadow: 0 8px 18px rgba(16, 47, 73, .1);
    transform: translateY(-1px);
  }
  .pwl-page .pwl-gallery-card { transition: box-shadow .24s ease, transform .24s ease; }
  .pwl-page .pwl-gallery-card img { transition: transform .35s ease; }
  .pwl-page .pwl-gallery-card:hover,
  .pwl-page .pwl-gallery-card:focus-within {
    box-shadow: 0 18px 36px rgba(16, 47, 73, .15);
    transform: translateY(-4px);
  }
  .pwl-page .pwl-gallery-card:hover img,
  .pwl-page .pwl-gallery-card:focus-within img { transform: scale(1.025); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pwl-page .service-related-cta,
  .pwl-page .review-actions .review-bbb-link,
  .pwl-page a.pwl-process-copy,
  .pwl-page a.pwl-process-copy .pwl-process-icon,
  .pwl-page a.pwl-process-copy h3,
  .pwl-page .pwl-gallery-card,
  .pwl-page .pwl-gallery-card img,
  .pwl-page [data-pwl-reveal],
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-icon,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-arrow,
  body.chd-hero-trust-layout.pwl-page .pwl-service-strip a,
  body.chd-hero-trust-layout.pwl-page .pwl-service-strip a > span::after { transition: none; }
  .pwl-page a.pwl-process-copy:hover,
  .pwl-page a.pwl-process-copy:focus-visible,
  .pwl-page a.pwl-process-copy:active,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:hover,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus-visible,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:active,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:hover .pwl-trust-arrow,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking:focus-visible .pwl-trust-arrow { transform: none; }
}
.pwl-page .link-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px 18px; margin: 28px 0 0; padding: 0; list-style: none; }
.pwl-page .link-list a { display: block; padding: 10px 12px; border: 1px solid rgba(49, 95, 127, .18); border-radius: 8px; background: #fff; color: #102f49; }
.pwl-page .link-list a:hover { background: #f4fbfd; color: #1688a8; }
.pwl-page .service-area-groups { display: grid; gap: clamp(32px, 4vw, 48px); margin-top: 32px; }
.pwl-page .service-area-group h2 { color: #174a6a; font-size: clamp(1.35rem, 2vw, 1.7rem); margin: 0; }
.pwl-page .service-area-group .link-list { margin-top: 16px; }
.pwl-page .service-links { padding-left: 1.1rem; }
.pwl-page .service-links li { margin-bottom: 8px; }
.pwl-page .cta-band { background: #f4fbfd; border-top: 1px solid rgba(49, 95, 127, .12); border-bottom: 1px solid rgba(49, 95, 127, .12); padding: 54px 0; }
.pwl-page .footer-links { display: flex; flex-wrap: wrap; gap: 14px 22px; justify-content: center; margin-bottom: 16px; }
.pwl-page .site-footer { padding: 44px 0; background: #102f49; color: #fff; }
.pwl-page .site-footer a, .pwl-page .site-footer p { color: #fff; }
.pwl-page .site-header { padding-top: 10px; padding-bottom: 10px; }
.pwl-page .site-header .topbar-inner { justify-content: flex-end; min-height: 34px; }
.pwl-page .topbar-actions { display: flex; gap: 8px; align-items: center; justify-content: flex-end; width: auto; margin-left: auto; }
.pwl-page .topbar-link { border-radius: 999px; min-height: 42px; padding: 6px 18px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.18); color: #fff; }
.pwl-page .topbar-icon-only { width: 48px; min-width: 48px; padding: 0; justify-content: center; }
.pwl-page .navbar-brand { align-items: center; min-width: 0; }
.pwl-page .navbar-brand-logo { margin-bottom: 0; opacity: .76; }
.pwl-page .navbar-brand-text { color: #20262b; font-size: 1.45rem; letter-spacing: -.018em; line-height: 1.03; white-space: nowrap; }
.pwl-page .navbar-brand-text .brand-main,
.pwl-page .navbar-brand-text .brand-accent { display: inline; }
.pwl-page .navbar-brand-text .brand-accent { color: #d95d2a; }
.pwl-page .navbar-brand-relation { color: #315f7f; display: block; font-size: .62em; font-weight: 500; letter-spacing: .01em; line-height: 1.2; margin-top: 3px; white-space: nowrap; }
.pwl-page .navbar-brand:hover .navbar-brand-text,
.pwl-page .navbar-brand:focus .navbar-brand-text,
.pwl-page .navbar-brand:hover .brand-accent,
.pwl-page .navbar-brand:focus .brand-accent { color: #d95d2a; }
.pwl-page .navbar-nav { gap: 6px; }
.pwl-page .navbar-expand-lg .navbar-nav .nav-link { padding-left: 14px; padding-right: 14px; }
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link { background: transparent !important; border-radius: 0; color: #102f49; font-size: var(--type-sm); font-weight: 700; letter-spacing: 0; position: relative; transition: color .2s ease; }
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link::after { background: currentColor; border-radius: 999px; bottom: 8px; content: ''; height: 2px; left: 14px; opacity: 0; position: absolute; right: 14px; transform: scaleX(.45); transform-origin: center; transition: opacity .2s ease, transform .2s ease; }
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link.active,
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link:hover,
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link:active,
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link:focus,
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link:focus-visible { background: transparent !important; box-shadow: none; color: #d95d2a !important; }
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link:hover::after,
body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link:focus-visible::after { opacity: 1; transform: scaleX(1); }
@media (max-width: 1199px) {
  .pwl-page .navbar-brand { gap: 9px; max-width: 425px; }
  .pwl-page .navbar-brand-logo { width: 62px; }
  .pwl-page .navbar-brand-text { font-size: 1.16rem; }
  .pwl-page .navbar-nav { gap: 3px; }
  .pwl-page .navbar-expand-lg .navbar-nav .nav-link { padding-left: 9px; padding-right: 9px; }
  body.chd-hero-trust-layout.pwl-page {
    --pwl-trust-overlap: 44px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bar {
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
    padding: 18px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell {
    justify-content: flex-start;
    min-height: 82px;
    padding: 10px 12px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb {
    gap: 8px;
    padding-left: 6px;
    padding-right: 6px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb img { max-width: 96px; width: 40%; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb strong { font-size: .95rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell + .pwl-trust-cell::before { display: none; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell--booking {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 0;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.chd-hero-trust-layout.pwl-page .pwl-service-strip a {
    white-space: normal;
  }
}
@media (min-width: 1200px) {
  .pwl-page .navbar-brand { gap: 10px; max-width: min(46vw, 560px); }
  .pwl-page .navbar-brand-logo { width: clamp(66px, 4.7vw, 78px); }
  .pwl-page .pwl-gallery-track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1400px) {
  .pwl-page .navbar-brand { gap: 12px; max-width: min(48vw, 620px); }
  .pwl-page .navbar-brand-logo { width: 82px; }
  .pwl-page .navbar-brand-text { font-size: 1.65rem; }
}
@media (min-width: 768px) {
  .pwl-page .pwl-gallery-showcase { padding-top: 42px; }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .pwl-page .navbar-brand-text { font-size: 1.42rem; }
  .pwl-page .navbar-expand-lg .navbar-nav .nav-link { padding-left: 11px; padding-right: 11px; }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell--booking { padding-left: 20px; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking {
    gap: 12px;
    grid-template-columns: 44px minmax(0, 1fr) 14px;
    padding-left: 14px;
    padding-right: 14px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-icon {
    height: 44px;
    width: 44px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy span { font-size: 1.05rem; }
}
@media (max-width: 991px) {
  .pwl-page .pwl-process-step p { font-size: var(--type-sm); }
  body.chd-hero-trust-layout.pwl-page .navbar-collapse {
    background: rgba(255, 255, 255, .98);
    border-color: rgba(142, 217, 232, .58);
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(16, 47, 73, .11);
    margin-top: 12px;
    padding: 10px;
  }
  body.chd-hero-trust-layout.pwl-page .navbar-nav {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link {
    border: 1px solid transparent;
    border-radius: 10px;
    min-height: 48px;
    padding: 12px 14px;
  }
  body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link::after { display: none; }
  body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link.active,
  body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link:hover,
  body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link:focus-visible {
    background: rgba(217, 93, 42, .08) !important;
    border-color: rgba(217, 93, 42, .14);
  }
}
@media (max-width: 767px) {
  body.chd-hero-trust-layout.pwl-page .hero,
  body.chd-hero-trust-layout.pwl-page .hero .container-fluid,
  body.chd-hero-trust-layout.pwl-page .hero .row,
  body.chd-hero-trust-layout.pwl-page .hero-carousel,
  body.chd-hero-trust-layout.pwl-page .carousel-inner,
  body.chd-hero-trust-layout.pwl-page .carousel-item { min-height: 0; height: auto; }
  body.chd-hero-trust-layout.pwl-page .carousel-image-wrap,
  body.chd-hero-trust-layout.pwl-page .carousel-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    width: 100%;
  }
  .pwl-page { overflow-x: hidden; }
  .pwl-page .container,
  .pwl-page .container-fluid { max-width: 100% !important; width: 100% !important; }
  .pwl-page .site-header .container,
  .pwl-page .navbar .container { max-width: 100%; padding-left: 14px; padding-right: 14px; }
  .pwl-page .site-header .topbar-inner,
  .pwl-page .topbar-actions { justify-content: flex-end; }
  .pwl-page .site-header { padding-top: 4px; padding-bottom: 4px; }
  .pwl-page .topbar-actions { gap: 6px; max-width: 100%; padding: 0; width: 100%; }
  .pwl-page .topbar-link {
    font-size: clamp(.8rem, 3.7vw, .9rem);
    gap: 6px;
    min-height: 38px;
    padding: 4px 10px;
  }
  .pwl-page .topbar-icon-only { flex: 0 0 40px; width: 40px; min-width: 40px; padding: 0; }
  .pwl-page .navbar { padding-top: 6px; padding-bottom: 6px; }
  .pwl-page .navbar .container {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) 30px;
  }
  .pwl-page .navbar-brand { gap: 7px; max-width: none; overflow: hidden; }
  .pwl-page .navbar-brand-logo { flex: 0 0 auto; width: clamp(50px, 14vw, 56px); }
  .pwl-page .navbar-brand-text { font-size: clamp(.9rem, 4.1vw, 1rem); line-height: 1.02; white-space: normal; }
  .pwl-page .navbar-brand-text .brand-main,
  .pwl-page .navbar-brand-text .brand-accent { display: inline; }
  .pwl-page .navbar-brand-relation { font-size: .5em; margin-top: 2px; white-space: nowrap; }
  .pwl-page .navbar-toggler { justify-self: end; }
  body.chd-hero-trust-layout.pwl-page .navbar-collapse {
    grid-column: 1 / -1;
    margin-top: 4px;
    min-width: 0;
    width: 100%;
  }
  body.chd-hero-trust-layout.pwl-page .navbar-nav { grid-template-columns: 1fr; }
  body.chd-hero-trust-layout.pwl-page .navbar-nav .nav-link { min-height: 46px; padding: 11px 14px; }
  body.chd-hero-trust-layout.pwl-page {
    --pwl-trust-overlap: 8px;
    --pwl-trust-radius: 16px;
    --pwl-trust-shadow: 0 14px 30px rgba(16, 47, 73, .14);
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-section .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bar {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell {
    gap: 9px;
    justify-content: flex-start;
    min-height: 72px;
    padding: 9px 14px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb {
    gap: 12px;
    grid-column: 1 / -1;
    justify-content: flex-start;
    min-height: 82px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb img {
    max-width: 120px;
    width: 40%;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb .pwl-trust-copy strong { font-size: 1rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-icon {
    flex-basis: 34px;
    font-size: 1.75rem;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-copy strong { font-size: var(--type-sm); }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-copy span { font-size: var(--type-xs); }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell--booking {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 0;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking {
    grid-template-columns: 48px minmax(0, 1fr) 14px;
    min-height: 74px;
    padding: 10px 14px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy strong { font-size: .72rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy span { font-size: var(--type-title-sm); }
  body.chd-hero-trust-layout.pwl-page .pwl-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
    min-height: 0;
    padding: 7px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-service-strip a {
    font-size: clamp(.875rem, 4vw, var(--type-body));
    padding: 5px 7px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-page-title { margin-top: 34px; }
  body.chd-hero-trust-layout.pwl-page .pwl-page-title h1 { font-size: clamp(1.4rem, 6vw, 1.7rem); }
  .pwl-page .pwl-page-intro { font-size: var(--type-body); margin-bottom: 14px; }
  .pwl-page .pwl-roof-callout { align-items: flex-start; flex-direction: column; gap: 16px; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-section + .cleanup-section { padding-top: 22px; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-section + .pwl-booking-path { padding-top: 28px; }
  .pwl-page .pwl-gallery-showcase .chd-project-showcase-intro h1,
  .pwl-page .pwl-gallery-showcase .chd-project-showcase-intro h2,
  .pwl-page .cleanup-section h2,
  .pwl-page .cta-band h2 { font-size: var(--type-heading); line-height: var(--leading-heading); overflow-wrap: anywhere; }
  .pwl-page .cleanup-section { padding: 54px 0; }
  .pwl-page .pwl-booking-path { padding: 46px 0 48px; }
  .pwl-page .pwl-booking-header { margin: 0; text-align: left; }
  .pwl-page .pwl-booking-header .small-title { gap: 0; letter-spacing: .1em; }
  .pwl-page .pwl-booking-header .small-title::before,
  .pwl-page .pwl-booking-header .small-title::after { display: none; }
  .pwl-page .pwl-process { gap: 16px; grid-template-columns: 1fr; margin-top: 26px; }
  .pwl-page .pwl-process-step { text-align: left; }
  .pwl-page .pwl-process-copy { align-items: start; column-gap: 16px; display: grid; grid-template-columns: 42px minmax(0, 1fr); min-height: 0; padding: 16px; }
  .pwl-page .pwl-process-icon { font-size: 1.35rem; grid-column: 1; grid-row: 1 / 3; height: 42px; margin: 0; width: 42px; }
  .pwl-page .pwl-process-step h3 { margin: 0 0 5px; }
  .pwl-page .pwl-process-step h3,
  .pwl-page .pwl-process-step p { grid-column: 2; margin-left: 0; max-width: 460px; }
  .pwl-page .pwl-process-step p { font-size: var(--type-sm); line-height: var(--leading-body); }
  .pwl-page a.pwl-process-copy { background: #f4fbfd; border-color: rgba(35, 148, 174, .32); box-shadow: 0 8px 20px rgba(16, 47, 73, .08); }
  .pwl-page a.pwl-process-copy:active { background: #e9f7fb; border-color: rgba(35, 148, 174, .52); box-shadow: 0 4px 12px rgba(16, 47, 73, .09); transform: scale(.99); }
  .pwl-page .service-detail-photo { height: clamp(230px, 54vw, 360px); }
  .pwl-page .service-detail-support img { height: clamp(132px, 42vw, 190px); }
  .pwl-page .pwl-service-photo-strip { display: flex; overflow-x: auto; overscroll-behavior-x: contain; padding: 0 0 8px; scroll-padding-left: 0; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .pwl-page .pwl-service-photo-card { flex: 0 0 min(76vw, 290px); scroll-snap-align: start; }
  .pwl-page .service-detail-points { grid-template-columns: 1fr; }
  .pwl-page .service-detail-proof { padding: 14px; }
  .pwl-page .service-detail-proof span { font-size: var(--type-xs); padding: 7px 10px; }
  .pwl-page .review-proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pwl-page .review-actions .service-related-cta,
  .pwl-page .review-actions .review-bbb-link { width: 100%; }
  .pwl-page .pwl-gallery-showcase { padding-top: 46px; padding-bottom: 52px; }
  .pwl-page .pwl-gallery-track { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-left: 14px; padding-right: 14px; }
  .pwl-page .pwl-gallery-card img { height: clamp(150px, 42vw, 230px); }
  .pwl-page .pwl-gallery-card figcaption { padding: 14px; }
  .pwl-page .pwl-gallery-card figcaption span { font-size: var(--type-body); }
  .pwl-page .pwl-gallery-card figcaption small { font-size: var(--type-xs); }
}
@media (max-width: 430px) {
  .pwl-page .review-proof-strip { grid-template-columns: 1fr; }
  .pwl-page .pwl-gallery-track { gap: 12px; }
  .pwl-page .pwl-gallery-card img { height: 42vw; min-height: 145px; }
  .pwl-page .pwl-gallery-card figcaption small { display: none; }
}
@media (max-width: 350px) {
  .pwl-page .site-header { padding-top: 3px; padding-bottom: 3px; }
  .pwl-page .topbar-link {
    font-size: clamp(.72rem, 4vw, .8rem);
    min-height: 34px;
    padding: 3px 8px;
  }
  .pwl-page .topbar-icon-only { flex-basis: 36px; min-width: 36px; width: 36px; }
  .pwl-page .topbar-link .site-header-icon { display: inline-block; }
  .pwl-page .navbar { padding-top: 5px; padding-bottom: 5px; }
  .pwl-page .navbar .container { gap: 6px; padding-left: 10px; padding-right: 10px; }
  .pwl-page .navbar-brand { gap: 6px; }
  .pwl-page .navbar-brand-logo { width: clamp(44px, 16vw, 56px); }
  .pwl-page .navbar-brand-text { font-size: clamp(.82rem, 5vw, 1.125rem); }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell:not(.pwl-trust-cell--booking) {
    gap: 5px;
    padding-left: 6px;
    padding-right: 6px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell:not(.pwl-trust-cell--booking) .pwl-trust-icon {
    flex-basis: 28px;
    font-size: 1.55rem;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell:not(.pwl-trust-cell--booking) .pwl-trust-copy strong { font-size: .76rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell:not(.pwl-trust-cell--booking) .pwl-trust-copy span { font-size: .68rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb { gap: 10px; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb img { max-width: 100px; width: 40%; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb .pwl-trust-copy strong { font-size: .84rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking {
    gap: 10px;
    grid-template-columns: 44px minmax(0, 1fr) 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-icon {
    font-size: 1.2rem;
    height: 44px;
    width: 44px;
  }
}
@media (max-width: 300px) {
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell:not(.pwl-trust-cell--booking) {
    gap: 4px;
    padding-left: 4px;
    padding-right: 4px;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell:not(.pwl-trust-cell--booking) .pwl-trust-icon {
    flex-basis: 26px;
    font-size: 1.4rem;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell:not(.pwl-trust-cell--booking) .pwl-trust-copy strong { font-size: .72rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell:not(.pwl-trust-cell--booking) .pwl-trust-copy span { font-size: .64rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb img { max-width: 82px; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bbb .pwl-trust-copy strong { font-size: .76rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy strong { font-size: .64rem; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy span { font-size: 1rem; }
}
@media (max-width: 480px) {
  /* The fixed call bar uses the footer's mobile clearance; do not leave a second blank body gap. */
  body.pwl-page { padding-bottom: 0; }
}
@media (forced-colors: active) {
  body.chd-hero-trust-layout.pwl-page .pwl-trust-bar,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking {
    background: Canvas;
    border: 1px solid CanvasText;
    box-shadow: none;
    color: CanvasText;
    forced-color-adjust: auto;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-copy strong,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-copy span,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-icon,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy strong,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-copy span,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-icon,
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-arrow { color: CanvasText; }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-booking .pwl-trust-icon {
    background: Canvas;
    border: 1px solid CanvasText;
  }
  body.chd-hero-trust-layout.pwl-page .pwl-trust-cell + .pwl-trust-cell::before { background: CanvasText; }
}

/* PWLA bottom media carousel */
.pwl-media-carousel { background: #f4f9fb; overflow: hidden; padding: 34px 0; }
.pwl-media-carousel__inner { margin: 0 auto; max-width: 1840px; padding: 0 84px; position: relative; }
.pwl-media-carousel__inner::before, .pwl-media-carousel__inner::after { animation: pwl-carousel-edge-in 280ms ease-out both; content: ""; height: calc(100% - 12px); pointer-events: none; position: absolute; top: 2px; width: 60px; z-index: 1; }
.pwl-media-carousel__inner::before { background: linear-gradient(90deg, #f4f9fb 0%, rgba(244, 249, 251, 0) 100%); left: 84px; }
.pwl-media-carousel__inner::after { background: linear-gradient(270deg, #f4f9fb 0%, rgba(244, 249, 251, 0) 100%); right: 84px; }
.pwl-media-carousel__track { display: flex; gap: 24px; overflow-x: auto; overscroll-behavior-x: contain; padding: 2px 0 12px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-color: #2a9bb7 #d9e8ed; scrollbar-width: thin; }
.pwl-media-carousel__item { background: #d9e8ed; flex: 0 0 min(400px, calc((100vw - 240px) / 4)); margin: 0; overflow: hidden; scroll-snap-align: start; }
.pwl-media-carousel__item img { display: block; height: auto; object-fit: cover; width: 100%; }
.pwl-media-carousel__control { align-items: center; background: #fff; border: 1px solid #147f9b; border-radius: 50%; box-shadow: 0 3px 10px rgba(16, 47, 73, .18); color: #0f5167; display: flex; height: 48px; justify-content: center; position: absolute; top: calc(50% - 8px); transform: translateY(-50%); width: 48px; z-index: 2; }
.pwl-media-carousel__control:hover { background: #e9f7fb; color: #0b3f50; }
.pwl-media-carousel__control:active { transform: translateY(-50%) scale(.94); }
.pwl-media-carousel__control:focus-visible, .pwl-media-carousel__track:focus-visible { outline: 3px solid #f0aa25; outline-offset: 3px; }
.pwl-media-carousel__control--prev { left: 18px; }
.pwl-media-carousel__control--next { right: 18px; }
@media (max-width: 991px) { .pwl-media-carousel__inner { padding: 0 24px; } .pwl-media-carousel__track { gap: 16px; padding: 2px 54px 12px; scroll-padding-inline: 54px; } .pwl-media-carousel__item { flex-basis: min(42vw, 300px); } .pwl-media-carousel__control--prev { left: 24px; } .pwl-media-carousel__control--next { right: 24px; } }
@media (max-width: 991px) { .pwl-media-carousel__inner::before { left: 78px; } .pwl-media-carousel__inner::after { right: 78px; } }
@media (max-width: 599px) { .pwl-media-carousel { padding: 26px 0; } .pwl-media-carousel__inner { padding: 0; } .pwl-media-carousel__inner::before, .pwl-media-carousel__inner::after { width: 64px; } .pwl-media-carousel__inner::before { left: 0; } .pwl-media-carousel__inner::after { right: 0; } .pwl-media-carousel__track { gap: 12px; padding: 2px 12vw 10px 12px; scroll-padding-left: 12px; } .pwl-media-carousel__item { flex-basis: 76vw; } .pwl-media-carousel__control { display: none; } }
@keyframes pwl-carousel-edge-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pwl-carousel-nudge-next { 50% { transform: translateX(3px); } }
@keyframes pwl-carousel-nudge-prev { 50% { transform: translateX(-3px); } }
@media (prefers-reduced-motion: no-preference) { .pwl-media-carousel__control:hover .bi-chevron-right { animation: pwl-carousel-nudge-next 360ms ease-in-out; } .pwl-media-carousel__control:hover .bi-chevron-left { animation: pwl-carousel-nudge-prev 360ms ease-in-out; } }
@media (prefers-reduced-motion: reduce) { .pwl-media-carousel__track { scroll-behavior: auto; } .pwl-media-carousel__inner::before, .pwl-media-carousel__inner::after { animation: none; } }
@media (forced-colors: active) { .pwl-media-carousel__inner::before, .pwl-media-carousel__inner::after { display: none; } .pwl-media-carousel__item, .pwl-media-carousel__control { border: 1px solid CanvasText; box-shadow: none; } }
