:root {
  --ink: #0b2233;
  --ink-2: #15384d;
  --muted: #587082;
  --blue: #71d7f5;
  --blue-strong: #11a9db;
  --blue-dark: #087da9;
  --blue-pale: #eaf9ff;
  --blue-wash: #f4fcff;
  --white: #ffffff;
  --paper: #f8fbfc;
  --line: #dbe7ec;
  --success: #19744f;
  --shadow-sm: 0 12px 34px rgba(18, 56, 75, 0.09);
  --shadow-lg: 0 34px 80px rgba(12, 50, 72, 0.18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 40;
  color: #dff8ff;
  background: var(--ink);
  font-size: 0.82rem;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  letter-spacing: 0.01em;
}

.announcement strong {
  color: var(--white);
}

.announcement a {
  color: var(--blue);
  font-weight: 750;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 236, 0.76);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(10, 37, 52, 0.08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-crop {
  position: relative;
  width: 46px;
  height: 66px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo-crop img {
  position: absolute;
  top: -4px;
  left: -23px;
  width: 92px;
  max-width: none;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #334f61;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--blue-strong);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.desktop-contact {
  display: grid;
  flex: 0 0 auto;
  color: var(--ink);
  line-height: 1.18;
  text-align: right;
  text-decoration: none;
}

.desktop-contact span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-contact strong {
  margin-top: 3px;
  font-size: 0.82rem;
}

.desktop-contact:hover strong {
  color: var(--blue-dark);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 167, 216, 0.18);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: #8ae1f9;
  box-shadow: 0 13px 28px rgba(15, 167, 216, 0.25);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.desktop-contact:focus-visible,
.brand:focus-visible,
.announcement a:focus-visible,
.mobile-menu a:focus-visible,
.mobile-sticky-cta a:focus-visible {
  outline: 3px solid rgba(17, 169, 219, 0.4);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.86rem;
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: #9ac3d5;
  box-shadow: none;
}

.button-outline:hover {
  background: var(--white);
  border-color: var(--blue-strong);
  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.15);
}

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

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(113, 215, 245, 0.32), transparent 30%),
    linear-gradient(135deg, #f8fdff 0%, #eefaff 58%, #e7f8fd 100%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(17, 169, 219, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  width: 440px;
  height: 440px;
  top: -260px;
  left: 26%;
}

.hero-orb-two {
  width: 660px;
  height: 660px;
  right: -380px;
  bottom: -370px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(510px, 1.12fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.hero-copy {
  padding-bottom: 70px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--blue-strong);
  border: 3px solid rgba(17, 169, 219, 0.18);
  border-radius: 50%;
  box-sizing: content-box;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 650px;
  margin: 18px 0 24px;
  font-size: clamp(3.25rem, 5.7vw, 5.2rem);
  font-weight: 760;
}

h1 em {
  position: relative;
  display: inline;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 em::after {
  content: "";
  position: absolute;
  height: 0.16em;
  left: 1%;
  right: 0;
  bottom: -0.02em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 30' preserveAspectRatio='none'%3E%3Cpath d='M4 20C120 3 340 8 496 14' fill='none' stroke='%2371d7f5' stroke-width='10' stroke-linecap='round' opacity='.68'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  z-index: -1;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: #496878;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-rating {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(176, 216, 229, 0.8);
  border-radius: 999px;
  font-size: 0.72rem;
  text-decoration: none;
  box-shadow: 0 9px 26px rgba(22, 76, 99, 0.07);
}

.hero-rating-stars {
  color: #f6b91d;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-rating strong {
  font-size: 0.73rem;
}

.hero-rating > span:last-child {
  color: var(--muted);
}

.hero-rating:hover {
  border-color: var(--blue-strong);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: rotate(-12deg) translate(2px, 1px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  margin-top: 22px;
  color: #526d7e;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-points svg {
  width: 18px;
  height: 18px;
  padding: 2px;
  fill: none;
  stroke: var(--success);
  stroke-width: 2.2;
  background: #dbf4e9;
  border-radius: 50%;
}

.hero-media {
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-bottom: 70px;
}

.hero-image-shell {
  position: relative;
  width: 100%;
  min-height: 555px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.74);
  border-radius: 42px 42px 12px 42px;
  box-shadow: var(--shadow-lg);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  background: #dff4fb;
  touch-action: pan-y;
}

.hero-slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 555px;
  object-fit: cover;
  object-position: center center;
}

.hero-slide:first-child img {
  object-position: center 58%;
}

.hero-slide-logo {
  background: var(--white);
}

.hero-slide-logo img {
  min-height: 0;
  padding: 42px;
  object-fit: contain;
}

.image-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(6, 29, 44, 0.2), transparent 42%);
  pointer-events: none;
}

.hero-slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(6, 30, 44, 0.2);
  cursor: pointer;
  opacity: 0.86;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.hero-slide-arrow:hover,
.hero-slide-arrow:focus-visible {
  background: var(--white);
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}

.hero-slide-arrow:focus-visible,
.hero-slide-dots button:focus-visible {
  outline: 3px solid var(--blue-strong);
  outline-offset: 3px;
}

.hero-slide-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero-slide-prev {
  left: 16px;
}

.hero-slide-next {
  right: 16px;
}

.hero-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 102px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  background: rgba(6, 29, 44, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(9px);
}

.hero-slide-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-slide-dots button.is-active {
  width: 24px;
  background: var(--white);
  border-radius: 999px;
}

.offer-card {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 4;
  width: 148px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(5, 40, 59, 0.2);
  backdrop-filter: blur(12px);
  transform: rotate(4deg);
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(11, 34, 51, 0.22);
  border-radius: inherit;
}

.offer-kicker {
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card strong {
  margin: 2px 0;
  color: var(--blue-dark);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-card > span:last-child {
  max-width: 100px;
  font-size: 0.61rem;
  font-weight: 650;
  line-height: 1.25;
}

.detail-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px 13px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(6, 30, 44, 0.2);
  backdrop-filter: blur(13px);
}

.detail-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-pale);
  border-radius: 12px;
}

.detail-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.detail-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.detail-card strong {
  font-size: 0.82rem;
}

.detail-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  min-height: 114px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  padding: 0 8px;
  background: var(--white);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -8px 36px rgba(12, 50, 72, 0.07);
}

.trust-ribbon > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 30px;
}

.trust-ribbon > div + div {
  border-left: 1px solid var(--line);
}

.trust-icon {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-pale);
  border-radius: 14px;
}

.trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-ribbon > div > span:last-child {
  display: flex;
  flex-direction: column;
}

.trust-ribbon strong {
  font-size: 0.83rem;
}

.trust-ribbon small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 48px;
}

.heading-split {
  display: grid;
  grid-template-columns: 1.1fr 0.74fr;
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.results-copy h2,
.maintenance-copy h2,
.service-area h2,
.quote-intro h2,
.faq-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 740;
}

.section-heading p,
.service-area p,
.faq-intro p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  background: #f7fbfd;
  border: 1px solid #e0ebef;
  border-radius: var(--radius-md);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: #b8dce9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-card-featured {
  background: var(--ink);
  border-color: var(--ink);
}

.service-number {
  position: relative;
  z-index: 2;
  color: #7790a0;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card-featured .service-number {
  color: #87a5b7;
}

.service-art {
  position: relative;
  min-height: 188px;
  margin: 8px 0 12px;
}

.service-art-window {
  width: 190px;
  align-self: center;
  border: 8px solid #4e7588;
  border-bottom-width: 13px;
  border-radius: 7px 7px 4px 4px;
  box-shadow: inset 0 0 0 2px #8ddff6, 0 19px 50px rgba(0, 0, 0, 0.2);
}

.service-art-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), transparent 35%),
    linear-gradient(160deg, #b8effd, #3eaed3);
}

.service-art-window span {
  position: absolute;
  z-index: 1;
  background: #4e7588;
}

.service-art-window span:nth-child(1),
.service-art-window span:nth-child(2) {
  top: 0;
  bottom: 0;
  width: 5px;
}

.service-art-window span:nth-child(1) {
  left: 33.333%;
}

.service-art-window span:nth-child(2) {
  left: 66.666%;
}

.service-art-window span:nth-child(3),
.service-art-window span:nth-child(4) {
  left: 0;
  right: 0;
  height: 5px;
}

.service-art-window span:nth-child(3) {
  top: 33.333%;
}

.service-art-window span:nth-child(4) {
  top: 66.666%;
}

.service-art-window i {
  position: absolute;
  z-index: 2;
  width: 80px;
  height: 12px;
  right: -21px;
  bottom: 22px;
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 37px 44px 0 -4px var(--white);
  transform: rotate(-24deg);
}

.service-art-sun {
  display: grid;
  place-items: center;
}

.service-art-sun::before {
  content: "";
  width: 130px;
  height: 130px;
  background: #c9f2fd;
  border: 1px solid #8bdcf3;
  border-radius: 50%;
  box-shadow: 0 0 0 21px rgba(113, 215, 245, 0.15), 0 0 0 42px rgba(113, 215, 245, 0.07);
}

.service-art-sun span {
  position: absolute;
  width: 88px;
  height: 102px;
  background: linear-gradient(150deg, rgba(255,255,255,.9), rgba(113,215,245,.5));
  border: 6px solid #315b70;
  box-shadow: inset 0 0 0 2px var(--white), 20px 16px 0 -9px #8fcfe1;
}

.service-art-sun span::before,
.service-art-sun span::after {
  content: "";
  position: absolute;
  background: #315b70;
}

.service-art-sun span::before {
  width: 4px;
  inset-block: 0;
  left: 50%;
}

.service-art-sun span::after {
  height: 4px;
  inset-inline: 0;
  top: 50%;
}

.service-art-sun i {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 17px;
  right: 47px;
  background: #ffe699;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 230, 153, 0.32);
}

.service-art-wash {
  overflow: hidden;
}

.service-art-wash::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 90px;
  left: 50%;
  bottom: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px) 0 0 / 31px 31px,
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px) 0 0 / 31px 31px,
    #84c3d5;
  border-radius: 10px;
  transform: translateX(-50%) perspective(260px) rotateX(50deg);
  transform-origin: bottom;
}

.service-art-wash span {
  position: absolute;
  width: 20px;
  height: 140px;
  left: 51%;
  top: 2px;
  background: #294c5e;
  border-radius: 999px;
  transform: rotate(38deg);
  transform-origin: bottom;
}

.service-art-wash span::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 13px;
  left: -18px;
  top: -3px;
  background: var(--blue);
  border: 3px solid #294c5e;
  border-radius: 999px;
}

.service-art-wash i,
.service-art-wash b {
  position: absolute;
  width: 6px;
  height: 70px;
  top: 67px;
  left: 35%;
  background: rgba(113, 215, 245, 0.85);
  border-radius: 50%;
  box-shadow: 12px 3px 0 -1px rgba(113, 215, 245, 0.65), 24px 0 rgba(113, 215, 245, 0.82), 35px 5px 0 -2px rgba(113, 215, 245, 0.55), 47px 0 rgba(113, 215, 245, 0.7);
  transform: rotate(38deg);
}

.service-art-wash b {
  top: 82px;
  left: 45%;
  opacity: 0.5;
}

.service-art-lawn {
  overflow: hidden;
}

.service-art-lawn::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 112px;
  left: 50%;
  bottom: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 24px, rgba(255,255,255,.03) 24px 48px),
    linear-gradient(145deg, #81c777, #3e9760);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(47, 112, 69, 0.18);
  transform: translateX(-50%) perspective(250px) rotateX(55deg);
  transform-origin: bottom;
}

.service-art-lawn span {
  position: absolute;
  z-index: 2;
  width: 118px;
  height: 42px;
  left: 50%;
  bottom: 44px;
  background: var(--blue-strong);
  border: 5px solid #294c5e;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 11px 22px rgba(20, 60, 77, 0.22);
  transform: translateX(-50%);
}

.service-art-lawn span::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 35px;
  left: 30px;
  bottom: 28px;
  background: #375e70;
  border: 4px solid #294c5e;
  border-radius: 9px 9px 4px 4px;
}

.service-art-lawn i {
  position: absolute;
  z-index: 3;
  width: 35px;
  height: 35px;
  left: calc(50% - 69px);
  bottom: 29px;
  background: #213e4d;
  border: 6px solid #4f7384;
  border-radius: 50%;
  box-shadow: 104px 0 0 -6px #213e4d, 104px 0 0 0 #4f7384;
}

.service-art-lawn b {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 105px;
  left: calc(50% + 36px);
  top: 13px;
  background: #294c5e;
  border-radius: 99px;
  transform: rotate(-28deg);
  transform-origin: bottom;
}

.service-art-lawn b::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 8px;
  top: 0;
  left: -25px;
  background: #294c5e;
  border-radius: 99px;
}

.service-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.pill {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 5px 10px;
  color: var(--blue);
  background: rgba(113, 215, 245, 0.11);
  border: 1px solid rgba(113, 215, 245, 0.22);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-content h3 {
  margin: 0 0 13px;
  font-size: 1.43rem;
}

.service-content p {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.service-content a {
  color: var(--blue-dark);
  font-size: 0.79rem;
  font-weight: 850;
  text-decoration: none;
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card-featured p {
  color: #a9c0cc;
}

.service-card-featured a {
  color: var(--blue);
}

.results {
  background: var(--blue-wash);
  border-block: 1px solid #e3f0f4;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.results-copy h2 {
  margin-bottom: 22px;
}

.results-copy > p {
  color: var(--muted);
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #29495c;
  font-size: 0.88rem;
  font-weight: 700;
}

.check-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--success);
  background: #d9f4e9;
  border-radius: 50%;
  font-size: 0.76rem;
}

.comparison-wrap {
  position: relative;
}

.comparison {
  position: relative;
  aspect-ratio: 16 / 10.2;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.comparison-image,
.comparison-before,
.comparison-before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-image,
.comparison-before img {
  object-fit: cover;
  object-position: center;
}

.comparison-before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-label {
  position: absolute;
  top: 20px;
  z-index: 4;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(9, 31, 44, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.compare-label-before {
  left: 20px;
}

.compare-label-after {
  right: 20px;
}

.compare-line {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 14px rgba(9, 31, 44, 0.34);
  transform: translateX(-50%);
}

.compare-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 5px solid rgba(113, 215, 245, 0.5);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(8, 39, 57, 0.25);
  transform: translate(-50%, -50%);
}

.compare-line svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(113, 215, 245, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fcfe 100%);
}

.reviews-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -170px;
  bottom: -185px;
  border: 58px solid rgba(17, 169, 219, 0.055);
  border-radius: 50%;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(45px, 8vw, 120px);
}

.reviews-heading h2 {
  max-width: 740px;
}

.reviews-heading > p {
  max-width: 420px;
  margin: 0 0 7px;
  color: var(--muted);
  line-height: 1.8;
}

.reviews-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 1.1fr;
  gap: 18px;
}

.review-summary,
.review-card {
  min-width: 0;
  margin: 0;
  border-radius: 25px;
}

.review-summary {
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(113, 215, 245, 0.26), transparent 36%),
    var(--ink);
  box-shadow: 0 24px 55px rgba(9, 37, 54, 0.16);
}

.google-review-label {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #edf8fc;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.google-review-label strong {
  margin-left: 6px;
}

.google-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.google-blue { background: #4285f4; }
.google-red { background: #ea4335; }
.google-yellow { background: #fbbc05; }
.google-green { background: #34a853; }

.review-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 29px 0 18px;
}

.review-score {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.review-stars {
  color: #f6b91d;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.review-score-row span {
  display: block;
  margin-top: 5px;
  color: #a8c1ce;
  font-size: 0.7rem;
}

.review-summary > p {
  margin: 0 0 26px;
  color: #b9d0da;
  font-size: 0.82rem;
  line-height: 1.7;
}

.review-summary-link {
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.review-summary-link:hover {
  color: var(--ink);
  background: var(--blue);
  border-color: var(--blue);
}

.review-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.review-quote-mark {
  height: 38px;
  color: #cceff8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.1rem;
  line-height: 0.8;
}

.review-card blockquote {
  margin: 42px 0 30px;
  color: var(--ink-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.65vw, 1.45rem);
  line-height: 1.55;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #d9f5fb;
  border: 1px solid #b9e8f4;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.review-avatar-alt {
  background: #e8f3ff;
  border-color: #cbdff4;
}

.review-card figcaption > span:last-child {
  display: grid;
}

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

.review-card figcaption small {
  color: var(--muted);
  font-size: 0.68rem;
}

.review-invite {
  position: relative;
  z-index: 1;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 14px 21px;
  color: #466474;
  background: rgba(234, 249, 255, 0.72);
  border: 1px solid #d1edf5;
  border-radius: 17px;
  font-size: 0.79rem;
}

.review-invite strong {
  color: var(--ink);
}

.review-invite a {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.review-invite a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.heading-centered {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.heading-centered p {
  margin-top: 15px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 17%;
  right: 17%;
  border-top: 1px dashed #a8cad7;
}

.process-grid li {
  position: relative;
  text-align: center;
}

.process-step {
  position: absolute;
  z-index: 2;
  width: 26px;
  height: 26px;
  top: -5px;
  left: calc(50% + 31px);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-dark);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-sizing: content-box;
  font-size: 0.68rem;
  font-weight: 850;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  border: 1px solid #c3eaf5;
  border-radius: 34px;
  box-shadow: 0 15px 38px rgba(17, 109, 145, 0.09);
  transform: rotate(-3deg);
}

.process-grid li:nth-child(2) .process-icon {
  transform: rotate(3deg);
}

.process-icon svg {
  width: 49px;
  height: 49px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.process-grid p {
  max-width: 280px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.maintenance {
  padding: 0 0 112px;
}

.maintenance-panel {
  min-height: 470px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  padding: 70px 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 24%, rgba(113, 215, 245, 0.25), transparent 25%),
    linear-gradient(135deg, #092334, #10425a);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.section-label-light {
  color: var(--blue);
}

.maintenance-copy h2,
.quote-intro h2 {
  color: var(--white);
}

.maintenance-copy p {
  margin: 20px 0 28px;
  color: #b4ccd7;
  line-height: 1.78;
}

.maintenance-visual {
  position: relative;
  min-height: 310px;
}

.season-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -52px;
  left: 50%;
  border: 1px dashed rgba(113, 215, 245, 0.3);
  border-radius: 50%;
  transform: translateX(-50%);
}

.season-ring::before,
.season-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.season-ring::before {
  inset: 45px;
  border: 1px solid rgba(113, 215, 245, 0.16);
}

.season-ring::after {
  inset: 100px;
  background: rgba(113, 215, 245, 0.08);
  box-shadow: inset 0 0 70px rgba(113, 215, 245, 0.08);
}

.calendar-card {
  position: absolute;
  width: 170px;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 20px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.calendar-card small {
  color: var(--blue-dark);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.calendar-card strong {
  margin-top: 8px;
  font-size: 1.04rem;
}

.calendar-card i {
  position: absolute;
  width: 27px;
  height: 27px;
  right: 15px;
  bottom: 15px;
  display: grid;
  place-items: center;
  color: var(--success);
  background: #daf5e9;
  border-radius: 50%;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
}

.calendar-spring {
  top: 24px;
  left: 6%;
  transform: rotate(-7deg);
}

.frequency-badge {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--blue);
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%) rotate(3deg);
}

.frequency-badge strong {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.frequency-badge small {
  margin-top: 5px;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-fall {
  right: 6%;
  bottom: 24px;
  transform: rotate(7deg);
}

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

.service-area-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 90px;
}

.service-area h2 {
  margin-bottom: 23px;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-area-list li {
  padding: 7px 12px;
  color: #315569;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.area-map {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #e0f4f9;
  border: 8px solid var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.area-map iframe {
  width: 100%;
  height: 410px;
  display: block;
  border: 0;
}

.area-map::before,
.area-map::after {
  display: none;
}

.map-caption {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(26, 62, 80, 0.18);
  font-size: 0.68rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.map-caption > span {
  color: #3e5c6d;
}

.map-caption a {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.map-road {
  position: absolute;
  z-index: 1;
  width: 120%;
  height: 15px;
  left: -10%;
  background: rgba(255, 255, 255, 0.93);
  border-block: 1px solid rgba(105, 151, 168, 0.19);
}

.road-one {
  top: 47%;
  transform: rotate(-13deg);
}

.road-two {
  top: 54%;
  transform: rotate(57deg);
}

.area-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px 6px 7px;
  color: #345566;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(33, 83, 104, 0.12);
  font-size: 0.68rem;
  backdrop-filter: blur(8px);
}

.area-pin i {
  width: 10px;
  height: 10px;
  background: var(--blue-strong);
  border: 3px solid #bceefa;
  border-radius: 50%;
  box-sizing: content-box;
}

.pin-main {
  top: 44%;
  left: 52%;
  padding: 9px 14px 9px 9px;
  color: var(--ink);
  font-size: 0.77rem;
  transform: translate(-50%, -50%);
}

.pin-main i {
  width: 13px;
  height: 13px;
  background: var(--ink);
  border-color: var(--blue);
}

.pin-byron {
  top: 36%;
  left: 19%;
}

.pin-stewartville {
  right: 12%;
  bottom: 18%;
}

.pin-kasson {
  left: 10%;
  bottom: 18%;
}

.pin-oronoco {
  top: 12%;
  right: 19%;
}

.quote-section {
  color: var(--white);
  background: var(--ink);
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: clamp(55px, 8vw, 115px);
}

.quote-intro > p {
  margin: 21px 0 28px;
  color: #afc6d2;
  line-height: 1.8;
}

.quote-offer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  padding: 18px 20px;
  background: rgba(113, 215, 245, 0.08);
  border: 1px solid rgba(113, 215, 245, 0.18);
  border-radius: 16px;
}

.quote-offer-value {
  color: var(--blue);
  font-size: 2.1rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}

.quote-offer > span:last-child {
  display: flex;
  flex-direction: column;
}

.quote-offer strong {
  color: var(--white);
  font-size: 0.87rem;
}

.quote-offer small {
  margin-top: 3px;
  color: #89a9b8;
  font-size: 0.62rem;
}

.quote-promises {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #c5d8e0;
  list-style: none;
  font-size: 0.83rem;
  font-weight: 650;
}

.quote-promises li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.quote-promises span {
  color: var(--blue);
}

.quote-form-card {
  padding: 10px;
  color: var(--ink);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
}

.quote-form {
  padding: clamp(25px, 4vw, 45px);
  background: var(--white);
  border-radius: 22px;
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.form-heading span {
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.form-heading small {
  color: var(--muted);
  font-size: 0.67rem;
}

.photo-quote-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  margin: -3px 0 24px;
  padding: 14px;
  background: var(--blue-pale);
  border: 1px solid #ccecf7;
  border-radius: 15px;
}

.form-more-fields .photo-quote-option {
  margin: 0 0 14px;
}

.photo-quote-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 11px;
}

.photo-quote-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.photo-quote-option > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.photo-quote-option strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.photo-quote-option small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.4;
}

.photo-quote-option a {
  padding: 9px 13px;
  color: var(--ink);
  background: var(--blue);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.photo-quote-option a:hover,
.photo-quote-option a:focus-visible {
  background: #95e5fa;
}

.photo-quote-option a:focus-visible {
  outline: 3px solid var(--blue-strong);
  outline-offset: 3px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form > label,
.form-row label,
.form-more-fields > label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.quote-form label > span,
.quote-form legend {
  color: #385568;
  font-size: 0.7rem;
  font-weight: 800;
}

.quote-form label > span small {
  color: #7f929d;
  font-size: inherit;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f6fafc;
  border: 1px solid #d8e5ea;
  border-radius: 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.quote-form input {
  height: 48px;
  padding: 0 14px;
}

.quote-form select {
  height: 48px;
  padding: 0 42px 0 14px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #688493 50%),
    linear-gradient(135deg, #688493 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.quote-form textarea {
  min-height: 102px;
  padding: 12px 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: var(--white);
  border-color: var(--blue-strong);
  box-shadow: 0 0 0 4px rgba(17, 169, 219, 0.11);
}

#first-name {
  scroll-margin-top: 118px;
}

#first-name:target {
  animation: quote-field-highlight 1.25s ease;
}

@keyframes quote-field-highlight {
  0%,
  100% {
    background: #f6fafc;
    border-color: #d8e5ea;
    box-shadow: none;
  }

  35% {
    background: var(--white);
    border-color: var(--blue-strong);
    box-shadow: 0 0 0 5px rgba(17, 169, 219, 0.17);
  }
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9aacb7;
}

.quote-form fieldset {
  margin: 2px 0 17px;
  padding: 0;
  border: 0;
}

.form-more {
  margin: 2px 0 16px;
  border: 1px solid #dbe7ec;
  border-radius: 12px;
  overflow: hidden;
}

.form-more summary {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  color: #385568;
  background: #f6fafc;
  font-size: 0.72rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.form-more summary::after {
  content: "+";
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-pale);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.form-more[open] summary::after {
  content: "−";
}

.form-more summary span {
  margin-left: auto;
  color: #7f929d;
  font-size: 0.64rem;
  font-weight: 700;
}

.form-more-fields {
  padding: 15px 14px 1px;
  background: var(--white);
}

.form-contact-option {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  margin: 3px 0 12px;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

.form-contact-option a {
  color: var(--blue-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.quote-form legend {
  margin-bottom: 8px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.service-options label {
  position: relative;
  cursor: pointer;
}

.service-options label:last-child {
  grid-column: 1 / -1;
}

.service-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.service-options span {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  color: #526e7e;
  background: #f5f9fb;
  border: 1px solid #dbe7ec;
  border-radius: 11px;
  font-size: 0.69rem !important;
  text-align: center;
  transition: all 150ms ease;
}

.service-options input:checked + span {
  color: var(--ink);
  background: var(--blue-pale);
  border-color: var(--blue-strong);
  box-shadow: inset 0 0 0 1px var(--blue-strong);
}

.service-options input:focus-visible + span {
  outline: 3px solid rgba(17, 169, 219, 0.2);
  outline-offset: 2px;
}

.button-submit {
  width: 100%;
  justify-content: space-between;
  margin-top: 2px;
  border-radius: 13px;
}

.button-submit:disabled {
  opacity: 0.66;
  cursor: wait;
  box-shadow: none;
  transform: none;
}

.form-status {
  min-height: 0;
  margin: 12px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.is-error {
  color: #a52a2a;
}

.form-status.is-success {
  padding: 10px 12px;
  color: var(--success);
  background: #e8f8f1;
  border-radius: 9px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(65px, 10vw, 145px);
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro p {
  margin: 22px 0 28px;
}

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

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

.accordion summary {
  min-height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 780;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: var(--blue-pale);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--blue-dark);
  transform: translate(-50%, -50%);
  transition: transform 170ms ease;
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details p {
  max-width: 670px;
  margin: -4px 50px 24px 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.8;
}

.site-footer {
  padding: 75px 0 22px;
  color: #d9e8ee;
  background: #071a26;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.8fr 1.1fr;
  gap: 60px;
  padding-bottom: 58px;
}

.footer-logo-link {
  width: 174px;
  display: block;
  overflow: hidden;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.footer-logo-link:hover {
  transform: translateY(-3px);
}

.footer-full-logo {
  width: 100%;
  height: auto;
}

.footer-brand > p {
  max-width: 310px;
  margin: 21px 0 0;
  color: #89a4b2;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong,
.footer-cta > strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: #8da8b6;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-cta p {
  margin: 5px 0 17px;
  color: #8da8b6;
  font-size: 0.8rem;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: -5px 0 17px;
}

.footer-contact-links a {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-contact-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cta .button {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 0.77rem;
}

.footer-bottom {
  min-height: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 20px;
  color: #688491;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 0.68rem;
}

.mobile-sticky-cta {
  display: none;
}

/* Local service detail pages */
.service-detail-page {
  background: var(--white);
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 104px;
  background:
    radial-gradient(circle at 8% 30%, rgba(113, 215, 245, 0.25), transparent 31%),
    linear-gradient(180deg, #f5fcff 0%, #ffffff 100%);
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -260px;
  background: rgba(113, 215, 245, 0.14);
  border-radius: 50%;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  color: #65808f;
  font-size: 0.72rem;
  font-weight: 750;
}

.breadcrumbs a {
  color: var(--blue-dark);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.service-detail-hero-copy h1 {
  max-width: 720px;
  margin: 17px 0 25px;
  font-size: clamp(3rem, 5vw, 4.75rem);
}

.service-detail-hero-copy > p {
  max-width: 650px;
  margin-bottom: 31px;
  color: #496878;
  font-size: 1.04rem;
  line-height: 1.75;
}

.service-detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.service-detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
  color: #35576a;
  font-size: 0.75rem;
  font-weight: 750;
}

.service-detail-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.service-detail-points span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--success);
  background: #ddf5eb;
  border-radius: 50%;
  font-size: 0.64rem;
}

.service-detail-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #dceef4;
  border: 9px solid var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.service-detail-image > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.service-detail-image-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 20px;
  color: var(--white);
  background: rgba(7, 26, 38, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  backdrop-filter: blur(12px);
}

.service-detail-image-card strong {
  flex: 0 0 auto;
  font-size: 0.82rem;
}

.service-detail-image-card span {
  color: #b8d5e1;
  font-size: 0.68rem;
  text-align: right;
}

.service-detail-copy-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 84px;
}

.service-detail-copy-grid > div:first-child {
  position: sticky;
  top: 145px;
}

.service-detail-copy-grid h2,
.local-service-grid h2,
.service-detail-cta h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.8rem);
}

.service-detail-copy-grid h2 {
  margin: 16px 0 23px;
}

.service-detail-copy-grid > div:first-child > p {
  color: var(--muted);
  line-height: 1.78;
}

.service-option-grid {
  display: grid;
  gap: 18px;
}

.service-option-card {
  position: relative;
  padding: 34px 36px 31px 82px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(18, 56, 75, 0.06);
}

.service-option-card > span {
  position: absolute;
  top: 34px;
  left: 31px;
  color: var(--blue-dark);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-option-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.service-option-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.source-note {
  margin-top: 28px;
  padding: 18px 19px;
  color: #35576a !important;
  background: var(--blue-pale);
  border: 1px solid #cdebf5;
  border-radius: 16px;
  font-size: 0.78rem;
}

.source-note a {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.local-service-band {
  color: #d7eaf1;
  background:
    radial-gradient(circle at 15% 20%, rgba(113, 215, 245, 0.18), transparent 28%),
    var(--ink);
}

.local-service-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 90px;
}

.local-service-grid h2 {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--white);
}

.local-service-grid > p {
  margin-bottom: 0;
  color: #a7c2ce;
  line-height: 1.85;
}

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

.service-detail-faq .faq-intro .button {
  margin-top: 24px;
}

.service-detail-cta {
  padding: 62px 0;
  color: var(--white);
  background: var(--blue-dark);
}

.service-detail-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.service-detail-cta span {
  color: #bceefa;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-detail-cta h2 {
  max-width: 760px;
  margin: 7px 0 0;
  color: var(--white);
}

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 19px;
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }

  .nav-wrap {
    gap: 18px;
  }

  .desktop-contact span {
    display: none;
  }

  .desktop-contact strong {
    margin: 0;
    font-size: 0.74rem;
  }

  .desktop-quote {
    padding-inline: 16px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
    gap: 38px;
  }

  .hero-image-shell,
  .hero-slide img {
    min-height: 515px;
  }

  .trust-ribbon > div {
    padding-inline: 18px;
  }

  .service-area-grid,
  .quote-shell {
    gap: 55px;
  }

  .reviews-grid {
    grid-template-columns: 0.8fr 1.1fr 1.1fr;
    gap: 14px;
  }

  .review-summary,
  .review-card {
    padding: 24px;
  }

  .maintenance-panel {
    padding-inline: 55px;
  }
}

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

  body.menu-open .site-header {
    position: fixed;
    z-index: 100;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: var(--white);
    border-bottom: 0;
    backdrop-filter: none;
  }

  body.menu-open .nav-wrap {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .desktop-nav,
  .desktop-contact,
  .desktop-quote {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: var(--blue-pale);
    border: 1px solid #c9eaf3;
    border-radius: 13px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 99px;
    transition: transform 170ms ease, opacity 170ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .mobile-menu {
    position: absolute;
    z-index: 1;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 25px 20px 120px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    -webkit-overflow-scrolling: touch;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu > a:not(.button) {
    padding: 15px 5px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-menu .button {
    margin-top: 19px;
  }

  body.menu-open .mobile-sticky-cta {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    max-width: 720px;
    padding-bottom: 40px;
  }

  h1 {
    max-width: 720px;
  }

  .hero-media {
    padding-bottom: 56px;
  }

  .hero-image-shell,
  .hero-slide img {
    min-height: 520px;
  }

  .trust-ribbon {
    grid-template-columns: 1fr;
    padding-block: 8px;
    border-radius: 24px 24px 0 0;
  }

  .trust-ribbon > div {
    padding: 17px 20px;
  }

  .trust-ribbon > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 88px 0;
  }

  .heading-split,
  .results-grid,
  .reviews-heading,
  .service-area-grid,
  .quote-shell,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .service-card-featured {
    grid-column: auto;
  }

  .service-card-featured .service-art-window {
    width: 190px;
  }

  .results-copy {
    max-width: 650px;
  }

  .reviews-heading > p {
    max-width: 650px;
  }

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

  .review-summary {
    grid-column: 1 / -1;
  }

  .review-summary-link {
    width: max-content;
  }

  .maintenance-panel {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 55px;
  }

  .maintenance-copy {
    max-width: 610px;
  }

  .maintenance-visual {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .area-map {
    min-height: 390px;
  }

  .quote-intro {
    max-width: 630px;
  }

  .faq-intro {
    position: static;
    max-width: 650px;
  }

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

  .footer-cta {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.09);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .announcement-inner {
    min-height: 38px;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.71rem;
  }

  .announcement-inner > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .announcement a {
    flex: 0 0 auto;
    font-size: 0;
  }

  .announcement a::before {
    content: "Claim offer";
    font-size: 0.71rem;
  }

  .announcement a span {
    font-size: 0.71rem;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-logo-crop {
    width: 36px;
    height: 50px;
  }

  .brand-logo-crop img {
    top: -3px;
    left: -18px;
    width: 72px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.52rem;
  }

  .mobile-menu {
    top: 68px;
    padding: 18px 16px 110px;
  }

  .mobile-menu > a:not(.button) {
    padding: 13px 4px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy {
    padding-bottom: 30px;
  }

  .eyebrow {
    font-size: 0.63rem;
    line-height: 1.4;
  }

  h1 {
    margin: 13px 0 18px;
    font-size: clamp(2.45rem, 11.5vw, 3.05rem);
    line-height: 1.01;
  }

  .hero-lead {
    margin-bottom: 21px;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .text-link {
    min-height: 48px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #cfe5ed;
    border-radius: 12px;
  }

  .hero-actions .text-link span {
    background: transparent;
    border: 0;
  }

  .hero-rating {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 12px;
    margin-top: 16px;
    font-size: 0.71rem;
  }

  .hero-points span:last-child {
    grid-column: 1 / -1;
  }

  .hero-media {
    padding-bottom: 30px;
  }

  .hero-image-shell {
    min-height: 370px;
    border-width: 5px;
    border-radius: 24px 24px 9px 24px;
  }

  .hero-slide img {
    min-height: 370px;
  }

  .hero-slide:first-child img {
    object-position: center 58%;
  }

  .hero-slide-logo img {
    min-height: 0;
    padding: 30px;
  }

  .hero-slide-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-slide-arrow svg {
    width: 19px;
    height: 19px;
  }

  .hero-slide-prev {
    left: 10px;
  }

  .hero-slide-next {
    right: 10px;
  }

  .hero-slide-dots {
    bottom: 84px;
    gap: 6px;
    padding: 6px 8px;
  }

  .offer-card {
    top: 12px;
    right: 12px;
    width: 98px;
    min-height: 98px;
    padding: 10px;
  }

  .offer-card strong {
    font-size: 1.15rem;
  }

  .offer-card > span:last-child {
    font-size: 0.47rem;
  }

  .detail-card {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 10px;
    padding: 10px 12px 10px 10px;
    border-radius: 13px;
  }

  .detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .detail-card strong {
    font-size: 0.76rem;
  }

  .detail-card small {
    font-size: 0.61rem;
  }

  .trust-ribbon {
    border-radius: 19px 19px 0 0;
  }

  .trust-ribbon > div {
    padding: 14px 15px;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-heading h2,
  .results-copy h2,
  .reviews-heading h2,
  .maintenance-copy h2,
  .service-area h2,
  .quote-intro h2,
  .faq-intro h2 {
    font-size: clamp(2rem, 9.2vw, 2.55rem);
    line-height: 1.04;
  }

  .heading-split {
    gap: 16px;
  }

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

  .service-card,
  .service-card-featured {
    grid-column: auto;
    min-height: 410px;
    padding: 22px;
    border-radius: 20px;
  }

  .service-card:hover {
    box-shadow: none;
    transform: none;
  }

  .service-art {
    min-height: 154px;
    margin: 0 0 7px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .comparison {
    aspect-ratio: 4 / 3.3;
    border-width: 5px;
    border-radius: 22px;
  }

  .comparison-image,
  .comparison-before img {
    object-position: 58% center;
  }

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

  .review-summary {
    grid-column: auto;
  }

  .review-summary-link {
    width: 100%;
  }

  .review-card {
    min-height: 250px;
    padding: 24px;
  }

  .review-card blockquote {
    margin-top: 34px;
  }

  .review-invite {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 17px 18px;
  }

  .compare-line span {
    width: 46px;
    height: 46px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid li {
    z-index: 1;
    padding: 24px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
  }

  .maintenance {
    padding-bottom: 72px;
  }

  .maintenance-panel {
    width: calc(100% - 28px);
    gap: 20px;
    padding: 36px 20px 30px;
    border-radius: 27px;
  }

  .maintenance-visual {
    min-height: 300px;
  }

  .season-ring {
    width: 300px;
    height: 300px;
  }

  .calendar-card {
    width: 130px;
    min-height: 112px;
    padding: 15px;
  }

  .calendar-spring {
    left: 1%;
  }

  .calendar-fall {
    right: 1%;
  }

  .area-map {
    min-height: 285px;
  }

  .area-map iframe {
    height: 285px;
  }

  .map-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
  }

  .area-pin {
    font-size: 0.59rem;
  }

  .pin-main {
    font-size: 0.68rem;
  }

  .quote-form-card {
    margin-inline: 0;
    padding: 6px;
    border-radius: 21px;
  }

  .quote-form {
    padding: 22px 16px;
    border-radius: 18px;
  }

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

  .form-heading {
    display: grid;
    gap: 2px;
  }

  .photo-quote-option {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 12px;
  }

  #first-name {
    scroll-margin-top: 88px;
  }

  .photo-quote-option a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    gap: 26px;
  }

  .accordion summary {
    min-height: 64px;
    font-size: 0.91rem;
    line-height: 1.35;
  }

  .accordion details p {
    margin-right: 0;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 25;
    left: 14px;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 58px;
    display: grid;
    grid-template-columns: 0.58fr 0.58fr 1.35fr;
    align-items: center;
    gap: 6px;
    padding: 6px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 15px;
    box-shadow: 0 13px 40px rgba(5, 33, 49, 0.28);
    font-size: 0.86rem;
    font-weight: 850;
  }

  .mobile-sticky-cta a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-dark);
    background: var(--blue-pale);
    border-radius: 10px;
    font-size: 0.76rem;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-sticky-cta .mobile-quote-action {
    justify-content: space-between;
    padding: 0 14px;
    color: var(--ink);
    background: var(--blue);
  }
}

@media (max-width: 900px) {
  .service-detail-hero {
    padding: 48px 0 82px;
  }

  .service-detail-hero-grid,
  .service-detail-copy-grid,
  .local-service-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-hero-grid {
    gap: 45px;
  }

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

  .service-detail-copy-grid,
  .local-service-grid {
    gap: 45px;
  }

  .service-detail-copy-grid > div:first-child {
    position: static;
  }

  .service-detail-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .breadcrumbs {
    margin-bottom: 22px;
  }

  .service-detail-hero {
    padding: 28px 0 56px;
  }

  .service-detail-hero-copy h1 {
    margin: 11px 0 18px;
    font-size: clamp(2.35rem, 10.8vw, 3rem);
    line-height: 1.02;
  }

  .service-detail-hero-copy > p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .service-detail-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .service-detail-actions .button {
    width: 100%;
  }

  .service-detail-actions .text-link {
    min-height: 48px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #cfe5ed;
    border-radius: 12px;
  }

  .service-detail-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-detail-image,
  .service-detail-image > img {
    min-height: 300px;
  }

  .service-detail-image {
    border-width: 5px;
    border-radius: 24px;
  }

  .service-detail-image-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 14px 16px;
  }

  .service-detail-image-card span {
    text-align: left;
  }

  .service-option-card {
    padding: 25px 20px 23px 59px;
  }

  .service-option-card > span {
    top: 26px;
    left: 21px;
  }

  .local-service-grid h2,
  .service-detail-copy-grid h2,
  .service-detail-cta h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.4rem);
  }

  .service-detail-cta {
    padding: 42px 0 68px;
  }

  .service-detail-cta .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    display: none;
  }

  .hero-points {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points span:last-child {
    grid-column: 1 / -1;
  }

  .calendar-card {
    width: 122px;
  }

  .area-pin strong {
    display: none;
  }

  .pin-main strong {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
