:root {
  --navy: #1c355e;
  --navy-deep: #122840;
  --blue: #6a9bc3;
  --steel: #a8b8c8;
  --white: #ffffff;
  --off-white: #f6f7f8;
  --ink: #171d24;
  --body: #4c5562;
  --muted: #788391;
  --line: #d9dee4;
  --font: "Inter Variable", Inter, Arial, Helvetica, sans-serif;
  --width: 78rem;
  --gutter: clamp(1.1rem, 3vw, 2.25rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(2.8rem, 4.9vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.1vw, 2.9rem); }
h3 { font-size: clamp(1.12rem, 1.5vw, 1.4rem); }

p { margin-top: 0; text-wrap: pretty; }
ul, ol { margin-top: 0; }
summary { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.site-width {
  width: min(calc(100% - (2 * var(--gutter))), var(--width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  text-decoration: none;
}

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

/* Header */

.top-strip {
  color: #e4eaf0;
  background: var(--navy-deep);
  font-size: .76rem;
}

.top-strip__inner {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip p { margin: 0; }

.top-strip a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: 4.15rem;
  align-items: center;
  gap: 1.4rem;
}

.logo {
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav { display: none; }

.desktop-nav > a,
.services-dropdown > summary {
  color: var(--ink);
  font-size: .83rem;
  font-weight: 650;
  text-decoration: none;
}

.services-dropdown { position: relative; }

.services-dropdown > summary { list-style: none; }

.services-dropdown > summary::-webkit-details-marker { display: none; }

.services-dropdown > summary::after {
  content: " ▾";
  color: var(--muted);
  font-size: .7em;
}

.services-dropdown__menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1rem;
  width: 25rem;
  padding: .35rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.services-dropdown__menu a {
  display: block;
  padding: .8rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
  font-weight: 620;
  text-decoration: none;
}

.services-dropdown__menu a:last-child { border-bottom: 0; }

.services-dropdown__menu a[aria-current="page"] {
  color: var(--navy);
  font-weight: 760;
}

.header-cta {
  display: none;
  margin-left: .25rem;
  padding: .68rem .9rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 2px;
  font-size: .76rem;
  font-weight: 750;
  text-decoration: none;
}

.header-cta:hover { background: var(--navy-deep); }

.mobile-nav {
  position: relative;
  margin-left: auto;
}

.mobile-nav > summary {
  padding: .55rem .75rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: .8rem;
  font-weight: 700;
  list-style: none;
}

.mobile-nav > summary::-webkit-details-marker { display: none; }

.mobile-nav nav {
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  width: min(88vw, 22rem);
  padding: .6rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.mobile-nav nav a {
  display: block;
  padding: .8rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 620;
  text-decoration: none;
}

.mobile-nav nav a:last-child { border-bottom: 0; }

/* Hero */

.service-hero {
  color: var(--white);
  background: var(--navy-deep);
}

.service-hero__layout { display: grid; }

.service-hero__copy {
  padding-block: clamp(4.25rem, 7vw, 6.75rem);
  align-self: center;
}

.service-hero__location {
  margin-bottom: 1rem;
  color: var(--steel);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.service-hero h1 {
  max-width: 10ch;
  color: var(--white);
}

.service-hero__lead {
  max-width: 56ch;
  margin: 1.35rem 0 0;
  color: #f1f4f6;
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
}

.service-hero__scope {
  max-width: 54ch;
  margin: .85rem 0 0;
  color: #ccd7e0;
  font-size: .93rem;
}

.service-hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.05rem;
  border-radius: 3px;
  font-size: .84rem;
  font-weight: 760;
  text-decoration: none;
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover { background: #edf1f4; }

.text-phone {
  color: var(--white);
  font-size: .88rem;
  font-weight: 720;
  text-underline-offset: .18rem;
}

.service-photo {
  margin: 0;
  overflow: hidden;
}

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

.service-photo--hero { min-height: 22rem; }

.service-photo--placeholder { background: #dfe4e8; }

.photo-placeholder {
  display: flex;
  min-height: inherit;
  height: 100%;
  flex-direction: column;
  justify-content: end;
  padding: 1.35rem;
  color: var(--body);
  background: #dfe4e8;
  border: 1px solid #ced5dc;
}

.photo-placeholder span {
  margin-bottom: .3rem;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .1em;
}

.photo-placeholder p {
  max-width: 32ch;
  margin-bottom: 0;
  font-size: .88rem;
  line-height: 1.5;
}

/* Centered intro */

.intro-section {
  padding-block: clamp(4.5rem, 8vw, 7.25rem);
}

.intro-section__inner {
  max-width: 58rem;
  text-align: center;
}

.intro-section h2 {
  max-width: 24ch;
  margin-inline: auto;
  margin-bottom: 1.2rem;
}

.intro-section p {
  max-width: 68ch;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

/* Text + image service sections */

.service-story {
  padding-block: clamp(4.75rem, 8vw, 7.5rem);
  border-top: 1px solid var(--line);
}

.service-story--soft { background: var(--off-white); }

.service-story__layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.service-story__copy { max-width: 40rem; }

.service-story__copy h2 {
  max-width: 19ch;
  margin-bottom: 1.15rem;
}

.service-story__copy h3 {
  margin-top: 1.55rem;
  margin-bottom: .45rem;
}

.service-story__intro {
  max-width: 58ch;
  color: var(--ink);
  font-size: clamp(1.03rem, 1.3vw, 1.12rem);
  font-weight: 590;
}

.service-story .service-photo {
  min-height: clamp(22rem, 43vw, 34rem);
  border-radius: 4px;
}

.plain-list {
  margin: 1.35rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plain-list li {
  padding: .75rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.step-copy + .step-copy {
  padding-top: .25rem;
}

/* Estimate */

.estimate-section {
  padding-block: clamp(4.75rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}

.estimate-section__layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.estimate-section__layout > div { max-width: 39rem; }

.estimate-section h2 {
  max-width: 20ch;
  margin-bottom: 1.1rem;
}

.estimate-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.estimate-list li {
  padding: .82rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

/* Boundaries */

.boundary-section {
  color: #dce4eb;
  background: var(--navy-deep);
}

.boundary-section__layout {
  display: grid;
  gap: 2rem;
  padding-block: clamp(4.25rem, 7vw, 6.5rem);
  align-items: start;
}

.boundary-section h2 {
  max-width: 21ch;
  color: var(--white);
}

.boundary-copy {
  max-width: 60ch;
}

.boundary-copy p {
  color: #dce4eb;
}

.boundary-copy p:first-child {
  color: var(--white);
  font-size: clamp(1.03rem, 1.3vw, 1.12rem);
  font-weight: 580;
}

/* Process */

.process-section {
  padding-block: clamp(4.75rem, 8vw, 7rem);
  background: var(--off-white);
  border-top: 1px solid var(--line);
}

.process-section__layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.process-section__heading {
  max-width: 36rem;
}

.process-section__heading h2 {
  margin-bottom: .8rem;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  padding-top: .15rem;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.process-list h3 {
  margin-bottom: .4rem;
  font-size: 1.12rem;
}

.process-list p {
  max-width: 62ch;
  margin-bottom: 0;
}

/* Related note */

.related-note {
  padding-block: clamp(2.75rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.related-note__inner p {
  max-width: 76ch;
  margin-bottom: 0;
}

.related-note a {
  color: var(--ink);
  font-weight: 700;
}

/* Final CTA */

.final-cta {
  color: var(--white);
  background: var(--navy);
}

.final-cta__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(4rem, 7vw, 6rem);
}

.final-cta h2 {
  max-width: 18ch;
  color: var(--white);
}

.final-cta p {
  max-width: 59ch;
  color: #dce4eb;
}

/* Footer */

.site-footer {
  padding: clamp(3.5rem, 6vw, 5rem) 0 5.5rem;
  color: #d3dce4;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.logo--footer {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand p { max-width: 38ch; }

.footer-brand > a:not(.logo) {
  color: var(--white);
  font-weight: 700;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: .5rem;
}

.site-footer nav strong {
  margin-bottom: .3rem;
  color: var(--white);
  font-size: .78rem;
}

.site-footer nav a {
  color: #dbe3e9;
  font-size: .83rem;
  text-decoration: none;
}

.site-footer nav a:hover { text-decoration: underline; }

.footer-bottom {
  display: grid;
  gap: .5rem;
  margin-top: 2.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .75rem;
}

.footer-bottom p { margin-bottom: 0; }

/* Mobile sticky actions */

.mobile-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-actions a {
  display: grid;
  min-height: 3.5rem;
  place-items: center;
  padding: .65rem;
  color: var(--navy-deep);
  font-size: .8rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.mobile-actions a:first-child {
  color: var(--white);
  background: var(--navy);
}

/* Tablet */

@media (min-width: 48rem) {
  .service-hero__layout {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: stretch;
  }

  .service-photo--hero { min-height: 34rem; }

  .service-story__layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .estimate-section__layout,
  .process-section__layout,
  .boundary-section__layout,
  .final-cta__layout {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }

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

  .footer-bottom {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }

  .footer-bottom p:last-child { text-align: right; }
}

/* Desktop */

@media (min-width: 64rem) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-left: auto;
  }

  .header-cta { display: inline-flex; }
  .mobile-nav { display: none; }

  .service-hero__layout {
    grid-template-columns: minmax(0, .75fr) minmax(34rem, 1.25fr);
  }

  .service-photo--hero { min-height: 38rem; }

  .service-story__layout {
    grid-template-columns: minmax(0, .83fr) minmax(31rem, 1.17fr);
  }

  .service-story .service-photo { min-height: 33rem; }

  .site-footer { padding-bottom: 3rem; }

  .mobile-actions { display: none; }
}

/* Mobile */

@media (max-width: 47.99rem) {
  body { padding-bottom: 3.5rem; }

  .top-strip__inner p { max-width: 24ch; }

  .service-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 11vw, 3.35rem);
  }

  .service-hero__actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .text-phone { text-align: center; }

  .service-story__copy h2,
  .estimate-section h2,
  .boundary-section h2,
  .final-cta h2 {
    max-width: 16ch;
  }

  .service-story .service-photo { min-height: 22rem; }
}

@media (max-width: 24.5rem) {
  .top-strip { font-size: .7rem; }

  .logo {
    font-size: .92rem;
    letter-spacing: .07em;
  }

  .mobile-nav > summary { padding-inline: .6rem; }
  .button { font-size: .8rem; }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   SITEWIDE QA PATCH — MOBILE UTILITY BAR
   Keeps the service area readable without turning the top strip
   into a three-line block on small screens.
   ========================================================= */

.top-strip__area {
  white-space: nowrap;
}

@media (max-width: 47.99rem) {
  .top-strip__descriptor {
    display: none;
  }

  .top-strip__inner {
    gap: .75rem;
  }

  .top-strip__inner p {
    max-width: none !important;
    white-space: nowrap;
  }
}


/* =========================================================
   SITEWIDE QA PATCH — SERVICE PAGE RESPONSIVE COMPOSITION
   The video-inspired split layout is retained on wide screens,
   but 768–1024px no longer forces cramped two-column service
   heroes or narrow text/image sections.
   ========================================================= */

@media (min-width: 48rem) and (max-width: 69.99rem) {
  .service-hero__layout,
  .service-story__layout {
    grid-template-columns: 1fr;
  }

  .service-photo--hero,
  .service-story .service-photo {
    min-height: 28rem;
  }
}

@media (min-width: 70rem) {
  .service-hero__layout {
    grid-template-columns: minmax(0, .9fr) minmax(32rem, 1.1fr);
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .service-hero h1 {
    max-width: 15ch;
    font-size: clamp(3rem, 4.1vw, 4.05rem);
  }
}

