:root {
  --ink: #101820;
  --ink-2: #1d2a33;
  --blue: #0f4c81;
  --red: #d71920;
  --steel: #e7edf2;
  --steel-2: #f6f8fa;
  --line: #d6e0e8;
  --white: #ffffff;
  --gold: #c98b2c;
  --text: #27333c;
  --muted: #61717d;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }
.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;
}

.topbar { background: var(--ink); color: var(--white); font-size: 0.9rem; }
.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a { font-weight: 700; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand img { width: 188px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 14px 10px;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.94rem;
}
.nav-item > a[aria-current="page"] { color: var(--red); }
.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  width: 240px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  display: none;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  font-weight: 700;
  color: var(--ink-2);
}
.nav-dropdown a:hover { background: var(--steel-2); color: var(--red); }
.nav-cta { margin-left: 8px; white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle svg { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}
.btn:hover { background: #b9141a; border-color: #b9141a; color: var(--white); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.78); color: var(--white); }
.btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--light { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--small { min-height: 42px; padding: 0 14px; font-size: 0.92rem; }
.btn--full { width: 100%; }
.text-link {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

h1, h2, h3 {
  font-family: Oswald, "Arial Narrow", Impact, sans-serif;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 800;
}
h1 { font-size: 2.35rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 16px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.74);
}
.hero--home { min-height: calc(100svh - 122px); display: flex; align-items: center; }
.hero--page { min-height: 430px; display: flex; align-items: center; }
.hero__inner { position: relative; z-index: 1; padding: 72px 0; }
.hero__copy { max-width: 700px; }
.hero h1, .hero p { color: var(--white); }
.hero h1 { font-size: 3.05rem; }
.hero__copy > p:not(.eyebrow) { font-size: 1.12rem; max-width: 640px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 44px;
}
.hero-proof span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  font-weight: 800;
}
.article-date { color: var(--steel); font-weight: 800; }

.trust-band {
  background: var(--blue);
  color: var(--white);
}
.trust-band__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: center;
}
.trust-band span { font-weight: 900; text-align: center; }

.section { padding: 76px 0; }
.section--steel { background: var(--steel-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark h2, .section--dark p { color: var(--white); }
.section-head { max-width: 800px; margin-bottom: 32px; }
.section-head p:last-child { color: var(--muted); font-size: 1.08rem; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.check-grid span {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 14px;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-grid--compact { margin-bottom: 20px; }
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 235px;
  background: var(--white);
}
.service-card__mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 16px;
}
.service-card h3 a { color: var(--ink); }
.service-card p { color: var(--muted); margin-bottom: 0; }

.award-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.award-badge-wrap img { max-height: 220px; object-fit: contain; }

.content-shell, .article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 48px;
  align-items: start;
}
.content-flow {
  max-width: 760px;
}
.article-shell .content-flow { max-width: 820px; }
.content-flow h2 { margin-top: 36px; }
.content-flow h2:first-child { margin-top: 0; }
.content-flow h3 { margin-top: 28px; color: var(--blue); }
.content-flow p, .content-flow li { font-size: 1.02rem; }
.content-flow ul { padding-left: 22px; margin: 0 0 20px; }
.content-flow a { color: var(--red); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.support-panel {
  position: sticky;
  top: 140px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--steel-2);
}
.support-panel h2 { font-size: 1.45rem; }
.support-panel dl { margin: 18px 0 0; }
.support-panel dt { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 12px; }
.support-panel dt { font-weight: 900; color: var(--ink); }
.support-panel dd { margin: 0; color: var(--muted); }
.article-aside a:not(.btn) {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.location-grid a {
  display: flex;
  align-items: center;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}
details p { margin: 12px 0 0; color: var(--muted); }

.cta-section { background: var(--ink); color: var(--white); }
.cta-section h2, .cta-section p { color: var(--white); }
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}
.estimate-form {
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.estimate-form h2 { font-size: 1.55rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-span { grid-column: 1 / -1; }
.form-field span {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
  color: var(--ink);
  font-size: 0.9rem;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: 10px 12px;
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.estimate-form .btn { margin-top: 16px; width: 100%; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}
.info-list {
  display: grid;
  gap: 12px;
}
.info-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 4px;
}
.info-list strong { color: var(--ink); }
.info-list span, .info-list a { color: var(--muted); }
.map-section iframe { display: block; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--steel);
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body { padding: 20px; }
.blog-card h2 { font-size: 1.35rem; }
.blog-card p:not(.eyebrow) { color: var(--muted); }

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 34px;
}
.footer-logo { width: 190px; height: auto; margin-bottom: 14px; }
.site-footer h2 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; }
.site-footer a { display: block; color: var(--steel); margin-bottom: 8px; }
.site-footer p { color: var(--steel); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a { margin: 0; font-weight: 800; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 36px;
  padding-top: 20px;
  color: var(--steel);
  font-size: 0.92rem;
}

@media (min-width: 900px) {
  h1 { font-size: 3.15rem; }
  h2 { font-size: 2.35rem; }
  .hero h1 { font-size: 4rem; }
}

@media (max-width: 1020px) {
  .nav-cta { display: none; }
  .site-nav { gap: 0; }
  .service-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-band__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 16px 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --mobile-topbar-height: 40px; --mobile-nav-height: 72px; }
  body { padding-top: calc(var(--mobile-topbar-height) + var(--mobile-nav-height)); }
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  .topbar__inner { gap: 12px; padding: 8px 0; }
  .nav-shell { min-height: 72px; }
  .brand img { width: 154px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 10px 16px 18px;
  }
  .site-nav.is-open { display: block; }
  .nav-item > a { padding: 12px 0; }
  .nav-dropdown {
    position: static;
    display: block;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
  }
  .hero--home { min-height: 660px; }
  .hero__inner { padding: 52px 0; }
  .hero h1 { font-size: 2.65rem; }
  .split, .award-layout, .content-shell, .article-shell, .cta-grid, .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .support-panel { position: static; }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .container { width: min(100% - 24px, 1120px); }
  .section { padding: 54px 0; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero__copy > p:not(.eyebrow) { font-size: 1rem; }
  .hero-proof, .service-grid, .blog-grid, .check-grid, .location-grid, .form-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-band__inner { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
}
