:root {
  --navy: #173451;
  --blue: #2b6f91;
  --sky: #dceff4;
  --paper: #fffdf8;
  --peach: #f5b18b;
  --coral: #ad452d;
  --ink: #20313d;
  --line: #c8dce2;
  --white: #fff;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.hello {
  height: 32px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}
.hello a {
  color: #ffd4bd;
  font-weight: 800;
  text-decoration: none;
}
header {
  height: 88px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffdf8ed;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50% 50% 10px 50%;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--peach);
  transform: rotate(-3deg);
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-size: 18px;
  color: var(--navy);
}
.brand small {
  font-size: 11px;
  color: #4d6876;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.nav-call {
  padding: 12px 17px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
}
.hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 7px solid var(--peach);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #173451f7 0,
    #173451dc 40%,
    #1734512f 67%,
    transparent
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  color: #fff;
}
.hero-copy > * {
  max-width: 650px;
}
.kicker {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  color: #ffd4bd;
}
.kicker.blue {
  color: var(--blue);
}
h1 {
  font:
    700 69.6px / 0.98 Georgia,
    serif;
  margin: 14px 0 22px;
  text-wrap: balance;
  text-shadow: 0 5px 24px #0007;
}
.lead {
  font-size: 19px;
  max-width: 590px;
}
.big-call {
  display: inline-flex;
  flex-direction: column;
  min-width: 258px;
  margin-top: 15px;
  padding: 15px 22px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  border-radius: 8px 8px 8px 2px;
  box-shadow:
    7px 7px 0 #f5b18b,
    0 14px 30px #0004;
  transition: transform 0.18s ease;
}
.big-call:hover {
  transform: translateY(-3px);
}
.big-call span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.big-call strong {
  font-size: 27px;
}
.comfort {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.comfort span {
  padding: 7px 10px;
  border: 1px solid #ffffff45;
  border-radius: 999px;
  background: #17345188;
  font-size: 11px;
}
.trust-strip {
  padding: 18px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}
.trust-strip p {
  margin: 0;
  font-size: 14px;
}
.trust-strip a {
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
}
.services,
.faq {
  padding: 90px max(24px, calc((100% - 1180px) / 2));
}
.section-intro {
  max-width: 760px;
  margin-bottom: 35px;
}
.section-intro h2,
.care h2,
.local h2,
.faq h2,
.final h2 {
  font:
    700 55.2px / 1 Georgia,
    serif;
  margin: 10px 0 17px;
  color: var(--navy);
  text-wrap: balance;
}
.final .kicker {
  color: var(--navy);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-grid article {
  position: relative;
  padding: 27px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 2px;
  box-shadow: 6px 6px 0 var(--sky);
}
.service-grid article:nth-child(even) {
  box-shadow: 6px 6px 0 #f9d7c3;
}
.service-grid span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}
.service-grid h3 {
  font-size: 21px;
  line-height: 1.1;
  color: var(--navy);
}
.service-grid p {
  font-size: 14px;
}
.care {
  padding: 90px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  background: #eef7f8;
}
.care figure {
  margin: 0;
  padding: 9px;
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  box-shadow: 14px 14px 0 var(--peach);
}
.care figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.care figcaption {
  padding: 9px 4px 1px;
  font-size: 11px;
  color: #536b77;
}
.care ol {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.care li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 38px 90px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.care li:before {
  content: "0" counter(step);
  color: var(--coral);
  font-weight: 900;
}
.care li span {
  font-size: 14px;
}
.text-call {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
}
.local {
  padding: 70px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 49px,
    #ffffff0b 50px
  );
}
.local h2 {
  color: #fff;
}
.local > p {
  font-size: 17px;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.faq > div:first-child > a {
  font-size: 25px;
  color: var(--coral);
  font-weight: 900;
}
.faq details {
  margin-bottom: 10px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 2px;
  box-shadow: 4px 4px 0 var(--sky);
}
summary {
  cursor: pointer;
  padding: 18px 35px 18px 0;
  font-weight: 900;
  color: var(--navy);
  position: relative;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--coral);
  font-size: 22px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  padding: 0 0 18px;
  margin: 0;
}
.final {
  text-align: center;
  padding: 85px 24px;
  background: #f9d9c6;
  border-top: 7px solid var(--peach);
}
.final h2 {
  max-width: 760px;
  margin: 10px auto 18px;
}
.final .big-call {
  box-shadow: 7px 7px 0 var(--navy);
}
footer {
  padding: 32px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 25px;
  background: #102a40;
  color: #fff;
  align-items: center;
}
footer a {
  text-decoration: none;
}
.footer-brand {
  font-weight: 900;
}
.mobile-call {
  display: none;
}
.mobile-call a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 850px) {
  body {
    padding-bottom: 47px;
  }
  .hello {
    display: none;
  }
  header {
    height: 76px;
    padding: 0 18px;
  }
  .brand > span {
    width: 41px;
    height: 41px;
  }
  .brand strong {
    font-size: 15px;
  }
  .brand small {
    font-size: 9px;
  }
  nav a:not(.nav-call) {
    display: none;
  }
  .nav-call {
    padding: 10px 12px;
  }
  .hero {
    min-height: 650px;
    align-items: flex-end;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #173451fa 0,
      #173451c9 65%,
      #1734511f 100%
    );
  }
  .hero-copy {
    width: calc(100% - 36px);
    padding-bottom: 45px;
  }
  .hero-copy > * {
    max-width: none;
  }
  h1 {
    font-size: 44px;
  }
  .lead {
    font-size: 16px;
  }
  .comfort {
    gap: 6px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .trust-strip a {
    width: max-content;
  }
  .services,
  .faq {
    padding: 65px 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .care,
  .local,
  .faq {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 65px 20px;
  }
  .care figure {
    box-shadow: 8px 8px 0 var(--peach);
  }
  .care li {
    grid-template-columns: 32px 78px 1fr;
  }
  .final {
    padding: 65px 20px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 30px 20px;
  }
  .mobile-call {
    display: block;
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--coral);
    text-align: center;
  }
  .mobile-call a {
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .mobile-call span {
    font-size: 10px;
    text-transform: uppercase;
  }
}

@media (max-width: 850px) {
  .hero {
    min-height: auto;
    padding-top: 300px;
  }

  .hero-copy {
    padding-bottom: 90px;
  }

  .big-call,
  .mobile-call a {
    width: 100%;
  }

  .big-call strong,
  .mobile-call strong {
    font-size: 21.4px;
    line-height: 1.15;
  }
}

.h1-location{display:block;margin-top:14px;font-family:inherit;font-size:16px;line-height:1.25;font-weight:700;letter-spacing:0;text-transform:uppercase}


/* Audit-depth addition: practical homeowner guidance without unsupported claims. */
.service-field-guide{padding:clamp(3.5rem,7vw,6.5rem) 0;background:color-mix(in srgb,currentColor 4%,transparent)}
.service-field-guide .guide-shell{width:min(1120px,calc(100% - 40px));margin:auto}
.service-field-guide .guide-kicker{font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;opacity:.72}
.service-field-guide h2{max-width:18ch;margin:.65rem 0 1rem;font-size:3.4rem;line-height:1.03;letter-spacing:0}
.service-field-guide .guide-intro{max-width:72ch;font-size:1.08rem;line-height:1.75}
.service-field-guide .guide-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem 2rem;margin-top:2.5rem}
.service-field-guide article{padding-top:1.15rem;border-top:2px solid currentColor}
.service-field-guide article h3{margin:0 0 .55rem;font-size:1.22rem;letter-spacing:0}
.service-field-guide article p,.service-field-guide .guide-local p,.service-field-guide .guide-call p{line-height:1.7}
.service-field-guide .guide-lower{display:grid;grid-template-columns:1.25fr .75fr;gap:2rem;margin-top:2.5rem;align-items:start}
.service-field-guide .guide-local,.service-field-guide .guide-call{padding:1.4rem;border:1px solid currentColor;border-radius:6px}
.service-field-guide .guide-call a{display:inline-flex;margin-top:.75rem;font-weight:800;text-decoration:underline;text-underline-offset:4px}
@media(max-width:720px){.service-field-guide .guide-shell{width:min(100% - 28px,1120px)}.service-field-guide .guide-grid,.service-field-guide .guide-lower{grid-template-columns:1fr}.service-field-guide h2{font-size:2.25rem}.service-field-guide{padding:3.5rem 0 6.5rem}}
