@charset "UTF-8";
:root {
  --paper: #f7f7f5;
  --ink: #0a0a0a;
  --muted: #4d4d4d;
  --line: #d9d9d4;
  --mint: #eef3f8;
  --orange: #0B5FA5; /* kept as the CTA token name the template uses; value is the DE accent */
  --accent: #0B5FA5;
  --white: #ffffff;
  --serif: Montserrat, "Avenir Next", sans-serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}
h1, h2, h3, .button, .eyebrow, .price-hero strong, .brand { font-family: Montserrat, "Avenir Next", sans-serif; }
.brand img { width: 72px; height: 72px; }
.hero-badge img { max-width: 320px; width: 100%; height: auto; }
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 25px;
}
body {
  margin: 0;
  padding-bottom: 104px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(56px, 5.5vw, 82px);
}
h2 {
  font-size: clamp(38px, 4vw, 54px);
}
h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.03em;
}
em {
  font-weight: 400;
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin: auto;
}
.site-header {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.3;
  font-size: 17px;
  letter-spacing: 0.065em;
  font-weight: 600;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.27em;
  margin-top: 5px;
}
.site-header nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
}
.site-header nav a {
  text-decoration: none;
  padding: 12px 0;
}
.site-header .button {
  white-space: nowrap;
}
.header-call {
  font-size: 13px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 48px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #27564a;
  transform: translateY(-1px);
}
.button.small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 13px;
}
.button-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  justify-content: center;
}
.button-accent:hover {
  filter: brightness(0.9);
  background: var(--accent);
}
.hero {
  display: grid;
  /* The hero copy needs most of the width for the H1 to stay on two lines at 60px; the figure
     column is capped well under its 320px max so the two never fight for the same space. */
  grid-template-columns: minmax(0, 1fr) minmax(110px, 150px);
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 56px;
  align-items: start;
}
.hero.page-hero {
  grid-template-columns: 1fr;
}
.hero.page-hero .hero-copy {
  max-width: 840px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 14px;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: var(--orange);
  margin-right: 8px;
}
.intro {
  font-size: 18px;
  line-height: 1.5;
  margin: 16px 0 18px;
  color: var(--ink);
}
.hero-description {
  max-width: 440px;
  font-size: 15px;
}
.price-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 20px;
}
.price-hero strong {
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--accent);
}
.price-hero span {
  line-height: 1.4;
  font-size: 16px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.price-hero .price-link,
.price-link {
  text-decoration: none;
  color: inherit;
}
.price-link:hover {
  text-decoration: underline;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.micro {
  font-size: 12px;
  line-height: 1.7;
}
.hero .micro {
  margin-top: 12px;
}
.price-footnote {
  font-size: 13px;
  color: var(--muted);
  max-width: 60ch;
  margin-top: 6px;
}
.offer-note {
  font-size: 11px;
  margin-top: 20px;
  line-height: 1.65;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0;
  text-align: center;
}
.hero-badge img {
  width: min(100%, 320px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}
.hero-badge figcaption {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-promise { font-size: 13px; margin-bottom: 16px; }
.trust { padding-block: 28px 36px; }
.trust h2 { font-size: clamp(26px, 3vw, 36px); }
.trust ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px 32px; padding-left: 20px; font-size: 14px; }
.footer-bottom div { flex-wrap: wrap; }
.header-call { white-space: nowrap; }
.offer-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f0f0e7;
}
.offer-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 23px;
  padding-bottom: 23px;
}
.offer-strip span {
  font-size: 10px;
  letter-spacing: 0.13em;
}
.offer-strip p {
  font-size: 14px;
  color: var(--ink);
}
.offer-strip b {
  color: var(--orange);
  font-weight: 400;
  margin: 0 12px;
}
.offer-strip a {
  font-size: 12px;
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.package,
.process,
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
/* Pages whose eyebrow/H1/intro moved into the shared hero have only one column of
   body content left in these grids; collapse them to a single column. */
.local-content.single,
.faq.single {
  grid-template-columns: 1fr;
}
.section-heading > p:not(.eyebrow) {
  margin-top: 25px;
}
.text-link {
  display: inline-block;
  margin-top: 25px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
}
.package-items article {
  display: flex;
  gap: 26px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.package-items article:first-child {
  padding-top: 0;
}
.number {
  font-family: var(--serif);
  color: var(--orange);
  font-size: 22px;
  line-height: 1.2;
}
.item-tag {
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
}
.package-items h3 {
  margin-bottom: 10px;
}
.package-items article p:last-child {
  font-size: 14px;
}
.equipment-note {
  margin-top: 20px;
}
.scope {
  background: var(--ink);
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  color: var(--paper);
}
.scope .eyebrow {
  color: #c6d8ba;
  margin-bottom: 18px;
}
.scope h2 {
  font-size: 36px;
}
.scope p {
  color: #dee5da;
  font-size: 13px;
}
.scope p + p {
  margin-top: 15px;
}
.scope-bottom {
  padding-top: 15px;
  border-top: 1px solid #557264;
}
.process ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
.process li {
  display: flex;
  gap: 25px;
  padding: 0 0 30px;
}
.process li:last-child {
  padding-bottom: 0;
}
.process li > span {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
}
.process h3 {
  font-size: 19px;
  margin: 2px 0 9px;
}
.process li p {
  font-size: 14px;
}
.area {
  background: var(--mint);
  padding: 65px 0;
}
.area .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 100px;
  align-items: end;
}
.area .eyebrow {
  grid-column: 1/-1;
}
.area p {
  font-size: 16px;
}
.area .micro {
  margin-top: 14px;
  font-size: 12px;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  padding: 22px 30px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 550;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 3px;
  font-size: 22px;
  top: 15px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 14px;
  padding: 0 25px 23px 0;
}
.request {
  background: #e9ede4;
  padding: 85px 0;
}
.request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.request h2 {
  margin-bottom: 25px;
}
.request-grid > div > p:not(.eyebrow) {
  max-width: 350px;
}
.request-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  color: var(--muted);
  font-size: 14px;
}
.request-list li {
  margin: 10px 0;
}
.request-list li:before {
  content: "✓";
  margin-right: 13px;
  color: var(--ink);
}
.form-panel {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(22, 22, 22, 0.03);
}
.form-panel h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  margin-bottom: 18px;
}
.form-panel .eyebrow {
  font-size: 9px;
  margin-bottom: 16px;
}
.form-panel p {
  font-size: 14px;
}
.form-panel .button {
  width: 100%;
  margin-top: 23px;
}
.form-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 0.09em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.form-panel .micro {
  font-size: 11px;
  margin-bottom: 19px;
}
label {
  display: block;
  font-size: 13px;
  margin: 18px 0 6px;
  font-weight: 550;
}
input:not([type="checkbox"]),
select {
  width: 100%;
  min-height: 49px;
  border: 1px solid #aebbad;
  border-radius: 4px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
}
input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #9e361f;
}
.field-error {
  display: block;
  font-size: 12px;
  color: #9e361f;
  min-height: 0;
}
.field-error:not(:empty) {
  margin-top: 4px;
}
.checkbox {
  display: flex;
  gap: 11px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  padding: 5px 0;
}
.checkbox input {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  accent-color: var(--ink);
  margin: 3px 0;
}
.back {
  border: 0;
  background: none;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 0;
  margin-top: 12px;
  font-size: 13px;
  text-decoration: underline;
}
.form-panel #result:not(:empty) {
  border: 1px solid var(--line);
  background: var(--mint);
  padding: 16px;
  margin-top: 18px;
  font-size: 13px;
}
iframe {
  width: 100%;
  height: 850px;
  border: 0;
}
footer {
  padding-top: 45px;
  padding-bottom: 30px;
}
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-top {
  padding-bottom: 35px;
}
.footer-top p {
  font-size: 13px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom div {
  display: flex;
  gap: 25px;
}
.footer-sites {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 16px;
  font-size: 11px;
  color: var(--muted);
}
.footer-sites div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mobile-cta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  gap: 12px;
  padding: 12px 20px max(12px, env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1px solid var(--line);
  z-index: 20;
  box-shadow: 0 -4px 22px rgba(22, 22, 22, 0.03);
}
.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.mobile-cta a[data-phone],
.mobile-cta a[data-text] {
  background: var(--accent);
}
@media (min-width: 900px) {
  .mobile-cta {
    left: 50%;
    right: auto;
    bottom: 16px;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 640px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.16);
  }
  .mobile-cta a {
    border-radius: 999px;
  }
}
.skip {
  position: absolute;
  left: 15px;
  top: -100px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 12px;
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.legal {
  max-width: 760px;
  padding-top: 70px;
  padding-bottom: 90px;
}
.legal h1 {
  font-size: 56px;
  margin-bottom: 30px;
}
.legal h2 {
  font-family: var(--sans);
  font-size: 23px;
  letter-spacing: -0.02em;
  margin: 35px 0 12px;
}
.legal p + p {
  margin-top: 16px;
}
.legal .eyebrow {
  margin-top: 0;
}
@media (min-width: 1500px) {
  .hero {
    gap: 90px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header nav {
    gap: 16px;
  }
  .site-header {
    gap: 20px;
  }
  .hero {
    gap: 32px;
  }
  .package,
  .process,
  .faq,
  .request-grid {
    gap: 55px;
  }
  .scope {
    gap: 35px;
  }
  .site-header { flex-wrap: wrap; padding-block: 16px; }
  .site-header nav { order: 4; width: 100%; justify-content: center; }
  .offer-strip .wrap > span {
    display: none;
  }
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 15px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 86px;
    justify-content: space-between;
    gap: 12px;
  }
  .brand {
    font-size: 12px;
    gap: 9px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 0.2em;
  }
  .brand img {
    width: 32px;
  }
  .site-header nav {
    display: none;
  }
  .site-header .button {
    font-size: 11px;
    padding: 11px;
    min-height: 44px;
    gap: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 34px;
    gap: 35px;
  }
  /* Owner feedback: the hero logo pushed the price and buttons below the fold on mobile;
     hiding it here is what keeps the price and Call/Text buttons visible without scrolling. */
  .hero-badge {
    display: none;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .intro {
    margin-top: 0;
  }
  .hero-description {
    font-size: 14px;
    max-width: 330px;
  }
  .offer-strip .wrap {
    display: block;
    padding: 22px 0;
  }
  .offer-strip p {
    font-size: 11px;
    text-align: center;
  }
  .offer-strip b {
    margin: 0 5px;
  }
  .offer-strip a {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
  }
  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .package,
  .process,
  .faq,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  h2 {
    font-size: 42px;
  }
  .section-heading > p:not(.eyebrow) {
    margin-top: 18px;
  }
  .package-items article {
    gap: 20px;
    padding: 24px 0;
  }
  .scope {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 25px;
  }
  .scope h2 {
    font-size: 33px;
  }
  .scope p {
    font-size: 13px;
  }
  .process li {
    gap: 20px;
    padding-bottom: 28px;
  }
  .area {
    padding: 50px 0;
  }
  .area .wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .area h2 {
    margin-bottom: 25px;
  }
  .area p {
    font-size: 14px;
  }
  .faq {
    gap: 30px;
  }
  summary {
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .request {
    padding: 55px 0;
  }
  .request-grid {
    gap: 30px;
  }
  .form-panel {
    padding: 25px 20px;
  }
  .form-panel h3 {
    font-size: 28px;
  }
  .request h2 {
    font-size: 43px;
  }
  .footer-top {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
  .footer-sites {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  /* The sticky bar carries Call/Text at this width; showing the header's full phone number too
     just wrapped the header onto an extra line. Hiding it keeps the header a single row: logo
     left, Get my quote right. */
  .header-call { display: none; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 20px; }
  .legal h1 {
    font-size: 45px;
  }
  .legal {
    padding-top: 45px;
  }
  .legal h2 {
    font-size: 22px;
  }
  .legal p {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .cta-row .button:nth-child(1),
  .cta-row .button:nth-child(2) {
    flex: 1 1 calc(50% - 6px);
  }
  .cta-row .button:nth-child(3) {
    flex: 1 1 100%;
  }
}
@media (max-width: 360px) {
  .site-header .button span {
    display: none;
  }
  .brand {
    font-size: 11px;
  }
  .offer-strip p {
    font-size: 10px;
  }
  .form-top {
    font-size: 7px;
  }
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.08;
}
.breadcrumbs {
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.6;
}
.local-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.local-content h2 {
  font-size: 42px;
  line-height: 1.1;
}
.local-content h3 {
  margin: 28px 0 15px;
}
.local-content p + p {
  margin-top: 20px;
}
.local-content li {
  margin: 12px 0;
}
.local-content ul {
  padding-left: 22px;
  margin-bottom: 28px;
}
.source-note {
  font-size: 12px;
  line-height: 1.7;
  border-left: 2px solid var(--line);
  padding-left: 16px;
}
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
  font-size: 13px;
}
.area-links a {
  padding: 8px 0;
}
@media (max-width: 760px) {
  .breadcrumbs {
    padding-top: 12px;
    font-size: 11px;
  }
  .local-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .local-content h2 {
    font-size: 34px;
  }
  .local-content p,
  .local-content li {
    font-size: 15px;
  }
  .local-content .source-note {
    font-size: 12px;
  }
  .area-links {
    flex-direction: column;
    gap: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
