@font-face {
  font-family: "AlphaSans";
  src: url("/assets/001-JTUSjIg1_i6t8kCHKm459Wlhyw-dd255ef4.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --red: #d71920;
  --red-dark: #a40f15;
  --black: #111111;
  --ink: #222222;
  --muted: #666666;
  --line: #e8e8e8;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --steel: #2d343c;
  --steel-light: #eef1f4;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: AlphaSans, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.top-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--black);
  font-size: 14px;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 96px;
}

.brand span {
  max-width: 180px;
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}

.nav-links a,
.dropdown > button {
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  min-width: 260px;
  display: none;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
  display: grid;
  gap: 8px;
}

.dropdown-panel a {
  padding: 8px 10px;
}

.nav-quote,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.nav-quote,
.button.primary {
  color: #ffffff;
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary,
.button.ghost {
  color: var(--black);
  background: #ffffff;
  border: 1px solid var(--line);
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 560px;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12)),
    var(--hero-image) center / cover;
  color: #ffffff;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.sub-hero,
.location-hero,
.article-hero {
  min-height: 430px;
  align-items: end;
}

.location-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52)),
    var(--hero-image) center / cover;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 640px;
  margin: 0 0 18px;
  font-size: 19px;
}

.rating {
  font-weight: 800;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  gap: 4px;
  min-height: 110px;
  padding: 24px clamp(18px, 4vw, 42px);
  background: #ffffff;
}

.proof-strip strong {
  color: var(--red);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.proof-strip span {
  color: var(--black);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2,
.content-body h2,
.site-footer h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card a {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 22px;
}

.service-card a {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--soft);
}

.feature-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 18px;
  background: #ffffff;
  border-left: 5px solid var(--red);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 34px;
}

.region-grid,
.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-grid a,
.pill-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.content-with-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.contact-hero {
  min-height: 390px;
  place-items: center;
  text-align: center;
}

.contact-hero .hero-copy {
  max-width: 720px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
  padding-top: 42px;
  padding-bottom: 54px;
}

.contact-rail {
  padding-right: clamp(22px, 4vw, 50px);
  border-right: 1px solid var(--line);
}

.contact-rail h2,
.contact-form-heading h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.contact-methods {
  margin-top: 14px;
}

.contact-method {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 12px;
  gap: 10px;
  align-items: center;
  min-height: 0;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, padding 160ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  padding-left: 10px;
  padding-right: 10px;
  background: var(--soft);
  color: var(--red);
  outline: none;
}

.contact-method-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--red);
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}

.contact-method-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-icon-facebook svg {
  fill: currentColor;
  stroke: none;
}

.contact-method-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-method-arrow {
  color: #999999;
  font-size: 25px;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.contact-method:hover .contact-method-arrow,
.contact-method:focus-visible .contact-method-arrow {
  color: var(--red);
  transform: translateX(2px);
}

.contact-method-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--black);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-method span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.contact-expectations {
  margin-top: 26px;
  padding: 20px;
  color: #ffffff;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}

.contact-expectations h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}

.contact-expectations ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: #dddddd;
  font-size: 13px;
}

.contact-quote {
  min-width: 0;
}

.contact-form-heading p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-quote .quote-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-quote .quote-form > h2 {
  display: none;
}

.contact-quote .field-grid {
  gap: 14px 24px;
}

.contact-quote input,
.contact-quote textarea {
  border-radius: 0;
  background: #ffffff;
}

.contact-quote .form-actions {
  margin-top: 16px;
}

.contact-quote .form-actions > * {
  flex: 1 1 220px;
}

.contact-faq {
  display: grid;
  grid-template-columns: minmax(230px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  padding-top: 38px;
  padding-bottom: 52px;
  background: var(--soft);
}

.contact-faq-heading h2 {
  font-size: 30px;
}

.contact-faq-heading p {
  color: var(--muted);
}

.contact-faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-faq-list article {
  padding: 0 24px;
  border-left: 1px solid #d5d5d5;
}

.contact-faq-list h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.25;
}

.contact-faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.content-body {
  max-width: 820px;
}

.content-body p {
  margin: 0 0 18px;
  font-size: 18px;
}

.content-body h2 {
  margin-top: 34px;
}

.location-label {
  display: inline-flex;
  padding: 7px 10px;
  border-left: 4px solid var(--red);
  background: var(--soft);
  font-weight: 800;
}

.quote-form,
.cta-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-form .quote-form {
  box-shadow: none;
}

.quote-form h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 28px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  padding: 12px 12px;
  color: var(--ink);
  font: 16px AlphaSans, Arial, sans-serif;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 1.4em;
  margin-bottom: 0;
  font-weight: 700;
}

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

.trust-grid-section {
  background: #ffffff;
}

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

.trust-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  background: #ffffff;
}

.trust-grid h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 22px;
}

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

.link-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  font-weight: 800;
}

.site-footer {
  padding: 54px clamp(18px, 5vw, 72px) 28px;
  color: #ffffff;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.site-footer img {
  width: 120px;
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 4px;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 20px;
}

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

.copyright {
  margin-top: 38px;
  color: #bbbbbb;
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: grid;
  }

  .dropdown-panel {
    position: static;
    display: grid;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

  .home-hero,
  .split,
  .coverage,
  .content-with-form,
  .contact-layout,
  .contact-faq,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .top-strip,
  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .brand img {
    width: 78px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .service-grid,
  .trust-grid,
  .field-grid,
  .process-list li {
    grid-template-columns: 1fr;
  }

  .contact-rail {
    padding-right: 0;
    border-right: 0;
  }

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

  .contact-faq-list article {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid #d5d5d5;
  }

  .contact-quote .form-actions > * {
    flex: none;
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

}
