:root {
  --black: #05070a;
  --ink: #0b111a;
  --steel: #6f7c89;
  --silver: #d9e0e7;
  --surface: #f4f7fb;
  --white: #ffffff;
  --blue: #008cff;
  --blue-strong: #006de0;
  --blue-dark: #003b8f;
  --line: rgba(12, 18, 27, 0.12);
  --shadow: 0 20px 50px rgba(5, 7, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  display: block;
}

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

p {
  margin: 0 0 1rem;
  color: #425060;
}

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

h1 {
  font-size: 4.25rem;
  font-weight: 850;
}

h2 {
  font-size: 2.65rem;
  font-weight: 820;
}

h3 {
  font-size: 1.12rem;
  font-weight: 780;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 2.4rem;
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.72), rgba(5, 7, 10, 0.24));
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 230px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  color: var(--white);
}

.brand small {
  color: var(--silver);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex: 1;
}

.site-nav a,
.site-nav button {
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.95rem;
  background: none;
  border: 0;
  padding: 0.6rem 0.2rem;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav [aria-current="page"] {
  color: var(--white);
}

.nav-menu {
  position: relative;
}

.nav-menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 260px;
  padding: 0.7rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-menu:hover .nav-menu-panel,
.nav-menu.is-open .nav-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu-panel a {
  display: block;
  color: var(--ink);
  padding: 0.72rem 0.8rem;
  border-radius: 6px;
}

.nav-menu-panel a:hover {
  color: var(--blue-dark);
  background: var(--surface);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.phone-link,
.quote-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.18rem;
  border-radius: 8px;
  font-weight: 760;
  white-space: nowrap;
}

.phone-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.quote-link,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 12px 30px rgba(0, 140, 255, 0.28);
}

.btn-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--black);
}

.page-hero {
  min-height: 74svh;
}

.compact-hero {
  min-height: 66svh;
}

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

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.76), rgba(5, 7, 10, 0.64)),
    radial-gradient(circle at 50% 25%, rgba(0, 140, 255, 0.24), transparent 42%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 2rem));
  padding: 8rem 0 4rem;
}

.page-hero-content {
  width: min(960px, calc(100% - 2rem));
}

.hero-content p,
.page-hero-content p,
.cta-band p,
.dark p,
.service-area p {
  color: rgba(255, 255, 255, 0.78);
}

.light-lead {
  color: rgba(255, 255, 255, 0.82) !important;
}

.hero-content > p:not(.hero-badge),
.page-hero-content > p:not(.hero-badge) {
  max-width: 760px;
  margin: 1.2rem auto 0;
  font-size: 1.18rem;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 140, 255, 0.12);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-badge {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-actions,
.cta-actions,
.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-actions {
  justify-content: center;
  margin-top: 2.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(620px, 100%);
  margin: 3.8rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats div {
  padding: 1.25rem;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stats span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.section {
  padding: 6rem 1.4rem;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-lead {
  max-width: 720px;
  font-size: 1.05rem;
}

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

.dark {
  background: linear-gradient(135deg, #070a0f, #101926);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 3rem;
  align-items: center;
}

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

.split.reverse > div {
  order: 2;
}

.split.reverse > img {
  order: 1;
}

.align-start {
  align-items: start;
}

.rounded-media,
.main-image,
.service-card img,
.photo-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.rounded-media,
.main-image {
  aspect-ratio: 5 / 3.35;
}

.image-stack {
  position: relative;
}

.accent-image {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.95);
  box-shadow: var(--shadow);
}

.check-list,
.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.check-list span,
.service-strip span,
.contact-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

.service-card,
.value-grid article,
.feature-list article,
.process-grid article,
.contact-card,
.map-panel,
.map-frame-card,
.business-map-card,
.area-columns article,
.photo-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 7, 10, 0.08);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  height: 210px;
  border-radius: 0;
  box-shadow: none;
}

.service-card div {
  padding: 1.25rem;
}

.service-card p {
  margin-top: 0.7rem;
}

.service-card a {
  color: var(--blue-dark);
  font-weight: 820;
}

.feature-list,
.value-grid,
.process-grid,
.area-columns {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

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

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

.feature-list article,
.value-grid article,
.area-columns article {
  padding: 1.25rem;
}

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

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

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 820;
}

.process-grid h3,
.dark h2,
.dark h3,
.cta-band h2,
.service-area h2 {
  color: var(--white);
}

.review-widget {
  min-height: 260px;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 7, 10, 0.08);
}

.review-widget iframe {
  min-height: 340px;
}

.service-area,
.cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 59, 143, 0.96), rgba(0, 140, 255, 0.9)),
    var(--blue-dark);
}

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

.area-list li {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.area-list span,
.area-list small {
  display: block;
}

.area-list span {
  color: var(--white);
  font-weight: 780;
}

.area-list small {
  color: rgba(255, 255, 255, 0.72);
}

.dark-list li {
  background: rgba(255, 255, 255, 0.06);
}

.area-map-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: 1rem;
  margin-top: 2rem;
}

.area-map-controls {
  display: grid;
  gap: 0.7rem;
}

.area-map-button {
  display: grid;
  gap: 0.18rem;
  width: 100%;
  min-height: 74px;
  padding: 0.95rem 1rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font: inherit;
}

.area-map-button span {
  font-weight: 820;
}

.area-map-button small {
  color: rgba(255, 255, 255, 0.7);
}

.area-map-button.is-active {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 34px rgba(5, 7, 10, 0.16);
}

.area-map-button.is-active small {
  color: var(--steel);
}

.map-frame-card,
.business-map-card {
  overflow: hidden;
}

.map-frame-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.map-frame-heading h3 {
  color: var(--ink);
  font-size: 1rem;
}

.map-frame-heading a {
  color: var(--blue-dark);
  font-weight: 820;
  white-space: nowrap;
}

.map-kicker {
  margin: 0 0 0.25rem;
  color: var(--blue-dark) !important;
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.map-frame-card iframe,
.business-map-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.business-map-card {
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

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

.faq-list summary {
  cursor: pointer;
}

.faq-list summary h3 {
  display: inline;
  font-size: 1rem;
}

.faq-list p {
  margin-top: 0.8rem;
}

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

.contact-card,
.map-panel {
  padding: 1.4rem;
  margin-top: 1.2rem;
}

.contact-card a,
.map-panel a {
  color: var(--blue-dark);
  font-weight: 780;
  word-break: break-word;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
}

.photo-grid img {
  height: 220px;
  border-radius: 0;
  box-shadow: none;
}

.photo-grid figcaption {
  padding: 0.85rem 1rem;
  font-weight: 780;
  color: var(--ink);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 4rem 1.4rem 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
}

.footer-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
}

.footer-brand img {
  margin-bottom: 1rem;
  object-fit: contain;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-map {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--blue) !important;
  font-weight: 780;
}

.footer-bottom {
  width: min(1160px, 100%);
  margin: 2.4rem auto 0;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .header-actions .phone-link {
    display: none;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

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

  .site-header.nav-open .site-nav {
    order: 3;
    flex-basis: 100%;
    display: grid;
    gap: 0;
    padding: 0.7rem;
    background: rgba(5, 7, 10, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-header.nav-open .header-actions {
    order: 4;
    flex-basis: 100%;
    display: grid;
    background: rgba(5, 7, 10, 0.96);
    padding: 0.8rem;
    border-radius: 8px;
  }

  .site-nav a,
  .site-nav button {
    display: block;
    width: 100%;
    padding: 0.82rem;
    text-align: left;
  }

  .nav-menu-panel {
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-menu.is-open .nav-menu-panel,
  .nav-menu:hover .nav-menu-panel {
    display: block;
    transform: none;
  }

  .split,
  .split.reverse,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse > div,
  .split.reverse > img {
    order: initial;
  }

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

  .value-grid,
  .area-columns,
  .area-list,
  .area-map-shell {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 7rem;
  }

  .hero-content > p:not(.hero-badge),
  .page-hero-content > p:not(.hero-badge) {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 2.2rem;
  }

  .hero-stats div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-actions,
  .cta-actions,
  .contact-pills {
    display: grid;
  }

  .btn,
  .phone-link,
  .quote-link {
    width: 100%;
  }

  .section {
    padding: 4.2rem 1rem;
  }

  .accent-image {
    width: 98px;
    height: 98px;
    right: 0.7rem;
    bottom: 0.7rem;
  }

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

  .map-frame-heading {
    display: grid;
  }

  .map-frame-heading a {
    white-space: normal;
  }

  .map-frame-card iframe,
  .business-map-card iframe {
    height: 320px;
  }

  .footer-bottom {
    display: grid;
  }
}
