:root {
  --green: #183e35;
  --green-hover: #102e27;
  --orange: #b8431c;
  --orange-hover: #953313;
  --ink: #233d35;
  --muted: #52635a;
  --line: #d9ded8;
  --soft: #f5f6f1;
  --white: #fff;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button,input,select,textarea {
  font: inherit;
}

button,a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  flex-shrink: 0;
}

figure,p,h1,h2,h3 {
  margin: 0;
}

h1,h2,h3 {
  color: var(--green);
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: -.035em;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

button {
  color: inherit;
}

[hidden] {
  display: none!important;
}

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

input:focus-visible,select:focus-visible,textarea:focus-visible {
  outline-offset: 2px;
}

::selection {
  background: #f3d1b5;
  color: var(--green);
}

.container {
  width: min(1180px,calc(100% - 64px));
  margin-inline: auto;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  background: var(--white);
  padding: 12px 18px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
  transition: background .15s;
}

.button:hover {
  background: var(--orange-hover);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
  gap: 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

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

.text-link .icon {
  color: var(--orange);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.1px;
  text-decoration: none;
  color: var(--green);
  line-height: 1.2;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-check,.brand-dot {
  color: var(--orange);
  stroke: var(--orange);
}

.desktop-nav {
  display: flex;
  gap: 27px;
  align-items: center;
}

.desktop-nav a {
  padding-block: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a:hover {
  text-decoration: underline;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  display: none;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--green);
  transition: transform .15s;
}

.menu-toggle[aria-expanded=true] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded=true] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  padding-block: 12px 20px;
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-weight: 650;
}

.hero {
  background: var(--soft);
  padding: 40px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.06fr) minmax(0,1fr);
  grid-template-areas: "intro photo" "form photo";
  gap: 24px 60px;
  align-items: start;
}

.hero-intro {
  grid-area: intro;
}

.location {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
}

.location .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

h1 {
  font-size: 48px;
  line-height: 1.16;
  letter-spacing: -1.9px;
  font-weight: 800;
}

h1 span {
  display: block;
  color: var(--orange);
}

.hero-description {
  max-width: 490px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-photo {
  grid-area: photo;
  position: relative;
  align-self: stretch;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d4c9b6;
}

.hero-photo picture,.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo picture {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  object-fit: cover;
  object-position: 50% 85%;
}

.hero-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 650;
}

.quote-start {
  grid-area: form;
  padding: 23px 24px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-start h2 {
  font-size: 18px;
  letter-spacing: -.4px;
  margin-bottom: 14px;
}

.customer-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}

.customer-choice label {
  position: relative;
  cursor: pointer;
}

.customer-choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.customer-choice label>span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #a6b3aa;
  border-radius: 5px;
  min-height: 46px;
  font-size: 14px;
  font-weight: 750;
  transition: background .15s;
}

.customer-choice input:checked+span {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.customer-choice input:focus-visible+span {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.quote-fields {
  display: grid;
  grid-template-columns: .85fr 1.3fr;
  gap: 12px;
}

.quote-fields label,label[for=property],label[for=frequency],label[for=message],label[for=company] {
  display: block;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

.field-unit,.optional {
  color: var(--muted);
  font-weight: 500;
}

.quote-fields input,dialog input,dialog select,dialog textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #98a79e;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

input::placeholder,textarea::placeholder {
  color: #66756c;
  opacity: 1;
}

.quote-submit {
  width: 100%;
  margin-top: 14px;
  justify-content: space-between;
}

.demo-note {
  font-size: 11px;
  line-height: 1.55;
  color: #647067;
  margin-top: 10px;
}

.no-js {
  font-size: 13px;
  margin-top: 12px;
}

.service-facts {
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding-block: 24px;
}

.facts-grid>p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.facts-grid>p:first-child {
  justify-content: flex-start;
}

.facts-grid>p:last-child {
  border-right: 0;
}

.facts-grid .icon {
  width: 29px;
  height: 29px;
  color: var(--orange);
}

.facts-grid strong,.facts-grid span>span {
  display: block;
}

.facts-grid strong {
  font-size: 14px;
  font-weight: 750;
}

.facts-grid span>span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.section {
  padding-block: 74px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 12px;
  color: var(--orange);
  letter-spacing: .025em;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 630px;
}

.section-heading>p {
  font-size: 14px;
  color: var(--muted);
  flex-shrink: 0;
}

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

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 8px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.business-card {
  background: #fff;
}

.service-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
}

.service-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-heading p {
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 13px;
}

.service-card>p {
  color: var(--muted);
  font-size: 15px;
  max-width: 450px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  width: 100%;
  justify-content: space-between;
}

.how-section {
  background: var(--soft);
  padding-block: 62px;
}

.how-section .section-heading {
  align-items: center;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 46px;
  padding: 0;
  margin: 38px 0 28px;
}

.steps li {
  position: relative;
  padding-top: 0;
}

.step-number {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #9bab9f;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 750;
  margin-bottom: 18px;
}

.steps h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.steps p {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
}

.price-note {
  display: flex;
  align-items: start;
  gap: 12px;
  border-top: 1px solid #ccd5cc;
  padding-top: 22px;
  font-size: 14px;
  color: var(--muted);
}

.price-note strong {
  color: var(--green);
}

.price-note .icon {
  color: var(--orange);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1.21;
  object-fit: cover;
}

.about-photo figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 3px 8px;
  background: #fff;
  font-size: 10px;
  color: var(--muted);
  border-radius: 2px;
}

.about-content h2 {
  max-width: 410px;
  margin-bottom: 23px;
}

.about-content>p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
}

.area-note {
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin: 22px 0 15px;
}

.area-note .icon {
  color: var(--orange);
}

.area-note h3 {
  font-size: 16px;
  letter-spacing: -.3px;
  margin-bottom: 8px;
}

.area-note p {
  font-size: 13px;
  color: var(--muted);
}

.faq-section {
  border-top: 1px solid var(--line);
  padding-block: 62px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.faq-intro {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
  max-width: 320px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 0;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
  line-height: 1.55;
}

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

.faq-list summary span {
  font-size: 23px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 20px;
  max-width: 560px;
}

.contact-section {
  background: var(--green);
  padding-block: 50px;
  color: white;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-inner h2 {
  color: white;
  font-size: 34px;
}

.contact-inner .eyebrow {
  color: #edb78f;
}

.contact-inner p:not(.eyebrow) {
  font-size: 14px;
  color: #d4e0d8;
  margin-top: 14px;
}

.contact-actions {
  width: 260px;
  flex-shrink: 0;
}

.contact-actions .button {
  width: 100%;
  background: #fff;
  color: var(--green);
  justify-content: space-between;
}

.contact-actions .button:hover {
  background: #f3dfcb;
}

.contact-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  color: white;
  border: 0;
  min-height: 48px;
  font-size: 13px;
  margin-top: 7px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-phone .icon {
  width: 18px;
  height: 18px;
}

.footer {
  padding-top: 35px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 30px;
}

.footer-main>p {
  font-size: 12px;
  color: var(--muted);
  margin-right: auto;
  margin-left: 35px;
}

.footer-main .brand {
  font-size: 22px;
}

.footer-main .brand-symbol {
  width: 34px;
  height: 34px;
}

.footer-domain {
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 13px;
  font-size: 11px;
  color: var(--muted);
}

.footer-bottom>div {
  display: flex;
  gap: 24px;
}

.footer-bottom button {
  border: 0;
  background: none;
  padding: 8px 0;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body:has(dialog[open]) {
  overflow: hidden;
}

dialog {
  border: 1px solid var(--line);
  border-radius: 12px;
  width: min(540px,calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 34px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 80px #102e2733;
}

dialog::backdrop {
  background: #10251fd6;
}

dialog h2 {
  font-size: 27px;
  max-width: 90%;
  margin-bottom: 16px;
}

dialog p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

dialog .eyebrow {
  font-size: 11px;
  max-width: 85%;
  color: var(--orange);
  margin-bottom: 12px;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  font-size: 26px;
  line-height: 1;
}

.details-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#details-form>label {
  margin-top: 16px;
}

#details-form .button {
  width: 100%;
  margin-top: 4px;
}

dialog label {
  font-size: 13px!important;
}

dialog textarea {
  resize: vertical;
}

dialog .demo-note {
  font-size: 11px;
  margin-top: 14px;
}

dialog .selected-place {
  background: var(--soft);
  padding: 10px 12px;
  border-left: 3px solid var(--green);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.back-link {
  display: block;
  background: none;
  border: 0;
  min-height: 44px;
  margin: 8px auto 0;
  padding: 8px;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#quote-summary {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10px 20px;
  font-size: 13px;
  margin-block: 24px;
}

#quote-summary dt {
  color: var(--muted);
}

#quote-summary dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

dialog .summary-notice {
  background: var(--soft);
  padding: 14px;
  font-size: 12px;
}

dialog ul {
  padding-left: 20px;
  font-size: 14px;
}

dialog li {
  margin-block: 10px;
}

#edit-details {
  width: 100%;
}

@media(min-width:1500px) {
  .hero {
    padding-block: 48px;
  }
  .hero-grid {
    gap: 28px 68px;
  }
}

@media(max-width:1100px) {
  .container {
    width: calc(100% - 48px);
  }
  .desktop-nav {
    gap: 16px;
  }
  .header-inner {
    gap: 16px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-symbol {
    width: 35px;
    height: 35px;
  }
  .hero-grid {
    gap: 24px 30px;
  }
  h1 {
    font-size: 43px;
  }
  .quote-start {
    padding: 20px;
  }
  .hero-description {
    font-size: 15px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .section-heading>p {
    max-width: 270px;
    flex-shrink: 1;
  }
  .about-grid {
    gap: 40px;
  }
  .faq-grid {
    gap: 50px;
  }
  .service-card {
    padding: 25px;
  }
  .service-card h3 {
    font-size: 22px;
  }
}

@media(max-width:900px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-inner {
    height: 74px;
  }
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 22px 26px;
  }
  h1 {
    font-size: 36px;
    letter-spacing: -1.3px;
  }
  .desktop-break {
    display: none;
  }
  .hero-description {
    font-size: 14px;
  }
  .location {
    font-size: 11px;
  }
  .quote-start {
    padding: 18px;
  }
  .quote-fields {
    gap: 10px;
  }
  .quote-fields label {
    font-size: 11px;
  }
  .quote-fields input {
    padding: 10px;
  }
  .facts-grid {
    gap: 16px;
  }
  .facts-grid>p {
    gap: 10px;
    align-items: start;
  }
  .facts-grid strong {
    font-size: 12px;
  }
  .facts-grid span>span {
    font-size: 11px;
  }
  .facts-grid .icon {
    width: 23px;
    height: 23px;
  }
  .section {
    padding-block: 56px;
  }
  .section-heading {
    gap: 25px;
  }
  .section-heading h2,h2 {
    font-size: 29px;
  }
  .section-heading>p {
    font-size: 12px;
    min-width: 175px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-card>p,.check-list {
    font-size: 13px;
  }
  .service-grid {
    gap: 18px;
  }
  .service-card .text-link {
    font-size: 13px;
    gap: 10px;
  }
  .how-section {
    padding-block: 48px;
  }
  .steps {
    gap: 26px;
  }
  .steps h3 {
    font-size: 17px;
  }
  .steps p {
    font-size: 13px;
  }
  .how-section .text-link {
    font-size: 13px;
    white-space: nowrap;
  }
  .about-grid {
    gap: 30px;
  }
  .about-content>p:not(.eyebrow) {
    font-size: 13px;
  }
  .about-content h2 {
    font-size: 28px;
  }
  .about-content .text-link {
    font-size: 13px;
  }
  .faq-grid {
    grid-template-columns: .8fr 1.2fr;
    gap: 36px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .faq-list details p {
    font-size: 13px;
  }
  .contact-inner h2 {
    font-size: 29px;
  }
  .contact-actions {
    width: 225px;
  }
  .footer-main>p {
    margin-left: 5px;
  }
}

@media(max-width:700px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    height: 66px;
    gap: 10px;
  }
  .brand {
    font-size: 22px;
    gap: 5px;
    letter-spacing: -.9px;
  }
  .brand-symbol {
    width: 32px;
    height: 32px;
  }
  .header-actions {
    gap: 5px;
  }
  .button-small {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
    text-transform: capitalize;
  }
  .button-small .icon {
    display: none;
  }
  .desktop-label {
    display: none;
  }
  .menu-toggle {
    width: 36px;
    height: 40px;
    padding: 8px;
  }
  .hero {
    padding: 22px 0 24px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "photo" "form";
    gap: 18px;
  }
  .location {
    font-size: 11px;
    gap: 6px;
    margin-bottom: 10px;
  }
  .location .icon {
    width: 15px;
    height: 15px;
  }
  h1 {
    font-size: 33px;
    line-height: 1.16;
    letter-spacing: -1.2px;
    max-width: 520px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 11px;
    max-width: 420px;
  }
  .hero-photo {
    height: 140px;
    border-radius: 7px;
  }
  .hero-photo img {
    object-position: center;
  }
  .hero-photo figcaption {
    padding: 5px 10px;
    background: #183e35eb;
    font-size: 10px;
    text-align: right;
  }
  .quote-start {
    padding: 16px 16px 12px;
    border-radius: 7px;
  }
  .quote-start h2 {
    font-size: 16px;
    margin-bottom: 11px;
  }
  .customer-choice {
    margin-bottom: 13px;
    gap: 8px;
  }
  .customer-choice label>span {
    min-height: 42px;
    font-size: 13px;
    gap: 8px;
  }
  .customer-choice .icon {
    width: 19px;
    height: 19px;
  }
  .quote-fields {
    grid-template-columns: .85fr 1.3fr;
    gap: 10px;
  }
  .quote-fields label {
    font-size: 10px;
  }
  .quote-fields input {
    font-size: 16px;
    min-height: 43px;
    margin-top: 5px;
    padding: 8px 10px;
  }
  .quote-submit {
    min-height: 46px;
    margin-top: 12px;
    font-size: 14px;
    padding: 10px 16px;
  }
  .quote-start .demo-note {
    font-size: 10px;
    line-height: 1.5;
    margin-top: 8px;
    max-width: 300px;
  }
  .facts-grid {
    padding-block: 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .facts-grid>p {
    justify-content: flex-start;
    border: 0;
    align-items: center;
    gap: 12px;
  }
  .facts-grid strong {
    font-size: 12px;
  }
  .facts-grid span>span {
    font-size: 11px;
    margin-top: 0;
  }
  .facts-grid>p>span {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }
  .facts-grid .icon {
    width: 22px;
    height: 22px;
  }
  .section {
    padding-block: 40px;
  }
  .section-heading {
    display: block;
    margin-bottom: 24px;
  }
  .section-heading h2,h2 {
    font-size: 27px;
    letter-spacing: -.8px;
  }
  .section-heading>p {
    margin-top: 12px;
    max-width: none;
    font-size: 13px;
  }
  .section-heading>p br {
    display: none;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 9px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card-heading {
    margin-bottom: 12px;
  }
  .service-card-heading p {
    font-size: 11px;
  }
  .service-icon {
    width: 25px;
    height: 25px;
  }
  .service-card h3 {
    font-size: 21px;
    max-width: 270px;
  }
  .service-card>p {
    font-size: 13px;
  }
  .check-list {
    font-size: 12px;
    gap: 9px;
    margin-block: 18px;
  }
  .service-card .text-link {
    font-size: 13px;
    min-height: 46px;
  }
  .how-section {
    padding-block: 38px;
  }
  .how-section .section-heading>.text-link {
    margin-top: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 23px 0 25px;
  }
  .steps li {
    padding-left: 51px;
  }
  .step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .steps h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .steps p {
    font-size: 13px;
    max-width: none;
  }
  .price-note {
    font-size: 12px;
    gap: 9px;
    padding-top: 18px;
  }
  .price-note .icon {
    width: 20px;
    height: 20px;
  }
  .price-note strong {
    display: block;
    margin-bottom: 4px;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
  }
  .about-photo img {
    aspect-ratio: 1.5;
  }
  .about-content h2 {
    font-size: 27px;
    margin-bottom: 16px;
    max-width: 330px;
  }
  .about-content>p:not(.eyebrow) {
    font-size: 13px;
  }
  .area-note {
    margin-top: 18px;
    padding-top: 18px;
  }
  .area-note h3 {
    font-size: 14px;
  }
  .area-note p {
    font-size: 12px;
  }
  .faq-section {
    padding-block: 38px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-grid h2 {
    max-width: 330px;
  }
  .faq-intro {
    margin-top: 12px;
    font-size: 13px;
    max-width: none;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 17px;
  }
  .faq-list details p {
    font-size: 12px;
  }
  .contact-section {
    padding-block: 35px;
  }
  .contact-inner {
    display: block;
  }
  .contact-inner h2 {
    font-size: 27px;
  }
  .contact-inner p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 12px;
  }
  .contact-actions {
    width: 100%;
    margin-top: 24px;
  }
  .contact-actions .button {
    font-size: 14px;
  }
  .contact-phone {
    font-size: 12px;
  }
  .footer {
    padding-top: 28px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
  }
  .footer-main .brand {
    font-size: 21px;
  }
  .footer-main .brand-symbol {
    width: 29px;
    height: 29px;
  }
  .footer-main>p {
    order: 3;
    margin: 0;
    width: 100%;
    font-size: 11px;
  }
  .footer-domain {
    margin-left: auto;
    font-size: 11px;
  }
  .footer-bottom {
    display: block;
    font-size: 10px;
    padding-block: 15px;
  }
  .footer-bottom>div {
    gap: 20px;
    margin-top: 4px;
  }
  .footer-bottom button {
    font-size: 10px;
  }
  dialog {
    padding: 27px 22px;
    max-height: calc(100dvh - 24px);
    width: calc(100% - 24px);
  }
  dialog h2 {
    font-size: 23px;
  }
  dialog p {
    font-size: 13px;
  }
  dialog input,dialog select,dialog textarea {
    font-size: 16px;
  }
  .details-fields {
    gap: 10px;
  }
  dialog .eyebrow {
    font-size: 10px;
  }
  dialog .button {
    font-size: 13px;
    padding-inline: 16px;
  }
  .back-link {
    font-size: 12px;
  }
  #quote-summary {
    font-size: 12px;
    gap: 9px 14px;
  }
  .dialog-close {
    top: 9px;
    right: 9px;
  }
}

@media(max-width:360px) {
  .container {
    width: calc(100% - 28px);
  }
  .brand {
    font-size: 19px;
  }
  .brand-symbol {
    width: 29px;
    height: 29px;
  }
  .header-actions {
    gap: 2px;
  }
  .button-small {
    font-size: 11px;
    padding-inline: 9px;
  }
  .hero-grid {
    gap: 16px;
  }
  h1 {
    font-size: 30px;
  }
  .hero-description {
    font-size: 12px;
  }
  .location {
    font-size: 10px;
  }
  .hero-photo {
    height: 120px;
  }
  .quote-start {
    padding: 14px 12px 11px;
  }
  .quote-fields {
    grid-template-columns: .8fr 1.3fr;
    gap: 8px;
  }
  .quote-fields label {
    font-size: 9px;
  }
  .facts-grid>p>span {
    display: block;
  }
  .service-card {
    padding: 20px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .check-list {
    font-size: 11px;
  }
  .service-card .text-link {
    font-size: 12px;
  }
  .details-fields {
    grid-template-columns: 1fr;
  }
  .footer-domain {
    font-size: 10px;
  }
  .footer-main {
    gap: 12px;
  }
}

.quote-start {
  position: relative;
}

.anchor-target {
  position: absolute;
  top: 0;
  left: 0;
}

.mobile-label {
  display: none;
}

@media(max-width:700px) {
  .mobile-label {
    display: inline;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*::before,*::after {
    transition: none!important;
  }
}
