:root {
  --red: #e51b23;
  --red-dark: #b8141b;
  --blue: #0998be;
  --blue-dark: #087ea0;
  --navy: #0f172a;
  --ink: #172033;
  --muted: #5f6877;
  --surface: #f3f7fb;
  --surface-dark: #e8f0f7;
  --line: #d7e2eb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; letter-spacing: 0; color: var(--navy); }
h1 {
  font-size: 2.55rem;
  max-width: 920px;
  position: relative;
  padding-bottom: 18px;
}
h1::after {
  content: "";
  display: block;
  width: min(220px, 52%);
  height: 6px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
h2 { font-size: 2rem; }
h3 { font-size: 1.08rem; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 32px)); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 10000;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 180ms ease, box-shadow 180ms ease;
}
.topbar {
  color: rgba(255,255,255,0.92);
  background: rgba(15, 23, 42, 0.58);
  font-size: 0.83rem;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-shell { background: rgba(15, 23, 42, 0.18); backdrop-filter: blur(10px); }
.site-header.is-scrolled .nav-shell, .site-header.is-scrolled .topbar {
  background: rgba(15, 23, 42, 0.96);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18); }
.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img, .footer-brand img { width: 200px; height: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.primary-nav > a, .nav-dropdown > a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 10px;
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 150ms ease;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.9rem;
}
.dropdown-menu a:hover { background: var(--surface); color: var(--red); }
.location-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  min-width: 560px;
  max-height: 70vh;
  overflow: auto;
}
.nav-call {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(229, 27, 35, 0.28);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.inner-hero { min-height: 540px; }
.hero-media, .hero-media img, .hero-media video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media video, .hero-media img {
  object-fit: cover;
  object-position: center 45%;
}
.home-hero .hero-media video { object-position: center center; }
.inner-hero .hero-media img { object-position: center center; }
.home-hero .hero-media img { display: none; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(7, 13, 28, 0.83), rgba(7, 13, 28, 0.52) 46%, rgba(7, 13, 28, 0.68));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 80px;
}
.hero h1, .hero p { color: var(--white); }
.hero h1 {
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}
.hero h1::after {
  background: linear-gradient(90deg, #17b7dc, var(--white) 48%, var(--red));
  box-shadow: 0 8px 22px rgba(229, 27, 35, 0.26);
}
@supports (-webkit-background-clip: text) {
  .hero h1 {
    background: linear-gradient(96deg, var(--white) 0%, var(--white) 58%, #4fd7f2 78%, #ff4a4f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.hero p {
  max-width: 750px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.86);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(9, 152, 190, 0.85);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { border-color: rgba(255,255,255,0.75); color: var(--white); }
.btn-ghost:hover, .btn-light { background: var(--white); color: var(--navy); }
.btn-outline-light { border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--red); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 170px));
  gap: 1px;
  max-width: 560px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  overflow: hidden;
}
.hero-stats div {
  padding: 18px;
  background: rgba(15, 23, 42, 0.58);
}
.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}
.hero-stats span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 8px;
}
.contact-strip {
  background: var(--red);
  color: var(--white);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.strip-grid div {
  padding: 18px 0;
}
.strip-grid strong, .strip-grid span { display: block; }
.strip-grid span { color: rgba(255,255,255,0.86); font-size: 0.95rem; }
.wide-photo-band {
  background: var(--navy);
  overflow: hidden;
}
.wide-photo-band img {
  width: 100%;
  height: clamp(150px, 20vw, 260px);
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
}
.section { padding: 88px 0; }
.section-surface { background: var(--surface); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.section-dark .section-heading span { color: #75ddf4; }
.section-heading p { font-size: 1.05rem; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: center;
}
.image-panel {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center center; }
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}
.check-list p {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: var(--surface);
  border-radius: 8px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card, .location-card, .feature-grid article, .google-review-card, .portfolio-grid article, .contact-card, .sidebar-card, .related-link {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}
.service-card img { width: 64px; height: 64px; margin-bottom: 18px; }
.text-link {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  margin-top: 8px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.process-grid div {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
}
.process-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #75ddf4;
  font-weight: 900;
}
.google-review-grid, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.google-review-section { background: var(--white); }
.google-review-card {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.google-review-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc04 50% 75%, #34a853 75% 100%);
}
.google-review-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}
.google-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  flex: 0 0 48px;
  box-shadow: inset 0 -8px 14px rgba(15, 23, 42, 0.14);
}
.avatar-1 { background: #4285f4; }
.avatar-2 { background: #34a853; }
.avatar-3 { background: #ea4335; }
.google-review-person {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.google-review-person strong {
  color: var(--ink);
  font-size: 1rem;
}
.google-review-person span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}
.google-mark {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}
.google-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.google-stars i {
  width: 17px;
  height: 17px;
  display: block;
  background: #fbbc04;
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}
.google-stars b {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}
.google-review-card h3,
.google-review-card p {
  margin: 0;
}
.google-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.portfolio-grid article { padding: 0; overflow: hidden; }
.portfolio-grid img {
  width: 100%;
  height: clamp(200px, 18vw, 240px);
  object-fit: cover;
  object-position: center center;
}
.portfolio-grid h3, .portfolio-grid p { padding-left: 22px; padding-right: 22px; }
.portfolio-grid h3 { padding-top: 22px; }
.portfolio-grid p { padding-bottom: 24px; }
.legacy-gallery-section { background: var(--white); }
.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.legacy-gallery-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}
.legacy-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.legacy-gallery-item.is-landscape,
.legacy-gallery-item.is-wide,
.legacy-gallery-item.is-portrait { aspect-ratio: 4 / 3; }
.area-list-home, .footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-list-home a, .footer-cities a, .profile-links a, .keyword-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 12px;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.9rem;
}
.area-map-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 24px;
  align-items: stretch;
}
.area-map-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}
.area-map-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  max-height: 330px;
  overflow: auto;
  padding-right: 6px;
}
.area-map-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.area-map-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 11px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.area-map-button:hover,
.area-map-button.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.area-map-actions {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}
.map-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.map-frame-wrap {
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface-dark);
}
.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  display: block;
}
.single-map,
.single-map iframe {
  min-height: 380px;
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}
.service-detail article h2 { margin-top: 34px; }
.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 8px;
}
.two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}
.two-col-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 700;
}
.sidebar-card {
  position: sticky;
  top: 140px;
}
.service-photo-card {
  padding: 0;
  overflow: hidden;
}
.service-photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
}
.service-photo-card-content {
  padding: 22px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.related-link {
  display: block;
}
.related-link span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 22px 0;
  font: inherit;
  font-weight: 900;
  font-size: 1.06rem;
  text-align: left;
  cursor: pointer;
}
.faq-answer p { margin-bottom: 22px; }
.cta-band {
  background: linear-gradient(120deg, var(--red), var(--blue));
  color: var(--white);
  padding: 56px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h2, .cta-band p { color: var(--white); }
.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}
.quote-embed {
  min-height: 681px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
}
.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.profile-links h3 { flex: 0 0 100%; }
.site-footer {
  background: #08111f;
  color: rgba(255,255,255,0.82);
  padding-top: 64px;
}
.site-footer h3, .site-footer strong { color: var(--white); }
.site-footer p, .site-footer a { color: rgba(255,255,255,0.78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 34px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.social-links a {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 800;
  font-size: 0.82rem;
}
.footer-cities a {
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 42px;
  padding: 20px 0;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; }
@media (min-width: 960px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 2.6rem; }
}
@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .nav-call { display: none; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    background: var(--navy);
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav > a, .nav-dropdown > a { display: block; padding: 13px 10px; }
  .dropdown-menu, .location-menu {
    position: static;
    display: none;
    min-width: 0;
    max-height: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    grid-template-columns: 1fr;
    margin: 0 0 8px;
  }
  .nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { display: grid; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-map-layout { grid-template-columns: 1fr; }
  .feature-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legacy-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.8rem; }
  .topbar-inner { justify-content: flex-start; gap: 10px; font-size: 0.76rem; }
  .brand img { width: 170px; }
  .hero { min-height: 690px; }
  .inner-hero { min-height: 500px; }
  .hero-content { padding-top: 140px; }
  .hero-stats, .strip-grid, .split, .process-grid, .google-review-grid, .portfolio-grid, .quote-grid, .contact-layout, .service-detail, .two-col-list, .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-inner { display: grid; }
  .card-grid, .feature-grid, .related-grid, .footer-grid { grid-template-columns: 1fr; }
  .legacy-gallery { grid-template-columns: 1fr; }
  .legacy-gallery-item.is-wide { grid-column: span 1; }
  .portfolio-grid img { height: 220px; }
  .section { padding: 64px 0; }
  .sidebar-card { position: static; }
  .home-hero .hero-media video { display: none; }
  .home-hero .hero-media img { display: block; }
  .quote-embed { min-height: 720px; }
  .quote-embed iframe { height: 720px !important; }
  .area-map-buttons { grid-template-columns: 1fr; max-height: 320px; }
  .map-frame-wrap, .map-frame-wrap iframe { min-height: 360px; }
}
