:root {
  --navy: #082a57;
  --navy-deep: #041c3c;
  --blue: #087be7;
  --blue-dark: #0564c2;
  --sky: #e7f7ff;
  --sky-strong: #cfefff;
  --yellow: #ffd45d;
  --green: #78b95d;
  --cream: #fff7e8;
  --ink: #0b1f36;
  --muted: #52667d;
  --white: #ffffff;
  --line: rgba(8, 42, 87, 0.14);
  --shadow: 0 18px 44px rgba(8, 42, 87, 0.16);
  --shadow-soft: 0 12px 26px rgba(8, 42, 87, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-bottom: 76px;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  font-synthesis-weight: none;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

h1,
h2 {
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-family: "Avenir Next Condensed", "Arial Narrow", "Arial Black", sans-serif;
  font-size: 3.05rem;
  line-height: 0.95;
  color: var(--navy-deep);
}

h1 > span {
  display: block;
  white-space: nowrap;
}

.headline-blue {
  color: var(--blue);
  font-size: 0.9em;
}

h2 {
  font-size: 2.4rem;
  line-height: 1;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.1;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

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

.site-header {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: auto;
  max-width: 88px;
  border-radius: var(--radius);
  background: transparent;
  object-fit: contain;
}

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

.main-nav {
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(0);
}

.btn,
.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn {
  padding: 13px 18px;
}

.btn:hover,
.btn:focus-visible,
.phone-pill:hover,
.phone-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
}

.btn-secondary-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
}

.btn-outline {
  color: var(--blue);
  background: var(--white);
}

.btn-large {
  min-height: 52px;
  padding: 16px 20px;
}

.btn-small {
  min-height: 40px;
  padding: 12px 18px;
  font-size: 0.78rem;
}

.btn-call-stack {
  min-height: 58px;
}

.call-stack {
  display: grid;
  gap: 3px;
}

.call-number {
  color: var(--blue);
  font-size: 0.82em;
}

.phone-pill {
  min-height: 46px;
  padding: 12px 18px;
  color: var(--blue);
  background: var(--white);
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  box-shadow: none;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: var(--navy);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(4, 28, 60, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 190;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(88vw, 380px);
  height: 100dvh;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0, #f3fbff 100%);
  box-shadow: -18px 0 46px rgba(4, 28, 60, 0.22);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.mobile-menu[hidden],
.mobile-menu-backdrop[hidden] {
  display: none;
}

.mobile-menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-header img {
  width: auto;
  height: auto;
  max-width: 128px;
  object-fit: contain;
}

.menu-close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.mobile-menu-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 0;
}

.mobile-menu-nav a {
  padding: 14px 12px;
  border-radius: var(--radius);
  color: var(--navy-deep);
  font-size: 1.02rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus-visible,
.mobile-menu-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--blue);
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mobile-menu-actions .btn {
  width: 100%;
  min-height: 50px;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
}

.section {
  padding: 58px 18px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-intro {
  max-width: 610px;
  margin: -8px auto 26px;
  color: var(--ink);
  text-align: center;
}

.section-blue {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--sky) 0, #f7fcff 54%, var(--white) 100%);
}

.section-blue::before {
  position: absolute;
  top: -50px;
  right: -4%;
  left: -4%;
  height: 110px;
  border-radius: 0 0 50% 50%;
  background: var(--sky);
  content: "";
}

.section-blue > * {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding-top: 22px;
  background: var(--white);
}

.hero::after {
  position: absolute;
  right: -6%;
  bottom: -56px;
  left: -6%;
  z-index: 2;
  height: 126px;
  border-radius: 50% 50% 0 0;
  background: var(--sky);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-subheadline {
  max-width: 680px;
  margin: 18px auto 0;
  color: #1a2e44;
  font-size: 1.07rem;
  font-weight: 700;
}

.hero-actions {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 22px auto 0;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 480px;
  margin: 22px auto 0;
  background: transparent;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 76px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-rendering: geometricPrecision;
  background: transparent;
}

.proof-copy {
  display: grid;
  gap: 2px;
}

.proof-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.proof-icon {
  width: 44px;
  height: 44px;
}

.proof-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.proof-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proof-handshake {
  width: 50px;
  height: 34px;
}

.proof-shield path:first-child {
  fill: var(--navy-deep);
}

.proof-shield path:nth-child(2) {
  fill: var(--blue);
  stroke: var(--white);
  stroke-width: 1.6;
}

.proof-shield path:nth-child(3) {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.2;
}

.proof-family circle:nth-of-type(1) {
  fill: var(--blue);
}

.proof-family path:nth-of-type(1) {
  fill: var(--navy);
}

.proof-family circle:nth-of-type(2) {
  fill: var(--blue);
}

.proof-family path:nth-of-type(2) {
  fill: var(--navy-deep);
}

.proof-family circle:nth-of-type(3) {
  fill: var(--white);
  stroke: var(--navy);
  stroke-width: 3;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 0;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  background: var(--sky);
}

.hero-composition {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.compare-card,
.split-visual {
  position: relative;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: var(--radius);
  background: var(--sky);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.compare-before,
.compare-after,
.compare-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-before {
  z-index: 1;
}

.compare-after {
  z-index: 2;
  clip-path: inset(0 0 0 var(--split));
}

.compare-label {
  position: absolute;
  top: 12px;
  z-index: 5;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(8, 42, 87, 0.9);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.compare-label-after {
  right: 12px;
  background: var(--blue);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 4;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(8, 42, 87, 0.22);
  font-size: 1.05rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

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

.split-heading h2 {
  position: relative;
  display: inline-block;
}

.split-heading h2::before,
.split-heading h2::after {
  position: absolute;
  top: 0.15em;
  color: var(--yellow);
  content: "✦";
  font-size: 1.25rem;
}

.split-heading h2::before {
  left: -28px;
}

.split-heading h2::after {
  right: -28px;
}

.trust-grid,
.service-grid,
.steps {
  display: grid;
  gap: 16px;
}

.trust-card,
.service-card,
.step-card {
  border: 1px solid rgba(8, 42, 87, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  width: min(100%, 1280px);
  margin: 30px auto 0;
}

.before-after-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}

.before-after-card:hover,
.before-after-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.before-after-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.split-visual {
  aspect-ratio: 4 / 5;
  border-width: 5px;
  box-shadow: none;
}

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

.trust-grid {
  max-width: 1110px;
  margin: 0 auto;
}

.trust-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 205px;
  padding: 24px 18px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-card:hover,
.trust-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.trust-card p {
  max-width: 260px;
  color: #1f3248;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-image {
  width: 100px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.services {
  padding-top: 72px;
}

.service-grid {
  max-width: 1160px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  transition: all 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 220px;
  border-radius: 18px 18px 0 0;
  object-fit: cover;
}

.service-card div {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 18px;
  text-align: center;
}

.service-card p {
  color: #22364d;
  font-size: 0.95rem;
  font-weight: 700;
}

.service-card .btn {
  justify-self: center;
}

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

.steps {
  max-width: 1160px;
  margin: 0 auto;
}

.step-card {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.25s ease;
}

.step-card:hover,
.step-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.step-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.step-card div {
  padding: 0 8px 8px;
}

.step-card h3 {
  margin-bottom: 7px;
  color: var(--navy-deep);
  text-transform: uppercase;
}

.step-card p {
  color: #22364d;
  font-size: 0.95rem;
  font-weight: 700;
}

.area {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 60px 18px;
  text-align: center;
}

.area > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
}

.area::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.76) 0 34%, rgba(255, 255, 255, 0.2) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(232, 247, 255, 0.22));
  content: "";
}

.area-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
  color: var(--ink);
}

.area h2 {
  margin-bottom: 14px;
}

.area p:not(.eyebrow) {
  margin-bottom: 22px;
  font-weight: 800;
}

.final-cta {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 34px 18px;
  color: var(--white);
  background: linear-gradient(90deg, #06346d 0, var(--navy-deep) 100%);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta h2 {
  font-size: 2rem;
}

.final-cta p {
  margin-top: 8px;
  font-weight: 800;
}

.final-cta-art {
  display: none;
}

.final-actions {
  display: grid;
  gap: 10px;
}

.site-footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 28px 18px 34px;
  color: var(--white);
  background: var(--navy-deep);
  text-align: center;
}

.footer-brand img {
  width: auto;
  height: auto;
  max-width: 84px;
  border-radius: var(--radius);
  background: transparent;
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

.site-footer a {
  text-decoration: none;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 160;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  box-shadow: 0 -10px 28px rgba(8, 42, 87, 0.22);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 68px;
  padding: 12px 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

.mobile-cta a:last-child {
  background: var(--blue);
}

.services-page {
  background: linear-gradient(180deg, #ffffff 0, #f8fbff 42%, #ffffff 100%);
}

.service-details {
  padding-top: 34px;
  background: #fbf8f1;
}

.services-page .section-heading {
  width: 100%;
  margin-bottom: 22px;
  text-align: center;
}

.services-page .section-heading h1 {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2rem, 7vw, 2.7rem);
  line-height: 1;
}

.contact-page,
.thank-you-page {
  background: #fbf8f1;
}

.contact-section {
  padding-top: 34px;
  background: #fbf8f1;
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.contact-intro h1,
.thanks-card h1 {
  max-width: none;
  margin: 0 auto;
  color: var(--navy-deep);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.02;
  text-transform: none;
}

.contact-intro p {
  max-width: 610px;
  margin: 12px auto 0;
  color: #4d5259;
  font-size: clamp(1rem, 2.8vw, 1.16rem);
  font-weight: 800;
}

.estimate-card,
.thanks-card {
  width: min(100%, 1120px);
  margin: 0 auto;
  border: 1px solid rgba(8, 42, 87, 0.12);
  border-radius: 24px;
  background: rgba(255, 254, 249, 0.96);
  box-shadow: 0 14px 32px rgba(8, 42, 87, 0.1);
}

.estimate-card {
  padding: clamp(22px, 5vw, 52px);
}

.estimate-card form {
  display: grid;
  gap: 34px;
}

.hidden {
  display: none;
}

.estimate-card form fieldset {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  border: 0;
}

.estimate-card form legend {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 16px;
  border-bottom: 2px solid #d8ccbd;
  color: var(--ink);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 900;
}

.estimate-card form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: clamp(0.98rem, 2.6vw, 1.08rem);
  font-weight: 900;
}

.estimate-card form input,
.estimate-card form select,
.estimate-card form textarea {
  width: 100%;
  border: 2px solid #d8ccbd;
  border-radius: 10px;
  color: var(--ink);
  background: #fffdf8;
  box-shadow: 0 3px 8px rgba(8, 42, 87, 0.08);
  font: inherit;
  font-size: clamp(1rem, 2.8vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
}

.estimate-card form input,
.estimate-card form select {
  min-height: 54px;
  padding: 12px 16px;
}

.estimate-card form textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.estimate-card form select {
  color: #5f5b53;
  cursor: pointer;
}

.estimate-card form input::placeholder,
.estimate-card form textarea::placeholder {
  color: #6f695f;
  opacity: 1;
}

.estimate-card form input:focus,
.estimate-card form select:focus,
.estimate-card form textarea:focus {
  outline: 3px solid rgba(8, 123, 231, 0.18);
  border-color: var(--blue);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.service-select-label {
  max-width: 360px;
}

.estimate-card form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 64px;
  padding: 13px 18px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  font-size: clamp(1rem, 3vw, 1.24rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.estimate-card form button[type="submit"]::after {
  content: "→";
  font-size: 1.4rem;
  line-height: 0;
}

.estimate-card form button[type="submit"]:hover,
.estimate-card form button[type="submit"]:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.estimate-footnote {
  color: #69645c;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 700;
  text-align: center;
}

.estimate-footnote a {
  color: #0788a5;
  font-weight: 900;
  text-decoration: none;
}

.thank-you-section {
  display: grid;
  min-height: 58vh;
  place-items: center;
  background: #fbf8f1;
}

.thanks-card {
  display: grid;
  gap: 20px;
  max-width: 820px;
  padding: clamp(30px, 7vw, 62px);
  text-align: center;
}

.thanks-card p {
  max-width: 610px;
  margin: 0 auto;
  color: #4d5259;
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  font-weight: 800;
}

.thanks-actions {
  display: grid;
  gap: 12px;
  width: min(100%, 520px);
  margin: 8px auto 0;
}

.service-detail-list {
  display: grid;
  gap: 24px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.service-detail-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(8, 42, 87, 0.12);
  border-radius: 24px;
  background: rgba(255, 254, 249, 0.96);
  box-shadow: 0 14px 32px rgba(8, 42, 87, 0.1);
}

.service-detail-media {
  width: 132px;
  height: 132px;
  overflow: hidden;
  border-radius: 22px;
  background: #e9e1d1;
  box-shadow: inset 0 0 0 1px rgba(8, 42, 87, 0.08);
}

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

.service-detail-body {
  display: grid;
  gap: 20px;
}

.service-detail-header {
  display: grid;
  gap: 8px;
}

.service-detail-header h3 {
  color: var(--ink);
  font-size: clamp(1.45rem, 5.8vw, 2.05rem);
  line-height: 1.06;
  text-transform: none;
}

.service-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b5d5f;
  font-size: 0.92rem;
  font-weight: 800;
}

.service-time::before {
  content: "◷";
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1;
}

.service-description {
  color: #4d5259;
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.58;
}

.service-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  min-height: 32px;
  padding-left: 42px;
  color: #4f555d;
  font-size: clamp(0.92rem, 2vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
}

.service-checklist li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(70, 126, 82, 0.72);
  border-radius: 50%;
  color: #5d9868;
  content: "✓";
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-guide {
  padding: 18px 20px;
  border-radius: 18px;
  color: #3e434a;
  background: #e9e1d1;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 700;
}

.pricing-guide strong {
  color: var(--ink);
  font-weight: 900;
}

.service-book-button {
  justify-self: start;
  min-width: min(100%, 280px);
  background: var(--blue);
  border-color: var(--blue);
  font-size: 0.82rem;
}

.service-book-button::after {
  content: "→";
  font-size: 1.3rem;
  line-height: 0;
}

.service-book-button:hover,
.service-book-button:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

@media (min-width: 640px) {
  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3rem;
  }

  .section {
    padding: 72px 32px;
  }

  .hero-actions,
  .final-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 590px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 670px;
  }

  .proof-item {
    flex-direction: row;
    align-items: flex-start;
    min-height: 58px;
    font-size: 0.78rem;
    text-align: left;
  }

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

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

  .mobile-cta {
    display: none;
  }

  .form-grid-two,
  .thanks-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid-address {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  }

  .service-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 46px;
  }
}

@media (min-width: 900px) {
  .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-height: 0;
    padding: 20px 26px 0;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    align-items: flex-start;
    justify-content: flex-start;
  }

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

  .brand img {
    width: auto;
    height: auto;
    max-width: 180px;
    object-fit: contain;
  }

  .main-nav {
    display: flex;
    gap: 21px;
    margin-left: 10px;
    padding-top: 22px;
    font-size: 0.76rem;
  }

  .hero {
    display: block;
    min-height: 720px;
    padding: 0 0 44px;
    background: var(--white);
  }

  .hero-copy {
    width: 44%;
    max-width: 520px;
    margin: 0;
    padding-top: 184px;
    margin-left: 32px;
    text-align: center;
  }

  h1 {
    max-width: 520px;
    font-size: 3.85rem;
    line-height: 0.88;
  }

  .headline-blue {
    font-size: 0.96em;
  }

  .hero-subheadline {
    max-width: 440px;
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .hero-actions {
    max-width: 452px;
    margin-top: 28px;
    margin-right: auto;
    margin-left: 30px;
    gap: 16px;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 0.82rem;
  }

  .hero-proof {
    max-width: 520px;
    margin-top: 26px;
    margin-right: auto;
    margin-left: 0;
    gap: 14px;
  }

  .proof-item {
    justify-content: center;
    min-height: 44px;
    font-size: 0.72rem;
    line-height: 1.18;
    text-align: left;
  }

  .proof-icon {
    width: 38px;
    height: 38px;
  }

  .proof-handshake {
    width: 50px;
    height: 30px;
  }

  .proof-shield,
  .proof-family {
    width: 44px;
    height: 44px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    background: transparent;
    pointer-events: none;
  }

  .hero-composition {
    object-fit: contain;
    object-position: center right;
  }

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

  .step-card {
    position: relative;
  }

  .final-cta {
    grid-template-columns: 220px 1fr 330px;
    min-height: 220px;
    padding: 26px 48px;
    text-align: left;
  }

  .final-cta-art {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .final-cta-art img {
    width: min(100%, 210px);
    max-height: 178px;
    object-fit: contain;
  }

  .final-actions {
    grid-template-columns: 1fr;
    justify-self: end;
    width: 100%;
  }

  .services-page .site-header,
  .contact-page .site-header,
  .thank-you-page .site-header {
    position: sticky;
    top: 0;
    min-height: 82px;
    padding: 10px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    align-items: center;
  }

  .services-page .brand img,
  .contact-page .brand img,
  .thank-you-page .brand img {
    max-width: 150px;
  }

  .services-page .main-nav,
  .contact-page .main-nav,
  .thank-you-page .main-nav {
    padding-top: 0;
  }

  .services-page .header-actions,
  .contact-page .header-actions,
  .thank-you-page .header-actions {
    padding-top: 0;
  }

  .service-detail-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 24px;
  }

  .service-detail-media {
    width: 116px;
    height: 116px;
    margin-top: 10px;
  }
}

@media (min-width: 1060px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 7px;
    margin-left: auto;
  }

  .header-actions .btn,
  .phone-pill {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 3.95rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.7rem;
  }

  .header-actions .btn,
  .phone-pill {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.76rem;
  }

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

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

  .trust-image {
    width: 140px;
  }

  .hero {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-copy {
    max-width: 520px;
    margin-left: 48px;
  }
}

@media (min-width: 1240px) {
  .site-header {
    padding-right: 44px;
    padding-left: 44px;
  }

  .main-nav {
    gap: 21px;
    font-size: 0.76rem;
  }

  .header-actions .btn,
  .phone-pill {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-visual {
    right: 0;
    max-width: none;
  }

  .hero-copy {
    margin-left: max(58px, calc((100vw - 1240px) / 2 + 58px));
    transform: none;
  }
}

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

  h2 {
    font-size: 2.08rem;
  }

  .btn,
  .phone-pill {
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 395px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.35rem;
  }
}
