:root {
  --blue: #1257c8;
  --blue-dark: #073a93;
  --black: #05070b;
  --ink: #141927;
  --muted: #626b7a;
  --white: #ffffff;
  --soft: #f2f6ff;
  --soft-dark: #e9effb;
  --line: #dbe4f5;
  --shadow: 0 18px 60px rgba(5, 7, 11, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
}

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

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

img {
  height: auto;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.16rem;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(880px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 10001;
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10000;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(5, 7, 11, 0.12);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(1220px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: 76px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

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

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.nav-dropdown button,
.phone-link {
  color: inherit;
  font: inherit;
  font-weight: 700;
  font-size: 0.93rem;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 340px;
  transform: translateX(-50%);
  padding: 10px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, top 160ms ease;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.25;
}

.dropdown-panel a:hover {
  background: var(--soft);
  color: var(--blue);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(18, 87, 200, 0.25);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(5, 7, 11, 0.18);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.mobile-panel {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.home-hero {
  min-height: 86svh;
  display: flex;
  align-items: center;
  padding: 126px 0 80px;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 132px 0 74px;
}

.hero-video,
.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.66);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 920px;
  text-align: center;
}

.page-hero-content {
  max-width: 760px;
}

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 87, 200, 0.11);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 0 auto 24px;
}

.page-hero h1 {
  margin-left: 0;
}

.hero p,
.page-hero p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero p {
  margin-left: 0;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  justify-content: center;
}

.page-hero .hero-actions {
  justify-content: flex-start;
}

.center {
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 650px;
  margin: 52px auto 0;
}

.hero-stats div {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 2.3rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.section {
  padding: 86px 0;
}

.bg-soft {
  background: var(--soft);
}

.bg-soft-dark {
  background: var(--soft-dark);
}

.bg-black {
  background: var(--black);
  color: var(--white);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
}

.light-text,
.light-text p,
.bg-black .section-head p {
  color: rgba(255, 255, 255, 0.84);
}

.light-text h2,
.bg-black h2,
.bg-black h3 {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1fr);
}

.split.reverse > :first-child {
  order: 2;
}

.rounded-image,
.card-image {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

.rounded-image {
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.image-stack {
  position: relative;
  min-height: 470px;
}

.image-stack .rounded-image {
  width: 88%;
  min-height: 360px;
}

.floating-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(5, 7, 11, 0.08);
}

.service-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.card-image {
  height: 188px;
  border-radius: 0;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.card-body h3 {
  margin-bottom: 12px;
}

.card-body p {
  color: var(--muted);
}

.card-body span {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.feature-panel {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(5, 7, 11, 0.08);
}

.feature-panel h2,
.feature-panel p {
  margin-bottom: 18px;
}

.mini-grid,
.promise-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

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

.mini-grid div,
.mini-grid article,
.promise-grid article,
.process-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-grid h3,
.promise-grid h3,
.process-grid h3 {
  margin-bottom: 10px;
}

.mini-grid p,
.promise-grid p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.process-wrap {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: start;
}

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

.process-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.service-area-band,
.cta-band {
  background: var(--blue-dark);
  color: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(5, 7, 11, 0.08);
}

.review-grid h3 {
  margin: 8px 0 12px;
}

.review-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.stars {
  color: var(--blue);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.map-current {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.map-current h3 {
  margin-bottom: 8px;
}

.map-current p {
  margin: 0;
  color: var(--muted);
}

.service-area-band .map-current {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.service-area-band .map-current p {
  color: rgba(255, 255, 255, 0.78);
}

.area-map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-map-button {
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.area-map-button.active,
.area-map-button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.map-frame {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.area-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.area-panel h3 {
  margin-bottom: 18px;
}

.area-panel ul,
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.area-panel li,
.area-list li {
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.area-list li {
  background: var(--white);
  border: 1px solid var(--line);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

.faq-list p {
  padding-bottom: 18px;
  color: var(--muted);
}

.cta-inner {
  text-align: center;
  max-width: 860px;
}

.cta-inner h2 {
  margin-bottom: 18px;
}

.cta-inner p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.86);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: start;
}

.form-frame {
  width: 100%;
  min-height: 681px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel a {
  color: var(--blue);
  font-weight: 800;
}

.included-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-list li {
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.related-links a {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
}

.hours-table {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hours-table div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr 0.9fr;
  gap: 36px;
}

.footer-brand img {
  width: 96px;
  height: 68px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 5px;
}

.footer-brand span {
  font-size: 1.1rem;
}

.site-footer h3 {
  margin-bottom: 16px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.site-footer a:hover {
  color: var(--white);
}

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

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.scrolled .menu-toggle {
    border-color: var(--line);
  }

  .mobile-panel {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .mobile-panel.open {
    display: grid;
    gap: 12px;
  }

  .mobile-panel a {
    font-weight: 800;
  }

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

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

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

  h2 {
    font-size: 2rem;
  }

  .split,
  .split.reverse,
  .process-wrap,
  .map-grid,
  .quote-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: 0;
  }

  .promise-grid,
  .mini-grid.wide {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .wrap,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .brand-text {
    display: none;
  }

  .home-hero {
    min-height: 84svh;
    padding: 112px 0 56px;
  }

  .page-hero {
    min-height: 390px;
  }

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

  .hero-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 36px;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 10px;
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .service-grid,
  .review-grid,
  .process-grid,
  .mini-grid,
  .area-panel ul,
  .area-list,
  .check-list,
  .related-links,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack .rounded-image,
  .floating-image {
    position: static;
    width: 100%;
    min-height: 0;
    margin-top: 14px;
    border-width: 0;
  }

  .feature-panel {
    padding: 24px;
  }

  .form-frame {
    min-height: 720px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
