:root {
  --ink: #07111a;
  --ink-soft: #27333d;
  --blue: #0180ff;
  --blue-band: #005ab5;
  --blue-dark: #0056b3;
  --blue-soft: #b9daff;
  --paper: #f5f1e9;
  --paper-deep: #e9e0d3;
  --white: #fffdf8;
  --muted: #65707a;
  --silver: #aab0b5;
  --rule: rgba(7, 17, 26, 0.16);
  --light-rule: rgba(255, 255, 255, 0.2);
  --shell: min(1240px, calc(100vw - 64px));
  --section-pad: clamp(5.5rem, 9vw, 9rem);
  --font-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
a,
button,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a,
input,
select,
textarea {
  outline-offset: 4px;
}

:focus-visible {
  outline: 2px solid var(--blue);
}

::selection {
  background: var(--blue);
  color: var(--ink);
}

h1,
h2,
h3,
p,
blockquote,
figure,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
}

h1,
h2,
h3,
p,
blockquote,
figure,
ol {
  margin-bottom: 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--blue-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--blue-soft);
}

.utility-bar {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: var(--blue-band);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.utility-bar p {
  margin: 0;
}

.nav-shell {
  display: grid;
  width: var(--shell);
  min-height: 104px;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: minmax(300px, 1fr) auto minmax(170px, 1fr);
  gap: 2rem;
}

.brand-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  width: min(330px, 30vw);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.2rem);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a,
.text-link,
.arrow-link,
.header-cta,
.mobile-menu a {
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover,
.text-link:hover,
.arrow-link:hover {
  color: var(--blue-dark);
}

.header-cta {
  display: flex;
  align-items: flex-end;
  justify-self: end;
  flex-direction: column;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.header-cta strong {
  color: var(--blue-dark);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.mobile-menu {
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary i,
.mobile-menu summary i::before,
.mobile-menu summary i::after {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.mobile-menu summary i {
  position: relative;
}

.mobile-menu summary i::before,
.mobile-menu summary i::after {
  position: absolute;
}

.mobile-menu summary i::before {
  top: -6px;
}

.mobile-menu summary i::after {
  top: 6px;
}

.mobile-menu nav {
  position: absolute;
  z-index: 20;
  top: 132px;
  right: 20px;
  display: flex;
  width: min(320px, calc(100vw - 40px));
  flex-direction: column;
  padding: 1rem 1.2rem;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(7, 17, 26, 0.16);
}

.mobile-menu nav a {
  padding: 0.8rem 0.1rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: max(660px, calc(100svh - 110px));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(64%, 1160px);
  min-height: max(660px, calc(100svh - 110px));
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 7vw, 7.5rem);
  flex-direction: column;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.7rem;
  color: var(--blue-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker i {
  width: 2rem;
  height: 1px;
  background: var(--blue);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 1.8rem;
  font-size: clamp(3.7rem, 6.5vw, 7.4rem);
  line-height: 0.98;
}

.hero-line {
  display: inline;
}

@media (min-width: 1400px) {
  .hero-line {
    display: block;
    white-space: nowrap;
  }

  .hero-line-final {
    margin-top: 0.08em;
  }
}

.hero-intro {
  max-width: 580px;
  margin-bottom: 2.1rem;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-blue {
  background: var(--blue);
  color: var(--ink);
}

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

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--blue-soft);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--blue-soft);
}

.hero-proof-row {
  display: grid;
  width: min(620px, 100%);
  margin-top: 3.5rem;
  border-top: 1px solid var(--light-rule);
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr);
}

.hero-google-proof {
  display: grid;
  min-height: 86px;
  align-items: center;
  padding: 1rem 1.25rem 1rem 0;
  color: var(--white);
  gap: 0.12rem 1.2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  transition: background-color 180ms ease;
}

.hero-google-proof:hover {
  background: rgba(255, 255, 255, 0.055);
}

.hero-stars {
  align-self: end;
  color: #fbbc04;
  -webkit-text-fill-color: #fbbc04;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.stars {
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-google-copy {
  display: flex;
  align-self: start;
  flex-direction: column;
  grid-column: 1;
}

.hero-google-copy strong {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero-google-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof-arrow {
  align-self: center;
  color: var(--blue-soft);
  font-size: 1rem;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-years {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 1px solid var(--light-rule);
}

.hero-years > strong {
  color: var(--blue);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 0.8;
}

.hero-years > span {
  display: flex;
  flex-direction: column;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-years small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.49rem;
}

.hero-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  background: var(--ink);
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  inset: -6%;
  background: var(--ink);
  content: "";
  filter: blur(26px) saturate(0.72);
  opacity: 0.22;
  transform: scale(1.05);
}

.hero-poster,
.hero-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-video {
  z-index: 1;
}

.hero-poster-mobile,
.hero-video-mobile {
  display: none;
}

.hero-media-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(7, 17, 26, 0.98) 24%, rgba(7, 17, 26, 0.86) 36%, rgba(7, 17, 26, 0.47) 50%, rgba(7, 17, 26, 0.13) 67%, rgba(7, 17, 26, 0.03) 82%, rgba(7, 17, 26, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 17, 26, 0.04) 36%, rgba(7, 17, 26, 0.68) 100%);
  pointer-events: none;
}

.trust-band {
  padding: 2.5rem 0;
  background: var(--blue-band);
  color: var(--white);
}

.trust-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(210px, 1.35fr) repeat(3, minmax(150px, 0.8fr));
  gap: 2rem;
}

.trust-intro h2 {
  max-width: 310px;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  line-height: 0.98;
}

.trust-stat {
  min-height: 94px;
  padding-left: 1.25rem;
  border-left: 1px solid var(--light-rule);
}

.trust-stat strong,
.trust-stat span {
  display: block;
}

.trust-stat strong {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.trust-stat > span:not(.stars) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  line-height: 1.45;
}

.trust-stat .stars {
  display: block;
  margin-bottom: 0.4rem;
}

.services-section,
.estimate-section,
.process-section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 4.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 4rem;
}

.section-heading h2,
.process-intro h2,
.estimate-intro h2,
.family-copy h2,
.reviews-heading h2,
.service-area-layout h2,
.final-cta h2 {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.92;
}

.section-heading h2 {
  letter-spacing: -0.015em;
}

.trust-intro h2 em,
.service-area-layout h2 em,
.final-cta h2 em {
  color: var(--blue-soft);
}

.section-heading-copy {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.service-modules {
  display: grid;
  border-top: 1px solid var(--rule);
}

.service-module {
  display: grid;
  min-height: 410px;
  border-bottom: 1px solid var(--rule);
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.service-module-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.service-module-reverse .service-image {
  order: 2;
}

.service-module-reverse .service-copy {
  order: 1;
}

.service-image {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: var(--paper-deep);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image-carpet img {
  object-position: center 65%;
}

.service-image-rug img {
  object-position: center;
}

.service-image-upholstery img {
  object-position: center 60%;
}

.image-note {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  padding: 0.4rem 0.55rem;
  background: rgba(7, 17, 26, 0.74);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.3rem, 5vw, 5rem);
  flex-direction: column;
}

.service-copy h3 {
  max-width: 560px;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.service-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.arrow-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrow-link span {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1rem;
}

.service-note {
  display: grid;
  padding: 1.3rem 0 0;
  color: var(--muted);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.service-note span {
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-note p {
  max-width: 560px;
  font-size: 0.9rem;
}

.family-section,
.reviews-section,
.service-area-section,
.final-cta {
  background: var(--ink);
  color: var(--white);
}

.family-section {
  padding: var(--section-pad) 0;
}

.family-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 9rem);
}

@media (min-width: 1081px) {
  .family-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
  }
}

.family-collage {
  position: relative;
  min-height: 620px;
}

.family-collage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.family-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-portrait {
  top: 0;
  left: 0;
  width: min(74%, 420px);
  aspect-ratio: 1 / 1.16;
}

.family-portrait img {
  object-position: center;
}

.family-van {
  right: 0;
  bottom: 0;
  width: min(62%, 360px);
  aspect-ratio: 1 / 1.15;
  border: 10px solid var(--ink);
}

.family-collage figcaption {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  left: 1.1rem;
  z-index: 2;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.family-portrait figcaption {
  top: 1rem;
  right: auto;
  bottom: auto;
  width: max-content;
  max-width: calc(100% - 2.2rem);
  padding: 0.55rem 0.65rem;
  background: rgba(7, 17, 26, 0.9);
  white-space: nowrap;
}

.family-van figcaption {
  right: auto;
  width: max-content;
  max-width: calc(100% - 2.2rem);
  padding: 0.55rem 0.65rem;
  background: rgba(7, 17, 26, 0.88);
}

.family-copy h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 4vw, 4.1rem);
  line-height: 1;
  text-wrap: wrap;
}

.family-copy h2 em {
  display: inline-block;
  margin-bottom: 0.07em;
}

@media (min-width: 1081px) {
  .family-final-line {
    display: block;
  }
}

.family-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.family-copy blockquote {
  max-width: 520px;
  margin-bottom: 2.8rem;
  color: var(--blue-soft);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.family-proof {
  display: grid;
  border-top: 1px solid var(--light-rule);
  grid-template-columns: repeat(3, 1fr);
}

.family-proof div {
  display: flex;
  min-height: 104px;
  justify-content: center;
  padding: 1rem 1rem 0 0;
  border-right: 1px solid var(--light-rule);
  flex-direction: column;
}

.family-proof div + div {
  padding-left: 1rem;
}

.family-proof div:last-child {
  border-right: 0;
}

.family-proof span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.process-section-final {
  padding-bottom: clamp(7rem, 12vw, 12rem);
}

.process-section-final + .reviews-section::before {
  display: block;
  width: var(--shell);
  height: 1px;
  margin: 0 auto;
  background: var(--blue);
  opacity: 0.65;
  content: "";
}

.process-intro h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 4vw, 4rem);
  line-height: 1;
  text-wrap: wrap;
}

.process-line,
.final-line {
  display: inline;
}

@media (min-width: 1081px) {
  .process-line,
  .final-line {
    display: block;
    white-space: nowrap;
  }

  .process-line-final,
  .final-line-last {
    margin-top: 0.08em;
  }
}

.process-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-callout {
  max-width: 510px;
  padding: 1.3rem 1.4rem;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
}

.pricing-callout span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--blue-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-callout strong {
  display: block;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.55;
}

.process-list {
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 130px;
  padding: 1.2rem 0;
  border-top: 1px solid var(--rule);
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.process-list li > span {
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.process-list p {
  max-width: 500px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.reviews-section {
  padding: var(--section-pad) 0;
}

.reviews-heading {
  display: grid;
  align-items: end;
  margin-bottom: 4rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 3rem;
}

.reviews-scorecard {
  display: grid;
  min-height: 132px;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--light-rule);
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
}

.google-review-brand {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 0.65rem;
}

.google-g-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.google-stars {
  color: #fbbc04;
  -webkit-text-fill-color: #fbbc04;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.reviews-scorecard strong {
  color: var(--blue-soft);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 0.8;
}

.reviews-scorecard small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
}

.reviews-scorecard > span:last-child {
  color: var(--blue-soft);
  font-size: 1.2rem;
}

.review-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.24fr);
  gap: 4rem;
}

.review-carousel-stage {
  min-height: 330px;
  padding-right: 4rem;
  border-right: 1px solid var(--light-rule);
}

.review-slide {
  position: relative;
  display: flex;
  min-height: 100%;
  margin: 0;
  flex-direction: column;
  justify-content: space-between;
}

.review-slide[hidden] {
  display: none;
}

.review-slide.is-active {
  animation: review-enter 420ms ease both;
}

@keyframes review-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-slide > p {
  max-width: 620px;
  margin: 0 0 auto;
  font-size: clamp(1.55rem, 2.2vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  white-space: pre-line;
}

.review-slide.is-long > p {
  max-width: 720px;
  font-size: clamp(1.25rem, 1.65vw, 1.9rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.review-slide.is-extra-long > p {
  max-width: 760px;
  font-size: clamp(1.08rem, 1.3vw, 1.45rem);
  letter-spacing: -0.015em;
  line-height: 1.22;
}

.featured-review-open,
.featured-review-close {
  color: var(--blue);
  font-weight: 400;
}

.featured-review-open {
  margin-right: 0.03em;
}

.featured-review-close {
  margin-left: 0.06em;
}

.review-slide footer {
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
  gap: 0.15rem;
}

.review-slide footer strong {
  font-size: 0.8rem;
}

.review-slide footer small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.review-carousel-nav {
  display: flex;
  min-height: 390px;
  padding: 0.2rem 0;
  flex-direction: column;
}

.review-carousel-nav > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-carousel-nav > strong {
  margin-top: 1rem;
  color: var(--blue-soft);
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.review-carousel-buttons {
  display: grid;
  margin-top: auto;
  grid-template-columns: repeat(2, 54px);
  gap: 0.65rem;
}

.review-carousel-buttons button {
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid var(--light-rule);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  place-items: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.review-carousel-buttons button:hover,
.review-carousel-buttons button:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--ink);
}

.review-carousel-dots {
  display: flex;
  margin-top: 1.1rem;
  gap: 0.45rem;
}

.review-carousel-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: background 160ms ease, width 160ms ease;
}

.review-carousel-dots button.is-active {
  width: 42px;
  background: var(--blue);
}

.service-area-section {
  padding: var(--section-pad) 0;
  background: var(--blue-dark);
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.service-area-layout h2 {
  margin-bottom: 1.7rem;
}

.service-area-layout > div:first-child > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.town-field {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--light-rule);
  grid-template-columns: repeat(3, 1fr);
}

.town-field span {
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 0.8rem 0.4rem 0.8rem 0;
  border-bottom: 1px solid var(--light-rule);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.estimate-section {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.estimate-intro h2 {
  margin-bottom: 1.6rem;
}

.estimate-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 2rem;
  color: var(--muted);
  line-height: 1.7;
}

.phone-card {
  display: flex;
  max-width: 320px;
  padding: 1.2rem;
  border: 1px solid var(--rule);
  background: var(--white);
  flex-direction: column;
  gap: 0.15rem;
}

.phone-card span {
  color: var(--blue-dark);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-card strong {
  font-size: 1.3rem;
}

.phone-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.estimate-form,
.estimate-success {
  padding: clamp(1.4rem, 3vw, 2.7rem);
  background: var(--white);
}

.form-alert {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid #b64d37;
  background: #fff4ef;
  color: #7e2f20;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule);
  gap: 1rem;
}

.form-heading > span {
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading p,
.privacy-note {
  color: var(--muted);
  font-size: 0.7rem;
}

.form-grid {
  display: grid;
  padding: 1.5rem 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.4rem;
}

.field-wide,
.field-error-wide {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
}

.field label span {
  color: var(--blue-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(7, 17, 26, 0.22);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a9197;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #b64d37;
}

.field-error {
  color: #9f3f2e;
  font-size: 0.68rem;
  font-weight: 700;
}

.field-hint {
  margin: -0.55rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.choice-card {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(7, 17, 26, 0.22);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  flex: 1;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.choice-card:has(input:checked) {
  border-color: var(--blue-dark);
  background: var(--blue-soft);
}

.choice-card input {
  accent-color: var(--blue-dark);
}

.field .choice-card input[type="radio"] {
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  padding: 0;
  margin: 0;
  border: 0;
  flex: 0 0 1.25rem;
}

.form-more {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.form-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.form-more summary::-webkit-details-marker {
  display: none;
}

.form-more summary span {
  font-size: 1.2rem;
  font-weight: 400;
}

.form-more[open] summary span {
  transform: rotate(45deg);
}

.form-grid-more {
  padding-top: 0.5rem;
}

.form-footer {
  display: grid;
  padding-top: 1.5rem;
  gap: 0.8rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.45;
  gap: 0.65rem;
}

.consent-row input {
  margin-top: 0.2rem;
  accent-color: var(--blue-dark);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit {
  width: fit-content;
  margin-top: 0.4rem;
  border: 0;
  cursor: pointer;
}

.privacy-note {
  max-width: 500px;
  margin-top: 0.2rem;
  line-height: 1.45;
}

.estimate-success {
  min-height: 520px;
  border-left: 4px solid var(--blue);
}

.success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 800;
}

.estimate-success h3 {
  max-width: 520px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.estimate-success > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 2rem;
  color: var(--muted);
}

.estimate-success a {
  color: var(--blue-dark);
  font-weight: 800;
}

.final-cta {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--blue-dark);
}

.final-cta-inner {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 3rem;
}

.final-cta h2 {
  max-width: 800px;
  line-height: 0.98;
  text-wrap: wrap;
}

.final-cta-copy {
  max-width: 420px;
}

.final-cta-copy > p {
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.65;
}

.final-actions {
  flex-wrap: wrap;
  row-gap: 0.85rem;
}

.light-link {
  color: var(--white);
}

.light-link:hover {
  color: var(--blue-soft);
}

.site-footer {
  display: grid;
  padding: 2.5rem 32px 3rem;
  background: var(--paper);
  color: var(--ink);
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
}

.site-footer .brand-logo {
  width: min(330px, 42vw);
}

.footer-brand p,
.footer-meta p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  color: var(--blue-dark);
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.4rem;
}

.footer-meta {
  text-align: right;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(1240px, calc(100vw - 48px));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: max(660px, calc(100svh - 110px));
  }

  .hero-copy {
    width: min(67%, 820px);
    padding-inline: clamp(1.5rem, 5vw, 4rem);
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.8vw, 5.8rem);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-intro {
    grid-column: 1 / -1;
  }

  .trust-stat:nth-child(3) {
    border-left: 0;
  }

  .family-layout,
  .process-section,
  .service-area-layout,
  .estimate-section {
    gap: 3.5rem;
  }

  .family-collage {
    min-height: 530px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
    --section-pad: 5.5rem;
  }

  body {
    padding-bottom: 64px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .utility-bar {
    min-height: 24px;
    padding-inline: 16px;
    font-size: 0.47rem;
  }

  .utility-bar p:last-child {
    display: none;
  }

  .nav-shell {
    width: calc(100vw - 32px);
    min-height: 88px;
  }

  .brand-logo {
    width: min(250px, 64vw);
  }

  .site-footer .brand-logo {
    width: min(250px, 64vw);
  }

  .mobile-menu nav {
    top: 112px;
    right: 16px;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    min-height: 670px;
    padding: 4.5rem 16px 3.5rem;
  }

  .hero-kicker {
    margin-bottom: 1.25rem;
    font-size: 0.58rem;
  }

  .hero h1 {
    max-width: 540px;
    margin-bottom: 1.4rem;
    font-size: clamp(3.5rem, 15vw, 5.2rem);
    line-height: 0.98;
  }

  .hero-intro {
    max-width: 440px;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-proof-row {
    width: 100%;
    margin-top: 2.4rem;
    grid-template-columns: minmax(0, 1fr) 128px;
  }

  .hero-google-proof {
    padding-right: 0.75rem;
  }

  .hero-years {
    padding-left: 0.75rem;
  }

  .hero-years strong {
    font-size: 2.7rem;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
  }

  .hero-media::before {
    display: none;
  }

  .hero-poster,
  .hero-video {
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 54% center;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-poster-desktop,
  .hero-video-desktop {
    display: none;
  }

  .hero-poster-mobile,
  .hero-video-mobile {
    display: block;
  }

  .hero-media-shade {
    background:
      linear-gradient(180deg, rgba(7, 17, 26, 0.98) 0%, rgba(7, 17, 26, 0.95) 40%, rgba(7, 17, 26, 0.74) 62%, rgba(7, 17, 26, 0.58) 78%, rgba(7, 17, 26, 0.78) 100%),
      linear-gradient(90deg, rgba(7, 17, 26, 0.34), rgba(7, 17, 26, 0.04));
  }

  .trust-band {
    padding: 2.2rem 0;
  }

  .trust-grid {
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-intro {
    grid-column: 1 / -1;
  }

  .trust-intro h2 {
    max-width: 270px;
    font-size: 2rem;
  }

  .trust-stat {
    min-height: 92px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--light-rule);
    padding-top: 1rem;
  }

  .trust-stat:nth-child(4) {
    border-left: 1px solid var(--light-rule);
    padding-left: 1rem;
  }

  .section-heading,
  .service-note,
  .family-layout,
  .process-section,
  .service-area-layout,
  .estimate-section,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 3rem;
    gap: 1.2rem;
  }

  .section-heading h2,
  .process-intro h2,
  .estimate-intro h2,
  .family-copy h2,
  .reviews-heading h2,
  .service-area-layout h2,
  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .service-module,
  .service-module-reverse {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .service-module-reverse .service-image,
  .service-module-reverse .service-copy {
    order: initial;
  }

  .service-image {
    min-height: 300px;
  }

  .service-copy {
    padding: 2.5rem 0 3rem;
  }

  .service-copy h3 {
    font-size: 2.4rem;
  }

  .service-note {
    gap: 0.7rem;
  }

  .family-collage {
    min-height: 560px;
  }

  .family-portrait {
    width: 76%;
  }

  .family-van {
    width: 58%;
  }

  .family-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .family-proof {
    grid-template-columns: 1fr;
  }

  .family-proof div,
  .family-proof div + div {
    min-height: 0;
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--light-rule);
    flex-direction: row;
  }

  .family-proof div:last-child {
    border-bottom: 0;
  }

  .process-section {
    gap: 3rem;
  }

  .process-list li {
    min-height: 0;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.9rem;
  }

  .reviews-heading {
    align-items: start;
    margin-bottom: 3rem;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .reviews-scorecard {
    width: 100%;
  }

  .review-carousel {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .review-carousel-stage {
    min-height: 300px;
    padding-right: 0;
    border-right: 0;
  }

  .review-slide > p {
    font-size: clamp(1.3rem, 5.6vw, 1.65rem);
  }

  .review-slide.is-long > p {
    font-size: clamp(1.08rem, 4.6vw, 1.3rem);
    line-height: 1.32;
  }

  .review-slide.is-extra-long > p {
    font-size: clamp(1rem, 4.2vw, 1.15rem);
    line-height: 1.38;
  }

  .review-carousel-nav {
    min-height: 0;
    padding-top: 1.4rem;
    border-top: 1px solid var(--light-rule);
  }

  .review-carousel-buttons {
    margin-top: 1.5rem;
  }

  .review-carousel-dots {
    margin-bottom: 0.2rem;
  }

  .town-field {
    grid-template-columns: repeat(2, 1fr);
  }

  .town-field span {
    min-height: 60px;
    font-size: 0.82rem;
  }

  .estimate-section {
    gap: 2.8rem;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .field-error-wide {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
  }

  .final-cta-inner {
    gap: 2.5rem;
  }

  .final-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .site-footer {
    padding: 2.4rem 16px 5rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-meta {
    text-align: left;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 16px;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 -10px 30px rgba(7, 17, 26, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-call-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-call-bar span {
    color: var(--blue-soft);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-call-bar strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    min-height: 650px;
    padding-top: 3.2rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    margin-bottom: 1.15rem;
    font-size: clamp(3.1rem, 14.2vw, 4.05rem);
    line-height: 0.98;
  }

  .hero-intro {
    margin-bottom: 1.35rem;
  }

  .hero-proof-row {
    margin-top: 1.6rem;
    grid-template-columns: 1fr;
  }

  .hero-years {
    min-height: 68px;
    padding: 0.9rem 0 0;
    border-top: 1px solid var(--light-rule);
    border-left: 0;
  }

  .hero-media {
    min-height: 340px;
  }

  .family-collage {
    min-height: 470px;
  }

  .family-portrait {
    width: 82%;
  }

  .family-van {
    width: 62%;
    border-width: 7px;
  }

  .family-collage figcaption {
    font-size: 0.56rem;
    letter-spacing: 0.075em;
  }

  .family-portrait figcaption,
  .family-van figcaption {
    max-width: calc(100% - 1.6rem);
    padding: 0.5rem 0.55rem;
  }

  .choice-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
