:root {
  --ink: #071923;
  --charcoal: #10242b;
  --text: #24343b;
  --muted: #66777d;
  --teal: #087f8d;
  --teal-dark: #055f68;
  --green: #2f9b60;
  --green-dark: #176b42;
  --gold: #f4c95d;
  --paper: #f7faf9;
  --mist: #edf7f7;
  --line: #d8e6e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 25, 35, 0.14);
  --soft-shadow: 0 16px 40px rgba(7, 25, 35, 0.08);
  --radius: 8px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  background: var(--paper);
  overflow-x: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(10, 166, 181, 0.34);
  outline-offset: 3px;
}

button {
  border: 0;
}

.container {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 104px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 300;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  box-shadow: var(--shadow);
}

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

.sr-only,
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(216, 230, 232, 0.78);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(7, 25, 35, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
}

.brand__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.brand__text strong {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand__text small {
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
}

.nav-menu a {
  position: relative;
  transition: color 160ms ease;
}

.nav-menu a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu a:not(.button):hover,
.nav-menu a:not(.button).is-active {
  color: var(--teal-dark);
}

.nav-menu a:not(.button):hover::after,
.nav-menu a:not(.button).is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-call {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  font-weight: 950;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--mist);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 16px 32px rgba(47, 168, 102, 0.24);
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.22), transparent 70%);
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 620ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 18px 42px rgba(24, 116, 71, 0.28);
}

.button:hover::after {
  transform: translateX(120%);
}

.button--small {
  min-height: 42px;
  padding: 11px 16px;
}

.button--outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.button--outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light,
.hero .eyebrow {
  color: var(--white);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__photo,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__photo {
  z-index: -2;
  background: url("./assets/photos/hero-home-walkway.jpg") 58% center / cover no-repeat;
  transform: scale(1.02);
  animation: heroPhotoDrift 18s ease-in-out infinite alternate;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 25, 35, 0.94) 0%, rgba(7, 25, 35, 0.78) 48%, rgba(7, 25, 35, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 25, 35, 0.38), rgba(7, 25, 35, 0.04));
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 64px;
  min-height: 670px;
  align-items: center;
  padding: 90px 0 130px;
}

.hero__copy {
  width: min(790px, 100%);
}

.hero__copy > * {
  animation: heroRise 780ms var(--ease) both;
}

.hero__copy h1 {
  animation-delay: 80ms;
}

.hero__copy p:not(.eyebrow) {
  animation-delay: 160ms;
}

.hero__actions {
  animation-delay: 240ms;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 4.15rem;
}

.hero p {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  justify-self: end;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  animation: heroRise 820ms var(--ease) 260ms both, floatPanel 7s ease-in-out 1.1s infinite;
}

.hero-card__image {
  position: relative;
  overflow: hidden;
}

.story-shot {
  position: relative;
  overflow: hidden;
}

.story-shot__after {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.story-shot__before {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  width: 42%;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  transform: rotate(-2deg);
  transition: transform 220ms ease;
}

.story-shot:hover .story-shot__before {
  transform: rotate(0deg) scale(1.03);
}

.story-shot__before img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.story-shot__before span,
.story-shot__after-label,
.result-card__before span,
.result-card__badge,
.proof-stack__before span,
.proof-stack__after-label {
  position: absolute;
  border-radius: 999px;
  background: rgba(7, 25, 35, 0.88);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
}

.story-shot__before span,
.result-card__before span,
.proof-stack__before span {
  left: 9px;
  top: 9px;
}

.story-shot__after-label {
  right: 16px;
  top: 16px;
  z-index: 2;
  background: var(--green);
}

.spray-sweep {
  position: absolute;
  left: -32%;
  top: 0;
  width: 26%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.66), transparent);
  transform: skewX(-16deg);
  mix-blend-mode: screen;
  animation: spraySweep 4.8s ease-in-out infinite;
}

.hero-card__content {
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-card__content span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-card__content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
}

.hero-proof {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof__grid div {
  min-height: 86px;
  padding: 19px 26px;
  border-left: 1px solid var(--line);
}

.hero-proof__grid div:last-child {
  border-right: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.hero-proof span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.quick-contact {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.35fr;
}

.quick-contact a {
  min-height: 88px;
  padding: 18px 24px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-weight: 950;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.quick-contact a:last-child {
  border-right: 1px solid var(--line);
}

.quick-contact a:hover {
  background: var(--mist);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.quick-contact span,
.contact-cards span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-ribbon {
  position: relative;
  height: 60px;
  overflow: hidden;
  overflow-x: clip;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.service-ribbon__track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: max-content;
  padding-left: 28px;
  animation: ticker 30s linear infinite;
}

.service-ribbon__track span {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  padding: 0 28px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-ribbon__track span::before {
  content: "";
  width: 26px;
  height: 3px;
  margin-right: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold));
}

.section {
  padding: 82px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2,
.method-copy h2,
.trust-layout h2,
.faq-intro h2,
.about-copy h2,
.reviews-copy h2,
.quote-copy h2,
.contact-layout h2,
.footer-cta h2 {
  margin-bottom: 18px;
  font-size: 3rem;
}

.section-head p,
.method-copy p,
.about-copy p,
.reviews-copy p,
.quote-copy p,
.contact-layout p,
.footer-brand p,
.form-note {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-head--light h2,
.section-head--light p {
  color: var(--white);
}

.section-head--light p {
  color: rgba(255, 255, 255, 0.92);
}

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

.compare-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.compare {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce8e8;
  box-shadow: var(--shadow);
}

.compare img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.compare__before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  overflow: hidden;
}

.compare__before img {
  width: 100%;
  max-width: 100%;
}

.compare__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  box-shadow: 0 0 0 1px rgba(7, 25, 35, 0.16);
}

.compare__line::after {
  content: "< >";
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(7, 25, 35, 0.88);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 28px rgba(7, 25, 35, 0.22);
  animation: handlePulse 2.4s ease-in-out infinite;
}

.compare input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare__label,
figcaption {
  position: absolute;
  top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(7, 25, 35, 0.88);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compare__label--before {
  left: 14px;
}

.compare__label--after {
  right: 14px;
}

.compare__hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(7, 25, 35, 0.84);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  pointer-events: none;
  white-space: nowrap;
}

.result-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(10, 166, 181, 0.18), transparent 42%),
    var(--ink);
  color: rgba(255, 255, 255, 0.9);
}

.result-summary h3 {
  color: var(--white);
  font-size: 1.72rem;
}

.result-summary .eyebrow {
  color: var(--white);
}

.result-summary a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--white);
  border-bottom: 2px solid var(--gold);
  font-weight: 950;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.result-wall {
  align-items: stretch;
}

.result-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 166, 181, 0.28);
  box-shadow: 0 24px 58px rgba(7, 25, 35, 0.12);
}

.result-card:first-child .result-card__media,
.result-card:first-child .result-card__after {
  height: 250px;
}

.result-card:first-child .result-card__before {
  width: min(46%, 180px);
}

.result-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold));
}

.result-card__media,
figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #dce8e8;
}

.result-card__media {
  min-height: 250px;
}

.result-card__after {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.result-card__before {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  width: min(46%, 180px);
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 25, 35, 0.24);
  transform: rotate(-2deg);
  transition: transform 220ms ease;
}

.result-card__before::after,
.story-shot__before::after,
.proof-stack__before::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, transparent 50%, rgba(7, 25, 35, 0.22) 50%);
  transform: rotate(8deg);
}

.result-card--offset .result-card__before {
  left: auto;
  right: 14px;
  transform: rotate(2deg);
}

.result-card:hover .result-card__before,
.result-card--offset:hover .result-card__before {
  transform: rotate(0deg) scale(1.03);
}

.result-card__before img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}

figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 500ms ease;
}

figure:hover img,
.result-card:hover .result-card__after {
  transform: scale(1.035);
}

figcaption {
  left: 14px;
}

.result-card__badge {
  right: 14px;
  top: 14px;
  background: var(--green);
}

.result-card__copy {
  padding: 18px;
}

.result-card__copy h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.result-card__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(8, 127, 141, 0.16), transparent 34%),
    linear-gradient(0deg, rgba(9, 31, 41, 0.98), rgba(9, 31, 41, 0.98));
  color: rgba(255, 255, 255, 0.9);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.services > .container {
  position: relative;
  z-index: 1;
}

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

.service-card {
  min-height: 235px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 220ms var(--ease), background 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 255, 248, 0.42);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.26);
}

.service-card__mark {
  display: block;
  width: 52px;
  height: 8px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold));
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.42rem;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.service-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.service-methods article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
}

.service-methods span {
  grid-row: span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 201, 93, 0.18);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.service-methods h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
}

.service-methods p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.service-photo-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: 38px 0 16px;
}

.service-photo-head h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: 2rem;
}

.work-grid--services {
  margin-top: 0;
}

.method {
  background: var(--white);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: start;
}

.method-copy {
  position: sticky;
  top: 116px;
}

.method-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.method-cards::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold), var(--teal));
  background-size: 220% 100%;
  animation: flowLine 5s linear infinite;
}

.method-cards article {
  position: relative;
  min-height: 260px;
  padding: 78px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.method-cards span {
  position: absolute;
  top: 16px;
  left: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 0 0 8px var(--white);
}

.method-cards h3 {
  font-size: 1.22rem;
}

.method-cards p {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.work-card {
  position: relative;
  min-height: 305px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.work-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--teal), var(--green), var(--gold));
}

.work-card > span,
.work-card--photo span {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 560px;
  font-size: 1.62rem;
}

.work-card p {
  position: relative;
  max-width: 590px;
  color: var(--muted);
}

.work-card--photo {
  display: grid;
  min-height: 390px;
  align-items: end;
  padding: 0;
  color: var(--white);
}

.work-card--photo::before {
  display: none;
}

.work-card--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 25, 35, 0.9), rgba(7, 25, 35, 0.1));
}

.work-card--photo > div {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.work-card--photo h3,
.work-card--photo p {
  color: var(--white);
}

.work-card--photo span {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

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

.trust-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-list p {
  position: relative;
  min-height: 94px;
  margin: 0;
  padding: 18px 16px 18px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(7, 25, 35, 0.045);
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.trust-list p:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 166, 181, 0.26);
  box-shadow: 0 18px 38px rgba(7, 25, 35, 0.075);
}

.trust-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.faq-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(10, 166, 181, 0.12), transparent 28%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

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

.faq-intro > p:last-of-type {
  max-width: 520px;
  color: var(--muted);
}

.area-card {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.area-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.area-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.area-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.26rem;
  line-height: 1.2;
}

.area-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 25, 35, 0.055);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 21px 58px 21px 22px;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal-dark);
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
  background: #e9f7ef;
  color: var(--green-dark);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.about {
  background: linear-gradient(180deg, var(--paper), var(--white));
}

.about-layout,
.reviews-layout,
.quote-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo > img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-stack {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce8e8;
  box-shadow: var(--shadow);
}

.proof-stack__after {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.proof-stack__before {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(48%, 280px);
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(7, 25, 35, 0.28);
}

.proof-stack__before img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.proof-stack__after-label {
  right: 20px;
  top: 20px;
  background: var(--green);
}

.about-copy {
  align-self: center;
}

.property-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 25, 35, 0.045);
}

.property-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.02rem;
}

.property-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.about-points span {
  position: relative;
  min-height: 50px;
  padding: 13px 14px 13px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 25, 35, 0.045);
}

.about-points span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.reviews {
  background: var(--mist);
  padding: 58px 0;
}

.reviews-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.reviews-copy h2 {
  font-size: 2.5rem;
}

.review-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.review-empty,
.review-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7, 25, 35, 0.05);
}

.review-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mist);
  color: #b07800;
  font-weight: 950;
  letter-spacing: 0;
}

.review-card__pending {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.2);
  color: #7b5811;
  font-size: 0.72rem;
  font-weight: 950;
}

.review-card blockquote {
  margin: 0 0 12px;
  color: var(--text);
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.quote-section {
  padding: 98px 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 35, 0.94), rgba(7, 25, 35, 0.82)),
    url("./assets/photos/wide-driveway-before.jpg") center / cover no-repeat;
  color: var(--white);
}

.quote-copy {
  position: sticky;
  top: 116px;
}

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

.quote-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.quote-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.quote-actions a {
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.quote-actions a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.quote-steps {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.quote-steps article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.quote-steps span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 201, 93, 0.18);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.quote-steps strong {
  color: var(--white);
  font-weight: 950;
}

.quote-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.form-shell {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

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

label,
legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d9dc;
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 166, 181, 0.16);
}

fieldset {
  padding: 0;
  border: 0;
}

.radio-group,
.rating-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.radio-group label,
.rating-group label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.radio-group input {
  width: auto;
}

.rating-group input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.rating-group input:checked + label {
  border-color: rgba(176, 120, 0, 0.42);
  background: #fff7df;
  color: #8a5b00;
  box-shadow: 0 0 0 3px rgba(176, 120, 0, 0.12);
}

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

.rating-stars label {
  min-height: 44px;
  padding: 9px 8px;
  color: #5e6b70;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.upload-grid--single {
  grid-template-columns: 1fr;
}

.upload-grid label {
  position: relative;
  display: grid;
  min-height: 96px;
  align-content: center;
  gap: 8px;
  margin: 0;
  padding: 18px;
  border: 1px dashed #a8c3c8;
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.upload-grid--single label {
  min-height: 78px;
  grid-template-columns: 1fr auto;
  align-items: center;
  align-content: center;
  gap: 4px 18px;
}

.upload-grid label:hover,
.upload-grid label:focus-within {
  border-color: var(--teal);
  background: var(--white);
  transform: translateY(-1px);
}

.upload-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.upload-grid strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.upload-grid--single strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.upload-grid input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.button--form {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.button--form:disabled {
  cursor: wait;
  opacity: 0.76;
}

.form-success {
  margin-top: 18px;
  padding: 14px;
  border-radius: 6px;
  background: #e9f7ef;
  color: #175c37;
  font-weight: 850;
}

.form-success.is-error {
  background: #fff1ed;
  color: #8b2e18;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.86rem;
}

.contact {
  background: var(--white);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-cards a,
.contact-cards div {
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 950;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.contact-cards a:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 166, 181, 0.28);
  box-shadow: 0 18px 42px rgba(7, 25, 35, 0.09);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 38px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer::before {
  content: "";
  display: block;
  height: 7px;
  background: linear-gradient(90deg, var(--teal), var(--green), var(--gold), var(--teal));
  background-size: 220% 100%;
  animation: flowLine 5s linear infinite;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 54px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.9fr;
  gap: 54px;
  padding-top: 54px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-brand p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-column a,
.footer-bottom a {
  color: var(--white);
  font-weight: 850;
}

.footer-column p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.mobile-cta {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(7, 25, 35, 0.88), rgba(7, 25, 35, 0.88)),
    url("./assets/photos/hero-home-walkway.jpg") center / cover no-repeat;
}

.thank-you {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
}

.thank-you__logo {
  position: fixed;
  left: 24px;
  top: 24px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.thank-you__panel {
  width: min(100%, 620px);
  padding: 44px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-you__panel h1 {
  margin-bottom: 12px;
  font-size: 3rem;
}

.thank-you__panel p {
  color: var(--muted);
  font-size: 1.12rem;
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.thank-you__panel .button--outline {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
  will-change: opacity, transform;
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

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

  .hero__inner,
  .section-head,
  .compare-wrap,
  .method-layout,
  .work-grid,
  .trust-layout,
  .faq-layout,
  .about-layout,
  .reviews-layout,
  .quote-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .method-copy,
  .faq-intro,
  .quote-copy {
    position: static;
  }

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

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

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

  .method-cards {
    grid-template-columns: 1fr;
  }

  .method-cards::before {
    left: 43px;
    right: auto;
    top: 30px;
    bottom: 30px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--teal), var(--green), var(--gold), var(--teal));
    background-size: 100% 220%;
  }

  .trust-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 76px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 0.98rem;
  }

  .brand__text small {
    font-size: 0.62rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .nav-call {
    padding-left: 12px;
    border-left: 0;
  }

  .nav-menu .button {
    margin-top: 6px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__inner {
    min-height: 620px;
    padding: 70px 0 150px;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(7, 25, 35, 0.94) 0%, rgba(7, 25, 35, 0.74) 62%, rgba(7, 25, 35, 0.32) 100%);
  }

  .hero h1 {
    font-size: 2.68rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero-proof__grid div {
    min-height: 58px;
    padding: 12px 18px;
    border-right: 1px solid var(--line);
  }

  .hero-proof__grid div:nth-child(n + 3) {
    display: none;
  }

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

  .result-card:first-child {
    grid-column: auto;
  }

  .result-card:first-child .result-card__media,
  .result-card:first-child .result-card__after {
    height: 250px;
  }

  .section,
  .quote-section {
    padding: 66px 0;
  }

  .section-head h2,
  .method-copy h2,
  .trust-layout h2,
  .faq-intro h2,
  .about-copy h2,
  .reviews-copy h2,
  .quote-copy h2,
  .contact-layout h2,
  .footer-cta h2 {
    font-size: 2.18rem;
  }

  .compare,
  .compare img {
    min-height: 380px;
  }

  .about-photo > img {
    height: 440px;
  }

  .proof-stack,
  .proof-stack__after {
    height: 390px;
    min-height: 390px;
  }

  .footer-cta {
    display: grid;
  }

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

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--ink);
    box-shadow: 0 -12px 28px rgba(7, 25, 35, 0.25);
  }

  .mobile-cta a {
    display: grid;
    min-height: 56px;
    place-items: center;
    color: var(--white);
    font-weight: 950;
  }

  .mobile-cta a:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

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

@media (max-width: 580px) {
  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text strong {
    font-size: 0.92rem;
  }

  .brand__text small {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero__inner {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-proof__grid div:nth-child(n + 2) {
    display: none;
  }

  .compare,
  .compare img {
    min-height: 330px;
  }

  .compare__hint {
    bottom: 14px;
    font-size: 0.76rem;
  }

  .compare__line::after {
    width: 46px;
    height: 46px;
  }

  figure img {
    height: 300px;
  }

  .trust-list,
  .about-points,
  .form-row--two,
  .upload-grid {
    grid-template-columns: 1fr;
  }

  .service-photo-head {
    display: grid;
    gap: 8px;
    margin-top: 30px;
  }

  .service-photo-head h3 {
    font-size: 1.55rem;
  }

  .work-card,
  .work-card--photo {
    min-height: 330px;
  }

  .radio-group,
  .rating-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .upload-grid--single label {
    grid-template-columns: 1fr;
  }

  .upload-grid--single strong {
    grid-column: auto;
    grid-row: auto;
    width: fit-content;
  }

  .form-shell {
    padding: 22px;
  }

  .footer-logo {
    width: 210px;
  }

  .thank-you__panel {
    padding: 28px;
  }

  .thank-you__panel h1 {
    font-size: 2.35rem;
  }
}

@keyframes spraySweep {
  0% {
    left: -32%;
    opacity: 0;
  }
  16% {
    opacity: 0.7;
  }
  58% {
    left: 108%;
    opacity: 0.7;
  }
  100% {
    left: 108%;
    opacity: 0;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPhotoDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes flowLine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 220% 0;
  }
}

@keyframes handlePulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(7, 25, 35, 0.22), 0 0 0 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    box-shadow: 0 10px 28px rgba(7, 25, 35, 0.22), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

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