@font-face {
  font-family: DM Sans;
  src: url("/assets/dm-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("/assets/dm-sans-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("/assets/dm-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("/assets/cormorant-garamond-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("/assets/cormorant-garamond-latin-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
:root {
  --ink: #25393b;
  --muted: #5b6869;
  --pink: #efadc9;
  --pink-dark: #9c3f6a;
  --blush: #fcf1f5;
  --teal: #13768b;
  --line: #e1e5e2;
  --white: #fff;
  --serif: Cormorant, Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font: 400 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.dialog-open {
  overflow: hidden;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font: 500 clamp(2.8rem, 4.7vw, 4.4rem)/1.04 var(--serif);
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3.5rem, 6.3vw, 6rem);
}
h2 em,
h1 em {
  color: var(--pink-dark);
  font-weight: 500;
}
h3 {
  font-size: 1.23rem;
  font-weight: 500;
  line-height: 1.3;
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  flex-shrink: 0;
  vertical-align: middle;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding: 100px 0;
}
.narrow {
  max-width: 800px;
}
.eyebrow {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 23px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  border: 1px solid var(--pink);
  border-radius: 4px;
  padding: 14px 25px;
  background: var(--pink);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #e997bb;
  border-color: #e997bb;
  transform: translateY(-2px);
}
.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
}
.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.85rem;
  gap: 16px;
}
.button-outline {
  background: transparent;
  border-color: #b7c4c4;
}
.button-outline:hover {
  background: var(--blush);
  border-color: var(--pink);
}
.button-light {
  background: #f5d2e2;
  border-color: #f5d2e2;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid #a5b4b4;
  padding-bottom: 5px;
}
.text-link:hover {
  color: var(--pink-dark);
  border-color: var(--pink-dark);
}
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  background: #fff;
  padding: 14px;
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.demo-bar {
  font-size: 0.75rem;
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 7px 15px;
  letter-spacing: 0.025em;
}
.demo-bar span {
  margin: 0 7px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #f0eeee;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  gap: 30px;
}
.brand img {
  width: 74px;
  height: 63px;
  object-fit: contain;
}
.nav nav {
  display: flex;
  gap: 29px;
  margin-left: 25px;
}
.nav nav a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 0;
}
.nav nav a:hover {
  color: var(--pink-dark);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 500;
}
.phone-link svg {
  width: 17px;
  height: 17px;
}
.menu-toggle {
  display: none;
}
.hero {
  background: var(--blush);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 56px 65px;
}
.hero-copy {
  padding: 20px 0;
}
.hero .eyebrow {
  display: flex;
  gap: 13px;
  align-items: center;
}
.tiny-line {
  width: 26px;
  height: 1px;
  background: var(--teal);
}
.hero h1 {
  font-size: clamp(3.8rem, 6.15vw, 6rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
}
.hero-intro {
  font-size: 1rem;
  max-width: 415px;
  margin-top: 28px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 33px;
}
.hero-proof {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 49px;
}
.hero-proof p {
  font-size: 0.77rem;
  line-height: 1.7;
}
.hero-proof strong {
  font-weight: 500;
  color: var(--ink);
}
.proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid #eddce3;
  border-radius: 50%;
  color: var(--pink-dark);
}
.proof-icon svg {
  width: 19px;
}
.hero-visual {
  position: relative;
  padding-right: 18px;
}
.photo-frame {
  height: 565px;
  border-radius: 130px 4px 4px 4px;
  overflow: hidden;
  position: relative;
}
.photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}
.photo-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.93);
  padding: 6px 12px;
  font-size: 0.67rem;
  letter-spacing: 0.04em;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 36px;
  left: -41px;
  background: #fff;
  box-shadow: 0 8px 36px #243b3b12;
  padding: 21px 28px;
  min-width: 284px;
  border-radius: 4px;
}
.hero-note > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f7e5ed;
  color: var(--pink-dark);
}
.hero-note strong {
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-note p {
  font-size: 0.77rem;
  margin-top: 1px;
}
.vertical-caption {
  position: absolute;
  top: 86px;
  right: -14px;
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.trust-strip {
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 24px;
}
.trust-grid > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.83rem;
  border-right: 1px solid var(--line);
}
.trust-grid > span:last-child {
  border: 0;
}
.trust-grid svg {
  color: var(--teal);
  width: 21px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 43px;
}
.section-heading > p {
  max-width: 325px;
  line-height: 1.8;
  font-size: 0.95rem;
  padding-bottom: 5px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 29px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
  border-radius: 5px;
}
.service-card:hover {
  border-color: #d899b6;
  background: #fffafd;
  transform: translateY(-4px);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  background: var(--blush);
  color: var(--pink-dark);
  border-radius: 50%;
}
.card-number {
  font-size: 0.7rem;
  color: #7b8786;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.18rem;
}
.service-card p {
  font-size: 0.88rem;
  margin-top: 14px;
  margin-bottom: 25px;
  line-height: 1.8;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: auto;
}
.card-link svg {
  width: 19px;
}
.blush {
  background: var(--blush);
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 100px;
  align-items: center;
}
.included-grid > div > p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 25px;
  font-size: 0.93rem;
}
.included-grid .text-link {
  margin-top: 26px;
}
.checklist-panel {
  background: #fff;
  border: 1px solid #ecdfe5;
  padding: 30px;
  border-radius: 5px;
}
.room-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.room-tabs button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 12px 16px;
  color: var(--muted);
  font-size: 0.85rem;
}
.room-tabs button[aria-selected="true"] {
  border-color: var(--pink-dark);
  color: var(--pink-dark);
  font-weight: 600;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.88rem;
}
.checklist svg {
  width: 18px;
  height: 22px;
  color: var(--teal);
}
.panel-note {
  font-size: 0.75rem;
  line-height: 1.8;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 22px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  gap: 105px;
  align-items: center;
}
.about-photo {
  position: relative;
  padding: 0 28px 23px 0;
}
.about-photo > img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px 100px 4px 4px;
}
.experience {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 14px 25px;
  background: #f6d4e4;
  border: 7px solid #fff;
  border-radius: 5px;
}
.experience strong {
  font: 500 4.5rem/1 var(--serif);
}
.experience span {
  font-size: 0.75rem;
  line-height: 1.5;
}
.about-copy > p:not(.eyebrow) {
  font-size: 0.93rem;
  margin-top: 23px;
}
.about-values {
  margin: 27px 0;
}
.about-values > div {
  display: flex;
  gap: 14px;
  margin: 20px 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.about-values svg {
  color: var(--teal);
  width: 22px;
}
.about-values strong {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 3px;
}
.process-section {
  background: var(--ink);
  color: #fff;
  padding: 85px 0;
}
.process-section .eyebrow {
  color: #b6d6d8;
}
.process-section h2 em {
  color: var(--pink);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 55px;
}
.process-grid > div {
  border-top: 1px solid #526365;
  padding-top: 24px;
}
.process-grid > div > span {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--pink);
}
.process-grid h3 {
  margin-top: 18px;
  font-size: 1.1rem;
}
.process-grid p {
  color: #c4cece;
  font-size: 0.87rem;
  margin-top: 13px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 23px;
}
.gallery-item {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  color: var(--ink);
}
.gallery-item > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 5px;
  transition: filter 0.2s;
}
.gallery-item:hover > img {
  filter: brightness(1.05);
}
.gallery-item > span {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  font-size: 0.85rem;
}
.area-section {
  background: #eff5f4;
}
.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 110px;
  align-items: center;
}
.area-grid > div > p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 0.92rem;
}
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 23px 0;
}
.city-tags span {
  font-size: 0.75rem;
  border: 1px solid #c6d6d4;
  border-radius: 3px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.4);
}
.area-checker {
  padding: 35px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #d7e4e1;
}
.area-checker .icon-box {
  background: #eaf4f3;
  color: var(--teal);
  margin-bottom: 23px;
}
.area-checker h3 {
  font-size: 1.3rem;
}
.area-checker p {
  font-size: 0.83rem !important;
  margin-top: 12px !important;
}
.area-checker label {
  font-size: 0.78rem;
  margin-top: 25px;
}
.input-action {
  display: flex;
  gap: 8px;
}
.input-action input {
  min-width: 0;
  flex: 1;
}
.input-action .button {
  padding: 13px;
  gap: 8px;
  min-height: 48px;
}
.input-action .button svg {
  width: 15px;
}
.area-result {
  min-height: 60px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.faq-grid > div > p:not(.eyebrow) {
  margin-top: 26px;
  font-size: 0.9rem;
}
.faq-grid .text-link {
  margin-top: 24px;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 25px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--pink-dark);
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  font-size: 0.86rem;
  padding: 0 25px 24px 0;
  line-height: 1.85;
}
details a {
  text-decoration: underline;
}
.cta {
  padding: 77px 0 85px;
  background: var(--blush);
  text-align: center;
}
.cta h2 {
  font-size: clamp(3rem, 5vw, 4.6rem);
}
.cta p:not(.eyebrow) {
  margin-top: 20px;
}
.cta .button {
  margin-top: 29px;
}
.cta-inner > a {
  display: block;
  margin-top: 17px;
  font-size: 0.77rem;
}
footer {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 45px;
}
.footer-brand {
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--pink);
}
.footer-brand span {
  display: block;
  font-size: 0.65rem;
  color: #d3dede;
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-weight: 400;
}
.footer-grid p {
  color: #c4cece;
  font-size: 0.78rem;
  margin-top: 23px;
}
.footer-grid h3 {
  font-size: 0.84rem;
  margin: 5px 0 20px;
}
.footer-grid > div > a:not(.footer-brand):not(.footer-phone) {
  display: block;
  color: #c4cece;
  font-size: 0.76rem;
  margin-top: 10px;
}
.footer-grid a:hover {
  color: var(--pink);
}
.footer-phone {
  font-size: 0.88rem;
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-phone svg {
  width: 18px;
}
.footer-bottom {
  border-top: 1px solid #4a5e5f;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  margin-top: 48px;
  font-size: 0.67rem;
  color: #b3c1c1;
}
.mobile-bar {
  display: none;
}
.service-hero {
  padding-top: 32px;
  padding-bottom: 75px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 37px;
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 75px;
  align-items: center;
}
.service-hero-grid h1 {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
}
.service-hero-grid > img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 90px 4px 4px 4px;
}
.service-hero-grid .serif-subtitle {
  font: italic 500 1.8rem/1.2 var(--serif);
  color: var(--pink-dark);
  margin: 22px 0;
}
.service-hero-grid .button {
  margin-top: 28px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.detail-grid p {
  margin-top: 20px;
  font-size: 0.92rem;
}
.detail-grid h3 {
  margin-top: 28px;
}
.detail-grid .checklist-panel h3 {
  margin-top: 0;
  margin-bottom: 22px;
}
.narrow > p:not(.eyebrow) {
  margin-block: 24px;
  font-size: 1rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 27px;
  background: #fff;
  border: 1px solid #e7dce1;
  border-radius: 4px;
}
.related-card h3 {
  font-size: 1rem;
  flex: 1;
}
.related-card > svg:first-child {
  color: var(--pink-dark);
}
.related-card:hover {
  border-color: var(--pink-dark);
}
.county-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 45px;
}
.county-grid article {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 35px;
}
.county-grid h2 {
  font-size: 2.5rem;
  margin-top: 23px;
}
.county-grid p {
  margin-top: 20px;
}
.city-list {
  columns: 2;
  list-style: none;
  padding: 0;
  margin-top: 25px;
  font-size: 0.9rem;
}
.city-list li {
  margin-bottom: 12px;
}
.area-callout {
  background: var(--blush);
  padding: 30px;
  margin-top: 30px;
}
.area-callout p {
  margin-top: 10px;
}
.area-callout a {
  text-decoration: underline;
}
.prose h2 {
  font-size: 2rem;
  margin-top: 40px;
}
.prose p {
  font-size: 0.95rem;
}
.full {
  width: 100%;
}
.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.75rem;
}
dialog {
  color: var(--ink);
  border: 0;
  border-radius: 9px;
  width: min(580px, calc(100% - 32px));
  padding: 30px;
  max-height: 90dvh;
  overflow: auto;
  box-shadow: 0 20px 120px #0003;
}
dialog::backdrop {
  background: #1b3039a3;
  backdrop-filter: blur(5px);
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.dialog-top .eyebrow {
  margin: 0;
}
.close-button {
  background: #f2f4f3;
  border: 0;
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}
.close-button:hover {
  background: var(--pink);
}
dialog h2 {
  font-size: 2.65rem;
}
.dialog-intro {
  font-size: 0.88rem;
  margin-top: 14px;
}
.demo-disclosure {
  font-size: 0.75rem;
  background: var(--blush);
  padding: 11px 13px;
  margin-top: 18px;
}
.step-indicator {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  margin: 20px 0;
}
.step-indicator > span {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}
.step-indicator .active {
  color: var(--pink-dark);
  border-color: var(--pink-dark);
  font-weight: 600;
}
fieldset {
  padding: 0;
  border: 0;
  margin: 0;
  min-width: 0;
}
label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  margin: 17px 0 7px;
}
select,
input,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #bdc9c7;
  border-radius: 4px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  min-height: 47px;
}
textarea {
  resize: vertical;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field-help {
  font-size: 0.72rem;
  line-height: 1.6;
  margin-top: 7px;
}
.appliance-fields {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.appliance-fields legend {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0 8px 0 0;
}
.appliance-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.appliance-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
}
.appliance-options label:has(input:checked) {
  background: var(--blush);
  border-color: var(--pink-dark);
}
.appliance-options input {
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--pink-dark);
}
fieldset > .button {
  margin-top: 27px;
}
.dialog-actions {
  display: flex;
  gap: 15px;
  margin-top: 26px;
}
.dialog-actions .button:last-child {
  flex: 1;
}
#quote-result .result-icon {
  color: var(--teal);
  margin: 15px 0;
}
#quote-result > p {
  font-size: 0.85rem;
  margin-top: 12px;
}
#quote-summary {
  background: #f5f8f7;
  padding: 18px;
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}
#quote-summary dt {
  font-weight: 600;
}
#quote-summary dd {
  margin: 0 0 10px;
  color: var(--muted);
}
#quote-summary dd:last-child {
  margin: 0;
}
#quote-result .button {
  margin-top: 10px;
}
.text-button {
  background: none;
  border: 0;
  text-decoration: underline;
  padding: 15px;
  color: var(--muted);
  font-size: 0.8rem;
}
.text-button:hover {
  color: var(--pink-dark);
}
#gallery-dialog {
  width: min(760px, calc(100% - 32px));
  padding: 18px;
}
#gallery-dialog .close-button {
  position: absolute;
  right: 28px;
  top: 28px;
}
#gallery-large {
  max-height: 75dvh;
  width: 100%;
  object-fit: contain;
  background: #f2f5f4;
}
#gallery-caption {
  font-size: 0.8rem;
  padding: 14px 4px 0;
}
@media (min-width: 1600px) {
  .hero-grid {
    gap: 90px;
    padding-block: 75px;
  }
  .photo-frame {
    height: 640px;
  }
  .hero-note {
    bottom: 50px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav {
    gap: 20px;
  }
  .nav nav {
    gap: 20px;
    margin-left: 0;
  }
  .phone-link span {
    display: none;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 0.8rem;
  }
  .hero-note {
    left: -20px;
  }
  .included-grid,
  .about-grid,
  .area-grid {
    gap: 55px;
  }
  .service-card {
    padding: 24px;
  }
  .footer-grid {
    gap: 25px;
  }
}
@media (max-width: 850px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .nav {
    min-height: 85px;
  }
  .nav nav {
    gap: 15px;
  }
  .nav nav a {
    font-size: 0.75rem;
  }
  .nav-actions {
    gap: 16px;
  }
  .nav-actions .phone-link {
    display: none;
  }
  .hero-grid {
    gap: 25px;
    padding-block: 44px 54px;
  }
  .hero h1 {
    font-size: 4.2rem;
  }
  .hero-intro {
    font-size: 0.9rem;
  }
  .hero .eyebrow {
    font-size: 0.65rem;
  }
  .hero-proof {
    margin-top: 28px;
  }
  .hero-proof p {
    font-size: 0.7rem;
  }
  .photo-frame {
    height: 520px;
    border-top-left-radius: 85px;
  }
  .hero-note {
    left: -15px;
    bottom: 25px;
    min-width: 0;
    padding: 16px;
  }
  .hero-note p {
    font-size: 0.7rem;
  }
  .hero-note strong {
    font-size: 0.75rem;
  }
  .hero-note > span {
    width: 35px;
    height: 35px;
  }
  .photo-label {
    display: none;
  }
  .trust-grid > span {
    font-size: 0.7rem;
    gap: 7px;
  }
  .trust-grid svg {
    width: 17px;
  }
  .section {
    padding: 75px 0;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 250px;
    font-size: 0.87rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .included-grid,
  .about-grid,
  .area-grid {
    gap: 35px;
  }
  .room-tabs {
    gap: 0;
  }
  .room-tabs button {
    font-size: 0.75rem;
    padding-inline: 9px;
  }
  .checklist-panel {
    padding: 22px;
  }
  .about-photo > img {
    height: 500px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 0.85rem;
  }
  .about-values {
    margin: 18px 0;
  }
  .process-grid {
    gap: 25px;
  }
  .gallery-item > img {
    height: 290px;
  }
  .gallery-grid {
    gap: 16px;
  }
  .area-checker {
    padding: 25px;
  }
  .input-action {
    flex-direction: column;
  }
  .faq-grid {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .service-hero-grid {
    gap: 35px;
  }
  .service-hero-grid > img {
    height: 470px;
  }
  .detail-grid {
    gap: 35px;
  }
  .related-card {
    padding: 20px;
  }
  .related-card > svg:last-child {
    display: none;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 85px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .demo-bar {
    font-size: 0.64rem;
    padding: 7px 10px;
  }
  .demo-note {
    display: none;
  }
  .header {
    position: sticky;
  }
  .nav {
    min-height: 76px;
    gap: 14px;
  }
  .brand img {
    width: 59px;
    height: 51px;
  }
  .nav-actions {
    margin-left: auto;
  }
  .nav-actions .button {
    font-size: 0.75rem;
    padding: 10px 13px;
    min-height: 40px;
    gap: 9px;
  }
  .menu-toggle {
    display: flex;
    order: 3;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--line);
    width: 40px;
    height: 40px;
    border-radius: 4px;
  }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .nav nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 25px 22px;
    box-shadow: 0 15px 20px #25393b10;
  }
  .nav nav.open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav nav a {
    font-size: 0.9rem;
    padding: 12px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 31px 40px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 0.66rem;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 11vw, 4.5rem);
    line-height: 1.01;
  }
  .hero-intro {
    font-size: 0.93rem;
    max-width: 390px;
    margin-top: 21px;
    line-height: 1.75;
  }
  .hero-actions {
    gap: 18px;
    margin-top: 24px;
  }
  .hero-actions .button {
    padding-inline: 18px;
    min-height: 50px;
    font-size: 0.82rem;
  }
  .hero-actions .text-link {
    font-size: 0.78rem;
    gap: 6px;
  }
  .hero-actions .text-link svg {
    width: 16px;
  }
  .hero-proof {
    margin-top: 25px;
  }
  .hero-proof p {
    font-size: 0.71rem;
  }
  .hero-visual {
    padding-right: 13px;
    margin-top: 10px;
  }
  .photo-frame {
    height: 365px;
    border-radius: 80px 4px 4px 4px;
  }
  .photo-frame img {
    object-position: center 47%;
  }
  .hero-note {
    bottom: 21px;
    left: 15px;
    padding: 15px 18px;
    gap: 12px;
  }
  .hero-note strong {
    font-size: 0.83rem;
  }
  .hero-note p {
    font-size: 0.73rem;
  }
  .vertical-caption {
    right: -10px;
    top: 60px;
    font-size: 0.6rem;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 22px;
    padding-block: 22px;
  }
  .trust-grid > span {
    font-size: 0.7rem;
    justify-content: flex-start;
    border: 0;
    gap: 9px;
  }
  .trust-grid > span:nth-child(even) {
    padding-left: 14px;
  }
  .trust-grid svg {
    width: 20px;
  }
  .section {
    padding: 61px 0;
  }
  .eyebrow {
    font-size: 0.66rem;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 3.05rem;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 0.9rem;
  }
  .services-grid {
    gap: 13px;
  }
  .service-card {
    padding: 20px 17px;
  }
  .card-top {
    margin-bottom: 22px;
  }
  .icon-box {
    width: 39px;
    height: 39px;
  }
  .icon-box svg {
    width: 22px;
  }
  .service-card h3 {
    font-size: 1.02rem;
    line-height: 1.35;
  }
  .service-card p {
    font-size: 0.78rem;
    margin: 13px 0 20px;
  }
  .card-number {
    display: none;
  }
  .card-link {
    font-size: 0.7rem;
    gap: 8px;
  }
  .card-link svg {
    width: 17px;
  }
  .included-grid,
  .about-grid,
  .area-grid,
  .faq-grid,
  .detail-grid,
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .included-grid > div > p:not(.eyebrow) {
    font-size: 0.9rem;
    margin-top: 20px;
  }
  .checklist-panel {
    padding: 22px;
  }
  .room-tabs button {
    flex: 1;
    font-size: 0.77rem;
    padding-inline: 7px;
  }
  .checklist li {
    font-size: 0.82rem;
  }
  .about-photo {
    padding: 0 23px 20px 0;
  }
  .about-photo > img {
    height: 420px;
    object-position: center 40%;
  }
  .about-copy {
    margin-top: 3px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 0.9rem;
  }
  .about-values > div {
    font-size: 0.8rem;
  }
  .process-section {
    padding: 60px 0;
  }
  .process-section .section-heading .button {
    margin-top: 25px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 35px;
    gap: 25px;
  }
  .process-grid > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    padding-top: 20px;
  }
  .process-grid > div > span {
    grid-row: 1/3;
  }
  .process-grid h3 {
    margin: 0;
    font-size: 1.05rem;
  }
  .process-grid p {
    margin-top: 10px;
    font-size: 0.85rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
  }
  .gallery-item:first-child {
    grid-column: 1/-1;
  }
  .gallery-item > img {
    height: 260px;
  }
  .gallery-item:first-child > img {
    height: 330px;
    object-position: center 50%;
  }
  .gallery-item > span {
    font-size: 0.76rem;
  }
  .area-grid > div > p:not(.eyebrow) {
    font-size: 0.9rem;
  }
  .city-tags span {
    font-size: 0.72rem;
  }
  .input-action {
    flex-direction: row;
  }
  .area-checker {
    padding: 24px;
  }
  .area-checker h3 {
    font-size: 1.2rem;
  }
  .faq-grid {
    gap: 28px;
  }
  summary {
    font-size: 0.85rem;
    padding: 19px 0;
  }
  details > p {
    font-size: 0.82rem;
  }
  .cta {
    padding: 60px 0;
  }
  .cta h2 {
    font-size: 3.15rem;
  }
  .footer-grid {
    gap: 37px 23px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child p {
    margin-top: 12px;
  }
  .footer-grid > div > a:not(.footer-brand):not(.footer-phone) {
    font-size: 0.73rem;
  }
  .footer-bottom {
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 9px;
    padding-bottom: 100px;
    font-size: 0.66rem;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 10px 20px max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 18px #25393b09;
  }
  .mobile-bar > a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
  }
  .mobile-bar > a svg {
    width: 18px;
  }
  .mobile-bar .button {
    width: 52%;
  }
  .service-hero {
    padding-top: 24px;
    padding-bottom: 45px;
  }
  .breadcrumbs {
    font-size: 0.7rem;
    margin-bottom: 30px;
    gap: 8px;
  }
  .service-hero-grid h1 {
    font-size: 3.7rem;
  }
  .service-hero-grid p {
    font-size: 0.9rem;
  }
  .service-hero-grid > img {
    height: 350px;
    object-position: center 45%;
  }
  .service-hero-grid .serif-subtitle {
    font-size: 1.7rem;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .related-card > svg:last-child {
    display: block;
  }
  .county-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .county-grid article {
    padding: 25px;
  }
  .county-grid p,
  .area-callout p {
    font-size: 0.9rem;
  }
  dialog {
    padding: 23px 20px;
    max-height: 88dvh;
  }
  dialog h2 {
    font-size: 2.5rem;
  }
  .field-grid {
    gap: 12px;
  }
  select,
  input,
  textarea {
    font-size: 16px;
  }
  .step-indicator {
    font-size: 0.66rem;
  }
  .dialog-actions {
    gap: 9px;
  }
  .dialog-actions .button {
    font-size: 0.78rem;
    padding-inline: 15px;
  }
  .small {
    font-size: 0.75rem;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 30px);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .text-link {
    margin-top: 2px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .input-action {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .header,
  .demo-bar,
  .mobile-bar,
  footer,
  .button {
    display: none;
  }
  body {
    font-size: 12pt;
  }
  .section {
    padding: 25px 0;
  }
  .wrap {
    width: 100%;
  }
}
