:root {
  --ink: #172321;
  --muted: #56635f;
  --paper: #ffffff;
  --surface: #f5f8f2;
  --surface-strong: #e6f1e8;
  --line: #d8e0d8;
  --teal: #17655b;
  --teal-dark: #0f3f3a;
  --green: #6d8f45;
  --amber: #d36b2c;
  --charcoal: #25312e;
  --shadow: 0 18px 40px rgba(21, 35, 32, 0.12);
  --radius: 8px;
  --content: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal);
}

a:hover {
  color: var(--amber);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--paper);
  background: var(--teal);
  border: 2px solid var(--teal-dark);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 19px;
  height: 2px;
  display: block;
  background: var(--ink);
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.35rem);
  display: none;
  padding: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: block;
}

.nav-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--surface-strong);
}

.nav-cta {
  display: none;
}

.button,
button.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  background: var(--amber);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  cursor: pointer;
}

.button:hover {
  color: var(--paper);
  background: #b9551e;
  border-color: #b9551e;
}

.button.secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.button.secondary:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button.light {
  color: var(--teal-dark);
  background: var(--paper);
  border-color: var(--paper);
}

.button.light:hover {
  color: var(--paper);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.outline {
  color: var(--teal-dark);
  background: transparent;
  border-color: var(--teal);
}

.button.outline:hover {
  color: var(--paper);
  background: var(--teal);
}

.button[disabled] {
  color: #63716c;
  background: #dfe6df;
  border-color: #dfe6df;
  cursor: not-allowed;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  color: var(--paper);
  background-color: var(--charcoal);
  background-image:
    linear-gradient(90deg, rgba(18, 31, 29, 0.94) 0%, rgba(18, 31, 29, 0.82) 48%, rgba(18, 31, 29, 0.3) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-inner,
.section-inner,
.page-hero-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-content {
  max-width: 720px;
  padding: 4.5rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #cbe7da;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: 2.35rem;
  line-height: 1.08;
}

.hero-copy,
.page-hero-copy {
  max-width: 720px;
  margin: 1rem 0 0;
  color: #edf6ef;
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof {
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #f3fbf5;
  font-weight: 700;
}

.hero-proof li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--amber);
  border-radius: 50%;
  content: "";
}

.section {
  padding: 3.75rem 0;
}

.section.alt {
  background: var(--surface);
}

.section.deep {
  color: var(--paper);
  background: var(--teal-dark);
}

.section-header {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-header h2,
.content-block h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.18;
}

.section-header p,
.content-block p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.section.deep .section-header p,
.section.deep .content-block p {
  color: #d9eee4;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two,
.grid.three,
.grid.four {
  grid-template-columns: 1fr;
}

.card {
  padding: 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card h3,
.card h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.service-list {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

.service-list a {
  display: inline-flex;
  font-weight: 700;
  text-decoration: none;
}

.pill-list {
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}

.pill-list li,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.65rem;
  color: var(--teal-dark);
  font-weight: 800;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3.1rem;
}

.step::before {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--teal);
  border-radius: 50%;
  counter-increment: step;
  content: counter(step);
}

.split {
  display: grid;
  gap: 1.5rem;
}

.report-panel {
  padding: 1.35rem;
  color: var(--paper);
  background: var(--charcoal);
  border-radius: var(--radius);
}

.report-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.area-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.area-list li {
  padding: 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.area-list strong {
  display: block;
}

.area-list span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

.page-hero {
  padding: 3.6rem 0 2.8rem;
  color: var(--paper);
  background: var(--charcoal);
}

.page-hero .breadcrumb {
  margin-bottom: 0.9rem;
}

.breadcrumb {
  color: #d9eee4;
  font-size: 0.9rem;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.35rem;
  content: "/";
}

.content {
  padding: 3.25rem 0;
}

.content-grid {
  display: grid;
  gap: 1.5rem;
}

.content-main {
  display: grid;
  gap: 1.25rem;
}

.content-block {
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-block ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.content-block li + li {
  margin-top: 0.4rem;
}

.sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sidebar .card {
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item h3 {
  margin: 0;
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form label {
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
  border: 1px solid #b8c5bf;
  border-radius: var(--radius);
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form small {
  color: var(--muted);
}

.notice {
  padding: 1rem;
  color: #3d2b00;
  background: #fff1c7;
  border: 1px solid #dfb94f;
  border-radius: var(--radius);
}

.cta-band {
  padding: 3.25rem 0;
  color: var(--paper);
  background: var(--teal-dark);
}

.cta-band h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.16;
}

.cta-band p {
  max-width: 760px;
  margin: 0.75rem 0 0;
  color: #d9eee4;
}

.site-footer {
  padding: 2.5rem 0;
  color: #dbe5df;
  background: #172321;
}

.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 1.5rem;
}

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

.footer-heading {
  margin: 0 0 0.55rem;
  color: var(--paper);
  font-size: 0.95rem;
}

.footer-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  list-style: none;
}

.footer-list a {
  color: #dbe5df;
  text-decoration: none;
}

.footer-list a:hover {
  color: #f4b27a;
}

.footer-note {
  margin: 0;
  color: #aebdb7;
  font-size: 0.9rem;
}

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

@media (min-width: 720px) {
  .hero h1,
  .page-hero h1 {
    font-size: 3.25rem;
  }

  .hero-copy,
  .page-hero-copy {
    font-size: 1.18rem;
  }

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

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

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

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

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

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .nav-link {
    padding: 0.55rem 0.7rem;
    font-size: 0.93rem;
  }

  .nav-cta {
    display: inline-flex;
  }

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

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
  }
}

@media (max-width: 420px) {
  .brand-subtitle {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }
}

/* Mockup-inspired launch styling. Keeps the site static, honest, and fast. */
:root {
  --ink: #07111f;
  --muted: #4f5d6d;
  --paper: #ffffff;
  --surface: #f4f8fc;
  --surface-strong: #e8f3ff;
  --line: #d8e3ef;
  --teal: #0877e8;
  --teal-dark: #06345f;
  --green: #2b8a67;
  --amber: #f08a24;
  --charcoal: #071d33;
  --shadow: 0 20px 46px rgba(7, 29, 51, 0.12);
  --content: 1180px;
}

body {
  color: var(--ink);
  background: var(--paper);
}

a {
  color: var(--teal);
}

a:hover {
  color: var(--teal-dark);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 227, 239, 0.8);
  box-shadow: 0 10px 30px rgba(7, 29, 51, 0.05);
}

.header-inner {
  padding: 1rem;
}

.brand {
  gap: 0.75rem;
}

.brand-mark {
  width: 52px;
  height: 54px;
  padding: 3px;
  color: var(--paper);
  background: var(--paper);
  border: 1px solid rgba(216, 227, 239, 0.95);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(7, 29, 51, 0.08);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-link {
  color: var(--ink);
  font-weight: 800;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--teal);
  background: var(--surface-strong);
}

.button,
button.button {
  min-height: 48px;
  padding: 0.78rem 1.1rem;
  background: #0877e8;
  border-color: #0877e8;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(8, 119, 232, 0.18);
}

.button:hover {
  background: #005ec8;
  border-color: #005ec8;
}

.button.secondary {
  padding-left: 1.1rem;
  color: var(--teal);
  background: rgba(8, 119, 232, 0.08);
  border-color: rgba(8, 119, 232, 0.16);
  box-shadow: none;
}

.button.secondary::before {
  display: none;
  content: none;
}

.button.secondary::after {
  display: none;
  content: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--teal-dark);
  background: var(--surface-strong);
  border-color: rgba(8, 119, 232, 0.28);
}

.button.outline {
  color: var(--teal);
  border-color: var(--teal);
}

.button.outline:hover {
  color: var(--paper);
  background: var(--teal);
}

.hero {
  min-height: auto;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-image: none;
}

.hero-inner {
  min-height: 600px;
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1rem 0;
}

.hero-content {
  max-width: 620px;
  padding: 1.75rem 0 2.5rem;
  position: relative;
  z-index: 2;
}

.hero .eyebrow,
.section-header .eyebrow,
.local-copy .eyebrow,
.area-ribbon .eyebrow,
.estimate-copy .eyebrow {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1,
.section-header h2,
.estimate-copy h2,
.cta-band h2 {
  font-family: "Arial Narrow", Impact, Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  color: var(--ink);
  font-size: 3rem;
  line-height: 0.96;
}

.hero h1::first-line {
  color: var(--teal);
}

.hero-copy {
  max-width: 540px;
  color: #263545;
  font-size: 1.05rem;
}

.hero-copy::before {
  width: 64px;
  height: 4px;
  display: block;
  margin: 0 0 0.9rem;
  background: var(--teal);
  content: "";
}

.hero-proof {
  grid-template-columns: 1fr;
  color: var(--ink);
}

.hero-proof li {
  color: #263545;
}

.hero-proof li::before {
  background: var(--teal);
}

.hero-visual {
  position: relative;
  min-height: 360px;
  align-self: stretch;
}

.hero-visual::before {
  display: none;
  content: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 90px 0 0 0;
  box-shadow: var(--shadow);
}

.section {
  padding: 3.5rem 0;
}

.section-header.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header.centered h2::after,
.estimate-copy h2::after {
  width: 58px;
  height: 4px;
  display: block;
  margin: 0.65rem auto 0;
  background: var(--teal);
  content: "";
}

.grid.five,
.grid.six {
  grid-template-columns: 1fr;
}

.card {
  border-color: var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(7, 29, 51, 0.06);
}

.service-card {
  min-height: 238px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.service-card h3 {
  margin-top: 0.95rem;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.92rem;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--teal);
}

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

.service-card .service-icon {
  width: 82px;
  height: 82px;
}

.service-summary-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.service-summary-card .service-icon {
  width: 46px;
  height: 46px;
  margin-top: 0.1rem;
}

.card-link {
  color: var(--teal);
  font-weight: 900;
}

.card-link::after {
  margin-left: 0.35rem;
  content: "->";
}

.centered-link {
  margin: 1.2rem 0 0;
  text-align: center;
}

.local-feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.local-board {
  position: relative;
  min-height: 260px;
  padding: 2rem;
  display: grid;
  align-content: center;
  gap: 1rem;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(135deg, #071d33 0%, #0d3e68 100%);
  border-radius: 0 80px 0 0;
  box-shadow: var(--shadow);
}

.local-board::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, #0877e8, #4fb0ff);
  content: "";
}

.local-board-kicker {
  margin: 0;
  color: #9cd1ff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-board ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.local-board li {
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.local-board span {
  color: #9cd1ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-board strong {
  color: var(--paper);
  font-size: 0.98rem;
  line-height: 1.35;
}

.local-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", Impact, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.local-copy p {
  color: var(--muted);
}

.proof-grid {
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.proof-grid li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
}

.proof-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.proof-icon::before {
  width: 12px;
  height: 7px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
  content: "";
}

.area-ribbon {
  padding: 1.4rem 0;
  background: linear-gradient(90deg, #eaf5ff, #f8fbff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-ribbon-inner {
  display: grid;
  gap: 1rem;
}

.area-pin {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--teal);
  border-radius: 50%;
}

.area-ribbon ul {
  margin: 0.35rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.25rem;
  list-style: none;
}

.area-ribbon li {
  color: var(--ink);
  font-weight: 800;
}

.area-ribbon li + li::before {
  margin-right: 1.25rem;
  color: var(--teal);
  content: "/";
}

.area-ribbon p {
  margin: 0;
  color: var(--muted);
}

.step {
  min-height: 156px;
  padding-top: 1.25rem;
  padding-left: 3.35rem;
}

.step::before {
  background: var(--teal);
}

.feature-block {
  border-top: 4px solid var(--teal);
}

.report-panel {
  background: linear-gradient(135deg, #071d33, #0d3e68);
}

.estimate-band {
  padding: 2.5rem 0;
  background: #ffffff;
}

.estimate-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.estimate-copy h2 {
  margin: 0;
  font-size: 2.05rem;
  line-height: 0.98;
}

.estimate-copy h2::after {
  margin-right: 0;
  margin-left: 0;
}

.estimate-copy p {
  max-width: 390px;
  color: var(--muted);
}

.estimate-status {
  padding: 0.75rem;
  color: #5b3a00;
  background: #fff3d8;
  border: 1px solid #f1c36d;
  border-radius: 8px;
  font-size: 0.9rem;
}

.estimate-form {
  display: grid;
  gap: 0.75rem;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
  border: 1px solid #cfd9e5;
  border-radius: 6px;
}

.estimate-form textarea {
  min-height: 86px;
  grid-column: 1 / -1;
  resize: vertical;
}

.estimate-form .button {
  width: 100%;
}

.cta-band {
  background: linear-gradient(135deg, #071d33, #0d3e68);
}

.cta-band .button.secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-band .button.secondary:hover,
.cta-band .button.secondary:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.site-footer {
  position: relative;
  padding: 3.25rem 0 2rem;
  background: linear-gradient(135deg, #06182a, #09243d);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, #0877e8, #4fb0ff);
  content: "";
}

.footer-heading {
  text-transform: uppercase;
}

@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    padding-top: 0;
  }

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

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

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

  .local-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

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

  .area-ribbon-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .estimate-layout {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  }

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

  .estimate-form .button {
    grid-column: 1 / -1;
    justify-self: end;
    max-width: 260px;
  }
}

@media (min-width: 960px) {
  .header-inner {
    padding: 1.05rem 1rem;
  }

  .hero-inner {
    min-height: 520px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 3.6rem;
  }

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

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

  .service-card {
    min-height: 250px;
  }
}

@media (max-width: 719px) {
  .header-inner {
    gap: 0.55rem;
    padding: 0.9rem 0.75rem;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
  }

  .brand-name {
    font-size: 0.96rem;
    line-height: 1.12;
  }

  .nav-toggle {
    flex: 0 0 auto;
  }

  .nav-cta {
    flex: 0 0 auto;
    max-width: 108px;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.15;
    text-align: center;
  }

  .hero-inner {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .hero-visual {
    order: -1;
    min-height: 230px;
    margin: 0 -1rem;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual img {
    min-height: 230px;
    border-radius: 0;
  }

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

  .area-ribbon li + li::before {
    display: none;
  }
}

.splash-body {
  color: var(--paper);
  background: #071d33;
}

.splash {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  isolation: isolate;
}

.splash::before,
.splash::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.splash::before {
  right: 50%;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.98), rgba(235, 247, 255, 0.9)),
    linear-gradient(90deg, #f8fbff, #dff0ff);
}

.splash::after {
  left: 50%;
  background:
    linear-gradient(125deg, rgba(7, 7, 7, 0.95), rgba(16, 18, 20, 0.82)),
    linear-gradient(90deg, #111111, #2b2400 72%, #f3c400);
}

.splash-brand {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2.5rem);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: #071d33;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 12px 16px rgba(7, 29, 51, 0.16));
  transform: none;
}

.splash-brand img {
  width: clamp(64px, 6.4vw, 92px);
  height: auto;
  object-fit: contain;
}

.splash-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.splash-media img {
  width: min(54vw, 720px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  filter: saturate(1.04) contrast(1.03);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.28);
}

.splash-media::after {
  position: absolute;
  inset: 0 0 0 50%;
  width: min(27vw, 360px);
  background:
    linear-gradient(90deg, rgba(8, 119, 232, 0.16), rgba(255, 204, 0, 0.44)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.46));
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
  mix-blend-mode: multiply;
  content: "";
}

.splash-panel {
  min-height: 100svh;
  padding: clamp(7rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem) clamp(2.5rem, 7vw, 5.5rem);
  display: grid;
  align-content: end;
  position: relative;
}

.splash-panel-property {
  color: #071d33;
}

.splash-panel-construction {
  color: #f8fafc;
}

.splash-copy {
  width: 100%;
  max-width: 440px;
}

.splash-panel-construction .splash-copy {
  max-width: 520px;
  justify-self: end;
  text-align: right;
}

.splash-kicker,
.construction-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.splash-panel-property .splash-kicker {
  color: #0877e8;
}

.splash-panel-construction .splash-kicker,
.construction-kicker {
  color: #ffce1b;
}

.splash h1,
.splash h2,
.construction-hero h1,
.construction-note h2 {
  margin: 0;
  font-family: "Arial Narrow", Impact, Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.splash h1,
.splash h2 {
  font-size: clamp(2.2rem, 5.2vw, 5.6rem);
}

.splash h1 span,
.splash h2 span {
  display: block;
}

.splash-panel-construction h2 {
  font-size: clamp(2.25rem, 2.7vw, 3rem);
}

.splash p {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1rem;
}

.splash-panel-property p {
  color: #263545;
}

.splash-panel-construction p {
  color: #d9dee5;
}

.splash-button,
.construction-button {
  min-height: 48px;
  margin-top: 1.4rem;
  padding: 0.85rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    filter 180ms ease;
}

.splash-button:hover,
.splash-button:focus-visible,
.construction-button:hover,
.construction-button:focus-visible {
  transform: translateY(-2px);
}

.splash-button-property {
  background: #0877e8;
  box-shadow: 0 16px 32px rgba(8, 119, 232, 0.22);
}

.splash-button-property:hover,
.splash-button-property:focus-visible {
  background: #005ec8;
  border-color: #005ec8;
  box-shadow: 0 20px 38px rgba(8, 119, 232, 0.3);
}

.splash-button-construction,
.construction-button {
  color: #111111;
  background: #ffce1b;
  box-shadow: 0 16px 32px rgba(255, 206, 27, 0.18);
}

.splash-button-construction:hover,
.splash-button-construction:focus-visible,
.construction-button:hover,
.construction-button:focus-visible {
  background: #ffd94d;
  border-color: #ffd94d;
  box-shadow: 0 20px 38px rgba(255, 206, 27, 0.26);
}

.construction-body {
  color: #f8fafc;
  background: #111111;
}

.construction-hero {
  position: relative;
  min-height: 100svh;
  padding: 1.1rem;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.86) 58%, rgba(255, 206, 27, 0.9) 100%),
    linear-gradient(90deg, #111111, #2a250e);
}

.construction-hero::before {
  position: absolute;
  top: 0;
  right: 13%;
  bottom: 0;
  width: min(24vw, 320px);
  background: rgba(255, 206, 27, 0.9);
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
  content: "";
}

.construction-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.construction-topline a {
  color: #111111;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  background: #ffce1b;
  border-radius: 6px;
}

.construction-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  align-self: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.construction-hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 6rem);
}

.construction-hero p {
  max-width: 640px;
  color: #d9dee5;
  font-size: 1.05rem;
}

.construction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.construction-button-secondary {
  color: #f8fafc;
  background: transparent;
  border-color: rgba(255, 206, 27, 0.55);
  box-shadow: none;
}

.construction-button-secondary:hover,
.construction-button-secondary:focus-visible {
  color: #111111;
  background: #ffce1b;
}

.construction-notes {
  padding: clamp(2rem, 6vw, 4.5rem) 1rem;
  display: grid;
  gap: 1rem;
  color: #111111;
  background: #f8fafc;
}

.construction-note {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 1.4rem;
  background: #ffffff;
  border-left: 6px solid #ffce1b;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
}

.construction-note h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.construction-note p,
.construction-note li {
  color: #2f3540;
}

.construction-site-body {
  color: #f8fafc;
  background: #111111;
}

.construction-site {
  min-height: 100vh;
  background: #111111;
}

.construction-site-header {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.construction-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #f8fafc;
  text-decoration: none;
}

.construction-site-brand img {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(255, 206, 27, 0.18));
}

.construction-site-brand strong,
.construction-site-brand small {
  display: block;
}

.construction-site-brand strong {
  font-weight: 900;
  text-transform: uppercase;
}

.construction-site-brand small {
  color: #ffce1b;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.construction-site-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
}

.construction-site-nav a {
  padding: 0.55rem 0.7rem;
  display: inline-flex;
  color: #d9dee5;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.construction-site-nav a:hover,
.construction-site-nav a:focus-visible,
.construction-site-nav a[aria-current="page"] {
  color: #111111;
  background: #ffce1b;
  border-color: #ffce1b;
  transform: translateY(-1px);
}

.construction-live-hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 1rem;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.84) 58%, rgba(255, 206, 27, 0.92)),
    linear-gradient(90deg, #111111, #2a250e);
}

.construction-live-hero::before {
  position: absolute;
  top: 0;
  right: 10%;
  bottom: 0;
  width: min(26vw, 320px);
  background: rgba(255, 206, 27, 0.78);
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
  content: "";
}

.construction-service-hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.construction-live-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.construction-live-hero h1,
.construction-live-section h2,
.construction-live-cta h2 {
  max-width: 780px;
  margin: 0;
  font-family: "Arial Narrow", Impact, Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.construction-live-hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 6.2rem);
}

.construction-live-section h2,
.construction-live-cta h2 {
  color: #111111;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.construction-live-hero p {
  max-width: 650px;
  color: #d9dee5;
  font-size: 1.08rem;
}

.construction-proof {
  max-width: 900px;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
}

.construction-proof li {
  padding: 0.9rem;
  display: grid;
  gap: 0.45rem;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 206, 27, 0.26);
  border-radius: 8px;
}

.construction-proof span {
  width: 1.4rem;
  height: 0.35rem;
  display: inline-block;
  background: #ffce1b;
  border-radius: 999px;
}

.construction-live-section,
.construction-live-cta {
  padding: clamp(3rem, 7vw, 5.5rem) 1rem;
  color: #111111;
  background: #f8fafc;
}

.construction-live-section-dark {
  color: #f8fafc;
  background: #111111;
}

.construction-live-section-dark h2,
.construction-live-section-dark p,
.construction-live-section-dark li {
  color: #f8fafc;
}

.construction-section-header {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.construction-section-header p {
  color: #343b46;
}

.construction-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.construction-service-card {
  min-height: 100%;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  color: #111111;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.construction-service-card:hover,
.construction-service-card:focus-within {
  border-color: rgba(255, 206, 27, 0.8);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.12);
  transform: translateY(-3px);
}

.construction-service-card .service-icon {
  width: 52px;
  height: 52px;
  color: #111111;
  filter: drop-shadow(0 8px 14px rgba(255, 206, 27, 0.18));
}

.construction-service-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.construction-service-card h3 a {
  color: #111111;
  text-decoration: none;
}

.construction-service-card p {
  margin-bottom: 0;
  color: #38414d;
}

.construction-split,
.construction-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.construction-note-panel {
  padding: 1.25rem;
  color: #111111;
  background: #ffffff;
  border-left: 6px solid #ffce1b;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.construction-note-panel h2,
.construction-note-panel h3 {
  margin-top: 0;
  color: #111111;
}

.construction-note-panel p,
.construction-note-panel li {
  color: #343b46;
}

.construction-content-main {
  display: grid;
  gap: 1.25rem;
}

.construction-content-main .content-block {
  background: #ffffff;
}

.construction-sidebar {
  display: grid;
  gap: 1rem;
}

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

.construction-live-cta {
  background: #ffce1b;
}

.construction-live-cta p {
  max-width: 660px;
  color: #2a250e;
}

.construction-live-cta .construction-button {
  background: #111111;
  color: #ffce1b;
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.2);
}

.construction-live-cta .construction-button-secondary {
  color: #111111;
  background: transparent;
  border-color: rgba(17, 17, 17, 0.45);
}

.construction-site .breadcrumb a,
.construction-site .breadcrumb li {
  color: rgba(248, 250, 252, 0.82);
}

.construction-site .breadcrumb li + li::before {
  color: rgba(255, 206, 27, 0.75);
}

@media (min-width: 860px) {
  .construction-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .splash {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .splash::before,
  .splash::after {
    display: none;
  }

  .splash-brand {
    left: 1rem;
    transform: none;
  }

  .splash-media {
    position: relative;
    height: 250px;
    order: 3;
    background: #071d33;
  }

  .splash-media img {
    width: 100%;
    max-width: none;
    height: 100%;
    clip-path: none;
    opacity: 0.78;
  }

  .splash-media::after {
    inset: 0;
    width: auto;
    background: linear-gradient(90deg, rgba(8, 119, 232, 0.42), rgba(255, 206, 27, 0.48));
    clip-path: none;
  }

  .splash-panel {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 6rem 1rem 2rem;
  }

  .splash-copy,
  .splash p {
    width: min(100%, calc(100vw - 3rem));
    max-width: 100%;
    min-width: 0;
  }

  .splash h1,
  .splash h2 {
    max-width: calc(100vw - 3rem);
  }

  .splash-panel-property {
    order: 1;
    background: linear-gradient(180deg, #ffffff, #ebf7ff);
  }

  .splash-panel-construction {
    order: 2;
    background: linear-gradient(135deg, #111111, #25200d);
  }

  .splash-panel-construction .splash-copy {
    max-width: 100%;
    justify-self: start;
    text-align: left;
  }

  .splash-panel-construction {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .splash h1,
  .splash h2,
  .splash-panel-construction h2 {
    font-size: clamp(2.05rem, 10vw, 2.55rem);
  }

  .splash-panel-construction h2 {
    font-size: clamp(1.95rem, 8.8vw, 2.25rem);
  }

  .construction-hero::before {
    right: -4rem;
    width: 14rem;
  }

  .construction-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .construction-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .construction-site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .construction-site-nav ul {
    gap: 0.25rem;
  }

  .construction-live-hero::before {
    right: -5rem;
    width: 14rem;
  }

  .construction-proof,
  .construction-service-grid,
  .construction-related-grid,
  .construction-split,
  .construction-content-grid {
    grid-template-columns: 1fr;
  }

  .construction-live-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }
}

/* CSS-only interaction polish: transform/paint effects only, no layout animation. */
.brand,
.brand-mark,
.nav-link,
.button,
button.button,
.card,
.service-card,
.service-icon,
.card-link,
.card-link::after,
.nav-toggle {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    filter 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  color: var(--ink);
  transform: translateY(-2px) scale(1.01);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  box-shadow: 0 12px 26px rgba(8, 119, 232, 0.24);
  filter: saturate(1.08);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--teal);
  background: var(--surface-strong);
  transform: translateY(-1px);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 8px 18px rgba(8, 119, 232, 0.14);
}

.button:not([disabled]):hover,
.button:not([disabled]):focus-visible,
button.button:not([disabled]):hover,
button.button:not([disabled]):focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8, 119, 232, 0.26);
}

.button.secondary:not([disabled]):hover,
.button.secondary:not([disabled]):focus-visible {
  box-shadow: 0 10px 22px rgba(8, 119, 232, 0.12);
}

.button.outline:not([disabled]):hover,
.button.outline:not([disabled]):focus-visible {
  box-shadow: 0 14px 26px rgba(8, 119, 232, 0.18);
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(8, 119, 232, 0.48);
  box-shadow: 0 20px 42px rgba(7, 29, 51, 0.13);
  transform: translateY(-5px);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  color: #005ec8;
  filter: drop-shadow(0 8px 14px rgba(8, 119, 232, 0.22));
  transform: scale(1.06);
}

.service-card:hover .card-link,
.service-card:focus-within .card-link {
  color: #005ec8;
}

.service-summary-card:hover,
.service-summary-card:focus-within {
  border-color: rgba(8, 119, 232, 0.42);
  box-shadow: 0 16px 34px rgba(7, 29, 51, 0.1);
  transform: translateY(-3px);
}

.service-summary-card:hover .service-icon,
.service-summary-card:focus-within .service-icon {
  color: #005ec8;
  filter: drop-shadow(0 7px 12px rgba(8, 119, 232, 0.18));
  transform: scale(1.04);
}

.card-link:hover,
.card-link:focus-visible {
  color: #005ec8;
}

.card-link:hover::after,
.card-link:focus-visible::after {
  transform: translateX(3px);
}

.card:focus-within {
  border-color: rgba(8, 119, 232, 0.42);
  box-shadow: 0 16px 34px rgba(7, 29, 51, 0.1);
}

.footer-list a,
.service-list a {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.footer-list a:hover,
.footer-list a:focus-visible,
.service-list a:hover,
.service-list a:focus-visible {
  transform: translateX(2px);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .brand:hover,
  .brand:focus-visible,
  .nav-link:hover,
  .nav-link:focus-visible,
  .button:not([disabled]):hover,
  .button:not([disabled]):focus-visible,
  button.button:not([disabled]):hover,
  button.button:not([disabled]):focus-visible,
  .service-card:hover,
  .service-card:focus-within,
  .service-card:hover .service-icon,
  .service-card:focus-within .service-icon,
  .service-summary-card:hover,
  .service-summary-card:focus-within,
  .service-summary-card:hover .service-icon,
  .service-summary-card:focus-within .service-icon,
  .card-link:hover::after,
  .card-link:focus-visible::after,
  .splash-button:hover,
  .splash-button:focus-visible,
  .construction-button:hover,
  .construction-button:focus-visible,
  .construction-site-nav a:hover,
  .construction-site-nav a:focus-visible,
  .construction-service-card:hover,
  .construction-service-card:focus-within,
  .footer-list a:hover,
  .footer-list a:focus-visible,
  .service-list a:hover,
  .service-list a:focus-visible {
    transform: none;
  }
}
