:root {
  --brand: #234f74;
  --brand-dark: #15384f;
  --accent: #b7792c;
  --ink: #17212b;
  --muted: #5e6b77;
  --line: #d9e0e6;
  --surface: #ffffff;
  --soft: #f6f3ee;
  --slate: #edf2f6;
  --shadow: 0 18px 45px rgba(17, 32, 46, .12);
  --radius: 8px;
  --max: 1180px;
}

* { 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(--surface);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(183, 121, 44, .55);
  outline-offset: 3px;
}
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  background: var(--brand-dark);
  color: #fff;
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }
.utility {
  background: var(--brand-dark);
  color: #eef6fb;
  font-size: .88rem;
}
.utility .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.logo img { width: 300px; min-width: 300px; }
.nav { display: flex; align-items: center; gap: 24px; font-weight: 700; font-size: .95rem; }
.nav a { text-decoration: none; color: var(--ink); }
.nav a:hover { color: var(--brand); }
.dropdown { position: relative; padding: 28px 0; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 245px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 6px; }
.dropdown-menu a:hover { background: var(--slate); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { font-weight: 800; color: var(--brand); text-decoration: none; white-space: nowrap; }
.header-actions .desktop-phone { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { background: var(--brand-dark); transform: translateY(-1px); }
.button.secondary { background: #fff; color: var(--brand); border-color: var(--brand); }
.button.secondary:hover { background: var(--slate); }
.button.accent { background: var(--accent); }
.button.accent:hover { background: #965f1d; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  color: #fff;
  background: #132839;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 22, 32, .84), rgba(9, 22, 32, .36) 55%, rgba(9, 22, 32, .14));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 110px 0 82px;
}
.eyebrow {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(2.6rem, 4vw, 4.5rem); max-width: 1180px; }
h2 { font-size: clamp(2rem, 3.25vw, 3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 18px; color: var(--muted); }
.hero p { max-width: 740px; color: #edf4f7; font-size: 1.18rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(900px, 100%);
  margin-top: 34px;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.25);
}
.trust-row span { padding: 15px; background: rgba(12, 31, 45, .58); font-weight: 800; text-align: center; white-space: nowrap; font-size: .94rem; }
.section { padding: 88px 0; }
.section.alt { background: var(--soft); }
.section.slate { background: var(--slate); }
.section-head { max-width: 980px; margin-bottom: 36px; }
.section-head.center { margin-inline: auto; text-align: center; }
.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 24px rgba(23, 33, 43, .06);
}
.service-card {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(35, 79, 116, .35); }
.service-card .label, .pill { color: var(--brand); font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; }
.service-card .label { display: none; }
.service-card h3, .service-card p { margin-bottom: 0; }
.image-panel { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--slate); }
.image-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0; margin: 22px 0; list-style: none; }
.feature-list li { padding: 10px 0 10px 24px; position: relative; font-weight: 700; color: #2f3d49; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 8px; height: 8px; background: var(--accent); }
.value { border-left: 4px solid var(--accent); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-item {
  border: 0;
  padding: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(23, 33, 43, .08);
  text-align: left;
  cursor: pointer;
}
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item span { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.process { counter-reset: steps; }
.step { position: relative; padding-top: 58px; }
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}
.testimonial p { color: var(--ink); font-size: 1.05rem; }
.testimonial { margin: 0; }
.testimonial cite { color: var(--brand); font-weight: 900; font-style: normal; }
.testimonial-grid { gap: 16px; }
.review-theme { background: var(--soft); border-color: #e6ddd1; }
.review-theme ul { margin: 0; padding-left: 20px; color: var(--muted); }
.review-theme li + li { margin-top: 8px; }
.cta-band {
  background: var(--brand-dark);
  color: #fff;
  padding: 58px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-band p { color: #dce8ef; max-width: 680px; }
.page-hero {
  background: linear-gradient(rgba(16, 35, 49, .78), rgba(16, 35, 49, .78)), var(--hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 120px 0 84px;
}
.page-hero p { color: #ecf3f8; max-width: 760px; font-size: 1.1rem; }
.breadcrumbs { font-size: .9rem; margin-bottom: 28px; color: #dce8ef; }
.breadcrumbs a { color: #fff; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: #fff;
}
.faq details + details { margin-top: 12px; }
.faq summary { cursor: pointer; font-weight: 900; color: var(--brand-dark); }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.compare-table th, .compare-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table th { background: var(--slate); }
.estimate-grid { padding: 20px; align-items: start; }
.form-frame { min-height: 720px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; padding: 20px; }
.form-frame iframe { min-height: 720px; }
.map-frame { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; min-height: 320px; border: 0; }
.note { border-left: 4px solid var(--accent); background: #fff8ef; padding: 16px 18px; color: #5e4324; }
.site-footer { background: #101d27; color: #dfe8ee; padding: 62px 0 34px; }
.site-footer p, .site-footer a { color: #dfe8ee; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; }
.footer-logo { width: 230px; background: #fff; padding: 8px; border-radius: 4px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 8px; }
.social-links { display: flex; gap: 12px; margin-top: 14px; }
.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 900;
}
.social-links img { width: 20px; height: 20px; }
.footer-hours span { display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  margin-top: 34px;
  padding-top: 20px;
  font-size: .92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.payment-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-options img {
  height: 24px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 2px;
}
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 9px 12px;
  gap: 10px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 16, 24, .88);
  padding: 26px;
}
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: min(1100px, 96vw); color: #fff; }
.lightbox img { max-height: 78vh; width: auto; margin: 0 auto; }
.lightbox button { position: absolute; top: 18px; right: 18px; border: 1px solid #fff; background: transparent; color: #fff; width: 44px; height: 44px; font-size: 1.5rem; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 980px) {
  .utility { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 24px;
  }
  .nav.open { display: flex; }
  .nav a, .dropdown { padding: 12px 0; }
  .dropdown-menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: 0; padding: 0 0 0 14px; }
  .header-actions .button { display: none; }
  .grid.two, .grid.three, .grid.four, .grid.five, .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { display: block; padding: 36px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 74px; }
  .logo img { width: 196px; min-width: 0; }
  .phone-link.desktop-phone { display: none; }
  .hero { min-height: 620px; }
  .hero-content { padding: 84px 0 58px; }
  .trust-row, .grid.two, .grid.three, .grid.four, .grid.five, .gallery-grid, .footer-grid, .feature-list { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .cta-band { padding: 28px; }
  .footer-bottom { display: block; }
  .payment-options { justify-content: flex-start; margin-top: 14px; }
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
