:root {
  --navy: #061f49;
  --navy-2: #082b5e;
  --blue: #008bc0;
  --aqua: #36b7c4;
  --sea: #dff5f7;
  --stone: #eff3f4;
  --paper: #ffffff;
  --ink: #09244c;
  --muted: #4d6482;
  --line: #cfdfe7;
  --shadow: 0 18px 48px rgba(4, 31, 73, 0.13);
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 72px);
  min-height: 86px;
  padding: 16px clamp(22px, 5vw, 76px);
  color: var(--navy);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(4, 31, 73, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(6, 31, 73, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 36px rgba(6, 31, 73, 0.1);
  backdrop-filter: blur(12px);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3.1vw, 3.45rem);
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: clamp(66px, 6.4vw, 94px);
  aspect-ratio: 1;
  color: var(--navy);
}

.brand-mark picture,
.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-mark img {
  object-fit: contain;
  filter: drop-shadow(0 6px 13px rgba(6, 31, 73, 0.18));
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.5vw, 56px);
  margin-left: auto;
  color: var(--navy);
  font-size: 0.97rem;
  font-weight: 800;
}

.desktop-nav a,
.header-location {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.header-location:hover {
  color: var(--blue);
}

.header-location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: clamp(16px, 2.4vw, 34px);
  border-left: 1px solid rgba(6, 31, 73, 0.22);
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 700;
}

.header-location svg {
  width: 24px;
  height: 24px;
  fill: var(--navy);
  stroke-width: 0;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  padding: 142px clamp(22px, 5vw, 84px) 70px;
  display: grid;
  align-items: center;
}

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

.hero-media img {
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.12);
  will-change: transform;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0.48) 50%, rgba(255, 255, 255, 0.04) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  line-height: 1.03;
}

.hero-rule {
  width: 82px;
  height: 4px;
  margin: 30px 0 26px;
  background: var(--aqua);
}

.hero p {
  max-width: 470px;
  margin: 0 0 28px;
  color: #16345c;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 600;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border-radius: 4px;
  padding: 0 24px;
  border: 2px solid var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 26px rgba(6, 31, 73, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 18px 34px rgba(0, 139, 192, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.review-cta {
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.4);
}

.quick-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 12px 22px;
  background: linear-gradient(90deg, #03284f, #003c6e);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.quick-strip span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  border-radius: 999px;
  background: var(--aqua);
  vertical-align: middle;
}

.services-preview,
.process {
  padding: clamp(44px, 6vw, 86px) clamp(18px, 5vw, 76px);
  background: linear-gradient(180deg, #f6fbfd 0%, #fff 100%);
}

.section-heading {
  max-width: 620px;
}

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

.section-heading span {
  display: block;
  margin-bottom: 22px;
  color: #11899a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading span::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 17px;
  background: var(--aqua);
}

.centered span::after {
  margin-inline: auto;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: 1.08;
}

.services-preview .section-heading h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1260px;
  margin: 34px auto 0;
}

.service-card {
  overflow: hidden;
  min-height: 272px;
  background: #fff;
  border: 1px solid rgba(207, 223, 231, 0.78);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.service-card h3,
.service-card p {
  margin-inline: 22px;
}

.service-card h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.2;
}

.service-card p {
  margin-top: 0;
  color: var(--muted);
  font-weight: 600;
}

.service-card picture,
.service-image {
  display: block;
  width: 100%;
  height: 118px;
}

.service-image {
  object-fit: cover;
}

.service-install {
  object-position: 50% 55%;
}

.service-liner {
  object-position: 43% 52%;
}

.service-reno {
  object-position: 54% 54%;
}

.service-salt {
  object-position: 54% 55%;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(64px, 7vw, 112px) clamp(18px, 5vw, 76px);
  background: #fff;
}

.build-story {
  --build-progress: 0;
  --stage-progress: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 48%, #ffffff 100%);
  border-top: 1px solid rgba(207, 223, 231, 0.65);
}

.build-sticky {
  position: relative;
  display: grid;
  min-height: 520vh;
  padding-inline: clamp(18px, 5vw, 76px);
  overflow: clip;
  --active-side: 0;
}

.build-frame,
.build-copy,
.build-progress {
  grid-area: 1 / 1;
  position: sticky;
  top: 86px;
  height: calc(100vh - 86px);
}

.build-frame {
  justify-self: end;
  align-self: start;
  width: min(62vw, 980px);
  max-height: 740px;
  margin-block: 24px;
  overflow: hidden;
  border: 1px solid rgba(207, 223, 231, 0.85);
  border-radius: 8px;
  background: #d8e8ec;
  box-shadow: 0 32px 90px rgba(4, 31, 73, 0.2);
  transform:
    translate3d(calc(var(--active-side, 0) * -38vw), calc((0.5 - var(--stage-progress, 0)) * 18px), 0)
    scale(calc(0.965 + var(--stage-progress, 0) * 0.035));
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.build-sticky[data-active="1"] .build-frame,
.build-sticky[data-active="3"] .build-frame {
  --active-side: 1;
}

.build-frame::before,
.build-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.build-frame::before {
  background:
    linear-gradient(90deg, rgba(6, 31, 73, 0.28), transparent 28%, transparent 74%, rgba(6, 31, 73, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 36%, rgba(6, 31, 73, 0.16));
}

.build-frame::after {
  opacity: calc(0.1 + var(--stage-progress, 0) * 0.38);
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.34) 43%, transparent 55% 100%),
    radial-gradient(circle at calc(22% + var(--stage-progress, 0) * 48%) 78%, rgba(54, 183, 196, 0.28), transparent 22%);
  mix-blend-mode: screen;
  transform: translateX(calc((var(--stage-progress, 0) - 0.5) * 96px));
}

.build-frame picture,
.build-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.build-stage {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.92) contrast(0.98);
  transform: scale(1.08) translateY(22px);
  transition:
    opacity 680ms ease,
    transform 920ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 680ms ease;
  will-change: opacity, transform, filter;
}

.build-stage.is-active {
  opacity: 1;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(calc(1.035 + (1 - var(--stage-progress, 0)) * 0.04)) translateY(calc((0.5 - var(--stage-progress, 0)) * 24px));
}

.build-sheen {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: calc(0.15 + var(--stage-progress, 0) * 0.35);
  transform: translateX(calc(-55% + var(--build-progress, 0) * 110%));
  mix-blend-mode: screen;
}

.build-copy {
  z-index: 8;
  pointer-events: none;
}

.build-step {
  position: absolute;
  top: 50%;
  left: clamp(20px, 4vw, 64px);
  width: min(430px, 34vw);
  padding: clamp(24px, 3vw, 36px);
  border-left: 4px solid var(--aqua);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  opacity: 0;
  transform: translate3d(-42px, -42%, 0) scale(0.94);
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.18, 0.89, 0.32, 1.12);
  box-shadow: 0 24px 70px rgba(4, 31, 73, 0.18);
  backdrop-filter: blur(18px);
}

.build-step:nth-child(even) {
  left: auto;
  right: clamp(20px, 4vw, 64px);
  border-left: 0;
  border-right: 4px solid var(--aqua);
  transform: translate3d(42px, -42%, 0) scale(0.94);
}

.build-step.is-active {
  opacity: 1;
  transform: translate3d(0, -50%, 0) scale(1);
  pointer-events: auto;
}

.build-step span,
.build-mobile-flow span {
  display: block;
  margin-bottom: 18px;
  color: #11899a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.build-step h3,
.build-mobile-flow h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.06;
}

.build-step p,
.build-mobile-flow p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
}

.build-step .btn {
  margin-top: 24px;
}

.build-progress {
  z-index: 9;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 34px;
  pointer-events: none;
}

.build-progress span {
  display: block;
  width: min(520px, 42vw);
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(6, 31, 73, 0.14);
}

.build-progress span::after {
  content: "";
  display: block;
  width: calc(var(--build-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--aqua), var(--blue));
  box-shadow: 0 0 18px rgba(54, 183, 196, 0.55);
}

.build-mobile-flow {
  display: none;
}

.scroll-pop {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(0.94);
  transition:
    opacity 560ms ease,
    transform 680ms cubic-bezier(0.18, 0.89, 0.32, 1.18),
    box-shadow 220ms ease;
  will-change: transform, opacity;
}

.scroll-pop.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.service-card.scroll-pop.is-visible,
.steps article.scroll-pop.is-visible {
  box-shadow: 0 24px 64px rgba(4, 31, 73, 0.18);
}

.service-cards .scroll-pop:nth-child(2),
.service-list .scroll-pop:nth-child(2),
.steps .scroll-pop:nth-child(2) {
  transition-delay: 70ms;
}

.service-cards .scroll-pop:nth-child(3),
.service-list .scroll-pop:nth-child(3),
.steps .scroll-pop:nth-child(3) {
  transition-delay: 140ms;
}

.service-cards .scroll-pop:nth-child(4),
.service-list .scroll-pop:nth-child(4) {
  transition-delay: 210ms;
}

.service-list .scroll-pop:nth-child(5) {
  transition-delay: 280ms;
}

.service-list .scroll-pop:nth-child(6) {
  transition-delay: 350ms;
}

.detail-copy > p,
.service-area p,
.final-cta p {
  max-width: 550px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.service-anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 560px;
  margin: 24px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-anchor-links a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(54, 183, 196, 0.65);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.detail-copy picture,
.detail-copy img {
  display: block;
  width: 100%;
  max-height: 360px;
}

.detail-copy img {
  object-fit: cover;
  object-position: center;
  margin-top: 36px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.local-note {
  display: block;
  margin-top: 28px;
  padding: 18px 0 18px 24px;
  border-left: 4px solid var(--aqua);
}

.local-note div {
  padding-left: 0;
  border-left: 0;
}

.local-note strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.local-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.service-list {
  display: grid;
  gap: 0;
}

.service-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  scroll-margin-top: 96px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-list article:first-child {
  padding-top: 0;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f0f4f8;
  color: var(--navy);
}

.service-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
}

.service-list h3,
.steps h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.34rem;
  line-height: 1.2;
}

.service-list p,
.steps p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.process {
  background: var(--stone);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 36px auto 0;
}

.steps article {
  min-height: 236px;
  padding: 30px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(207, 223, 231, 0.8);
}

.steps span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(58px, 7vw, 108px) clamp(18px, 5vw, 76px);
  background: #fff;
}

.service-area h3,
.service-area h4 {
  max-width: 560px;
  color: var(--navy);
}

.service-area h3 {
  margin: 30px 0 16px;
  font-size: 1.28rem;
}

.service-area h4 {
  margin: 20px 0 8px;
  font-size: 1.02rem;
}

.map-panel {
  display: grid;
  align-content: end;
  min-height: 330px;
  padding: 34px;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 31, 73, 0.05) 0%, rgba(6, 31, 73, 0.08) 40%, rgba(6, 31, 73, 0.94) 100%),
    linear-gradient(90deg, rgba(6, 31, 73, 0.72) 0%, rgba(6, 31, 73, 0.2) 55%, rgba(6, 31, 73, 0.08) 100%),
    image-set(
      url("assets/service-area-hudson-valley-768.avif") type("image/avif"),
      url("assets/service-area-hudson-valley-768.webp") type("image/webp"),
      url("assets/service-area-hudson-valley.png") type("image/png")
    );
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.map-panel span {
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-panel strong {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.map-panel small {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(60px, 8vw, 116px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, var(--navy), #043c69 74%, #026b8e);
  color: #fff;
}

.final-cta .section-heading h2,
.final-cta .section-heading span,
.final-cta p {
  color: #fff;
}

.final-cta .section-heading span::after {
  background: var(--aqua);
}

.contact-links a {
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  font-weight: 800;
  transition: background 160ms ease;
}

.contact-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  font: 600 1rem/1.35 var(--sans);
  background: #fff;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(54, 183, 196, 0.28);
  border-color: var(--blue);
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 26px 18px 96px;
  background: #031d3a;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  font-weight: 700;
  text-align: center;
}

.site-footer span:first-child {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8px;
  max-width: calc(100vw - 24px);
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(3, 29, 58, 0.25);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.show-mobile-cta .mobile-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 48px;
  border-radius: 5px;
  font-size: clamp(0.78rem, 3.2vw, 0.9rem);
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-label-short {
  display: none;
}

.mobile-cta a:first-child {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.mobile-cta a:last-child {
  background: var(--navy);
  color: #fff;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 22px;
  }

  .header-location {
    display: none;
  }

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

  .service-detail,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .detail-copy img {
    max-height: 300px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    position: absolute;
    min-height: 74px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.9);
  }

  .brand {
    gap: 9px;
    padding: 7px 11px 7px 8px;
    font-size: clamp(1.38rem, 7vw, 1.9rem);
  }

  .brand-mark {
    width: 52px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 104px 18px 34px;
    align-items: end;
  }

  .hero-content {
    width: min(20.5rem, calc(100vw - 48px));
    max-width: min(20.5rem, calc(100vw - 48px));
    min-width: 0;
    justify-self: start;
  }

  .hero-media img {
    object-position: 54% 50%;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 24%, rgba(255, 255, 255, 0.1) 48%, rgba(255, 255, 255, 0.94) 72%, #fff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08));
  }

  .hero h1 {
    max-width: 9.4ch;
    font-size: clamp(2.65rem, 12vw, 3.55rem);
    overflow-wrap: break-word;
  }

  .hero-rule {
    margin: 22px 0 18px;
  }

  .hero p {
    width: min(20.5rem, calc(100vw - 48px));
    max-width: min(20.5rem, calc(100vw - 48px));
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(20.5rem, calc(100vw - 48px));
    max-width: min(20.5rem, calc(100vw - 48px));
  }

  .hero-actions .btn-secondary {
    display: none;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-inline: 16px;
    font-size: 0.95rem;
  }

  .quick-strip {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 8px 14px;
    padding: 14px 18px;
    font-size: 0.78rem;
  }

  .quick-strip span:last-child {
    grid-column: 1 / -1;
  }

  .quick-strip span:not(:last-child)::after {
    content: none;
  }

  .services-preview,
  .service-detail,
  .process,
  .service-area,
  .final-cta {
    padding-inline: 18px;
  }

  .section-heading h2,
  .services-preview .section-heading h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .service-cards,
  .steps,
  .service-area {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card picture,
  .service-image {
    height: 150px;
  }

  .service-list article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
  }

  .service-list h3,
  .steps h3 {
    font-size: 1.12rem;
  }

  .scroll-pop {
    transform: translate3d(0, 28px, 0) scale(0.96);
  }

  .build-sticky {
    display: none;
  }

  .build-mobile-flow {
    display: grid;
    gap: 28px;
    padding: 0 18px 58px;
  }

  .build-mobile-flow article {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(207, 223, 231, 0.85);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .build-mobile-flow img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .build-mobile-flow span,
  .build-mobile-flow h3,
  .build-mobile-flow p,
  .build-mobile-flow .btn {
    margin-inline: 20px;
  }

  .build-mobile-flow span {
    margin-top: 22px;
  }

  .build-mobile-flow h3 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .build-mobile-flow p {
    margin-bottom: 20px;
  }

  .build-mobile-flow .btn {
    width: calc(100% - 40px);
    margin-bottom: 22px;
  }

  .local-note div {
    padding-left: 0;
    border-left: 0;
  }

  .steps article {
    min-height: 0;
    padding: 24px;
  }

  .steps span {
    margin-bottom: 26px;
  }

  .map-panel {
    min-height: 240px;
    padding: 26px;
  }

  .contact-links {
    display: grid;
  }

  .lead-form {
    padding: 18px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 430px) {
  .mobile-label-full {
    display: none;
  }

  .mobile-label-short {
    display: inline;
  }
}

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

  .hero-media img,
  .build-frame,
  .build-stage,
  .build-step,
  .build-sheen,
  .scroll-pop,
  .site-header,
  .btn {
    transition: none;
    transform: none;
    will-change: auto;
  }

  .scroll-pop {
    opacity: 1;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.82rem;
  }

  .brand {
    font-size: 1.18rem;
  }

  .btn {
    gap: 8px;
    font-size: 0.86rem;
  }

  .btn svg {
    width: 19px;
    height: 19px;
  }
}
