:root {
  --paper: #f7f5f0;
  --paper-2: #eeebe4;
  --ink: #080808;
  --soft-ink: #4b4a46;
  --muted: #807d75;
  --line: rgba(8, 8, 8, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --black: #080808;
  --white: #ffffff;
  --red: #b92018;
  --red-dark: #86140f;
  --shadow: 0 28px 90px rgba(8, 8, 8, 0.16);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8,8,8,.035) 1px, transparent 1px),
    linear-gradient(rgba(8,8,8,.03) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0 clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 900;
  letter-spacing: .03em;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  color: var(--soft-ink);
  font-size: .9rem;
  font-weight: 800;
}

.desktop-nav a:hover,
.link-call:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 900;
}

.link-call {
  color: var(--soft-ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 45;
  display: none;
  padding: 12px 20px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(247,245,240,.98);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

body.menu-open .mobile-menu {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 184px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  font-size: .88rem;
}

.btn-red {
  background:
    linear-gradient(135deg, #d63a2d 0%, var(--red) 42%, #7d120e 100%);
  color: white;
  box-shadow: 0 18px 42px rgba(139,20,15,.28);
}

.btn-red:hover {
  background:
    linear-gradient(135deg, #e1473a 0%, #a71b14 46%, var(--red-dark) 100%);
}

.btn-white {
  border-color: var(--line);
  background: rgba(255,255,255,.88);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: start center;
  padding: clamp(42px, 6vw, 68px) clamp(16px, 5vw, 72px) 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(247,245,240,.98) 0%, rgba(247,245,240,.94) 30%, rgba(247,245,240,.48) 52%, rgba(247,245,240,.1) 68%, rgba(8,8,8,.34) 100%),
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.86), transparent 28%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: .72rem;
  font-size: clamp(3.05rem, 5.45vw, 5.7rem);
  line-height: .9;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5.2vw, 5.6rem);
  line-height: .88;
  letter-spacing: -.055em;
}

h3 {
  margin-bottom: .55rem;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: .96;
  letter-spacing: -.035em;
}

h4 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
  line-height: 1.05;
}

.lead {
  max-width: 660px;
  color: var(--soft-ink);
  margin-inline: auto;
  font-size: clamp(.98rem, 1.18vw, 1.08rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: clamp(.75rem, 2vw, 1.15rem);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247,245,240,.86), rgba(247,245,240,.62));
  box-shadow: 0 24px 90px rgba(247,245,240,.42);
  text-align: center;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1rem 0 .9rem;
}

.trust-row {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.trust-row span {
  padding: .62rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  color: var(--soft-ink);
  font-size: .86rem;
  font-weight: 850;
}

.hero-frame {
  position: absolute;
  inset: 0;
  z-index: -2;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 56%;
  border-radius: 0;
  filter: saturate(.56) contrast(1.04) brightness(1.05);
}

body[data-hero="2"] .hero-frame img {
  object-position: center 48%;
  filter: saturate(.72) contrast(1.04) brightness(1.07);
}

body[data-hero="3"] .hero-frame img {
  object-position: center 48%;
  filter: saturate(.58) contrast(1.12) brightness(.95);
}

body[data-hero="3"] .hero::after {
  background:
    linear-gradient(180deg, rgba(247,245,240,.98) 0%, rgba(247,245,240,.9) 30%, rgba(247,245,240,.38) 52%, rgba(8,8,8,.2) 70%, rgba(8,8,8,.5) 100%),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.78), transparent 30%);
}

body[data-hero="4"] .hero-frame img {
  object-position: center 58%;
  filter: saturate(.78) contrast(1.08) brightness(.96);
}

body[data-hero="5"] .hero-frame img {
  object-position: center 62%;
  filter: saturate(.82) contrast(1.06) brightness(1.08);
}

body[data-hero="6"] .hero-frame img {
  object-position: center 50%;
  filter: saturate(.62) contrast(1.1) brightness(.92);
}

body[data-hero="4"] .hero::after,
body[data-hero="5"] .hero::after,
body[data-hero="6"] .hero::after {
  background:
    linear-gradient(180deg, rgba(247,245,240,.99) 0%, rgba(247,245,240,.92) 28%, rgba(247,245,240,.48) 52%, rgba(247,245,240,.08) 68%, rgba(8,8,8,.36) 100%),
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.82), transparent 30%);
}

.hero-badge {
  position: absolute;
  left: clamp(16px, 5vw, 72px);
  bottom: 30px;
  width: min(320px, calc(100% - 56px));
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-color: rgba(8,8,8,.12);
  border-radius: 14px;
  background: rgba(247,245,240,.78);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.hero-badge span {
  display: block;
  margin-bottom: .45rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-size: 1.15rem;
  line-height: 1.05;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  padding: 1.1rem clamp(16px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(217,39,30,.12), transparent 38%),
    rgba(255,255,255,.5);
  color: var(--ink);
}

.reviews {
  background: var(--paper);
}

.review-shell {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 1rem;
  border: 0;
  background: transparent;
}

.reviews-bottom .review-shell {
  grid-template-columns: minmax(280px, .95fr) repeat(3, minmax(0, 1fr));
}

.review-shell article {
  min-height: 300px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 22px 70px rgba(8,8,8,.07);
}

.review-lead {
  background:
    radial-gradient(circle at 85% 10%, rgba(217,39,30,.16), transparent 30%),
    white !important;
}

.review-shell span {
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.review-lead strong {
  display: block;
  margin: 2rem 0 1rem;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.08em;
}

.review-shell p,
.review-card footer span {
  color: var(--soft-ink);
}

.review-lead a {
  display: inline-flex;
  margin-top: 1rem;
  min-height: 46px;
  align-items: center;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--black);
  color: white;
  font-weight: 900;
}

.review-points {
  display: grid;
  align-content: center;
}

.review-points h3 {
  max-width: 540px;
  margin-bottom: 1.2rem;
}

.review-points ul {
  display: grid;
  gap: .82rem;
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--soft-ink);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 750;
}

.review-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
}

.review-card.featured {
  border-color: rgba(217,39,30,.32);
  background:
    radial-gradient(circle at 82% 10%, rgba(217,39,30,.13), transparent 32%),
    rgba(255,255,255,.86);
}

.stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: .08em;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.review-card footer {
  display: grid;
  gap: .28rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-card footer strong {
  color: var(--ink);
  font-size: 1rem;
}

.review-card footer span {
  font-size: .82rem;
  font-weight: 750;
}

.proof-strip a {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.64)),
    var(--white);
  box-shadow: 0 24px 70px rgba(8,8,8,.08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.proof-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(217,39,30,.34);
  box-shadow: 0 30px 80px rgba(8,8,8,.11);
}

.proof-strip span {
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.proof-strip strong {
  font-size: clamp(.98rem, 1.3vw, 1.15rem);
  line-height: 1;
}

.vehicle-marquee {
  max-width: 100vw;
  overflow: hidden;
  contain: paint;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247,245,240,.96), rgba(255,255,255,.78), rgba(247,245,240,.96));
  color: rgba(8,8,8,.45);
}

.vehicle-marquee-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: vehicleMarquee 34s linear infinite;
}

.vehicle-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0 clamp(1.2rem, 3vw, 2.6rem);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes vehicleMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(72px, 11vw, 150px) clamp(16px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}

.intro p:last-child,
.section-head p,
.request-copy p {
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.section-head {
  max-width: 880px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-head.centered {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.work {
  background: var(--paper-2);
}

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.52), rgba(247,245,240,.98) 28%, rgba(238,235,228,.92)),
    radial-gradient(circle at 18% 0%, rgba(217,39,30,.16), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(8,8,8,.08), transparent 32%),
    var(--paper);
}

.services::before {
  content: "";
  position: absolute;
  inset: 36px 7vw auto auto;
  width: min(520px, 52vw);
  height: min(520px, 52vw);
  border: 1px solid rgba(8,8,8,.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(8,8,8,.035) 1px, transparent 1px),
    linear-gradient(rgba(8,8,8,.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .68;
  pointer-events: none;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-package-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.7)),
    var(--white);
  box-shadow: 0 28px 100px rgba(8,8,8,.1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-package-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,39,30,.28);
  box-shadow: 0 34px 115px rgba(8,8,8,.13);
}

.home-package-card.featured {
  border-color: rgba(217,39,30,.38);
  background:
    radial-gradient(circle at 84% 12%, rgba(217,39,30,.17), transparent 31%),
    rgba(255,255,255,.9);
}

.home-package-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(.78) contrast(1.08);
}

.home-package-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: .72rem;
  padding: 1rem;
}

.home-package-card span,
.secondary-services span {
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-package-card h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2.15vw, 2.5rem);
  letter-spacing: -.045em;
}

.home-package-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.8vw, 4.8rem);
  line-height: .85;
  letter-spacing: -.07em;
  overflow-wrap: anywhere;
}

.home-package-card p {
  max-width: 420px;
  color: var(--soft-ink);
  font-weight: 620;
}

.home-package-card ul {
  display: grid;
  gap: .45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.home-package-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--soft-ink);
  font-size: .94rem;
  font-weight: 740;
}

.home-package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
}

.home-package-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  border-radius: 14px;
  background: var(--black);
  color: white;
  font-weight: 900;
}

.home-package-card.featured a {
  background: var(--red);
}

.secondary-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 22px 70px rgba(8,8,8,.06);
}

.secondary-services span {
  margin-right: auto;
}

.secondary-services a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem .82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--soft-ink);
  font-weight: 900;
}

.seo-local {
  background:
    linear-gradient(180deg, rgba(238,235,228,.82), rgba(247,245,240,.94)),
    var(--paper-2);
}

.seo-local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.seo-local-grid p {
  min-height: 220px;
  margin: 0;
  padding: 1.15rem;
  background: rgba(255,255,255,.72);
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 680;
}

.service-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 24px 80px rgba(8,8,8,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,39,30,.26);
  box-shadow: 0 34px 110px rgba(8,8,8,.12);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(.78) contrast(1.05);
}

.service-card-body {
  display: grid;
  align-content: start;
  gap: .76rem;
  padding: 1rem;
}

.service-card-body span,
.service-mini-card span,
.process-grid span,
.package-tag,
.time,
.service-anchor-nav a {
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-card-body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
}

.service-card-body p {
  color: var(--soft-ink);
}

.service-card-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: .76rem 1rem;
  border-radius: 999px;
  background: var(--black);
  color: white;
  font-weight: 900;
}

.service-page {
  background: var(--paper);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(38px, 6vw, 86px) clamp(16px, 5vw, 72px);
  background:
    radial-gradient(circle at 10% 5%, rgba(217,39,30,.16), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.58), transparent 42%);
}

.service-hero-copy {
  max-width: 780px;
}

.service-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 7vw, 7.7rem);
}

.service-hero-copy .lead {
  max-width: 680px;
  margin-inline: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
}

.service-hero-copy .hero-actions {
  justify-content: flex-start;
}

.service-hero-copy .trust-row {
  justify-content: flex-start;
}

.service-hero-media {
  position: relative;
  overflow: hidden;
  min-height: min(620px, 72svh);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  min-height: min(620px, 72svh);
  object-fit: cover;
  filter: saturate(.82) contrast(1.06);
}

.service-anchor-nav {
  position: sticky;
  top: 76px;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: rgba(251,250,247,.88);
  backdrop-filter: blur(18px);
}

.service-anchor-nav a {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-right: 1px solid var(--line);
  color: var(--soft-ink);
  text-align: center;
}

.service-anchor-nav a:last-child {
  border-right: 0;
  color: var(--red);
}

.service-section {
  padding: clamp(68px, 10vw, 138px) clamp(16px, 5vw, 72px);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.service-intro h2 {
  max-width: 760px;
}

.service-copy {
  display: grid;
  gap: 1rem;
}

.service-copy p {
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.service-mini-grid,
.package-grid,
.process-grid,
.service-gallery,
.related-grid {
  display: grid;
  gap: 1rem;
}

.service-mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-mini-grid.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-mini-grid.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-mini-card,
.package-card,
.process-grid article,
.related-grid a {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 22px 70px rgba(8,8,8,.06);
}

.service-mini-card {
  min-height: 260px;
  padding: 1rem;
}

.service-mini-card.featured {
  border-color: rgba(217,39,30,.35);
  background:
    radial-gradient(circle at 85% 12%, rgba(217,39,30,.16), transparent 34%),
    rgba(255,255,255,.86);
}

.service-mini-card p {
  color: var(--soft-ink);
}

.process-section,
.comparison-section,
.service-reviews {
  background: var(--paper-2);
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-grid article {
  display: grid;
  align-content: space-between;
  min-height: 160px;
  padding: 1rem;
}

.process-grid strong {
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.05;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 1.15rem;
}

.package-card.featured {
  border-color: rgba(217,39,30,.42);
  background:
    radial-gradient(circle at 86% 9%, rgba(217,39,30,.22), transparent 32%),
    rgba(255,255,255,.92);
}

.package-tag {
  width: fit-content;
  margin-bottom: .8rem;
  padding: .45rem .58rem;
  border-radius: 999px;
  background: rgba(217,39,30,.1);
}

.price-list {
  display: grid;
  gap: .45rem;
  margin: .6rem 0 1rem;
}

.price-list strong {
  font-size: clamp(1.35rem, 2.5vw, 2.4rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.package-card ul {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding-left: 1rem;
  color: var(--soft-ink);
  font-weight: 750;
  position: relative;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
}

.time {
  margin-top: auto;
  padding-top: 1rem;
}

.comparison-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 22px 70px rgba(8,8,8,.06);
}

.comparison-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--soft-ink);
  font-weight: 740;
}

.tint-section {
  background: var(--black);
  color: white;
}

.tint-section .section-head p {
  color: rgba(255,255,255,.7);
}

.tint-scale {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
}

.tint-scale span {
  display: grid;
  place-items: center;
  min-height: 160px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: rgba(255,255,255, calc(.72 - (var(--shade) * .105)));
  color: white;
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 900;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.service-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--black);
  box-shadow: 0 22px 70px rgba(8,8,8,.06);
}

.service-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.82) contrast(1.06);
}

.service-gallery figcaption {
  padding: .9rem 1rem;
  color: white;
  font-weight: 900;
}

.service-faq .faq-grid {
  max-width: 1060px;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-grid a {
  display: flex;
  align-items: end;
  min-height: 150px;
  padding: 1rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}

.service-request {
  margin-top: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(360px, auto);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: end;
  background: var(--black);
  color: white;
}

.work-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card.wide {
  grid-column: span 2;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .84;
  filter: saturate(.82) contrast(1.08);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8,8,8,.86));
}

.work-card div {
  position: relative;
  z-index: 1;
  padding: 1.1rem;
}

.work-card span,
.trust-flow span,
.special-offer span,
.pricing-direction span,
.add-on-rail span {
  color: #ff9a94;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.work-card p {
  max-width: 520px;
  color: rgba(255,255,255,.82);
}

.trust {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-grid details {
  min-height: 230px;
  padding: 1rem;
  background: rgba(255,255,255,.72);
}

.faq-grid p {
  color: var(--soft-ink);
}

.trust-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.trust-flow article {
  display: grid;
  grid-template-columns: 70px minmax(220px, .58fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding: clamp(1.1rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
}

.trust-flow h3 {
  margin: 0;
}

.trust-flow p {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.pricing {
  background: var(--black);
  color: white;
}

.pricing .section-head p {
  color: rgba(255,255,255,.72);
}

.pricing-simple {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(300px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.special-offer {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 75% 12%, rgba(217,39,30,.42), transparent 34%),
    linear-gradient(145deg, #171717, #0b0b0b);
  box-shadow: 0 34px 110px rgba(0,0,0,.36);
}

.special-offer h3 {
  max-width: 520px;
  margin: .95rem 0 0;
  font-size: clamp(2.6rem, 6vw, 6rem);
}

.special-offer strong {
  display: block;
  margin: .1rem 0 .9rem;
  color: white;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: .8;
  letter-spacing: -.075em;
}

.special-offer p {
  max-width: 560px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.special-offer ul {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .8rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.special-offer li {
  padding: .58rem .72rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.special-offer .btn {
  margin-top: auto;
  width: min(360px, 100%);
}

.pricing-direction {
  display: grid;
  gap: 1rem;
}

.pricing-direction article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .72rem;
  min-height: 160px;
  padding: 1.15rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    #111;
}

.pricing-direction span {
  display: block;
}

.pricing-direction strong {
  color: white;
  font-size: clamp(2.9rem, 5vw, 4.7rem);
  line-height: .86;
  letter-spacing: -.06em;
  overflow-wrap: anywhere;
}

.pricing-direction p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
}

.add-on-rail {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.add-on-rail span {
  display: block;
  margin-bottom: .8rem;
}

.add-on-rail ul {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.add-on-rail li {
  padding: .58rem .72rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.78);
  font-weight: 850;
}

.price-note-box {
  display: grid;
  grid-template-columns: minmax(190px, .35fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-top: 0;
  background: #0d0d0d;
}

.price-note-box strong {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: .95;
}

.price-note-box p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.price-note-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 900;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background:
    radial-gradient(circle at 10% 0%, rgba(217,39,30,.2), transparent 34%),
    radial-gradient(circle at 85% 22%, rgba(255,255,255,.08), transparent 30%),
    var(--black);
  color: white;
}

.request-section .section-head p,
.request-section .request-copy p {
  color: rgba(255,255,255,.7);
}

.contact-card {
  display: grid;
  gap: .35rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: white;
}

.contact-card span {
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card a {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.05em;
}

.contact-card small {
  color: rgba(255,255,255,.5);
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: .4rem;
  color: var(--soft-ink);
  font-size: .9rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf7;
  color: var(--ink);
  padding: .86rem;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(217,39,30,.22);
  border-color: rgba(217,39,30,.45);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .7rem !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  accent-color: var(--red);
}

.legal-small {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.legal-small a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.ghl-widget-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    rgba(255,255,255,.06);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}

.ghl-widget-panel > span {
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ghl-widget-panel h3 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.ghl-widget-panel p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.ghl-widget-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin: .35rem 0;
  padding: 0;
  list-style: none;
}

.ghl-widget-panel li {
  padding: .72rem .8rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: white;
  font-weight: 850;
}

.ghl-widget-panel .legal-small,
.ghl-widget-panel .legal-small a {
  color: rgba(255,255,255,.62);
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--red);
  font-size: .88rem;
  font-weight: 800;
}

.questions {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(238,235,228,.92)),
    var(--paper-2);
}

.questions::before {
  content: "";
  position: absolute;
  inset: 72px auto auto 50%;
  width: min(780px, 92vw);
  height: min(780px, 92vw);
  transform: translateX(-50%);
  border: 1px solid rgba(8,8,8,.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(8,8,8,.04) 1px, transparent 1px),
    linear-gradient(rgba(8,8,8,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .7;
  pointer-events: none;
}

.faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
  gap: .7rem;
  border: 0;
  background: transparent;
}

.faq-grid details {
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(8,8,8,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 60px rgba(8,8,8,.06);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--black);
  color: white;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-grid details[open] {
  background: rgba(255,255,255,.9);
}

.faq-grid details[open] summary::after {
  content: "-";
  background: var(--red);
}

.faq-grid p {
  max-width: 760px;
  margin: -0.35rem 1.1rem 1.1rem;
  color: var(--soft-ink);
  font-size: 1rem;
}

.site-footer {
  padding: clamp(72px, 9vw, 120px) clamp(16px, 5vw, 72px) calc(80px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fbfaf7;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, .55fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
  max-width: 1280px;
  margin-inline: auto;
}

.footer-brand {
  display: grid;
  gap: .42rem;
}

.footer-kicker {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-brand strong {
  color: var(--red);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.footer-brand span,
.footer-brand a {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 750;
}

.footer-brand a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.footer-brand details {
  max-width: 560px;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-brand summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.footer-brand details p {
  margin: .8rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 1.05rem;
  justify-items: end;
  text-align: right;
}

.footer-links a {
  color: var(--muted);
  font-size: clamp(.94rem, 1.4vw, 1.1rem);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a:nth-child(6) {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(430px, calc(100% - 28px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(10,10,10,.82);
  box-shadow: 0 24px 80px rgba(8,8,8,.28);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: white;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-cta a:nth-child(2) {
  background:
    linear-gradient(135deg, #d63a2d, #96170f);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}

.mobile-cta a:last-child {
  border-right: 0;
}

@media (max-width: 1060px) {
  .hero,
  .request-section,
  .service-hero,
  .service-intro {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .review-shell,
  .home-package-grid,
  .seo-local-grid,
  .service-card-grid,
  .process-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-bottom .review-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-mini-grid,
  .service-mini-grid.columns-2,
  .service-mini-grid.columns-3,
  .service-gallery,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-simple,
  .price-note-box {
    grid-template-columns: 1fr;
  }

  .trust-flow article {
    grid-template-columns: 58px 1fr;
  }

  .trust-flow p {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
    background-size: 54px 54px;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding: 0 16px;
  }

  .brand {
    gap: .62rem;
    font-size: .95rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

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

  .menu-button {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(8,8,8,.08);
  }

  .mobile-menu {
    inset: 64px 12px auto;
    padding: 8px 16px 18px;
    border: 1px solid var(--line);
    border-radius: 0 0 22px 22px;
    background: rgba(251,250,247,.97);
    box-shadow: 0 28px 90px rgba(8,8,8,.18);
  }

  .hero {
    min-height: auto;
    padding: 26px 16px 28px;
    place-items: start center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(247,245,240,.99) 0%, rgba(247,245,240,.96) 40%, rgba(247,245,240,.52) 62%, rgba(8,8,8,.28) 100%),
      radial-gradient(circle at 50% 18%, rgba(255,255,255,.9), transparent 30%);
  }

  h1 {
    max-width: 350px;
    margin-inline: auto;
    font-size: clamp(2.35rem, 11.6vw, 3.35rem);
    line-height: .94;
    letter-spacing: -.052em;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.55rem);
    line-height: .93;
    letter-spacing: -.05em;
  }

  h3 {
    font-size: clamp(1.35rem, 7vw, 2.15rem);
  }

  .eyebrow {
    margin-bottom: .72rem;
    font-size: .68rem;
    letter-spacing: .14em;
  }

  .hero-copy {
    width: 100%;
    padding: .7rem .15rem 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(247,245,240,.9), rgba(247,245,240,.66));
  }

  .lead {
    max-width: 350px;
    font-size: .95rem;
    line-height: 1.45;
  }

  .hero-frame img {
    min-height: 100%;
    object-position: center bottom;
    filter: saturate(.62) contrast(1.06) brightness(1.08);
  }

  .hero-actions .btn,
  .lead-form .btn {
    width: 100%;
  }

  .hero-actions {
    gap: .68rem;
    margin: .9rem 0 .9rem;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .42rem;
    max-width: 360px;
    margin-inline: auto;
  }

  .trust-row span {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: .55rem .64rem;
    font-size: .76rem;
    text-align: center;
  }

  .hero-badge {
    display: none;
  }

  .work-grid,
  .faq-grid,
  .form-grid,
  .review-shell,
  .home-package-grid,
  .seo-local-grid,
  .service-card-grid,
  .service-mini-grid,
  .service-mini-grid.columns-2,
  .service-mini-grid.columns-3,
  .process-grid,
  .package-grid,
  .service-gallery,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .reviews-bottom .review-shell {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    gap: .72rem;
    padding: .9rem 16px;
  }

  .vehicle-marquee span {
    min-height: 54px;
    padding-inline: 1rem;
    font-size: .9rem;
    letter-spacing: .1em;
  }

  .proof-strip a {
    min-height: 78px;
    padding: .92rem 1rem;
    border-radius: 18px;
  }

  .section-head,
  .section-head.centered {
    margin-bottom: 1.55rem;
    text-align: left;
  }

  .section-head p,
  .request-copy p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .review-shell article {
    min-height: 0;
    padding: 1rem;
    border-radius: 18px;
  }

  .reviews-bottom h2 {
    font-size: clamp(2rem, 8.8vw, 3rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .review-lead strong {
    margin: 1.25rem 0 .8rem;
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .review-lead a {
    width: 100%;
    justify-content: center;
  }

  .review-card {
    min-height: 220px;
  }

  .review-card p {
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .home-package-card {
    min-height: 0;
    border-radius: 18px;
  }

  .home-package-card img {
    aspect-ratio: 16 / 10;
  }

  .home-package-card > div {
    padding: 1rem;
  }

  .home-package-card strong {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  .home-package-card a {
    border-radius: 16px;
  }

  .secondary-services {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .secondary-services a {
    justify-content: center;
    width: 100%;
  }

  .seo-local-grid {
    border-radius: 20px;
  }

  .seo-local-grid p {
    min-height: 0;
    padding: 1rem;
    font-size: .98rem;
  }

  .review-points {
    align-content: start;
  }

  .review-points li {
    font-size: .98rem;
    line-height: 1.4;
  }

  .pricing-simple {
    grid-template-columns: 1fr;
  }

  .special-offer {
    min-height: 0;
    padding: 1rem;
    border-radius: 22px;
  }

  .special-offer h3 {
    margin-top: .72rem;
    font-size: clamp(2.25rem, 12vw, 3.9rem);
  }

  .special-offer strong {
    margin-bottom: .7rem;
    font-size: clamp(5.25rem, 28vw, 7.7rem);
  }

  .special-offer p {
    font-size: 1rem;
  }

  .special-offer ul {
    display: grid;
    gap: .48rem;
  }

  .special-offer li {
    border-radius: 14px;
  }

  .special-offer .btn {
    width: 100%;
  }

  .pricing-direction article {
    min-height: 0;
    padding: 1rem;
    border-radius: 18px;
  }

  .pricing-direction strong {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
  }

  .add-on-rail {
    border-radius: 18px;
  }

  .add-on-rail ul {
    gap: .44rem;
  }

  .add-on-rail li {
    padding: .52rem .62rem;
    font-size: .86rem;
  }

  .price-note-box {
    gap: .85rem;
    padding: 1rem;
    border-radius: 18px;
  }

  .price-note-box a {
    width: 100%;
  }

  .faq-grid summary {
    align-items: flex-start;
    min-height: 64px;
    padding: .95rem 1rem;
    font-size: 1rem;
  }

  .faq-grid p {
    margin: -.2rem 1rem 1rem;
    font-size: .95rem;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
    text-align: left;
  }

  .footer-bottom {
    display: grid;
  }

  .work-card.large,
  .work-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .work-card {
    min-height: 310px;
  }

  .work-card div {
    padding: 1rem;
  }

  .trust-flow article {
    grid-template-columns: 42px 1fr;
    gap: .8rem 1rem;
    padding: 1.05rem 0;
  }

  .trust-flow span {
    padding-top: .18rem;
  }

  .trust-flow h3 {
    font-size: clamp(1.28rem, 7vw, 1.9rem);
  }

  .trust-flow p {
    grid-column: 2;
    font-size: .98rem;
    line-height: 1.5;
  }

  .request-section {
    gap: 1.5rem;
  }

  .service-hero {
    min-height: auto;
    padding: 36px 16px 32px;
  }

  .service-hero-copy h1 {
    max-width: 390px;
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .service-hero-copy .lead {
    max-width: 390px;
    font-size: .98rem;
  }

  .service-hero-copy .hero-actions {
    justify-content: stretch;
  }

  .service-hero-copy .hero-actions .btn {
    width: 100%;
  }

  .service-hero-media {
    min-height: 300px;
    border-radius: 22px;
  }

  .service-hero-media img {
    min-height: 300px;
  }

  .service-anchor-nav {
    top: 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-anchor-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    font-size: .68rem;
  }

  .service-section {
    padding: 64px 16px;
  }

  .service-mini-card,
  .package-card {
    min-height: 0;
    border-radius: 20px;
  }

  .package-card {
    padding: 1rem;
  }

  .package-grid {
    gap: .8rem;
  }

  .price-list strong {
    font-size: clamp(1.4rem, 8vw, 2.25rem);
  }

  .process-grid article {
    min-height: 120px;
    border-radius: 18px;
  }

  .service-gallery figure,
  .comparison-table,
  .related-grid a,
  .service-card {
    border-radius: 20px;
  }

  .tint-scale {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tint-scale span {
    min-height: 112px;
  }

  .contact-card {
    border-radius: 18px;
  }

  .ghl-widget-panel {
    border-radius: 22px;
  }

  .ghl-widget-panel ul {
    grid-template-columns: 1fr;
  }

  .lead-form {
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,.26);
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 50px;
    border-radius: 14px;
    font-size: 16px;
  }

  .legal-small {
    font-size: .72rem;
  }

  .section {
    padding: 64px 16px;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(247,245,240,.94);
    box-shadow: 0 -18px 60px rgba(8,8,8,.16);
    transform: none;
    backdrop-filter: blur(20px);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 58px;
    border-right: 1px solid var(--line);
    font-weight: 900;
  }

  .mobile-cta a:nth-child(2) {
    background: var(--red);
    color: white;
  }
}

@media (max-width: 430px) {
  .topbar {
    padding: 0 14px;
  }

  .brand span {
    font-size: .9rem;
  }

  .hero {
    padding: 24px 12px 26px;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(2.2rem, 11.2vw, 3.05rem);
  }

  .lead {
    max-width: 330px;
    font-size: .92rem;
  }

  .btn {
    min-width: 0;
  }

  .trust-row {
    max-width: 330px;
  }

  .trust-row span {
    font-size: .72rem;
    padding-inline: .45rem;
  }

  .proof-strip,
  .section {
    padding-inline: 14px;
  }

  .special-offer strong {
    font-size: clamp(4.7rem, 27vw, 6.6rem);
  }

  .pricing-direction strong {
    font-size: clamp(2.2rem, 12vw, 3.45rem);
  }

  .mobile-cta a {
    min-height: 56px;
    font-size: .95rem;
  }
}

/* Premium request experience for the verified LeadConnector flow. */
.request-section {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,245,240,.82) 45%, rgba(238,235,228,.95)),
    radial-gradient(circle at 12% 10%, rgba(217,39,30,.16), transparent 30%);
  color: var(--ink);
}

.request-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.035) 1px, transparent 1px),
    linear-gradient(rgba(8,8,8,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 86%);
  pointer-events: none;
}

.request-hero-panel,
.request-system-card {
  position: relative;
  z-index: 1;
}

.request-hero-panel {
  display: grid;
  align-content: center;
  min-height: clamp(500px, 64vw, 720px);
}

.request-hero-panel h2 {
  max-width: 900px;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.request-section .request-copy p {
  max-width: 620px;
  color: var(--soft-ink);
}

.request-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.widget-trigger {
  min-height: 58px;
  min-width: 230px;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(217,39,30,.28);
}

.request-action-row .btn-white {
  min-height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}

.request-system-card {
  align-self: center;
  gap: 1rem;
  min-height: 0;
  border: 1px solid rgba(8,8,8,.1);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(8,8,8,.98), rgba(28,28,27,.94)),
    var(--black);
  box-shadow: 0 36px 100px rgba(8,8,8,.22);
}

.request-system-card > span {
  color: #ff7d76;
}

.request-system-card h3 {
  max-width: 520px;
  color: white;
}

.request-card-copy {
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.request-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.request-service-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem .82rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: white;
  font-size: .88rem;
  font-weight: 850;
}

.contact-card.compact {
  margin-top: .25rem;
  border-color: rgba(255,255,255,.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(217,39,30,.2), transparent 34%),
    rgba(255,255,255,.07);
}

.contact-card.compact a {
  color: white;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.request-system-card .legal-small,
.request-system-card .legal-small a {
  color: rgba(255,255,255,.62);
}

body.widget-nudge-active .request-system-card {
  animation: requestPulse 1.35s ease;
}

@keyframes requestPulse {
  0%,
  100% {
    box-shadow: 0 36px 100px rgba(8,8,8,.22);
  }

  45% {
    box-shadow: 0 36px 100px rgba(8,8,8,.22), 0 0 0 8px rgba(217,39,30,.18);
  }
}

iframe[src*="leadconnectorhq"],
iframe[src*="leadconnector"],
iframe[title*="chat" i],
iframe[title*="widget" i] {
  border-radius: 18px !important;
  box-shadow: 0 24px 70px rgba(8,8,8,.22) !important;
}

[class*="leadconnector" i] button,
[id*="leadconnector" i] button,
[class*="chat-widget" i] button,
[class*="lc_text" i],
[class*="lc-widget" i] {
  border-radius: 999px !important;
  background: var(--red) !important;
  color: white !important;
  box-shadow: 0 18px 48px rgba(217,39,30,.32) !important;
}

@media (max-width: 900px) {
  .request-section {
    grid-template-columns: 1fr;
  }

  .request-hero-panel {
    min-height: auto;
  }

  .request-action-row .btn,
  .widget-trigger {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .request-system-card {
    border-radius: 22px;
  }

  .request-service-pills span {
    width: 100%;
    justify-content: center;
  }
}

/* Clean two-page direction requested by owner: simple landing + full services page. */
.clean-site {
  background:
    linear-gradient(90deg, rgba(8,8,8,.025) 1px, transparent 1px),
    linear-gradient(rgba(8,8,8,.022) 1px, transparent 1px),
    #f7f5f0;
  background-size: 96px 96px;
}

.clean-site h1,
.clean-site h2,
.clean-site h3 {
  letter-spacing: -.045em;
}

.clean-site h1 {
  font-size: clamp(4rem, 11vw, 10.5rem);
  line-height: .82;
}

.clean-site h2 {
  font-size: clamp(2.25rem, 5.2vw, 5.6rem);
  line-height: .9;
}

.clean-site h3 {
  font-size: clamp(1.4rem, 2.5vw, 2.55rem);
  line-height: .96;
}

.clean-topbar .desktop-nav {
  justify-content: flex-end;
}

.clean-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .76fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(34px, 6vw, 76px) clamp(16px, 5vw, 72px);
}

.clean-hero-copy {
  max-width: 980px;
}

.clean-hero-copy .lead {
  max-width: 670px;
  margin-inline: 0;
  color: var(--soft-ink);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
}

.clean-hero-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 1.4rem;
}

.clean-hero-media {
  position: relative;
  overflow: hidden;
  min-height: min(680px, 76svh);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--black);
  box-shadow: 0 28px 90px rgba(8,8,8,.16);
}

.clean-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,8,8,0) 45%, rgba(8,8,8,.2) 100%),
    radial-gradient(circle at 35% 20%, rgba(255,255,255,.14), transparent 38%);
}

.clean-hero-media img {
  width: 100%;
  height: 100%;
  min-height: min(680px, 76svh);
  object-fit: cover;
  object-position: center;
  filter: saturate(.8) contrast(1.12);
}

.clean-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}

.clean-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .58rem .82rem;
  border: 1px solid rgba(8,8,8,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: #2f2d2a;
  box-shadow: 0 14px 34px rgba(8,8,8,.06);
  font-size: .86rem;
  font-weight: 850;
}

.clean-section {
  padding: clamp(68px, 10vw, 128px) clamp(16px, 5vw, 72px);
}

.clean-section-head {
  max-width: 860px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.clean-choice {
  background: #eeebe4;
}

.clean-choice-grid,
.clean-review-grid,
.catalog-grid {
  display: grid;
  gap: 1rem;
}

.clean-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clean-choice-card,
.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 70px rgba(8,8,8,.08);
}

.clean-choice-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding-bottom: 1rem;
  transition: transform .18s ease, border-color .18s ease;
}

.clean-choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,39,30,.32);
}

.clean-choice-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(.78) contrast(1.06);
}

.clean-choice-card span,
.catalog-card span,
.clean-contact-card span {
  display: block;
  margin: 1rem 1rem .55rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.clean-choice-card h3,
.clean-choice-card p {
  margin-inline: 1rem;
}

.clean-choice-card p,
.catalog-card p,
.clean-review-lead p,
.clean-request p,
.services-hero .lead {
  color: var(--soft-ink);
}

.clean-reviews {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.clean-review-lead {
  position: sticky;
  top: 104px;
}

.clean-review-lead p {
  max-width: 520px;
  font-size: 1.05rem;
}

.clean-review-lead a,
.catalog-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: .8rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--black);
  color: white;
  font-weight: 900;
}

.clean-review-grid {
  grid-template-columns: 1fr;
}

.clean-review-grid article {
  display: grid;
  gap: .7rem;
  min-height: 190px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 22px 70px rgba(8,8,8,.07);
}

.clean-review-grid p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
}

.clean-review-grid strong {
  margin-top: auto;
  color: var(--soft-ink);
}

.clean-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .52fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  background: var(--black);
  color: white;
}

.clean-request h2 {
  max-width: 820px;
  color: white;
}

.clean-request p {
  max-width: 640px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.clean-contact-card {
  display: grid;
  gap: .75rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 8%, rgba(217,39,30,.2), transparent 30%),
    rgba(255,255,255,.075);
}

.clean-contact-card span {
  margin: 0;
  color: #ff7d76;
}

.clean-contact-card a {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.045em;
}

.clean-contact-card .legal-small,
.clean-contact-card .legal-small a {
  color: rgba(255,255,255,.62);
}

.clean-footer {
  padding-top: clamp(52px, 7vw, 84px);
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .8fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  min-height: 72svh;
  padding: clamp(34px, 6vw, 76px) clamp(16px, 5vw, 72px);
}

.services-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 8.5vw, 8.7rem);
}

.services-hero .lead {
  max-width: 650px;
  margin-inline: 0;
}

.services-hero .hero-actions {
  justify-content: flex-start;
}

.services-hero img {
  width: 100%;
  min-height: min(540px, 64svh);
  border: 1px solid var(--line);
  border-radius: 22px;
  object-fit: cover;
  filter: saturate(.74) contrast(1.08);
  box-shadow: 0 28px 90px rgba(8,8,8,.16);
}

.services-jump {
  position: sticky;
  top: 76px;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: rgba(247,245,240,.9);
  backdrop-filter: blur(18px);
}

.services-jump a {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-right: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.services-jump a:last-child {
  border-right: 0;
  color: var(--red);
}

.service-catalog.dark {
  background: var(--black);
  color: white;
}

.service-catalog.dark .clean-section-head p,
.service-catalog.dark .catalog-card p,
.service-catalog.dark .catalog-card li {
  color: rgba(255,255,255,.72);
}

.service-catalog.dark .catalog-card {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.catalog-card.feature {
  border-color: rgba(217,39,30,.34);
}

.catalog-card.no-image {
  position: relative;
  overflow: hidden;
  border-color: rgba(8,8,8,.1);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(238,235,228,.8));
}

.catalog-card.no-image::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), rgba(8,8,8,.85));
}

.catalog-card.no-image > div {
  min-height: 370px;
  padding-top: 1.2rem;
}

.catalog-card.coming-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(185,32,24,.14), transparent 34%),
    linear-gradient(145deg, #ffffff, #f0ede6);
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(.78) contrast(1.06);
}

.catalog-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 1rem 1rem;
}

.catalog-card h3 {
  margin-bottom: .65rem;
}

.catalog-card strong {
  margin-bottom: .8rem;
  color: var(--ink);
  font-size: clamp(1.55rem, 3.3vw, 3.4rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.catalog-card .benefit-line {
  display: block;
  max-width: 520px;
  margin-bottom: .95rem;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 2rem);
  font-weight: 950;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.catalog-card .service-price {
  display: block;
  max-width: 520px;
  margin-bottom: .85rem;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .88;
}

.catalog-card .service-price small {
  display: block;
  max-width: 360px;
  margin-top: .55rem;
  color: var(--soft-ink);
  font-size: clamp(.88rem, 1.25vw, 1rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
}

.catalog-card .size-upgrade {
  margin: -.1rem 0 .95rem;
  padding: .72rem .82rem;
  border: 1px solid rgba(185,32,24,.18);
  border-radius: 10px;
  background: rgba(185,32,24,.07);
  color: #3b302e;
  font-size: .96rem;
  font-weight: 850;
  line-height: 1.35;
}

.service-catalog.dark .catalog-card strong {
  color: white;
}

.catalog-card .coming-soon {
  align-self: flex-start;
  min-height: 34px;
  margin: 0 0 .75rem;
  padding: .48rem .72rem;
  border: 1px solid rgba(185,32,24,.24);
  border-radius: 999px;
  background: rgba(185,32,24,.09);
  color: var(--red);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-card ul {
  display: grid;
  gap: .42rem;
  margin: .25rem 0 1rem;
  padding: 0;
  list-style: none;
}

.catalog-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--soft-ink);
  font-weight: 740;
}

.catalog-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--red);
}

.catalog-card a {
  width: fit-content;
  margin-top: auto;
}

@media (max-width: 1120px) {
  .clean-choice-grid,
  .catalog-grid,
  .catalog-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clean-hero,
  .services-hero,
  .clean-reviews,
  .clean-request {
    grid-template-columns: 1fr;
  }

  .clean-review-lead {
    position: static;
  }
}

@media (max-width: 720px) {
  .clean-site h1 {
    font-size: clamp(3.35rem, 18vw, 5.15rem);
    line-height: .86;
  }

  .clean-site h2,
  .services-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: .95;
  }

  .clean-hero,
  .services-hero {
    min-height: auto;
    padding: 34px 16px 42px;
  }

  .clean-hero-media,
  .services-hero img {
    min-height: 300px;
    border-radius: 18px;
  }

  .clean-hero-media img {
    min-height: 300px;
  }

  .clean-hero-copy .hero-actions,
  .services-hero .hero-actions,
  .request-action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .clean-hero-copy .btn,
  .services-hero .btn,
  .request-action-row .btn,
  .widget-trigger {
    width: 100%;
  }

  .clean-proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .clean-proof-row span {
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .clean-section {
    padding: 62px 16px;
  }

  .clean-choice-grid,
  .clean-review-grid,
  .catalog-grid,
  .catalog-grid.compact {
    grid-template-columns: 1fr;
  }

  .clean-choice-card,
  .catalog-card,
  .clean-review-grid article,
  .clean-contact-card {
    border-radius: 16px;
  }

  .clean-reviews {
    gap: 1.5rem;
  }

  .clean-review-grid article {
    min-height: 170px;
  }

  .clean-request {
    gap: 1.4rem;
  }

  .services-jump {
    top: 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-jump a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    font-size: .68rem;
  }

  .catalog-card a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .clean-hero,
  .services-hero,
  .clean-section {
    padding-inline: 14px;
  }

  .clean-site h1 {
    font-size: clamp(3rem, 17vw, 4.45rem);
  }
}

.clean-site .clean-reviews {
  display: block;
  padding: 0;
  background: #fbfaf7;
}

.reviews-band {
  padding: clamp(46px, 7vw, 76px) clamp(16px, 5vw, 72px) clamp(32px, 5vw, 48px);
  background: #0a0a0a;
  color: white;
  text-align: center;
}

.reviews-band .eyebrow {
  margin-bottom: .65rem;
  color: #ff7d76;
}

.reviews-band h2 {
  margin-bottom: .85rem;
  color: white;
  font-size: clamp(2.3rem, 5.8vw, 5.4rem);
  line-height: .9;
}

.reviews-band p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: clamp(.98rem, 1.35vw, 1.16rem);
}

.google-review-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  padding: clamp(28px, 5vw, 52px) clamp(12px, 4vw, 48px) clamp(44px, 6vw, 72px);
  background: #fbfaf7;
}

.google-review-track {
  display: grid;
  grid-auto-columns: minmax(286px, 340px);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding: .4rem .2rem 1rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.google-review-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 360px;
  padding: 1.35rem 1.1rem 1.15rem;
  border: 1px solid rgba(8,8,8,.08);
  border-radius: 8px;
  background: #f1f1f1;
  box-shadow: 0 18px 54px rgba(8,8,8,.08);
  text-align: center;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: .8rem;
  border-radius: 999px;
  background: #0aa58c;
  color: white;
  font-size: 1.45rem;
  font-weight: 900;
}

.review-avatar.blue {
  background: #5267d8;
}

.review-avatar.purple {
  background: #8a22c8;
}

.review-avatar.green {
  background: #15965d;
}

.review-avatar.red {
  background: #d9271e;
}

.review-avatar.gold {
  background: #b8860b;
}

.review-avatar.dark {
  background: #252525;
}

.review-avatar.teal {
  background: #008f9f;
}

.google-review-card h3 {
  margin: 0 0 .45rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.review-stars {
  color: #ffc107;
  font-size: 1.06rem;
  letter-spacing: .04em;
  line-height: 1;
}

.review-date {
  display: block;
  margin: .45rem 0 .9rem;
  color: #989898;
  font-size: .88rem;
  font-weight: 750;
}

.google-review-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  min-height: 96px;
  margin: 0;
  color: #2a2a2a;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.35;
}

.google-posted {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: auto;
  color: #6b6b6b;
  font-size: .88rem;
  font-weight: 850;
}

.google-posted span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: white;
  font-size: 1rem;
  font-weight: 900;
}

.review-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(8,8,8,.12);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  box-shadow: 0 14px 44px rgba(8,8,8,.12);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.review-arrow:hover {
  background: var(--red);
  color: white;
}

@media (max-width: 720px) {
  .reviews-band {
    padding: 44px 16px 30px;
  }

  .reviews-band h2 {
    font-size: clamp(2.15rem, 11vw, 3.45rem);
    line-height: .95;
  }

  .google-review-wrap {
    display: block;
    padding: 24px 14px 56px;
  }

  .google-review-track {
    grid-auto-columns: minmax(276px, 86vw);
    gap: .8rem;
    padding-bottom: .75rem;
  }

  .google-review-card {
    min-height: 344px;
  }

  .review-arrow {
    display: none;
  }
}
